From 83da2bbce19bc570961d3720bf277700627321f1 Mon Sep 17 00:00:00 2001 From: RutvikS-crest Date: Wed, 9 Feb 2022 19:10:15 +0530 Subject: [PATCH 01/67] resource and data-source files for dhcp_option_policy --- .gitignore.txt => .gitignore | 0 go.mod | 4 +- go.sum | 6 +- mso/datasource_mso_dhcp_option_policy.go | 73 + mso/provider.go | 2 + mso/resource_mso_dhcp_option_policy.go | 222 + mso/resource_mso_dhcp_option_policy_test.go | 25 + mso/tf.log | 52109 ++++++++++++++++ .../mso-go-client/client/client_service.go | 4 +- .../client/dhcp_option_policy_service.go | 60 + .../models/dhcp_option_policy.go | 55 + .../mso-go-client/models/label.go | 3 - vendor/modules.txt | 2 +- 13 files changed, 52554 insertions(+), 11 deletions(-) rename .gitignore.txt => .gitignore (100%) create mode 100644 mso/datasource_mso_dhcp_option_policy.go create mode 100644 mso/resource_mso_dhcp_option_policy.go create mode 100644 mso/resource_mso_dhcp_option_policy_test.go create mode 100644 mso/tf.log create mode 100644 vendor/github.com/ciscoecosystem/mso-go-client/client/dhcp_option_policy_service.go create mode 100644 vendor/github.com/ciscoecosystem/mso-go-client/models/dhcp_option_policy.go diff --git a/.gitignore.txt b/.gitignore similarity index 100% rename from .gitignore.txt rename to .gitignore diff --git a/go.mod b/go.mod index cafd12dd..cca5b3dc 100644 --- a/go.mod +++ b/go.mod @@ -3,8 +3,10 @@ module github.com/terraform-providers/terraform-provider-mso go 1.13 require ( - github.com/ciscoecosystem/mso-go-client v1.3.0 + github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220209133549-b2680916c1f0 github.com/hashicorp/terraform-plugin-sdk v1.14.0 github.com/stretchr/testify v1.6.1 // indirect golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect ) + +// replace github.com/ciscoecosystem/mso-go-client => ../../ciscoecosystem/mso-go-clien diff --git a/go.sum b/go.sum index 809ba587..8506cbc3 100644 --- a/go.sum +++ b/go.sum @@ -32,10 +32,8 @@ github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQ github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cheggaaa/pb v1.0.27/go.mod h1:pQciLPpbU0oxA0h+VJYYLxO+XeDQb5pZijXscXHm81s= -github.com/ciscoecosystem/mso-go-client v1.2.6 h1:CU8l0cs15WNJFHQLJA/hJA6H4/vgra2WbP/+Rt4h9uM= -github.com/ciscoecosystem/mso-go-client v1.2.6/go.mod h1:ffy+aqN7Zo7GZC8e0pSt+Kbc32wjqkc+zDD42Ug0lWw= -github.com/ciscoecosystem/mso-go-client v1.3.0 h1:nu5au4Q+3mu3wgRlfiystAclt1sYbjCHPf4tFe4FBe0= -github.com/ciscoecosystem/mso-go-client v1.3.0/go.mod h1:ffy+aqN7Zo7GZC8e0pSt+Kbc32wjqkc+zDD42Ug0lWw= +github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220209133549-b2680916c1f0 h1:pH5TqYDCCS8QU6M84wDb5+LU7g9wTmXW6Y8R2u8AT6M= +github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220209133549-b2680916c1f0/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/mso/datasource_mso_dhcp_option_policy.go b/mso/datasource_mso_dhcp_option_policy.go new file mode 100644 index 00000000..531b1d17 --- /dev/null +++ b/mso/datasource_mso_dhcp_option_policy.go @@ -0,0 +1,73 @@ +package mso + +import ( + "log" + + "github.com/ciscoecosystem/mso-go-client/client" + + "github.com/hashicorp/terraform-plugin-sdk/helper/schema" +) + +func datasourceMSODHCPOptionPolicy() *schema.Resource { + return &schema.Resource{ + + Read: datasourceMSODHCPOptionPolicyRead, + + SchemaVersion: version, + + Schema: (map[string]*schema.Schema{ + "tenant_id": { + Type: schema.TypeString, + Computed: true, + }, + + "name": { + Type: schema.TypeString, + Required: true, + }, + + "description": { + Type: schema.TypeString, + Computed: true, + }, + + "option": { + Type: schema.TypeList, + Computed: true, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "name": { + Type: schema.TypeString, + Computed: true, + }, + "id": { + Type: schema.TypeString, + Computed: true, + }, + "data": { + Type: schema.TypeString, + Computed: true, + }, + }, + }, + }, + }), + } +} + +func datasourceMSODHCPOptionPolicyRead(d *schema.ResourceData, m interface{}) error { + log.Printf("[DEBUG] dhcp_option_policy: Beginning Import") + msoClient := m.(*client.Client) + name := d.Get("name").(string) + id, err := msoClient.GetDHCPOptionPolicyID(name) + if err != nil { + return err + } + DHCPOptionPolicy, err := getDHCPOptionPolicy(msoClient, id) + if err != nil { + return err + } + setDHCPOptionPolicy(DHCPOptionPolicy, d) + log.Printf("[DEBUG] %s: Import finished successfully", d.Id()) + return nil +} diff --git a/mso/provider.go b/mso/provider.go index fdb3ae57..c7ec2a54 100644 --- a/mso/provider.go +++ b/mso/provider.go @@ -107,6 +107,7 @@ func Provider() terraform.ResourceProvider { "mso_schema_site_service_graph_node": resourceMSOSchemaSiteServiceGraphNode(), "mso_service_node_type": resourceMSOServiceNodeType(), "mso_schema_template_contract_service_graph": resourceTemplateContractServiceGraph(), + "mso_dhcp_option_policy": resourceMSODHCPOptionPolicy(), }, DataSourcesMap: map[string]*schema.Resource{ @@ -155,6 +156,7 @@ func Provider() terraform.ResourceProvider { "mso_schema_template_service_graph": dataSourceMSOSchemaTemplateServiceGraph(), "mso_service_node_type": dataSourceMSOServiceNodeType(), "mso_schema_template_contract_service_graph": datasourceTemplateContractServiceGraph(), + "mso_dhcp_option_policy": datasourceMSODHCPOptionPolicy(), }, ConfigureFunc: configureClient, diff --git a/mso/resource_mso_dhcp_option_policy.go b/mso/resource_mso_dhcp_option_policy.go new file mode 100644 index 00000000..4e6304db --- /dev/null +++ b/mso/resource_mso_dhcp_option_policy.go @@ -0,0 +1,222 @@ +package mso + +import ( + "log" + + "github.com/ciscoecosystem/mso-go-client/client" + "github.com/ciscoecosystem/mso-go-client/models" + + "github.com/hashicorp/terraform-plugin-sdk/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/helper/validation" +) + +func resourceMSODHCPOptionPolicy() *schema.Resource { + return &schema.Resource{ + Create: resourceMSODHCPOptionPolicyCreate, + Update: resourceMSODHCPOptionPolicyUpdate, + Read: resourceMSODHCPOptionPolicyRead, + Delete: resourceMSODHCPOptionPolicyDelete, + + Importer: &schema.ResourceImporter{ + State: resourceMSODHCPOptionPolicyImport, + }, + + SchemaVersion: version, + + Schema: (map[string]*schema.Schema{ + "tenant_id": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + + "name": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + + "description": { + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + + "option": { + Type: schema.TypeList, + Optional: true, + Computed: true, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "name": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "id": { + Type: schema.TypeString, + Required: true, + }, + "data": { + Type: schema.TypeString, + Optional: true, + Computed: true, + }, + }, + }, + }, + }), + } +} + +func resourceMSODHCPOptionPolicyImport(d *schema.ResourceData, m interface{}) ([]*schema.ResourceData, error) { + log.Printf("[DEBUG] %s: Beginning Import", d.Id()) + msoClient := m.(*client.Client) + id := d.Id() + DHCPOptionPolicy, err := getDHCPOptionPolicy(msoClient, id) + if err != nil { + return nil, err + } + setDHCPOptionPolicy(DHCPOptionPolicy, d) + log.Printf("[DEBUG] %s: Import finished successfully", d.Id()) + return []*schema.ResourceData{d}, nil +} + +func getDHCPOptionPolicy(client *client.Client, id string) (*models.DHCPOptionPolicy, error) { + cont, err := client.ReadDHCPOptionPolicy(id) + if err != nil { + return nil, err + } + + DHCPOptionPolicy, err := models.DHCPOptionPolicyFromContainer(cont) + if err != nil { + return nil, err + } + + return DHCPOptionPolicy, nil +} + +func setDHCPOptionPolicy(DHCPOptionPolicy *models.DHCPOptionPolicy, d *schema.ResourceData) { + d.Set("description", DHCPOptionPolicy.Desc) + d.Set("name", DHCPOptionPolicy.Name) + d.Set("tenant_id", DHCPOptionPolicy.TenantID) + d.SetId(DHCPOptionPolicy.ID) + tfOptionList := make([]map[string]string, 0) + for _, option := range DHCPOptionPolicy.DHCPOption { + tfOptionList = append(tfOptionList, map[string]string{ + "name": option.Name, + "data": option.Data, + "id": option.ID, + }) + } + d.Set("option", tfOptionList) +} + +func resourceMSODHCPOptionPolicyCreate(d *schema.ResourceData, m interface{}) error { + log.Printf("[DEBUG] %s: Beginning Create", d.Id()) + + msoClient := m.(*client.Client) + + DHCPOptionPolicy := models.DHCPOptionPolicy{ + TenantID: d.Get("tenant_id").(string), + Name: d.Get("name").(string), + } + + if desc, ok := d.GetOk("description"); ok { + DHCPOptionPolicy.Desc = desc.(string) + } + + if optionList, ok := d.GetOk("option"); ok { + optionModelList := make([]models.DHCPOption, 0) + for _, option := range optionList.([]interface{}) { + optionMap := option.(map[string]interface{}) + optionModelList = append(optionModelList, models.DHCPOption{ + Name: optionMap["name"].(string), + ID: optionMap["id"].(string), + Data: optionMap["data"].(string), + }) + } + DHCPOptionPolicy.DHCPOption = optionModelList + } + + cont, err := msoClient.CreateDHCPOptionPolicy(&DHCPOptionPolicy) + if err != nil { + return err + } + d.SetId(models.StripQuotes(cont.S("id").String())) + + log.Printf("[DEBUG] %s: Creation finished successfully", d.Id()) + + return resourceMSODHCPOptionPolicyRead(d, m) +} + +func resourceMSODHCPOptionPolicyUpdate(d *schema.ResourceData, m interface{}) error { + log.Printf("[DEBUG] %s: Beginning Policy Update", d.Id()) + + msoClient := m.(*client.Client) + + DHCPOptionPolicy := models.DHCPOptionPolicy{ + TenantID: d.Get("tenant_id").(string), + Name: d.Get("name").(string), + } + + if desc, ok := d.GetOk("description"); ok { + DHCPOptionPolicy.Desc = desc.(string) + } + + if optionList, ok := d.GetOk("option"); ok { + optionModelList := make([]models.DHCPOption, 0) + for _, option := range optionList.([]interface{}) { + optionMap := option.(map[string]interface{}) + optionModelList = append(optionModelList, models.DHCPOption{ + Name: optionMap["name"].(string), + ID: optionMap["id"].(string), + Data: optionMap["data"].(string), + }) + } + DHCPOptionPolicy.DHCPOption = optionModelList + } + + _, err := msoClient.UpdateDHCPOptionPolicy(d.Id(), &DHCPOptionPolicy) + if err != nil { + return err + } + + log.Printf("[DEBUG] Policy Update finished successfully: %s", d.Id()) + + return resourceMSODHCPOptionPolicyRead(d, m) +} + +func resourceMSODHCPOptionPolicyRead(d *schema.ResourceData, m interface{}) error { + log.Printf("[DEBUG] %s: Beginning Read", d.Id()) + + msoClient := m.(*client.Client) + id := d.Id() + log.Printf("id: %v\n", id) + DHCPOptionPolicy, err := getDHCPOptionPolicy(msoClient, id) + if err != nil { + d.SetId("") + return err + } + setDHCPOptionPolicy(DHCPOptionPolicy, d) + + log.Printf("[DEBUG] %s: Read finished successfully", d.Id()) + return nil +} + +func resourceMSODHCPOptionPolicyDelete(d *schema.ResourceData, m interface{}) error { + log.Printf("[DEBUG] %s: Beginning Read", d.Id()) + msoClient := m.(*client.Client) + id := d.Id() + + err := msoClient.DeleteDHCPOptionPolicy(id) + if err != nil { + return err + } + d.SetId("") + log.Printf("[DEBUG] %s: Read finished successfully", d.Id()) + return nil +} diff --git a/mso/resource_mso_dhcp_option_policy_test.go b/mso/resource_mso_dhcp_option_policy_test.go new file mode 100644 index 00000000..3cbc32a6 --- /dev/null +++ b/mso/resource_mso_dhcp_option_policy_test.go @@ -0,0 +1,25 @@ +package mso + +import ( + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/helper/resource" +) + +func TestAccMSODHCPOptionPolicy_Basic(t *testing.T) { + var s LabelTest + resource.Test(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSOLabelDestroy, + Steps: []resource.TestStep{ + { + Config: testAccCheckMSOLabelConfig_basic("site"), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSOLabelExists("mso_label.label1", &s), + testAccCheckMSOLabelAttributes("site", &s), + ), + }, + }, + }) +} diff --git a/mso/tf.log b/mso/tf.log new file mode 100644 index 00000000..be49707d --- /dev/null +++ b/mso/tf.log @@ -0,0 +1,52109 @@ +2022/02/28 10:53:16 [DEBUG] Test: Executing step 0 +2022/02/28 10:53:16 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:53:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:16 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 10:53:16 [DEBUG] Test: Executing step 1 +2022/02/28 10:53:16 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:53:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:53:16 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 10:53:16 [DEBUG] Test: Executing step 2 +2022/02/28 10:53:16 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:53:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 10:53:16 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 10:53:16 [DEBUG] Test: Executing step 3 +2022/02/28 10:53:16 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:53:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_schema.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:16 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 10:53:16 [DEBUG] Test: Executing step 4 +2022/02/28 10:53:16 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:53:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:16 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:53:16 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:16 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:53:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:16 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:53:16 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:16 [DEBUG] : Beginning Read +2022/02/28 10:53:16 HTTP request GET mso/api/v1/tenants +2022/02/28 10:53:16 [DEBUG] Begin Injection +2022/02/28 10:53:16 HTTP request POST /login +2022/02/28 10:53:16 HTTP request after injection POST /login +2022/02/28 10:53:16 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 10:53:17 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 10:53:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:17 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000377380 -1 [chunked] false false map[] 0xc000290500 0xc0000f8420} +2022/02/28 10:53:17 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw"} +2022/02/28 10:53:17 [DEBUG] Exit from do method +2022/02/28 10:53:17 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 10:53:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:53:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:53:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00096ca40 5563 [] false false map[] 0xc000290400 0xc0000f8420} +2022/02/28 10:53:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 10:53:18 [DEBUG] Exit from do method +2022/02/28 10:53:18 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 10:53:18 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:18 [DEBUG] New state was assigned lineage "20ed9b7c-a1c9-562c-0852-c90daf3eaca1" +2022/02/28 10:53:18 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:53:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:18 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:18 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:18 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:18 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:18 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:53:18 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:53:18 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:18 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_stwqz" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_gwbkp" + template_name: "" => "acctest_gwbkp" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_stwqz" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_stwqz" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_gwbkp" + vrf_name: "" => "acctest_stwqz" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_stwqz" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_stwqz" + schema_id: "" => "" + template_name: "" => "acctest_gwbkp" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_stwqz" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_stwqz" + schema_id: "" => "" + template: "" => "acctest_gwbkp" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 10:53:18 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 10:53:18 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 10:53:18 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 10:53:18 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 10:53:18 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 10:53:18 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 10:53:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 10:53:18 [DEBUG] Starting graph walk: walkApply +2022/02/28 10:53:18 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 10:53:18 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 10:53:18 [DEBUG] Schema: Beginning Creation +2022/02/28 10:53:18 [DEBUG] : Beginning Create +2022/02/28 10:53:18 HTTP request POST mso/api/v1/schemas +2022/02/28 10:53:18 [DEBUG] Begin Injection +2022/02/28 10:53:18 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 10:53:18 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 10:53:18 [DEBUG] Begin Injection +2022/02/28 10:53:18 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 10:53:18 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw] Content-Type:[application/json]] {{"displayName":"acctest_gwbkp","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_gwbkp","externalEpgs":[],"filters":[],"name":"acctest_gwbkp","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x847ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 10:53:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 10:53:18 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw] Content-Type:[application/json]] {{"desc":"","name":"acctest_stwqz","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x847ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 10:53:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 10:53:18 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 10:53:18 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c5c461d000094614fb920] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8280 400 [] false false map[] 0xc000290300 0xc0000f8420} +2022/02/28 10:53:18 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 10:53:18 [DEBUG] Exit from do method +2022/02/28 10:53:18 [DEBUG] 621c5c461d000094614fb920: Schema Creation finished successfully +2022/02/28 10:53:18 [DEBUG] 621c5c461d000094614fb920: Beginning Read +2022/02/28 10:53:18 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:18 [DEBUG] Begin Injection +2022/02/28 10:53:18 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:18 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 10:53:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376a00 160 [] false false map[] 0xc000c80d00 0xc0000f8420} +2022/02/28 10:53:18 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5c461b00003f07fd0c06","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:18 [DEBUG] Exit from do method +2022/02/28 10:53:18 [DEBUG] 621c5c461b00003f07fd0c06: Creation finished successfully +2022/02/28 10:53:18 [DEBUG] 621c5c461b00003f07fd0c06: Beginning Read +2022/02/28 10:53:18 id: 621c5c461b00003f07fd0c06 +2022/02/28 10:53:18 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:18 [DEBUG] Begin Injection +2022/02/28 10:53:18 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8580 400 [] false false map[] 0xc0004c6000 0xc0000f8420} +2022/02/28 10:53:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 10:53:19 [DEBUG] Exit from do method +2022/02/28 10:53:19 [DEBUG] 621c5c461d000094614fb920: Read finished successfully +2022/02/28 10:53:19 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 10:53:19 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 10:53:19 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:19 [DEBUG] Begin Injection +2022/02/28 10:53:19 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376800 160 [] false false map[] 0xc000c81100 0xc0000f86e0} +2022/02/28 10:53:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 {"id":"621c5c461b00003f07fd0c06","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:19 [DEBUG] Exit from do method +2022/02/28 10:53:19 [DEBUG] 621c5c461b00003f07fd0c06: Read finished successfully +2022/02/28 10:53:19 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c80600 0xc0000f8420} +2022/02/28 10:53:19 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:19 [DEBUG] acctest_stwqz: Creation finished successfully +2022/02/28 10:53:19 [DEBUG] acctest_stwqz: Beginning Read +2022/02/28 10:53:19 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:19 [DEBUG] Begin Injection +2022/02/28 10:53:19 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376d80 768 [] false false map[] 0xc000a7a700 0xc0004ce4d0} +2022/02/28 10:53:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 10:53:19 [DEBUG] Exit from do method +2022/02/28 10:53:19 currentvrfname acctest_stwqz +2022/02/28 10:53:19 found correct vrfname +2022/02/28 10:53:19 [DEBUG] acctest_stwqz: Read finished successfully +2022/02/28 10:53:19 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 10:53:19 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 10:53:19 [DEBUG] Template BD: Beginning Creation +2022/02/28 10:53:19 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:19 [DEBUG] Begin Injection +2022/02/28 10:53:19 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:20 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004c6f00 0xc0004ce630} +2022/02/28 10:53:20 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:20 [DEBUG] : Beginning Read +2022/02/28 10:53:20 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:20 [DEBUG] Begin Injection +2022/02/28 10:53:20 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b5da40 1277 [] false false map[] 0xc00017e000 0xc0004ce630} +2022/02/28 10:53:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 10:53:20 [DEBUG] Exit from do method +2022/02/28 10:53:20 [DEBUG] acctest_stwqz: Read finished successfully +2022/02/28 10:53:20 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 10:53:20 [DEBUG] Template BD: Beginning Creation +2022/02/28 10:53:20 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:20 [DEBUG] Begin Injection +2022/02/28 10:53:20 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:20 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c81500 0xc0004ce630} +2022/02/28 10:53:20 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:20 [DEBUG] Creation Complete +2022/02/28 10:53:20 [DEBUG] : Beginning Read +2022/02/28 10:53:20 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:20 [DEBUG] Begin Injection +2022/02/28 10:53:20 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6f80 1362 [] false false map[] 0xc000c81700 0xc0004ce630} +2022/02/28 10:53:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:53:21 [DEBUG] Exit from do method +2022/02/28 10:53:21 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Read finished successfully +2022/02/28 10:53:21 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:21 [DEBUG] New state was assigned lineage "9c194632-a21b-6cbf-6f9e-11a67787933b" +2022/02/28 10:53:21 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:21 [DEBUG] Begin Injection +2022/02/28 10:53:21 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6440 1362 [] false false map[] 0xc000a7a700 0xc0004ce630} +2022/02/28 10:53:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:53:21 [DEBUG] Exit from do method +2022/02/28 10:53:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:53:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:21 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:53:21 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:21 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:53:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 10:53:21 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:21 [DEBUG] : Beginning Read +2022/02/28 10:53:21 HTTP request GET mso/api/v1/tenants +2022/02/28 10:53:21 [DEBUG] Begin Injection +2022/02/28 10:53:21 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 10:53:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:53:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:53:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000df0040 5563 [] false false map[] 0xc000290200 0xc0004ce630} +2022/02/28 10:53:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 10:53:21 [DEBUG] Exit from do method +2022/02/28 10:53:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:21 [DEBUG] 621c5c461d000094614fb920: Beginning Read +2022/02/28 10:53:21 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:21 [DEBUG] 621c5c461b00003f07fd0c06: Beginning Read +2022/02/28 10:53:21 id: 621c5c461b00003f07fd0c06 +2022/02/28 10:53:21 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:21 [DEBUG] Begin Injection +2022/02/28 10:53:21 [DEBUG] Begin Injection +2022/02/28 10:53:21 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00096c5c0 160 [] false false map[] 0xc000290800 0xc0000f86e0} +2022/02/28 10:53:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 {"id":"621c5c461b00003f07fd0c06","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:22 [DEBUG] Exit from do method +2022/02/28 10:53:22 [DEBUG] 621c5c461b00003f07fd0c06: Read finished successfully +2022/02/28 10:53:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6440 1362 [] false false map[] 0xc000e10a00 0xc0004ce630} +2022/02/28 10:53:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:53:22 [DEBUG] Exit from do method +2022/02/28 10:53:22 [DEBUG] 621c5c461d000094614fb920: Read finished successfully +2022/02/28 10:53:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:22 [DEBUG] acctest_stwqz: Beginning Read +2022/02/28 10:53:22 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:22 [DEBUG] Begin Injection +2022/02/28 10:53:22 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00096cac0 1362 [] false false map[] 0xc00017e500 0xc0004ce630} +2022/02/28 10:53:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:53:22 [DEBUG] Exit from do method +2022/02/28 10:53:22 currentvrfname acctest_stwqz +2022/02/28 10:53:22 found correct vrfname +2022/02/28 10:53:22 [DEBUG] acctest_stwqz: Read finished successfully +2022/02/28 10:53:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:53:22 [DEBUG] acctest_stwqz: Beginning Read +2022/02/28 10:53:22 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:22 [DEBUG] Begin Injection +2022/02/28 10:53:22 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00096de00 1362 [] false false map[] 0xc000e11000 0xc0004ce630} +2022/02/28 10:53:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:53:22 [DEBUG] Exit from do method +2022/02/28 10:53:22 [DEBUG] acctest_stwqz: Read finished successfully +2022/02/28 10:53:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:53:22 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Beginning Read +2022/02/28 10:53:22 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:22 [DEBUG] Begin Injection +2022/02/28 10:53:22 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00062d9c0 1362 [] false false map[] 0xc000290c00 0xc0004ce630} +2022/02/28 10:53:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:53:23 [DEBUG] Exit from do method +2022/02/28 10:53:23 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Read finished successfully +2022/02/28 10:53:23 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:23 [DEBUG] New state was assigned lineage "2ed3ff46-1133-c7f9-4e25-7565055cf40f" +2022/02/28 10:53:23 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:53:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 10:53:23 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:53:23 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:23 [DEBUG] Test: Executing step 5 +2022/02/28 10:53:23 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:23 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:53:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:23 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:53:23 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:23 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:53:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:23 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:23 [DEBUG] : Beginning Read +2022/02/28 10:53:23 HTTP request GET mso/api/v1/tenants +2022/02/28 10:53:23 [DEBUG] Begin Injection +2022/02/28 10:53:23 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 10:53:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:53:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:53:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008564c0 5563 [] false false map[] 0xc000290600 0xc0004ce630} +2022/02/28 10:53:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 10:53:23 [DEBUG] Exit from do method +2022/02/28 10:53:23 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:23 [DEBUG] 621c5c461d000094614fb920: Beginning Read +2022/02/28 10:53:23 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:23 [DEBUG] Begin Injection +2022/02/28 10:53:23 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:23 [DEBUG] 621c5c461b00003f07fd0c06: Beginning Read +2022/02/28 10:53:23 id: 621c5c461b00003f07fd0c06 +2022/02/28 10:53:23 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:23 [DEBUG] Begin Injection +2022/02/28 10:53:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377940 1362 [] false false map[] 0xc00017e700 0xc0000f86e0} +2022/02/28 10:53:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:53:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000630980 160 [] false false map[] 0xc000a7a500 0xc0004ce630} +2022/02/28 10:53:23 [DEBUG] Exit from do method +2022/02/28 10:53:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 {"id":"621c5c461b00003f07fd0c06","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:23 [DEBUG] Exit from do method +2022/02/28 10:53:23 [DEBUG] 621c5c461d000094614fb920: Read finished successfully +2022/02/28 10:53:23 [DEBUG] 621c5c461b00003f07fd0c06: Read finished successfully +2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:23 [DEBUG] acctest_stwqz: Beginning Read +2022/02/28 10:53:23 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:23 [DEBUG] Begin Injection +2022/02/28 10:53:23 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377f40 1362 [] false false map[] 0xc00085c300 0xc0004ce630} +2022/02/28 10:53:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:53:24 [DEBUG] Exit from do method +2022/02/28 10:53:24 currentvrfname acctest_stwqz +2022/02/28 10:53:24 found correct vrfname +2022/02/28 10:53:24 [DEBUG] acctest_stwqz: Read finished successfully +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:53:24 [DEBUG] acctest_stwqz: Beginning Read +2022/02/28 10:53:24 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:24 [DEBUG] Begin Injection +2022/02/28 10:53:24 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00083e0c0 1362 [] false false map[] 0xc00085c700 0xc0004ce630} +2022/02/28 10:53:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:53:24 [DEBUG] Exit from do method +2022/02/28 10:53:24 [DEBUG] acctest_stwqz: Read finished successfully +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:53:24 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Beginning Read +2022/02/28 10:53:24 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:24 [DEBUG] Begin Injection +2022/02/28 10:53:24 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000630100 1362 [] false false map[] 0xc000290300 0xc0004ce630} +2022/02/28 10:53:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:53:24 [DEBUG] Exit from do method +2022/02/28 10:53:24 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Read finished successfully +2022/02/28 10:53:24 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:24 [DEBUG] New state was assigned lineage "5589f1a7-834c-775d-679e-d8a0e4fe7f5c" +2022/02/28 10:53:24 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:53:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:53:24 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:53:24 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:24 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c5c461b00003f07fd0c06" => "" + name: "acctest_stwqz" => "acctest_66t8l" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + dhcp_policy.name: "acctest_stwqz" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_stwqz" => "acctest_66t8l" (forces new resource) + id: "acctest_stwqz" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_stwqz" => "acctest_66t8l" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c5c461d000094614fb920" => "621c5c461d000094614fb920" + template_name: "acctest_gwbkp" => "acctest_gwbkp" + vrf_name: "acctest_stwqz" => "acctest_66t8l" + vrf_schema_id: "621c5c461d000094614fb920" => "" + vrf_template_name: "acctest_gwbkp" => "" +DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_stwqz" => "acctest_66t8l" (forces new resource) + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz" => "" + name: "acctest_stwqz" => "acctest_66t8l" (forces new resource) + schema_id: "621c5c461d000094614fb920" => "621c5c461d000094614fb920" + template_name: "acctest_gwbkp" => "acctest_gwbkp" + version: "0" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_stwqz" => "acctest_66t8l" + id: "acctest_stwqz" => "" + layer3_multicast: "false" => "" + name: "acctest_stwqz" => "acctest_66t8l" (forces new resource) + schema_id: "621c5c461d000094614fb920" => "621c5c461d000094614fb920" + template: "acctest_gwbkp" => "acctest_gwbkp" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c5c461b00003f07fd0c06 + provider = provider.mso + description = + name = acctest_stwqz + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5c461d000094614fb920 + provider = provider.mso + name = acctest_gwbkp + template_name = acctest_gwbkp + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_stwqz + provider = provider.mso + dhcp_policy.name = acctest_stwqz + dhcp_policy.version = 0 + display_name = acctest_stwqz + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_stwqz + schema_id = 621c5c461d000094614fb920 + template_name = acctest_gwbkp + vrf_name = acctest_stwqz + vrf_schema_id = 621c5c461d000094614fb920 + vrf_template_name = acctest_gwbkp + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz + provider = provider.mso + bd_name = acctest_stwqz + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_stwqz + schema_id = 621c5c461d000094614fb920 + template_name = acctest_gwbkp + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_stwqz + provider = provider.mso + display_name = acctest_stwqz + layer3_multicast = false + name = acctest_stwqz + schema_id = 621c5c461d000094614fb920 + template = acctest_gwbkp + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 10:53:24 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 10:53:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 10:53:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:53:24 [DEBUG] Starting graph walk: walkApply +2022/02/28 10:53:24 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 10:53:24 [DEBUG] Template BD: Beginning Update +2022/02/28 10:53:24 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:24 [DEBUG] Begin Injection +2022/02/28 10:53:24 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a7a500 0xc0004ce630} +2022/02/28 10:53:25 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 10:53:25 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 10:53:25 [DEBUG] 621c5c461b00003f07fd0c06: Beginning Read +2022/02/28 10:53:25 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:25 [DEBUG] Begin Injection +2022/02/28 10:53:25 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:25 [DEBUG] Template BD: Beginning Update +2022/02/28 10:53:25 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 [DEBUG] Begin Injection +2022/02/28 10:53:25 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00069a500 0xc0004ce630} +2022/02/28 10:53:25 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 +2022/02/28 10:53:25 [DEBUG] : Read finished successfully +2022/02/28 10:53:25 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 10:53:25 [DEBUG] : Beginning Create +2022/02/28 10:53:25 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 10:53:25 [DEBUG] Begin Injection +2022/02/28 10:53:25 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 10:53:25 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw] Content-Type:[application/json]] {{"desc":"","name":"acctest_66t8l","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x847ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 10:53:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 10:53:25 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005e2100 0xc0000f86e0} +2022/02/28 10:53:25 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 10:53:25 [DEBUG] acctest_stwqz: Beginning Destroy +2022/02/28 10:53:25 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 [DEBUG] Begin Injection +2022/02/28 10:53:25 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005e2a00 0xc0000f86e0} +2022/02/28 10:53:25 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 [DEBUG] acctest_stwqz: Destroy finished successfully +2022/02/28 10:53:25 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 10:53:25 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 10:53:25 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 [DEBUG] Begin Injection +2022/02/28 10:53:25 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:25 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 10:53:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca9600 160 [] false false map[] 0xc00069aa00 0xc0004ce630} +2022/02/28 10:53:25 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5c4d1b00003f07fd0c07","name":"acctest_66t8l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:25 [DEBUG] Exit from do method +2022/02/28 10:53:25 [DEBUG] 621c5c4d1b00003f07fd0c07: Creation finished successfully +2022/02/28 10:53:25 [DEBUG] 621c5c4d1b00003f07fd0c07: Beginning Read +2022/02/28 10:53:25 id: 621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:25 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:25 [DEBUG] Begin Injection +2022/02/28 10:53:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006300c0 160 [] false false map[] 0xc000290800 0xc0004ce630} +2022/02/28 10:53:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 {"id":"621c5c4d1b00003f07fd0c07","name":"acctest_66t8l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:26 [DEBUG] Exit from do method +2022/02/28 10:53:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:26 [DEBUG] 621c5c4d1b00003f07fd0c07: Read finished successfully +2022/02/28 10:53:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000290600 0xc0000f86e0} +2022/02/28 10:53:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:26 [DEBUG] acctest_66t8l: Creation finished successfully +2022/02/28 10:53:26 [DEBUG] acctest_66t8l: Beginning Read +2022/02/28 10:53:26 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:26 [DEBUG] Begin Injection +2022/02/28 10:53:26 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376840 768 [] false false map[] 0xc000290900 0xc0000f86e0} +2022/02/28 10:53:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":8}],"_updateVersion":0} +2022/02/28 10:53:26 [DEBUG] Exit from do method +2022/02/28 10:53:26 currentvrfname acctest_66t8l +2022/02/28 10:53:26 found correct vrfname +2022/02/28 10:53:26 [DEBUG] acctest_66t8l: Read finished successfully +2022/02/28 10:53:26 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 10:53:26 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 10:53:26 [DEBUG] Template BD: Beginning Creation +2022/02/28 10:53:26 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:26 [DEBUG] Begin Injection +2022/02/28 10:53:26 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000291200 0xc0000f86e0} +2022/02/28 10:53:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:26 [DEBUG] : Beginning Read +2022/02/28 10:53:26 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:26 [DEBUG] Begin Injection +2022/02/28 10:53:26 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d7d740 1277 [] false false map[] 0xc00069a000 0xc0000f86e0} +2022/02/28 10:53:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 10:53:27 [DEBUG] Exit from do method +2022/02/28 10:53:27 [DEBUG] acctest_66t8l: Read finished successfully +2022/02/28 10:53:27 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 10:53:27 [DEBUG] Template BD: Beginning Creation +2022/02/28 10:53:27 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:27 [DEBUG] Begin Injection +2022/02/28 10:53:27 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:28 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00069ab00 0xc0000f86e0} +2022/02/28 10:53:28 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:28 [DEBUG] Creation Complete +2022/02/28 10:53:28 [DEBUG] : Beginning Read +2022/02/28 10:53:28 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:28 [DEBUG] Begin Injection +2022/02/28 10:53:28 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d7d8c0 1363 [] false false map[] 0xc000291400 0xc0000f86e0} +2022/02/28 10:53:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:53:28 [DEBUG] Exit from do method +2022/02/28 10:53:28 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l: Read finished successfully +2022/02/28 10:53:28 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:28 [DEBUG] New state was assigned lineage "4de98b1a-f05e-4706-dc91-6f94b7df98b3" +2022/02/28 10:53:28 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:28 [DEBUG] Begin Injection +2022/02/28 10:53:28 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000418580 1363 [] false false map[] 0xc000290000 0xc0000f86e0} +2022/02/28 10:53:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:53:28 [DEBUG] Exit from do method +2022/02/28 10:53:28 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:53:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:28 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:53:28 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:28 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:53:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:28 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:28 [DEBUG] : Beginning Read +2022/02/28 10:53:28 HTTP request GET mso/api/v1/tenants +2022/02/28 10:53:28 [DEBUG] Begin Injection +2022/02/28 10:53:28 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 10:53:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:53:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:53:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00083f200 5563 [] false false map[] 0xc000dac400 0xc0000f86e0} +2022/02/28 10:53:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 10:53:29 [DEBUG] Exit from do method +2022/02/28 10:53:29 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 10:53:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:29 [DEBUG] 621c5c461d000094614fb920: Beginning Read +2022/02/28 10:53:29 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:29 [DEBUG] Begin Injection +2022/02/28 10:53:29 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:29 [DEBUG] 621c5c4d1b00003f07fd0c07: Beginning Read +2022/02/28 10:53:29 id: 621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:29 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:29 [DEBUG] Begin Injection +2022/02/28 10:53:29 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8240 160 [] false false map[] 0xc000dac700 0xc0004ce630} +2022/02/28 10:53:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 {"id":"621c5c4d1b00003f07fd0c07","name":"acctest_66t8l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:29 [DEBUG] Exit from do method +2022/02/28 10:53:29 [DEBUG] 621c5c4d1b00003f07fd0c07: Read finished successfully +2022/02/28 10:53:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8300 1363 [] false false map[] 0xc00111e800 0xc0000f86e0} +2022/02/28 10:53:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:53:29 [DEBUG] Exit from do method +2022/02/28 10:53:29 [DEBUG] 621c5c461d000094614fb920: Read finished successfully +2022/02/28 10:53:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:29 [DEBUG] acctest_66t8l: Beginning Read +2022/02/28 10:53:29 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:29 [DEBUG] Begin Injection +2022/02/28 10:53:29 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8840 1363 [] false false map[] 0xc000dacc00 0xc0000f86e0} +2022/02/28 10:53:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:53:29 [DEBUG] Exit from do method +2022/02/28 10:53:29 currentvrfname acctest_66t8l +2022/02/28 10:53:29 found correct vrfname +2022/02/28 10:53:29 [DEBUG] acctest_66t8l: Read finished successfully +2022/02/28 10:53:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:53:29 [DEBUG] acctest_66t8l: Beginning Read +2022/02/28 10:53:29 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:29 [DEBUG] Begin Injection +2022/02/28 10:53:29 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000856040 1363 [] false false map[] 0xc000a7a700 0xc0000f86e0} +2022/02/28 10:53:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:53:30 [DEBUG] Exit from do method +2022/02/28 10:53:30 [DEBUG] acctest_66t8l: Read finished successfully +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:53:30 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l: Beginning Read +2022/02/28 10:53:30 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:30 [DEBUG] Begin Injection +2022/02/28 10:53:30 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005321c0 1363 [] false false map[] 0xc00111e400 0xc0000f86e0} +2022/02/28 10:53:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:53:30 [DEBUG] Exit from do method +2022/02/28 10:53:30 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l: Read finished successfully +2022/02/28 10:53:30 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:30 [DEBUG] New state was assigned lineage "68b2200f-bc11-eca2-1ece-fb97bdabefd2" +2022/02/28 10:53:30 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:53:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:30 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:53:30 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:30 [DEBUG] Test: Executing step 6 +2022/02/28 10:53:30 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:30 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:53:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 10:53:30 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:53:30 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:30 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:53:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:30 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:30 [DEBUG] : Beginning Read +2022/02/28 10:53:30 HTTP request GET mso/api/v1/tenants +2022/02/28 10:53:30 [DEBUG] Begin Injection +2022/02/28 10:53:30 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 10:53:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:53:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:53:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6200 5563 [] false false map[] 0xc000a7a300 0xc0000f86e0} +2022/02/28 10:53:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 10:53:30 [DEBUG] Exit from do method +2022/02/28 10:53:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 10:53:30 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:30 [DEBUG] 621c5c461d000094614fb920: Beginning Read +2022/02/28 10:53:30 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:30 [DEBUG] Begin Injection +2022/02/28 10:53:30 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:30 [DEBUG] 621c5c4d1b00003f07fd0c07: Beginning Read +2022/02/28 10:53:30 id: 621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:30 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:30 [DEBUG] Begin Injection +2022/02/28 10:53:30 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000418a00 1363 [] false false map[] 0xc0006c4400 0xc0000f86e0} +2022/02/28 10:53:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:53:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377480 160 [] false false map[] 0xc0005e4300 0xc0004ce630} +2022/02/28 10:53:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 {"id":"621c5c4d1b00003f07fd0c07","name":"acctest_66t8l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:31 [DEBUG] Exit from do method +2022/02/28 10:53:31 [DEBUG] Exit from do method +2022/02/28 10:53:31 [DEBUG] 621c5c4d1b00003f07fd0c07: Read finished successfully +2022/02/28 10:53:31 [DEBUG] 621c5c461d000094614fb920: Read finished successfully +2022/02/28 10:53:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:31 [DEBUG] acctest_66t8l: Beginning Read +2022/02/28 10:53:31 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:31 [DEBUG] Begin Injection +2022/02/28 10:53:31 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000532b80 1363 [] false false map[] 0xc000290a00 0xc0004ce630} +2022/02/28 10:53:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:53:31 [DEBUG] Exit from do method +2022/02/28 10:53:31 currentvrfname acctest_66t8l +2022/02/28 10:53:31 found correct vrfname +2022/02/28 10:53:31 [DEBUG] acctest_66t8l: Read finished successfully +2022/02/28 10:53:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:53:31 [DEBUG] acctest_66t8l: Beginning Read +2022/02/28 10:53:31 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:31 [DEBUG] Begin Injection +2022/02/28 10:53:31 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000856040 1363 [] false false map[] 0xc00017e600 0xc0004ce630} +2022/02/28 10:53:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:53:31 [DEBUG] Exit from do method +2022/02/28 10:53:31 [DEBUG] acctest_66t8l: Read finished successfully +2022/02/28 10:53:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:53:31 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l: Beginning Read +2022/02/28 10:53:31 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:31 [DEBUG] Begin Injection +2022/02/28 10:53:31 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000857a80 1363 [] false false map[] 0xc000a7a500 0xc0004ce630} +2022/02/28 10:53:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:53:32 [DEBUG] Exit from do method +2022/02/28 10:53:32 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l: Read finished successfully +2022/02/28 10:53:32 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:32 [DEBUG] New state was assigned lineage "a7187cf3-8821-94a8-8364-2840bd437203" +2022/02/28 10:53:32 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:53:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:32 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:32 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:53:32 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:32 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.example + description: "" => "" + id: "" => "" + name: "" => "acctest_ymm0p" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c5c4d1b00003f07fd0c07" => "" + name: "acctest_66t8l" => "acctest_stwqz" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + dhcp_policy.name: "acctest_66t8l" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_66t8l" => "acctest_stwqz" (forces new resource) + id: "acctest_66t8l" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_66t8l" => "acctest_stwqz" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c5c461d000094614fb920" => "621c5c461d000094614fb920" + template_name: "acctest_gwbkp" => "acctest_gwbkp" + vrf_name: "acctest_66t8l" => "acctest_stwqz" + vrf_schema_id: "621c5c461d000094614fb920" => "" + vrf_template_name: "acctest_gwbkp" => "" +DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_66t8l" => "acctest_stwqz" (forces new resource) + dhcp_option_name: "" => "acctest_ymm0p" + dhcp_option_version: "0" => "1" + id: "/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l" => "" + name: "acctest_66t8l" => "acctest_stwqz" (forces new resource) + schema_id: "621c5c461d000094614fb920" => "621c5c461d000094614fb920" + template_name: "acctest_gwbkp" => "acctest_gwbkp" + version: "0" => "1" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_66t8l" => "acctest_stwqz" + id: "acctest_66t8l" => "" + layer3_multicast: "false" => "" + name: "acctest_66t8l" => "acctest_stwqz" (forces new resource) + schema_id: "621c5c461d000094614fb920" => "621c5c461d000094614fb920" + template: "acctest_gwbkp" => "acctest_gwbkp" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c5c4d1b00003f07fd0c07 + provider = provider.mso + description = + name = acctest_66t8l + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5c461d000094614fb920 + provider = provider.mso + name = acctest_gwbkp + template_name = acctest_gwbkp + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_66t8l + provider = provider.mso + dhcp_policy.name = acctest_66t8l + dhcp_policy.version = 0 + display_name = acctest_66t8l + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_66t8l + schema_id = 621c5c461d000094614fb920 + template_name = acctest_gwbkp + vrf_name = acctest_66t8l + vrf_schema_id = 621c5c461d000094614fb920 + vrf_template_name = acctest_gwbkp + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l + provider = provider.mso + bd_name = acctest_66t8l + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_66t8l + schema_id = 621c5c461d000094614fb920 + template_name = acctest_gwbkp + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_66t8l + provider = provider.mso + display_name = acctest_66t8l + layer3_multicast = false + name = acctest_66t8l + schema_id = 621c5c461d000094614fb920 + template = acctest_gwbkp + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 10:53:32 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 10:53:32 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 10:53:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (prepare state)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example (prepare state) mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test (prepare state)] +2022/02/28 10:53:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 10:53:32 [DEBUG] Starting graph walk: walkApply +2022/02/28 10:53:32 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 10:53:32 [DEBUG] Template BD: Beginning Update +2022/02/28 10:53:32 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:32 [DEBUG] Begin Injection +2022/02/28 10:53:32 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:32 [DEBUG] mso_dhcp_option_policy.example: applying the planned Create change +2022/02/28 10:53:32 [DEBUG] : Beginning Create +2022/02/28 10:53:32 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 10:53:32 [DEBUG] Begin Injection +2022/02/28 10:53:32 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 10:53:32 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_ymm0p","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x847ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 10:53:32 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017f000 0xc0004ce630} +2022/02/28 10:53:32 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:32 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 10:53:32 [DEBUG] 621c5c4d1b00003f07fd0c07: Beginning Read +2022/02/28 10:53:32 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:32 [DEBUG] Begin Injection +2022/02/28 10:53:32 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:32 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 10:53:32 [DEBUG] Template BD: Beginning Update +2022/02/28 10:53:32 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:32 [DEBUG] Begin Injection +2022/02/28 10:53:32 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:32 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 10:53:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d08040 161 [] false false map[] 0xc001060a00 0xc0000f86e0} +2022/02/28 10:53:32 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c5c541b00004207fd0c08","name":"acctest_ymm0p","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:32 [DEBUG] Exit from do method +2022/02/28 10:53:32 [DEBUG] 621c5c541b00004207fd0c08: Creation finished successfully +2022/02/28 10:53:32 [DEBUG] 621c5c541b00004207fd0c08: Beginning Read +2022/02/28 10:53:32 id: 621c5c541b00004207fd0c08 +2022/02/28 10:53:32 HTTP request GET mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:32 [DEBUG] Begin Injection +2022/02/28 10:53:32 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:32 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001061200 0xc0004ce630} +2022/02/28 10:53:32 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 +2022/02/28 10:53:32 [DEBUG] : Read finished successfully +2022/02/28 10:53:32 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 10:53:32 [DEBUG] : Beginning Create +2022/02/28 10:53:32 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 10:53:32 [DEBUG] Begin Injection +2022/02/28 10:53:32 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 10:53:32 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw] Content-Type:[application/json]] {{"desc":"","name":"acctest_stwqz","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x847ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 10:53:32 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a7a200 0xc0000f86e0} +2022/02/28 10:53:32 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:32 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 10:53:32 [DEBUG] acctest_66t8l: Beginning Destroy +2022/02/28 10:53:32 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:32 [DEBUG] Begin Injection +2022/02/28 10:53:32 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6200 161 [] false false map[] 0xc000c8a000 0xc0004ce630} +2022/02/28 10:53:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 {"id":"621c5c541b00004207fd0c08","name":"acctest_ymm0p","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:33 [DEBUG] Exit from do method +2022/02/28 10:53:33 [DEBUG] 621c5c541b00004207fd0c08: Read finished successfully +2022/02/28 10:53:33 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 10:53:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d08040 160 [] false false map[] 0xc000c8ab00 0xc0000f86e0} +2022/02/28 10:53:33 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5c551b00003e07fd0c09","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:33 [DEBUG] Exit from do method +2022/02/28 10:53:33 [DEBUG] 621c5c551b00003e07fd0c09: Creation finished successfully +2022/02/28 10:53:33 [DEBUG] 621c5c551b00003e07fd0c09: Beginning Read +2022/02/28 10:53:33 id: 621c5c551b00003e07fd0c09 +2022/02/28 10:53:33 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:33 [DEBUG] Begin Injection +2022/02/28 10:53:33 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:33 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001060500 0xc0004ce630} +2022/02/28 10:53:33 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:33 [DEBUG] acctest_66t8l: Destroy finished successfully +2022/02/28 10:53:33 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 10:53:33 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 10:53:33 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:33 [DEBUG] Begin Injection +2022/02/28 10:53:33 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d08800 160 [] false false map[] 0xc000c8a000 0xc0000f86e0} +2022/02/28 10:53:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 {"id":"621c5c551b00003e07fd0c09","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:33 [DEBUG] Exit from do method +2022/02/28 10:53:33 [DEBUG] 621c5c551b00003e07fd0c09: Read finished successfully +2022/02/28 10:53:33 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a7a600 0xc0008544d0} +2022/02/28 10:53:33 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:33 [DEBUG] acctest_stwqz: Creation finished successfully +2022/02/28 10:53:33 [DEBUG] acctest_stwqz: Beginning Read +2022/02/28 10:53:33 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:33 [DEBUG] Begin Injection +2022/02/28 10:53:33 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[769] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000532240 769 [] false false map[] 0xc000b5c400 0xc0000f86e0} +2022/02/28 10:53:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":14}],"_updateVersion":0} +2022/02/28 10:53:34 [DEBUG] Exit from do method +2022/02/28 10:53:34 currentvrfname acctest_stwqz +2022/02/28 10:53:34 found correct vrfname +2022/02/28 10:53:34 [DEBUG] acctest_stwqz: Read finished successfully +2022/02/28 10:53:34 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 10:53:34 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 10:53:34 [DEBUG] Template BD: Beginning Creation +2022/02/28 10:53:34 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:34 [DEBUG] Begin Injection +2022/02/28 10:53:34 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:34 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c8aa00 0xc0000f86e0} +2022/02/28 10:53:34 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:34 [DEBUG] : Beginning Read +2022/02/28 10:53:34 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:34 [DEBUG] Begin Injection +2022/02/28 10:53:34 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000856200 1278 [] false false map[] 0xc001060700 0xc0000f86e0} +2022/02/28 10:53:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":15}],"_updateVersion":0} +2022/02/28 10:53:34 [DEBUG] Exit from do method +2022/02/28 10:53:34 [DEBUG] acctest_stwqz: Read finished successfully +2022/02/28 10:53:34 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 10:53:34 [DEBUG] Template BD: Beginning Creation +2022/02/28 10:53:34 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:34 [DEBUG] Begin Injection +2022/02/28 10:53:34 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:35 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c8a200 0xc0000f86e0} +2022/02/28 10:53:35 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:35 [DEBUG] Creation Complete +2022/02/28 10:53:35 [DEBUG] : Beginning Read +2022/02/28 10:53:35 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:35 [DEBUG] Begin Injection +2022/02/28 10:53:35 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8280 1473 [] false false map[] 0xc000c8a400 0xc0000f86e0} +2022/02/28 10:53:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} +2022/02/28 10:53:35 [DEBUG] Exit from do method +2022/02/28 10:53:35 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Read finished successfully +2022/02/28 10:53:35 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:35 [DEBUG] New state was assigned lineage "db8ab40a-c714-6963-dd9f-e62910a3d35e" +2022/02/28 10:53:35 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:35 [DEBUG] Begin Injection +2022/02/28 10:53:35 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8a00 1473 [] false false map[] 0xc000a7a200 0xc0000f86e0} +2022/02/28 10:53:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} +2022/02/28 10:53:35 [DEBUG] Exit from do method +2022/02/28 10:53:35 [WARN] Test: Executing destroy step +2022/02/28 10:53:35 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:35 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 10:53:35 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:53:35 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:35 [WARN] Not fixing up EachModes for data.mso_tenant.test because it has no config +2022/02/28 10:53:35 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config +2022/02/28 10:53:35 [WARN] Not fixing up EachModes for mso_dhcp_relay_policy.test because it has no config +2022/02/28 10:53:35 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/28 10:53:35 [WARN] Not fixing up EachModes for mso_schema_template_bd.test because it has no config +2022/02/28 10:53:35 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config +2022/02/28 10:53:35 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/28 10:53:35 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 10:53:35 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:53:35 [DEBUG] 621c5c541b00004207fd0c08: Beginning Read +2022/02/28 10:53:35 id: 621c5c541b00004207fd0c08 +2022/02/28 10:53:35 [DEBUG] 621c5c461d000094614fb920: Beginning Read +2022/02/28 10:53:35 HTTP request GET mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:35 [DEBUG] Begin Injection +2022/02/28 10:53:35 [DEBUG] 621c5c551b00003e07fd0c09: Beginning Read +2022/02/28 10:53:35 id: 621c5c551b00003e07fd0c09 +2022/02/28 10:53:35 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:35 [DEBUG] Begin Injection +2022/02/28 10:53:35 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:35 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:35 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:35 [DEBUG] Begin Injection +2022/02/28 10:53:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f57400 1473 [] false false map[] 0xc001368400 0xc000f72160} +2022/02/28 10:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} +2022/02/28 10:53:36 [DEBUG] Exit from do method +2022/02/28 10:53:36 [DEBUG] 621c5c461d000094614fb920: Read finished successfully +2022/02/28 10:53:36 [DEBUG] acctest_stwqz: Beginning Read +2022/02/28 10:53:36 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:36 [DEBUG] Begin Injection +2022/02/28 10:53:36 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d08f80 161 [] false false map[] 0xc000c8ad00 0xc0000f86e0} +2022/02/28 10:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 {"id":"621c5c541b00004207fd0c08","name":"acctest_ymm0p","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:36 [DEBUG] Exit from do method +2022/02/28 10:53:36 [DEBUG] 621c5c541b00004207fd0c08: Read finished successfully +2022/02/28 10:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00083e080 160 [] false false map[] 0xc000732500 0xc000f72160} +2022/02/28 10:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 {"id":"621c5c551b00003e07fd0c09","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:53:36 [DEBUG] Exit from do method +2022/02/28 10:53:36 [DEBUG] 621c5c551b00003e07fd0c09: Read finished successfully +2022/02/28 10:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d09540 1473 [] false false map[] 0xc000732700 0xc0000f86e0} +2022/02/28 10:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} +2022/02/28 10:53:36 [DEBUG] Exit from do method +2022/02/28 10:53:36 currentvrfname acctest_stwqz +2022/02/28 10:53:36 found correct vrfname +2022/02/28 10:53:36 [DEBUG] acctest_stwqz: Read finished successfully +2022/02/28 10:53:36 [DEBUG] acctest_stwqz: Beginning Read +2022/02/28 10:53:36 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:36 [DEBUG] Begin Injection +2022/02/28 10:53:36 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d09c00 1473 [] false false map[] 0xc000a7a500 0xc0000f86e0} +2022/02/28 10:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} +2022/02/28 10:53:36 [DEBUG] Exit from do method +2022/02/28 10:53:36 [DEBUG] acctest_stwqz: Read finished successfully +2022/02/28 10:53:36 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Beginning Read +2022/02/28 10:53:36 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:36 [DEBUG] Begin Injection +2022/02/28 10:53:36 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d09cc0 1473 [] false false map[] 0xc00017e500 0xc000f72000} +2022/02/28 10:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} +2022/02/28 10:53:37 [DEBUG] Exit from do method +2022/02/28 10:53:37 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Read finished successfully +2022/02/28 10:53:37 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:37 [DEBUG] New state was assigned lineage "88036662-c928-645b-6109-3518f56c32f3" +2022/02/28 10:53:37 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 10:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:37 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 10:53:37 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.example + description: "" => "" + id: "621c5c541b00004207fd0c08" => "" + name: "acctest_ymm0p" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c5c551b00003e07fd0c09" => "" + name: "acctest_stwqz" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c5c461d000094614fb920" => "" + name: "acctest_gwbkp" => "" + template_name: "acctest_gwbkp" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.dhcp_option_policy_name: "acctest_ymm0p" => "" + dhcp_policy.dhcp_option_policy_version: "1" => "" + dhcp_policy.name: "acctest_stwqz" => "" + dhcp_policy.version: "1" => "" + display_name: "acctest_stwqz" => "" + id: "acctest_stwqz" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_stwqz" => "" + schema_id: "621c5c461d000094614fb920" => "" + template_name: "acctest_gwbkp" => "" + vrf_name: "acctest_stwqz" => "" + vrf_schema_id: "621c5c461d000094614fb920" => "" + vrf_template_name: "acctest_gwbkp" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_stwqz" => "" + dhcp_option_name: "acctest_ymm0p" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz" => "" + name: "acctest_stwqz" => "" + schema_id: "621c5c461d000094614fb920" => "" + template_name: "acctest_gwbkp" => "" + version: "1" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_stwqz" => "" + id: "acctest_stwqz" => "" + layer3_multicast: "false" => "" + name: "acctest_stwqz" => "" + schema_id: "621c5c461d000094614fb920" => "" + template: "acctest_gwbkp" => "" + vzany: "false" => "" + + + +STATE: + +mso_dhcp_option_policy.example: + ID = 621c5c541b00004207fd0c08 + provider = provider.mso + description = + name = acctest_ymm0p + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c5c551b00003e07fd0c09 + provider = provider.mso + description = + name = acctest_stwqz + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5c461d000094614fb920 + provider = provider.mso + name = acctest_gwbkp + template_name = acctest_gwbkp + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_stwqz + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_ymm0p + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_stwqz + dhcp_policy.version = 1 + display_name = acctest_stwqz + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_stwqz + schema_id = 621c5c461d000094614fb920 + template_name = acctest_gwbkp + vrf_name = acctest_stwqz + vrf_schema_id = 621c5c461d000094614fb920 + vrf_template_name = acctest_gwbkp + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz + provider = provider.mso + bd_name = acctest_stwqz + dhcp_option_name = acctest_ymm0p + dhcp_option_version = 1 + name = acctest_stwqz + schema_id = 621c5c461d000094614fb920 + template_name = acctest_gwbkp + version = 1 + + Dependencies: + mso_dhcp_option_policy.example + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_stwqz + provider = provider.mso + display_name = acctest_stwqz + layer3_multicast = false + name = acctest_stwqz + schema_id = 621c5c461d000094614fb920 + template = acctest_gwbkp + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 10:53:37 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 10:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (clean up state)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (clean up state)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:53:37 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 10:53:37 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 10:53:37 [DEBUG] Template BD: Beginning Update +2022/02/28 10:53:37 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:37 [DEBUG] Begin Injection +2022/02/28 10:53:37 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000edf500 0xc0000f8420} +2022/02/28 10:53:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:37 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 10:53:37 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change +2022/02/28 10:53:37 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 10:53:37 [DEBUG] 621c5c551b00003e07fd0c09: Beginning Read +2022/02/28 10:53:37 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:37 [DEBUG] Begin Injection +2022/02/28 10:53:37 [DEBUG] 621c5c541b00004207fd0c08: Beginning Read +2022/02/28 10:53:37 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:37 [DEBUG] Begin Injection +2022/02/28 10:53:37 [DEBUG] Template BD: Beginning Update +2022/02/28 10:53:37 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:37 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:37 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:37 [DEBUG] Begin Injection +2022/02/28 10:53:37 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:37 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000a7a700 0xc000f72160} +2022/02/28 10:53:37 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 +2022/02/28 10:53:37 [DEBUG] : Read finished successfully +2022/02/28 10:53:37 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000c8a300 0xc0000f8420} +2022/02/28 10:53:37 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 +2022/02/28 10:53:37 [DEBUG] : Read finished successfully +2022/02/28 10:53:38 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017e700 0xc000f72160} +2022/02/28 10:53:38 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:38 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 10:53:38 [DEBUG] acctest_stwqz: Beginning Destroy +2022/02/28 10:53:38 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:38 [DEBUG] Begin Injection +2022/02/28 10:53:38 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:38 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017eb00 0xc000f72160} +2022/02/28 10:53:38 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false +2022/02/28 10:53:38 [DEBUG] acctest_stwqz: Destroy finished successfully +2022/02/28 10:53:38 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 10:53:38 [DEBUG] 621c5c461d000094614fb920: Beginning Destroy +2022/02/28 10:53:38 HTTP request DELETE mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:38 [DEBUG] Begin Injection +2022/02/28 10:53:38 HTTP request after injection DELETE mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:38 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00017e700 0xc0001362c0} +2022/02/28 10:53:38 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:38 [DEBUG] 621c5c461d000094614fb920: Destroy finished successfully +2022/02/28 10:53:38 [DEBUG] provider has no plugin.Client +2022/02/28 10:53:38 [DEBUG] New state was assigned lineage "d5accf04-6157-dc62-3210-eaef57794008" +2022/02/28 10:53:38 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:38 [DEBUG] Begin Injection +2022/02/28 10:53:38 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 +2022/02/28 10:53:39 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:38 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d08580 39 [] false false map[] 0xc000a7a200 0xc0001362c0} +2022/02/28 10:53:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"code":404,"message":"Item not found"} +2022/02/28 10:53:39 [DEBUG] Exit from do method +2022/02/28 10:53:39 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 10:53:39 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 10:53:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:53:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:53:39 [DEBUG] New state was assigned lineage "77c01ba0-74ce-b21c-c65c-e037b6d4623f" +2022/02/28 10:53:39 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 10:53:39 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 10:56:56 [DEBUG] Test: Executing step 0 +2022/02/28 10:56:57 [DEBUG] provider has no plugin.Client +2022/02/28 10:56:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:56:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:56:57 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 10:56:57 [DEBUG] Test: Executing step 1 +2022/02/28 10:56:57 [DEBUG] provider has no plugin.Client +2022/02/28 10:56:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:56:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:56:57 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 10:56:57 [DEBUG] Test: Executing step 2 +2022/02/28 10:56:57 [DEBUG] provider has no plugin.Client +2022/02/28 10:56:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:56:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:56:57 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 10:56:57 [DEBUG] Test: Executing step 3 +2022/02/28 10:56:57 [DEBUG] provider has no plugin.Client +2022/02/28 10:56:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:56:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] +2022/02/28 10:56:57 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 10:56:57 [DEBUG] Test: Executing step 4 +2022/02/28 10:56:57 [DEBUG] provider has no plugin.Client +2022/02/28 10:56:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:56:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:56:57 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:56:57 [DEBUG] provider has no plugin.Client +2022/02/28 10:56:57 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:56:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:56:57 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:56:57 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:56:57 [DEBUG] : Beginning Read +2022/02/28 10:56:57 HTTP request GET mso/api/v1/tenants +2022/02/28 10:56:57 [DEBUG] Begin Injection +2022/02/28 10:56:57 HTTP request POST /login +2022/02/28 10:56:57 HTTP request after injection POST /login +2022/02/28 10:56:57 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 10:56:58 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 10:56:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:26:58 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0000f8240 -1 [chunked] false false map[] 0xc0004ad500 0xc00097e0b0} +2022/02/28 10:56:58 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg"} +2022/02/28 10:56:58 [DEBUG] Exit from do method +2022/02/28 10:56:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 10:56:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:56:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:56:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:26:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004de00 5563 [] false false map[] 0xc0004ad400 0xc00097e0b0} +2022/02/28 10:56:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 10:56:59 [DEBUG] Exit from do method +2022/02/28 10:56:59 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 10:56:59 [DEBUG] provider has no plugin.Client +2022/02/28 10:56:59 [DEBUG] New state was assigned lineage "092c8545-dccc-cdd2-a3f3-09f93f513eb0" +2022/02/28 10:56:59 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:56:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 10:56:59 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:56:59 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:56:59 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:56:59 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:56:59 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:56:59 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:56:59 [DEBUG] provider has no plugin.Client +2022/02/28 10:56:59 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_9gd4a" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_n0ejy" + template_name: "" => "acctest_n0ejy" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_9gd4a" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_9gd4a" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_n0ejy" + vrf_name: "" => "acctest_9gd4a" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_9gd4a" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_9gd4a" + schema_id: "" => "" + template_name: "" => "acctest_n0ejy" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_9gd4a" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_9gd4a" + schema_id: "" => "" + template: "" => "acctest_n0ejy" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 10:56:59 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 10:56:59 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 10:56:59 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 10:56:59 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 10:56:59 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 10:56:59 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 10:56:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:56:59 [DEBUG] Starting graph walk: walkApply +2022/02/28 10:56:59 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 10:56:59 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 10:56:59 [DEBUG] Schema: Beginning Creation +2022/02/28 10:56:59 [DEBUG] : Beginning Create +2022/02/28 10:56:59 HTTP request POST mso/api/v1/schemas +2022/02/28 10:56:59 [DEBUG] Begin Injection +2022/02/28 10:56:59 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 10:56:59 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg] Content-Type:[application/json]] {{"displayName":"acctest_n0ejy","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_n0ejy","externalEpgs":[],"filters":[],"name":"acctest_n0ejy","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x327ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 10:56:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 10:56:59 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 10:56:59 [DEBUG] Begin Injection +2022/02/28 10:56:59 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 10:56:59 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg] Content-Type:[application/json]] {{"desc":"","name":"acctest_9gd4a","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x327ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 10:56:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 10:56:59 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 10:56:59 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:26:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c5d231d0000a6614fb934] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d21340 400 [] false false map[] 0xc000e62400 0xc00097e0b0} +2022/02/28 10:56:59 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 10:56:59 [DEBUG] Exit from do method +2022/02/28 10:56:59 [DEBUG] 621c5d231d0000a6614fb934: Schema Creation finished successfully +2022/02/28 10:56:59 [DEBUG] 621c5d231d0000a6614fb934: Beginning Read +2022/02/28 10:56:59 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:56:59 [DEBUG] Begin Injection +2022/02/28 10:56:59 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:56:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:00 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 10:57:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:26:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d20180 160 [] false false map[] 0xc000564900 0xc00097e0b0} +2022/02/28 10:57:00 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5d231b00005b07fd0c0a","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:00 [DEBUG] Exit from do method +2022/02/28 10:57:00 [DEBUG] 621c5d231b00005b07fd0c0a: Creation finished successfully +2022/02/28 10:57:00 [DEBUG] 621c5d231b00005b07fd0c0a: Beginning Read +2022/02/28 10:57:00 id: 621c5d231b00005b07fd0c0a +2022/02/28 10:57:00 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:00 [DEBUG] Begin Injection +2022/02/28 10:57:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010a8100 400 [] false false map[] 0xc0007ce000 0xc00097e0b0} +2022/02/28 10:57:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 10:57:00 [DEBUG] Exit from do method +2022/02/28 10:57:00 [DEBUG] 621c5d231d0000a6614fb934: Read finished successfully +2022/02/28 10:57:00 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 10:57:00 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 10:57:00 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:00 [DEBUG] Begin Injection +2022/02/28 10:57:00 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:01 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000f8480 160 [] false false map[] 0xc000564000 0xc000500160} +2022/02/28 10:57:01 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000fe6500 0xc00097e0b0} +2022/02/28 10:57:01 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a {"id":"621c5d231b00005b07fd0c0a","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:01 [DEBUG] Exit from do method +2022/02/28 10:57:01 [DEBUG] acctest_9gd4a: Creation finished successfully +2022/02/28 10:57:01 [DEBUG] acctest_9gd4a: Beginning Read +2022/02/28 10:57:01 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:01 [DEBUG] Begin Injection +2022/02/28 10:57:01 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:01 [DEBUG] 621c5d231b00005b07fd0c0a: Read finished successfully +2022/02/28 10:57:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d20440 768 [] false false map[] 0xc000b38000 0xc0010d0420} +2022/02/28 10:57:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 10:57:01 [DEBUG] Exit from do method +2022/02/28 10:57:01 currentvrfname acctest_9gd4a +2022/02/28 10:57:01 found correct vrfname +2022/02/28 10:57:01 [DEBUG] acctest_9gd4a: Read finished successfully +2022/02/28 10:57:01 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 10:57:01 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 10:57:01 [DEBUG] Template BD: Beginning Creation +2022/02/28 10:57:01 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:01 [DEBUG] Begin Injection +2022/02/28 10:57:01 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:01 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:01 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000e62b00 0xc000dca000} +2022/02/28 10:57:01 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:01 [DEBUG] : Beginning Read +2022/02/28 10:57:01 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:01 [DEBUG] Begin Injection +2022/02/28 10:57:01 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011fe040 1277 [] false false map[] 0xc000e62d00 0xc000dca000} +2022/02/28 10:57:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 10:57:02 [DEBUG] Exit from do method +2022/02/28 10:57:02 [DEBUG] acctest_9gd4a: Read finished successfully +2022/02/28 10:57:02 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 10:57:02 [DEBUG] Template BD: Beginning Creation +2022/02/28 10:57:02 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:02 [DEBUG] Begin Injection +2022/02/28 10:57:02 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:02 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:02 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000e62a00 0xc000dca000} +2022/02/28 10:57:02 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:02 [DEBUG] Creation Complete +2022/02/28 10:57:02 [DEBUG] : Beginning Read +2022/02/28 10:57:02 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:02 [DEBUG] Begin Injection +2022/02/28 10:57:02 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d20e40 1362 [] false false map[] 0xc000e62c00 0xc000dca000} +2022/02/28 10:57:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:57:02 [DEBUG] Exit from do method +2022/02/28 10:57:02 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Read finished successfully +2022/02/28 10:57:02 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:02 [DEBUG] New state was assigned lineage "1210b1df-31ba-aafb-31cc-aa7ff17a006f" +2022/02/28 10:57:02 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:02 [DEBUG] Begin Injection +2022/02/28 10:57:02 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e54cc0 1362 [] false false map[] 0xc0007ce000 0xc000dca000} +2022/02/28 10:57:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:57:03 [DEBUG] Exit from do method +2022/02/28 10:57:03 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:57:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 10:57:03 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:57:03 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:03 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:57:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 10:57:03 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:03 [DEBUG] : Beginning Read +2022/02/28 10:57:03 HTTP request GET mso/api/v1/tenants +2022/02/28 10:57:03 [DEBUG] Begin Injection +2022/02/28 10:57:03 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 10:57:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:57:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:57:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d29280 5563 [] false false map[] 0xc0004ac500 0xc000dca000} +2022/02/28 10:57:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 10:57:03 [DEBUG] Exit from do method +2022/02/28 10:57:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:57:03 [DEBUG] 621c5d231d0000a6614fb934: Beginning Read +2022/02/28 10:57:03 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:03 [DEBUG] Begin Injection +2022/02/28 10:57:03 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:03 [DEBUG] 621c5d231b00005b07fd0c0a: Beginning Read +2022/02/28 10:57:03 id: 621c5d231b00005b07fd0c0a +2022/02/28 10:57:03 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:03 [DEBUG] Begin Injection +2022/02/28 10:57:03 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000f91c0 1362 [] false false map[] 0xc0004ac700 0xc000dca000} +2022/02/28 10:57:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:57:03 [DEBUG] Exit from do method +2022/02/28 10:57:03 [DEBUG] 621c5d231d0000a6614fb934: Read finished successfully +2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:57:03 [DEBUG] acctest_9gd4a: Beginning Read +2022/02/28 10:57:03 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:03 [DEBUG] Begin Injection +2022/02/28 10:57:03 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fbd8c0 160 [] false false map[] 0xc000564300 0xc00097e0b0} +2022/02/28 10:57:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a {"id":"621c5d231b00005b07fd0c0a","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:03 [DEBUG] Exit from do method +2022/02/28 10:57:03 [DEBUG] 621c5d231b00005b07fd0c0a: Read finished successfully +2022/02/28 10:57:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001efac0 1362 [] false false map[] 0xc000564800 0xc000dca000} +2022/02/28 10:57:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:57:04 [DEBUG] Exit from do method +2022/02/28 10:57:04 currentvrfname acctest_9gd4a +2022/02/28 10:57:04 found correct vrfname +2022/02/28 10:57:04 [DEBUG] acctest_9gd4a: Read finished successfully +2022/02/28 10:57:04 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:57:04 [DEBUG] acctest_9gd4a: Beginning Read +2022/02/28 10:57:04 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:04 [DEBUG] Begin Injection +2022/02/28 10:57:04 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fbdd40 1362 [] false false map[] 0xc0004ad300 0xc000dca000} +2022/02/28 10:57:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:57:04 [DEBUG] Exit from do method +2022/02/28 10:57:04 [DEBUG] acctest_9gd4a: Read finished successfully +2022/02/28 10:57:04 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:57:04 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Beginning Read +2022/02/28 10:57:04 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:04 [DEBUG] Begin Injection +2022/02/28 10:57:04 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010fcac0 1362 [] false false map[] 0xc000d00900 0xc000dca000} +2022/02/28 10:57:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:57:05 [DEBUG] Exit from do method +2022/02/28 10:57:05 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Read finished successfully +2022/02/28 10:57:05 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:05 [DEBUG] New state was assigned lineage "6f5c7f68-7446-3b49-e620-736ac3b7e733" +2022/02/28 10:57:05 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:57:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:05 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:57:05 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:05 [DEBUG] Test: Executing step 5 +2022/02/28 10:57:05 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:05 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:57:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:05 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:57:05 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:05 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:57:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:05 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:05 [DEBUG] : Beginning Read +2022/02/28 10:57:05 HTTP request GET mso/api/v1/tenants +2022/02/28 10:57:05 [DEBUG] Begin Injection +2022/02/28 10:57:05 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 10:57:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:57:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:57:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004a60c0 5563 [] false false map[] 0xc001290600 0xc000dca000} +2022/02/28 10:57:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 10:57:05 [DEBUG] Exit from do method +2022/02/28 10:57:05 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:05 [DEBUG] 621c5d231d0000a6614fb934: Beginning Read +2022/02/28 10:57:05 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:05 [DEBUG] Begin Injection +2022/02/28 10:57:05 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:05 [DEBUG] 621c5d231b00005b07fd0c0a: Beginning Read +2022/02/28 10:57:05 id: 621c5d231b00005b07fd0c0a +2022/02/28 10:57:05 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:05 [DEBUG] Begin Injection +2022/02/28 10:57:05 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001eec40 1362 [] false false map[] 0xc001290900 0xc000dca000} +2022/02/28 10:57:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010a8480 160 [] false false map[] 0xc0004ac800 0xc00097e0b0} +2022/02/28 10:57:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:57:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a {"id":"621c5d231b00005b07fd0c0a","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:05 [DEBUG] Exit from do method +2022/02/28 10:57:05 [DEBUG] Exit from do method +2022/02/28 10:57:05 [DEBUG] 621c5d231d0000a6614fb934: Read finished successfully +2022/02/28 10:57:05 [DEBUG] 621c5d231b00005b07fd0c0a: Read finished successfully +2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:57:05 [DEBUG] acctest_9gd4a: Beginning Read +2022/02/28 10:57:05 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:05 [DEBUG] Begin Injection +2022/02/28 10:57:05 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001efb40 1362 [] false false map[] 0xc0004acd00 0xc00097e0b0} +2022/02/28 10:57:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:57:06 [DEBUG] Exit from do method +2022/02/28 10:57:06 currentvrfname acctest_9gd4a +2022/02/28 10:57:06 found correct vrfname +2022/02/28 10:57:06 [DEBUG] acctest_9gd4a: Read finished successfully +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:57:06 [DEBUG] acctest_9gd4a: Beginning Read +2022/02/28 10:57:06 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:06 [DEBUG] Begin Injection +2022/02/28 10:57:06 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051c0c0 1362 [] false false map[] 0xc0004ad200 0xc00097e0b0} +2022/02/28 10:57:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:57:06 [DEBUG] Exit from do method +2022/02/28 10:57:06 [DEBUG] acctest_9gd4a: Read finished successfully +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:57:06 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Beginning Read +2022/02/28 10:57:06 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:06 [DEBUG] Begin Injection +2022/02/28 10:57:06 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001eea80 1362 [] false false map[] 0xc0004ac500 0xc00097e0b0} +2022/02/28 10:57:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 10:57:06 [DEBUG] Exit from do method +2022/02/28 10:57:06 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Read finished successfully +2022/02/28 10:57:06 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:06 [DEBUG] New state was assigned lineage "f6e02432-6f07-cb1b-69fb-f16658a81627" +2022/02/28 10:57:06 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:57:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:06 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:57:06 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:06 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c5d231b00005b07fd0c0a" => "" + name: "acctest_9gd4a" => "acctest_fbvfv" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + dhcp_policy.name: "acctest_9gd4a" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_9gd4a" => "acctest_fbvfv" (forces new resource) + id: "acctest_9gd4a" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_9gd4a" => "acctest_fbvfv" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c5d231d0000a6614fb934" => "621c5d231d0000a6614fb934" + template_name: "acctest_n0ejy" => "acctest_n0ejy" + vrf_name: "acctest_9gd4a" => "acctest_fbvfv" + vrf_schema_id: "621c5d231d0000a6614fb934" => "" + vrf_template_name: "acctest_n0ejy" => "" +DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_9gd4a" => "acctest_fbvfv" (forces new resource) + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a" => "" + name: "acctest_9gd4a" => "acctest_fbvfv" (forces new resource) + schema_id: "621c5d231d0000a6614fb934" => "621c5d231d0000a6614fb934" + template_name: "acctest_n0ejy" => "acctest_n0ejy" + version: "0" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_9gd4a" => "acctest_fbvfv" + id: "acctest_9gd4a" => "" + layer3_multicast: "false" => "" + name: "acctest_9gd4a" => "acctest_fbvfv" (forces new resource) + schema_id: "621c5d231d0000a6614fb934" => "621c5d231d0000a6614fb934" + template: "acctest_n0ejy" => "acctest_n0ejy" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c5d231b00005b07fd0c0a + provider = provider.mso + description = + name = acctest_9gd4a + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5d231d0000a6614fb934 + provider = provider.mso + name = acctest_n0ejy + template_name = acctest_n0ejy + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_9gd4a + provider = provider.mso + dhcp_policy.name = acctest_9gd4a + dhcp_policy.version = 0 + display_name = acctest_9gd4a + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_9gd4a + schema_id = 621c5d231d0000a6614fb934 + template_name = acctest_n0ejy + vrf_name = acctest_9gd4a + vrf_schema_id = 621c5d231d0000a6614fb934 + vrf_template_name = acctest_n0ejy + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a + provider = provider.mso + bd_name = acctest_9gd4a + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_9gd4a + schema_id = 621c5d231d0000a6614fb934 + template_name = acctest_n0ejy + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_9gd4a + provider = provider.mso + display_name = acctest_9gd4a + layer3_multicast = false + name = acctest_9gd4a + schema_id = 621c5d231d0000a6614fb934 + template = acctest_n0ejy + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 10:57:06 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 10:57:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 10:57:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:57:06 [DEBUG] Starting graph walk: walkApply +2022/02/28 10:57:06 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 10:57:06 [DEBUG] Template BD: Beginning Update +2022/02/28 10:57:06 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:06 [DEBUG] Begin Injection +2022/02/28 10:57:06 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000abcc00 0xc00097e0b0} +2022/02/28 10:57:07 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 10:57:07 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 10:57:07 [DEBUG] 621c5d231b00005b07fd0c0a: Beginning Read +2022/02/28 10:57:07 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:07 [DEBUG] Begin Injection +2022/02/28 10:57:07 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:07 [DEBUG] Template BD: Beginning Update +2022/02/28 10:57:07 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 [DEBUG] Begin Injection +2022/02/28 10:57:07 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d4c700 0xc000dca000} +2022/02/28 10:57:07 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 10:57:07 [DEBUG] acctest_9gd4a: Beginning Destroy +2022/02/28 10:57:07 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 [DEBUG] Begin Injection +2022/02/28 10:57:07 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000a92500 0xc00097e0b0} +2022/02/28 10:57:07 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a +2022/02/28 10:57:07 [DEBUG] : Read finished successfully +2022/02/28 10:57:07 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 10:57:07 [DEBUG] : Beginning Create +2022/02/28 10:57:07 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 10:57:07 [DEBUG] Begin Injection +2022/02/28 10:57:07 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 10:57:07 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg] Content-Type:[application/json]] {{"desc":"","name":"acctest_fbvfv","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x327ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 10:57:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 10:57:07 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 10:57:07 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000720140 160 [] false false map[] 0xc000abda00 0xc00097e0b0} +2022/02/28 10:57:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d4d100 0xc000dca000} +2022/02/28 10:57:07 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 [DEBUG] acctest_9gd4a: Destroy finished successfully +2022/02/28 10:57:07 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5d2b1b00005b07fd0c0b","name":"acctest_fbvfv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:07 [DEBUG] Exit from do method +2022/02/28 10:57:07 [DEBUG] 621c5d2b1b00005b07fd0c0b: Creation finished successfully +2022/02/28 10:57:07 [DEBUG] 621c5d2b1b00005b07fd0c0b: Beginning Read +2022/02/28 10:57:07 id: 621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:07 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:07 [DEBUG] Begin Injection +2022/02/28 10:57:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:07 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 10:57:07 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 10:57:07 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 [DEBUG] Begin Injection +2022/02/28 10:57:07 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:08 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:08 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d4c900 0xc000dca000} +2022/02/28 10:57:08 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:08 [DEBUG] acctest_fbvfv: Creation finished successfully +2022/02/28 10:57:08 [DEBUG] acctest_fbvfv: Beginning Read +2022/02/28 10:57:08 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:08 [DEBUG] Begin Injection +2022/02/28 10:57:08 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce1c0 160 [] false false map[] 0xc000abc000 0xc00097e0b0} +2022/02/28 10:57:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b {"id":"621c5d2b1b00005b07fd0c0b","name":"acctest_fbvfv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:08 [DEBUG] Exit from do method +2022/02/28 10:57:08 [DEBUG] 621c5d2b1b00005b07fd0c0b: Read finished successfully +2022/02/28 10:57:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000720300 768 [] false false map[] 0xc000d4cb00 0xc000dca000} +2022/02/28 10:57:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":8}],"_updateVersion":0} +2022/02/28 10:57:08 [DEBUG] Exit from do method +2022/02/28 10:57:08 currentvrfname acctest_fbvfv +2022/02/28 10:57:08 found correct vrfname +2022/02/28 10:57:08 [DEBUG] acctest_fbvfv: Read finished successfully +2022/02/28 10:57:08 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 10:57:08 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 10:57:08 [DEBUG] Template BD: Beginning Creation +2022/02/28 10:57:08 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:08 [DEBUG] Begin Injection +2022/02/28 10:57:08 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:08 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:08 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004aca00 0xc000dca000} +2022/02/28 10:57:08 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:08 [DEBUG] : Beginning Read +2022/02/28 10:57:08 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:08 [DEBUG] Begin Injection +2022/02/28 10:57:08 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce800 1277 [] false false map[] 0xc000dfe000 0xc000dca000} +2022/02/28 10:57:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 10:57:09 [DEBUG] Exit from do method +2022/02/28 10:57:09 [DEBUG] acctest_fbvfv: Read finished successfully +2022/02/28 10:57:09 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 10:57:09 [DEBUG] Template BD: Beginning Creation +2022/02/28 10:57:09 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:09 [DEBUG] Begin Injection +2022/02/28 10:57:09 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:09 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:09 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000abc100 0xc000dca000} +2022/02/28 10:57:09 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:09 [DEBUG] Creation Complete +2022/02/28 10:57:09 [DEBUG] : Beginning Read +2022/02/28 10:57:09 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:09 [DEBUG] Begin Injection +2022/02/28 10:57:09 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce100 1363 [] false false map[] 0xc000abc000 0xc000dca000} +2022/02/28 10:57:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:57:09 [DEBUG] Exit from do method +2022/02/28 10:57:09 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv: Read finished successfully +2022/02/28 10:57:09 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:10 [DEBUG] New state was assigned lineage "9a571089-4eff-3d91-9b14-9f9dfbe5f8fa" +2022/02/28 10:57:10 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:10 [DEBUG] Begin Injection +2022/02/28 10:57:10 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010a8140 1363 [] false false map[] 0xc000dfe000 0xc000dca000} +2022/02/28 10:57:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:57:10 [DEBUG] Exit from do method +2022/02/28 10:57:10 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:57:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:10 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:57:10 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:10 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:57:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:57:10 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:10 [DEBUG] : Beginning Read +2022/02/28 10:57:10 HTTP request GET mso/api/v1/tenants +2022/02/28 10:57:10 [DEBUG] Begin Injection +2022/02/28 10:57:10 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 10:57:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:57:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:57:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ddc0 5563 [] false false map[] 0xc000e0a300 0xc000dca000} +2022/02/28 10:57:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 10:57:10 [DEBUG] Exit from do method +2022/02/28 10:57:10 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:10 [DEBUG] 621c5d231d0000a6614fb934: Beginning Read +2022/02/28 10:57:10 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:10 [DEBUG] Begin Injection +2022/02/28 10:57:10 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:10 [DEBUG] 621c5d2b1b00005b07fd0c0b: Beginning Read +2022/02/28 10:57:10 id: 621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:10 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:10 [DEBUG] Begin Injection +2022/02/28 10:57:10 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcee00 1363 [] false false map[] 0xc000dfea00 0xc000dca000} +2022/02/28 10:57:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ee4c0 160 [] false false map[] 0xc000e0a900 0xc00097e0b0} +2022/02/28 10:57:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:57:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b {"id":"621c5d2b1b00005b07fd0c0b","name":"acctest_fbvfv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:11 [DEBUG] Exit from do method +2022/02/28 10:57:11 [DEBUG] Exit from do method +2022/02/28 10:57:11 [DEBUG] 621c5d231d0000a6614fb934: Read finished successfully +2022/02/28 10:57:11 [DEBUG] 621c5d2b1b00005b07fd0c0b: Read finished successfully +2022/02/28 10:57:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:57:11 [DEBUG] acctest_fbvfv: Beginning Read +2022/02/28 10:57:11 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:11 [DEBUG] Begin Injection +2022/02/28 10:57:11 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce180 1363 [] false false map[] 0xc000e0a100 0xc00097e0b0} +2022/02/28 10:57:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:57:11 [DEBUG] Exit from do method +2022/02/28 10:57:11 currentvrfname acctest_fbvfv +2022/02/28 10:57:11 found correct vrfname +2022/02/28 10:57:11 [DEBUG] acctest_fbvfv: Read finished successfully +2022/02/28 10:57:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:57:11 [DEBUG] acctest_fbvfv: Beginning Read +2022/02/28 10:57:11 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:11 [DEBUG] Begin Injection +2022/02/28 10:57:11 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001eeb40 1363 [] false false map[] 0xc000e0a500 0xc00097e0b0} +2022/02/28 10:57:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:57:12 [DEBUG] Exit from do method +2022/02/28 10:57:12 [DEBUG] acctest_fbvfv: Read finished successfully +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:57:12 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv: Beginning Read +2022/02/28 10:57:12 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:12 [DEBUG] Begin Injection +2022/02/28 10:57:12 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001eea80 1363 [] false false map[] 0xc00045e500 0xc00097e0b0} +2022/02/28 10:57:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:57:12 [DEBUG] Exit from do method +2022/02/28 10:57:12 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv: Read finished successfully +2022/02/28 10:57:12 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:12 [DEBUG] New state was assigned lineage "b0869464-fef4-749c-ece3-e11222a53d83" +2022/02/28 10:57:12 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:57:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:57:12 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:57:12 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:12 [DEBUG] Test: Executing step 6 +2022/02/28 10:57:12 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:12 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:57:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 10:57:12 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:57:12 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:12 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:57:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:12 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:12 [DEBUG] : Beginning Read +2022/02/28 10:57:12 HTTP request GET mso/api/v1/tenants +2022/02/28 10:57:12 [DEBUG] Begin Injection +2022/02/28 10:57:12 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 10:57:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:57:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 10:57:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000720040 5563 [] false false map[] 0xc00107e100 0xc00097e0b0} +2022/02/28 10:57:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 10:57:13 [DEBUG] Exit from do method +2022/02/28 10:57:13 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 10:57:13 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 10:57:13 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 10:57:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:57:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:13 [DEBUG] 621c5d231d0000a6614fb934: Beginning Read +2022/02/28 10:57:13 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:13 [DEBUG] Begin Injection +2022/02/28 10:57:13 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:13 [DEBUG] 621c5d2b1b00005b07fd0c0b: Beginning Read +2022/02/28 10:57:13 id: 621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:13 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:13 [DEBUG] Begin Injection +2022/02/28 10:57:13 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007217c0 1363 [] false false map[] 0xc0000c4800 0xc00097e0b0} +2022/02/28 10:57:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:57:13 [DEBUG] Exit from do method +2022/02/28 10:57:13 [DEBUG] 621c5d231d0000a6614fb934: Read finished successfully +2022/02/28 10:57:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:57:13 [DEBUG] acctest_fbvfv: Beginning Read +2022/02/28 10:57:13 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:13 [DEBUG] Begin Injection +2022/02/28 10:57:13 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000721cc0 160 [] false false map[] 0xc0006d4200 0xc000dca000} +2022/02/28 10:57:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b {"id":"621c5d2b1b00005b07fd0c0b","name":"acctest_fbvfv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:13 [DEBUG] Exit from do method +2022/02/28 10:57:13 [DEBUG] 621c5d2b1b00005b07fd0c0b: Read finished successfully +2022/02/28 10:57:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000f9400 1363 [] false false map[] 0xc0000c4d00 0xc00097e0b0} +2022/02/28 10:57:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:57:13 [DEBUG] Exit from do method +2022/02/28 10:57:13 currentvrfname acctest_fbvfv +2022/02/28 10:57:13 found correct vrfname +2022/02/28 10:57:13 [DEBUG] acctest_fbvfv: Read finished successfully +2022/02/28 10:57:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:57:13 [DEBUG] acctest_fbvfv: Beginning Read +2022/02/28 10:57:13 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:13 [DEBUG] Begin Injection +2022/02/28 10:57:13 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d28080 1363 [] false false map[] 0xc000618100 0xc00097e0b0} +2022/02/28 10:57:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:57:14 [DEBUG] Exit from do method +2022/02/28 10:57:14 [DEBUG] acctest_fbvfv: Read finished successfully +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:57:14 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv: Beginning Read +2022/02/28 10:57:14 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:14 [DEBUG] Begin Injection +2022/02/28 10:57:14 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d289c0 1363 [] false false map[] 0xc0000c4300 0xc00097e0b0} +2022/02/28 10:57:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 10:57:14 [DEBUG] Exit from do method +2022/02/28 10:57:14 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv: Read finished successfully +2022/02/28 10:57:14 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:14 [DEBUG] New state was assigned lineage "9b438e3a-afb6-6938-a7dc-0ea7bfdb00b3" +2022/02/28 10:57:14 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 10:57:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:14 [DEBUG] Starting graph walk: walkPlan +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:57:14 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 10:57:14 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:14 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.example + description: "" => "" + id: "" => "" + name: "" => "acctest_23rlh" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c5d2b1b00005b07fd0c0b" => "" + name: "acctest_fbvfv" => "acctest_9gd4a" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + dhcp_policy.name: "acctest_fbvfv" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_fbvfv" => "acctest_9gd4a" (forces new resource) + id: "acctest_fbvfv" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_fbvfv" => "acctest_9gd4a" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c5d231d0000a6614fb934" => "621c5d231d0000a6614fb934" + template_name: "acctest_n0ejy" => "acctest_n0ejy" + vrf_name: "acctest_fbvfv" => "acctest_9gd4a" + vrf_schema_id: "621c5d231d0000a6614fb934" => "" + vrf_template_name: "acctest_n0ejy" => "" +DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_fbvfv" => "acctest_9gd4a" (forces new resource) + dhcp_option_name: "" => "acctest_23rlh" + dhcp_option_version: "0" => "1" + id: "/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv" => "" + name: "acctest_fbvfv" => "acctest_9gd4a" (forces new resource) + schema_id: "621c5d231d0000a6614fb934" => "621c5d231d0000a6614fb934" + template_name: "acctest_n0ejy" => "acctest_n0ejy" + version: "0" => "1" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_fbvfv" => "acctest_9gd4a" + id: "acctest_fbvfv" => "" + layer3_multicast: "false" => "" + name: "acctest_fbvfv" => "acctest_9gd4a" (forces new resource) + schema_id: "621c5d231d0000a6614fb934" => "621c5d231d0000a6614fb934" + template: "acctest_n0ejy" => "acctest_n0ejy" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c5d2b1b00005b07fd0c0b + provider = provider.mso + description = + name = acctest_fbvfv + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5d231d0000a6614fb934 + provider = provider.mso + name = acctest_n0ejy + template_name = acctest_n0ejy + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_fbvfv + provider = provider.mso + dhcp_policy.name = acctest_fbvfv + dhcp_policy.version = 0 + display_name = acctest_fbvfv + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_fbvfv + schema_id = 621c5d231d0000a6614fb934 + template_name = acctest_n0ejy + vrf_name = acctest_fbvfv + vrf_schema_id = 621c5d231d0000a6614fb934 + vrf_template_name = acctest_n0ejy + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv + provider = provider.mso + bd_name = acctest_fbvfv + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_fbvfv + schema_id = 621c5d231d0000a6614fb934 + template_name = acctest_n0ejy + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_fbvfv + provider = provider.mso + display_name = acctest_fbvfv + layer3_multicast = false + name = acctest_fbvfv + schema_id = 621c5d231d0000a6614fb934 + template = acctest_n0ejy + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 10:57:14 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 10:57:14 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 10:57:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (prepare state)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test (prepare state)] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example (prepare state) mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:57:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:14 [DEBUG] Starting graph walk: walkApply +2022/02/28 10:57:14 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 10:57:14 [DEBUG] Template BD: Beginning Update +2022/02/28 10:57:14 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:14 [DEBUG] Begin Injection +2022/02/28 10:57:14 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:14 [DEBUG] mso_dhcp_option_policy.example: applying the planned Create change +2022/02/28 10:57:14 [DEBUG] : Beginning Create +2022/02/28 10:57:14 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 10:57:14 [DEBUG] Begin Injection +2022/02/28 10:57:14 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 10:57:14 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_23rlh","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x327ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 10:57:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 10:57:14 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:14 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 10:57:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a90300 0xc00097e0b0} +2022/02/28 10:57:14 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010fd7c0 161 [] false false map[] 0xc0004ad900 0xc000dca000} +2022/02/28 10:57:14 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c5d321b00007507fd0c0c","name":"acctest_23rlh","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:14 [DEBUG] Exit from do method +2022/02/28 10:57:14 [DEBUG] 621c5d321b00007507fd0c0c: Creation finished successfully +2022/02/28 10:57:14 [DEBUG] 621c5d321b00007507fd0c0c: Beginning Read +2022/02/28 10:57:14 id: 621c5d321b00007507fd0c0c +2022/02/28 10:57:14 HTTP request GET mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:14 [DEBUG] Begin Injection +2022/02/28 10:57:14 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:14 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 10:57:14 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 10:57:14 [DEBUG] 621c5d2b1b00005b07fd0c0b: Beginning Read +2022/02/28 10:57:14 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:14 [DEBUG] Begin Injection +2022/02/28 10:57:14 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:14 [DEBUG] Template BD: Beginning Update +2022/02/28 10:57:14 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:14 [DEBUG] Begin Injection +2022/02/28 10:57:14 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010fc040 161 [] false false map[] 0xc00103c000 0xc000dca000} +2022/02/28 10:57:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c {"id":"621c5d321b00007507fd0c0c","name":"acctest_23rlh","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:15 [DEBUG] Exit from do method +2022/02/28 10:57:15 [DEBUG] 621c5d321b00007507fd0c0c: Read finished successfully +2022/02/28 10:57:15 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:15 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0000c4800 0xc00097e0b0} +2022/02/28 10:57:15 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b +2022/02/28 10:57:15 [DEBUG] : Read finished successfully +2022/02/28 10:57:15 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 10:57:15 [DEBUG] : Beginning Create +2022/02/28 10:57:15 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 10:57:15 [DEBUG] Begin Injection +2022/02/28 10:57:15 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 10:57:15 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg] Content-Type:[application/json]] {{"desc":"","name":"acctest_9gd4a","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x327ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 10:57:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 10:57:15 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:15 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00103c400 0xc000dca000} +2022/02/28 10:57:15 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:15 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 10:57:15 [DEBUG] acctest_fbvfv: Beginning Destroy +2022/02/28 10:57:15 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:15 [DEBUG] Begin Injection +2022/02/28 10:57:15 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:15 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 10:57:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007203c0 160 [] false false map[] 0xc0000c4900 0xc00097e0b0} +2022/02/28 10:57:15 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5d331b00005b07fd0c0d","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:15 [DEBUG] Exit from do method +2022/02/28 10:57:15 [DEBUG] 621c5d331b00005b07fd0c0d: Creation finished successfully +2022/02/28 10:57:15 [DEBUG] 621c5d331b00005b07fd0c0d: Beginning Read +2022/02/28 10:57:15 id: 621c5d331b00005b07fd0c0d +2022/02/28 10:57:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:15 [DEBUG] Begin Injection +2022/02/28 10:57:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:15 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:15 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00103ce00 0xc000dca000} +2022/02/28 10:57:15 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:15 [DEBUG] acctest_fbvfv: Destroy finished successfully +2022/02/28 10:57:15 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 10:57:15 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 10:57:15 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:15 [DEBUG] Begin Injection +2022/02/28 10:57:15 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007b4840 160 [] false false map[] 0xc0004ac100 0xc00097e0b0} +2022/02/28 10:57:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d {"id":"621c5d331b00005b07fd0c0d","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:16 [DEBUG] Exit from do method +2022/02/28 10:57:16 [DEBUG] 621c5d331b00005b07fd0c0d: Read finished successfully +2022/02/28 10:57:16 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:16 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004ac900 0xc000dca000} +2022/02/28 10:57:16 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:16 [DEBUG] acctest_9gd4a: Creation finished successfully +2022/02/28 10:57:16 [DEBUG] acctest_9gd4a: Beginning Read +2022/02/28 10:57:16 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:16 [DEBUG] Begin Injection +2022/02/28 10:57:16 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[769] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010fc040 769 [] false false map[] 0xc0004ac100 0xc00097e0b0} +2022/02/28 10:57:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":14}],"_updateVersion":0} +2022/02/28 10:57:17 [DEBUG] Exit from do method +2022/02/28 10:57:17 currentvrfname acctest_9gd4a +2022/02/28 10:57:17 found correct vrfname +2022/02/28 10:57:17 [DEBUG] acctest_9gd4a: Read finished successfully +2022/02/28 10:57:17 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 10:57:17 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 10:57:17 [DEBUG] Template BD: Beginning Creation +2022/02/28 10:57:17 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:17 [DEBUG] Begin Injection +2022/02/28 10:57:17 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:17 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004ac500 0xc00097e0b0} +2022/02/28 10:57:17 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:17 [DEBUG] : Beginning Read +2022/02/28 10:57:17 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:17 [DEBUG] Begin Injection +2022/02/28 10:57:17 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010fdf80 1278 [] false false map[] 0xc000a90000 0xc00097e0b0} +2022/02/28 10:57:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":15}],"_updateVersion":0} +2022/02/28 10:57:17 [DEBUG] Exit from do method +2022/02/28 10:57:17 [DEBUG] acctest_9gd4a: Read finished successfully +2022/02/28 10:57:17 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 10:57:17 [DEBUG] Template BD: Beginning Creation +2022/02/28 10:57:17 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:17 [DEBUG] Begin Injection +2022/02/28 10:57:17 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:18 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:18 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000c4900 0xc00097e0b0} +2022/02/28 10:57:18 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:18 [DEBUG] Creation Complete +2022/02/28 10:57:18 [DEBUG] : Beginning Read +2022/02/28 10:57:18 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:18 [DEBUG] Begin Injection +2022/02/28 10:57:18 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007b4400 1473 [] false false map[] 0xc0000c4b00 0xc00097e0b0} +2022/02/28 10:57:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} +2022/02/28 10:57:18 [DEBUG] Exit from do method +2022/02/28 10:57:18 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Read finished successfully +2022/02/28 10:57:18 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:18 [DEBUG] New state was assigned lineage "eff4e0d7-e9aa-24d9-d364-ec5a96159dfa" +2022/02/28 10:57:18 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:18 [DEBUG] Begin Injection +2022/02/28 10:57:18 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007b40c0 1473 [] false false map[] 0xc0000c4000 0xc00097e0b0} +2022/02/28 10:57:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} +2022/02/28 10:57:18 [DEBUG] Exit from do method +2022/02/28 10:57:18 [WARN] Test: Executing destroy step +2022/02/28 10:57:19 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:19 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 10:57:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 10:57:19 [DEBUG] Starting graph walk: walkValidate +2022/02/28 10:57:19 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:19 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/28 10:57:19 [WARN] Not fixing up EachModes for mso_schema_template_bd.test because it has no config +2022/02/28 10:57:19 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config +2022/02/28 10:57:19 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/28 10:57:19 [WARN] Not fixing up EachModes for data.mso_tenant.test because it has no config +2022/02/28 10:57:19 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config +2022/02/28 10:57:19 [WARN] Not fixing up EachModes for mso_dhcp_relay_policy.test because it has no config +2022/02/28 10:57:19 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:57:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:19 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:57:19 [DEBUG] 621c5d231d0000a6614fb934: Beginning Read +2022/02/28 10:57:19 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:19 [DEBUG] Begin Injection +2022/02/28 10:57:19 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:19 [DEBUG] 621c5d331b00005b07fd0c0d: Beginning Read +2022/02/28 10:57:19 id: 621c5d331b00005b07fd0c0d +2022/02/28 10:57:19 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:19 [DEBUG] 621c5d321b00007507fd0c0c: Beginning Read +2022/02/28 10:57:19 id: 621c5d321b00007507fd0c0c +2022/02/28 10:57:19 HTTP request GET mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:19 [DEBUG] Begin Injection +2022/02/28 10:57:19 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:19 [DEBUG] Begin Injection +2022/02/28 10:57:19 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051c2c0 1473 [] false false map[] 0xc000da8100 0xc00097e0b0} +2022/02/28 10:57:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d20440 161 [] false false map[] 0xc000e32100 0xc000454630} +2022/02/28 10:57:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} +2022/02/28 10:57:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c {"id":"621c5d321b00007507fd0c0c","name":"acctest_23rlh","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:19 [DEBUG] Exit from do method +2022/02/28 10:57:19 [DEBUG] Exit from do method +2022/02/28 10:57:19 [DEBUG] 621c5d231d0000a6614fb934: Read finished successfully +2022/02/28 10:57:19 [DEBUG] 621c5d321b00007507fd0c0c: Read finished successfully +2022/02/28 10:57:19 [DEBUG] acctest_9gd4a: Beginning Read +2022/02/28 10:57:19 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:19 [DEBUG] Begin Injection +2022/02/28 10:57:19 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d280c0 1473 [] false false map[] 0xc000f7a400 0xc000454630} +2022/02/28 10:57:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} +2022/02/28 10:57:19 [DEBUG] Exit from do method +2022/02/28 10:57:19 currentvrfname acctest_9gd4a +2022/02/28 10:57:19 found correct vrfname +2022/02/28 10:57:19 [DEBUG] acctest_9gd4a: Read finished successfully +2022/02/28 10:57:19 [DEBUG] acctest_9gd4a: Beginning Read +2022/02/28 10:57:19 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:19 [DEBUG] Begin Injection +2022/02/28 10:57:19 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d28540 160 [] false false map[] 0xc000da8200 0xc00097e0b0} +2022/02/28 10:57:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d {"id":"621c5d331b00005b07fd0c0d","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 10:57:19 [DEBUG] Exit from do method +2022/02/28 10:57:19 [DEBUG] 621c5d331b00005b07fd0c0d: Read finished successfully +2022/02/28 10:57:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010fddc0 1473 [] false false map[] 0xc000f7ad00 0xc000454630} +2022/02/28 10:57:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} +2022/02/28 10:57:20 [DEBUG] Exit from do method +2022/02/28 10:57:20 [DEBUG] acctest_9gd4a: Read finished successfully +2022/02/28 10:57:20 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Beginning Read +2022/02/28 10:57:20 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:20 [DEBUG] Begin Injection +2022/02/28 10:57:20 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051c0c0 1473 [] false false map[] 0xc000f7b200 0xc00013e2c0} +2022/02/28 10:57:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} +2022/02/28 10:57:20 [DEBUG] Exit from do method +2022/02/28 10:57:20 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Read finished successfully +2022/02/28 10:57:20 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:20 [DEBUG] New state was assigned lineage "1f42df39-5182-ebaa-4bcf-741e952584eb" +2022/02/28 10:57:20 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 10:57:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example (destroy) +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 10:57:20 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.example + description: "" => "" + id: "621c5d321b00007507fd0c0c" => "" + name: "acctest_23rlh" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c5d331b00005b07fd0c0d" => "" + name: "acctest_9gd4a" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c5d231d0000a6614fb934" => "" + name: "acctest_n0ejy" => "" + template_name: "acctest_n0ejy" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.dhcp_option_policy_name: "acctest_23rlh" => "" + dhcp_policy.dhcp_option_policy_version: "1" => "" + dhcp_policy.name: "acctest_9gd4a" => "" + dhcp_policy.version: "1" => "" + display_name: "acctest_9gd4a" => "" + id: "acctest_9gd4a" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_9gd4a" => "" + schema_id: "621c5d231d0000a6614fb934" => "" + template_name: "acctest_n0ejy" => "" + vrf_name: "acctest_9gd4a" => "" + vrf_schema_id: "621c5d231d0000a6614fb934" => "" + vrf_template_name: "acctest_n0ejy" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_9gd4a" => "" + dhcp_option_name: "acctest_23rlh" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a" => "" + name: "acctest_9gd4a" => "" + schema_id: "621c5d231d0000a6614fb934" => "" + template_name: "acctest_n0ejy" => "" + version: "1" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_9gd4a" => "" + id: "acctest_9gd4a" => "" + layer3_multicast: "false" => "" + name: "acctest_9gd4a" => "" + schema_id: "621c5d231d0000a6614fb934" => "" + template: "acctest_n0ejy" => "" + vzany: "false" => "" + + + +STATE: + +mso_dhcp_option_policy.example: + ID = 621c5d321b00007507fd0c0c + provider = provider.mso + description = + name = acctest_23rlh + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c5d331b00005b07fd0c0d + provider = provider.mso + description = + name = acctest_9gd4a + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5d231d0000a6614fb934 + provider = provider.mso + name = acctest_n0ejy + template_name = acctest_n0ejy + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_9gd4a + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_23rlh + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_9gd4a + dhcp_policy.version = 1 + display_name = acctest_9gd4a + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_9gd4a + schema_id = 621c5d231d0000a6614fb934 + template_name = acctest_n0ejy + vrf_name = acctest_9gd4a + vrf_schema_id = 621c5d231d0000a6614fb934 + vrf_template_name = acctest_n0ejy + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a + provider = provider.mso + bd_name = acctest_9gd4a + dhcp_option_name = acctest_23rlh + dhcp_option_version = 1 + name = acctest_9gd4a + schema_id = 621c5d231d0000a6614fb934 + template_name = acctest_n0ejy + version = 1 + + Dependencies: + mso_dhcp_option_policy.example + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_9gd4a + provider = provider.mso + display_name = acctest_9gd4a + layer3_multicast = false + name = acctest_9gd4a + schema_id = 621c5d231d0000a6614fb934 + template = acctest_n0ejy + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 10:57:20 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 10:57:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (clean up state)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (clean up state)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] +2022/02/28 10:57:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 10:57:20 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 10:57:20 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 10:57:20 [DEBUG] Template BD: Beginning Update +2022/02/28 10:57:20 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:20 [DEBUG] Begin Injection +2022/02/28 10:57:20 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:21 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005b8e00 0xc00013e2c0} +2022/02/28 10:57:21 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:21 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change +2022/02/28 10:57:21 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 10:57:21 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 10:57:21 [DEBUG] 621c5d321b00007507fd0c0c: Beginning Read +2022/02/28 10:57:21 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:21 [DEBUG] 621c5d331b00005b07fd0c0d: Beginning Read +2022/02/28 10:57:21 [DEBUG] Begin Injection +2022/02/28 10:57:21 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:21 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:21 [DEBUG] Begin Injection +2022/02/28 10:57:21 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:21 [DEBUG] Template BD: Beginning Update +2022/02/28 10:57:21 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:21 [DEBUG] Begin Injection +2022/02/28 10:57:21 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:21 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:21 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0005b8300 0xc00013e2c0} +2022/02/28 10:57:21 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d +2022/02/28 10:57:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0004ac500 0xc00097e0b0} +2022/02/28 10:57:21 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c +2022/02/28 10:57:21 [DEBUG] : Read finished successfully +2022/02/28 10:57:21 [DEBUG] : Read finished successfully +2022/02/28 10:57:21 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f6a300 0xc00097e0b0} +2022/02/28 10:57:21 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:21 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 10:57:21 [DEBUG] acctest_9gd4a: Beginning Destroy +2022/02/28 10:57:21 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:21 [DEBUG] Begin Injection +2022/02/28 10:57:21 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:22 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004acc00 0xc00097e0b0} +2022/02/28 10:57:22 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false +2022/02/28 10:57:22 [DEBUG] acctest_9gd4a: Destroy finished successfully +2022/02/28 10:57:22 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 10:57:22 [DEBUG] 621c5d231d0000a6614fb934: Beginning Destroy +2022/02/28 10:57:22 HTTP request DELETE mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:22 [DEBUG] Begin Injection +2022/02/28 10:57:22 HTTP request after injection DELETE mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:22 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0004ac700 0xc0005000b0} +2022/02/28 10:57:22 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:22 [DEBUG] 621c5d231d0000a6614fb934: Destroy finished successfully +2022/02/28 10:57:22 [DEBUG] provider has no plugin.Client +2022/02/28 10:57:22 [DEBUG] New state was assigned lineage "80fc588a-3fb8-684d-cd88-c9f82347365c" +2022/02/28 10:57:22 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:22 [DEBUG] Begin Injection +2022/02/28 10:57:22 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 +2022/02/28 10:57:23 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:22 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051c200 39 [] false false map[] 0xc0006ac000 0xc0005000b0} +2022/02/28 10:57:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"code":404,"message":"Item not found"} +2022/02/28 10:57:23 [DEBUG] Exit from do method +2022/02/28 10:57:23 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 10:57:23 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 10:57:23 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 10:57:23 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 10:57:23 [DEBUG] New state was assigned lineage "cf684836-8300-2b1d-1045-0afc7610313b" +2022/02/28 10:57:23 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 10:57:23 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:01:07 [DEBUG] Test: Executing step 0 +2022/02/28 11:01:07 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:07 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:01:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:07 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:01:07 [DEBUG] Test: Executing step 1 +2022/02/28 11:01:07 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:07 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:01:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:07 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:01:07 [DEBUG] Test: Executing step 2 +2022/02/28 11:01:07 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:07 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:01:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:07 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:01:07 [DEBUG] Test: Executing step 3 +2022/02/28 11:01:07 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:07 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:01:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:07 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:01:07 [DEBUG] Test: Executing step 4 +2022/02/28 11:01:07 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:07 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:01:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:07 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:01:07 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:07 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:01:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:07 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:01:07 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:07 [DEBUG] : Beginning Read +2022/02/28 11:01:07 HTTP request GET mso/api/v1/tenants +2022/02/28 11:01:07 [DEBUG] Begin Injection +2022/02/28 11:01:07 HTTP request POST /login +2022/02/28 11:01:07 HTTP request after injection POST /login +2022/02/28 11:01:07 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:01:09 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:01:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:09 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0008b7480 -1 [chunked] false false map[] 0xc000414700 0xc000632000} +2022/02/28 11:01:09 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw"} +2022/02/28 11:01:09 [DEBUG] Exit from do method +2022/02/28 11:01:09 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:01:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008b7680 5563 [] false false map[] 0xc000414600 0xc000632000} +2022/02/28 11:01:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:01:10 [DEBUG] Exit from do method +2022/02/28 11:01:10 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:01:10 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:10 [DEBUG] New state was assigned lineage "381a0684-0fa8-0077-08e7-9aa707c65fb9" +2022/02/28 11:01:10 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:01:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:01:10 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:10 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:01:10 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:10 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:10 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:01:10 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:01:10 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:10 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_qqw6f" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_ifkqt" + template_name: "" => "acctest_ifkqt" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_qqw6f" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_qqw6f" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_ifkqt" + vrf_name: "" => "acctest_qqw6f" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_qqw6f" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_qqw6f" + schema_id: "" => "" + template_name: "" => "acctest_ifkqt" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_qqw6f" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_qqw6f" + schema_id: "" => "" + template: "" => "acctest_ifkqt" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:01:10 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:01:10 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:01:10 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:01:10 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:01:10 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:01:10 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:01:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:01:10 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:01:10 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:01:10 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:01:10 [DEBUG] Schema: Beginning Creation +2022/02/28 11:01:10 [DEBUG] : Beginning Create +2022/02/28 11:01:10 HTTP request POST mso/api/v1/schemas +2022/02/28 11:01:10 [DEBUG] Begin Injection +2022/02/28 11:01:10 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:01:10 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw] Content-Type:[application/json]] {{"displayName":"acctest_ifkqt","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_ifkqt","externalEpgs":[],"filters":[],"name":"acctest_ifkqt","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x347ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:01:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:01:10 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:01:10 [DEBUG] Begin Injection +2022/02/28 11:01:10 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:01:10 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw] Content-Type:[application/json]] {{"desc":"","name":"acctest_qqw6f","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x347ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:01:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:01:10 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:01:10 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c5e1e1d0000d9614fb948] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000737840 400 [] false false map[] 0xc000414500 0xc000632000} +2022/02/28 11:01:10 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:01:10 [DEBUG] Exit from do method +2022/02/28 11:01:10 [DEBUG] 621c5e1e1d0000d9614fb948: Schema Creation finished successfully +2022/02/28 11:01:10 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Read +2022/02/28 11:01:10 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:10 [DEBUG] Begin Injection +2022/02/28 11:01:10 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:11 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:01:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000097580 160 [] false false map[] 0xc000d9e400 0xc000632000} +2022/02/28 11:01:11 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5e1f1b0000b307fd0c0e","name":"acctest_qqw6f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:11 [DEBUG] Exit from do method +2022/02/28 11:01:11 [DEBUG] 621c5e1f1b0000b307fd0c0e: Creation finished successfully +2022/02/28 11:01:11 [DEBUG] 621c5e1f1b0000b307fd0c0e: Beginning Read +2022/02/28 11:01:11 id: 621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:11 [DEBUG] Begin Injection +2022/02/28 11:01:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae6b80 160 [] false false map[] 0xc000414900 0xc000632000} +2022/02/28 11:01:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d80fc0 400 [] false false map[] 0xc000c9e800 0xc00013e2c0} +2022/02/28 11:01:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e {"id":"621c5e1f1b0000b307fd0c0e","name":"acctest_qqw6f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:01:11 [DEBUG] Exit from do method +2022/02/28 11:01:11 [DEBUG] Exit from do method +2022/02/28 11:01:11 [DEBUG] 621c5e1e1d0000d9614fb948: Read finished successfully +2022/02/28 11:01:11 [DEBUG] 621c5e1f1b0000b307fd0c0e: Read finished successfully +2022/02/28 11:01:11 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:01:11 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:01:11 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:11 [DEBUG] Begin Injection +2022/02/28 11:01:11 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:12 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:12 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000743000 0xc00013e2c0} +2022/02/28 11:01:12 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:12 [DEBUG] acctest_qqw6f: Creation finished successfully +2022/02/28 11:01:12 [DEBUG] acctest_qqw6f: Beginning Read +2022/02/28 11:01:12 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:12 [DEBUG] Begin Injection +2022/02/28 11:01:12 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d815c0 768 [] false false map[] 0xc000414a00 0xc000da8fd0} +2022/02/28 11:01:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:01:12 [DEBUG] Exit from do method +2022/02/28 11:01:12 currentvrfname acctest_qqw6f +2022/02/28 11:01:12 found correct vrfname +2022/02/28 11:01:12 [DEBUG] acctest_qqw6f: Read finished successfully +2022/02/28 11:01:12 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:01:12 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:01:12 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:01:12 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:12 [DEBUG] Begin Injection +2022/02/28 11:01:12 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:12 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:12 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c9ed00 0xc000da8fd0} +2022/02/28 11:01:12 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:12 [DEBUG] : Beginning Read +2022/02/28 11:01:12 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:12 [DEBUG] Begin Injection +2022/02/28 11:01:12 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000830040 1277 [] false false map[] 0xc000414100 0xc000da8fd0} +2022/02/28 11:01:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:01:13 [DEBUG] Exit from do method +2022/02/28 11:01:13 [DEBUG] acctest_qqw6f: Read finished successfully +2022/02/28 11:01:13 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:01:13 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:01:13 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:13 [DEBUG] Begin Injection +2022/02/28 11:01:13 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000742a00 0xc000da8fd0} +2022/02/28 11:01:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:13 [DEBUG] Creation Complete +2022/02/28 11:01:13 [DEBUG] : Beginning Read +2022/02/28 11:01:13 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:13 [DEBUG] Begin Injection +2022/02/28 11:01:13 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae6ec0 1362 [] false false map[] 0xc000c9e000 0xc000da8fd0} +2022/02/28 11:01:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:01:13 [DEBUG] Exit from do method +2022/02/28 11:01:13 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully +2022/02/28 11:01:13 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:13 [DEBUG] New state was assigned lineage "96defb7d-32c6-1559-37e4-f37fbdf31af5" +2022/02/28 11:01:13 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:13 [DEBUG] Begin Injection +2022/02/28 11:01:13 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ee200 1362 [] false false map[] 0xc000414200 0xc000da8fd0} +2022/02/28 11:01:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:01:14 [DEBUG] Exit from do method +2022/02/28 11:01:14 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:01:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:14 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:01:14 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:14 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:01:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:14 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:14 [DEBUG] : Beginning Read +2022/02/28 11:01:14 HTTP request GET mso/api/v1/tenants +2022/02/28 11:01:14 [DEBUG] Begin Injection +2022/02/28 11:01:14 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:01:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d80240 5563 [] false false map[] 0xc000caa100 0xc000da8fd0} +2022/02/28 11:01:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:01:14 [DEBUG] Exit from do method +2022/02/28 11:01:14 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:01:14 [DEBUG] 621c5e1f1b0000b307fd0c0e: Beginning Read +2022/02/28 11:01:14 id: 621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:14 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:14 [DEBUG] Begin Injection +2022/02/28 11:01:14 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Read +2022/02/28 11:01:14 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:14 [DEBUG] Begin Injection +2022/02/28 11:01:14 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d81c80 160 [] false false map[] 0xc000caa700 0xc000632000} +2022/02/28 11:01:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736600 1362 [] false false map[] 0xc000414600 0xc000da8fd0} +2022/02/28 11:01:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e {"id":"621c5e1f1b0000b307fd0c0e","name":"acctest_qqw6f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:01:15 [DEBUG] Exit from do method +2022/02/28 11:01:15 [DEBUG] Exit from do method +2022/02/28 11:01:15 [DEBUG] 621c5e1e1d0000d9614fb948: Read finished successfully +2022/02/28 11:01:15 [DEBUG] 621c5e1f1b0000b307fd0c0e: Read finished successfully +2022/02/28 11:01:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:15 [DEBUG] acctest_qqw6f: Beginning Read +2022/02/28 11:01:15 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:15 [DEBUG] Begin Injection +2022/02/28 11:01:15 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008ac940 1362 [] false false map[] 0xc000742700 0xc000da8fd0} +2022/02/28 11:01:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:01:15 [DEBUG] Exit from do method +2022/02/28 11:01:15 currentvrfname acctest_qqw6f +2022/02/28 11:01:15 found correct vrfname +2022/02/28 11:01:15 [DEBUG] acctest_qqw6f: Read finished successfully +2022/02/28 11:01:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:01:15 [DEBUG] acctest_qqw6f: Beginning Read +2022/02/28 11:01:15 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:15 [DEBUG] Begin Injection +2022/02/28 11:01:15 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008b6c40 1362 [] false false map[] 0xc000414b00 0xc000da8fd0} +2022/02/28 11:01:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:01:16 [DEBUG] Exit from do method +2022/02/28 11:01:16 [DEBUG] acctest_qqw6f: Read finished successfully +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:01:16 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Read +2022/02/28 11:01:16 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:16 [DEBUG] Begin Injection +2022/02/28 11:01:16 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736080 1362 [] false false map[] 0xc000742b00 0xc000da8fd0} +2022/02/28 11:01:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:01:16 [DEBUG] Exit from do method +2022/02/28 11:01:16 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully +2022/02/28 11:01:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:16 [DEBUG] New state was assigned lineage "45399aee-4758-de0a-3072-cc35585a2b2e" +2022/02/28 11:01:16 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:01:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:16 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:01:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:16 [DEBUG] Test: Executing step 5 +2022/02/28 11:01:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:01:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:16 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:01:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:16 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:01:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:16 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:16 [DEBUG] : Beginning Read +2022/02/28 11:01:16 HTTP request GET mso/api/v1/tenants +2022/02/28 11:01:16 [DEBUG] Begin Injection +2022/02/28 11:01:16 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:01:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008ad140 5563 [] false false map[] 0xc000742200 0xc000da8fd0} +2022/02/28 11:01:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:01:17 [DEBUG] Exit from do method +2022/02/28 11:01:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:01:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:01:17 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 11:01:17 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:01:17 [DEBUG] 621c5e1f1b0000b307fd0c0e: Beginning Read +2022/02/28 11:01:17 id: 621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:17 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:17 [DEBUG] Begin Injection +2022/02/28 11:01:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:17 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Read +2022/02/28 11:01:17 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:17 [DEBUG] Begin Injection +2022/02/28 11:01:17 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736b80 160 [] false false map[] 0xc00104cc00 0xc000da8fd0} +2022/02/28 11:01:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ab6f00 1362 [] false false map[] 0xc000b2a000 0xc000632000} +2022/02/28 11:01:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e {"id":"621c5e1f1b0000b307fd0c0e","name":"acctest_qqw6f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:01:17 [DEBUG] Exit from do method +2022/02/28 11:01:17 [DEBUG] Exit from do method +2022/02/28 11:01:17 [DEBUG] 621c5e1e1d0000d9614fb948: Read finished successfully +2022/02/28 11:01:17 [DEBUG] 621c5e1f1b0000b307fd0c0e: Read finished successfully +2022/02/28 11:01:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:17 [DEBUG] acctest_qqw6f: Beginning Read +2022/02/28 11:01:17 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:17 [DEBUG] Begin Injection +2022/02/28 11:01:17 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00062c040 1362 [] false false map[] 0xc000ad0700 0xc000632000} +2022/02/28 11:01:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:01:17 [DEBUG] Exit from do method +2022/02/28 11:01:17 currentvrfname acctest_qqw6f +2022/02/28 11:01:17 found correct vrfname +2022/02/28 11:01:17 [DEBUG] acctest_qqw6f: Read finished successfully +2022/02/28 11:01:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:01:17 [DEBUG] acctest_qqw6f: Beginning Read +2022/02/28 11:01:17 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:17 [DEBUG] Begin Injection +2022/02/28 11:01:17 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00062ca80 1362 [] false false map[] 0xc000742300 0xc000632000} +2022/02/28 11:01:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:01:18 [DEBUG] Exit from do method +2022/02/28 11:01:18 [DEBUG] acctest_qqw6f: Read finished successfully +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:01:18 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Read +2022/02/28 11:01:18 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:18 [DEBUG] Begin Injection +2022/02/28 11:01:18 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ab6f00 1362 [] false false map[] 0xc000414600 0xc000632000} +2022/02/28 11:01:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:01:18 [DEBUG] Exit from do method +2022/02/28 11:01:18 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully +2022/02/28 11:01:18 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:18 [DEBUG] New state was assigned lineage "43affaaf-60f4-3865-13ce-32477b904379" +2022/02/28 11:01:18 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:01:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:18 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:18 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:01:18 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:18 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.example + description: "" => "" + id: "" => "" + name: "" => "acctest_nskt7" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +UPDATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_qqw6f" => "acctest_qqw6f" + dhcp_option_name: "" => "acctest_nskt7" + dhcp_option_version: "0" => "1" + id: "/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f" => "/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f" + name: "acctest_qqw6f" => "acctest_qqw6f" + schema_id: "621c5e1e1d0000d9614fb948" => "621c5e1e1d0000d9614fb948" + template_name: "acctest_ifkqt" => "acctest_ifkqt" + version: "0" => "1" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c5e1f1b0000b307fd0c0e + provider = provider.mso + description = + name = acctest_qqw6f + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5e1e1d0000d9614fb948 + provider = provider.mso + name = acctest_ifkqt + template_name = acctest_ifkqt + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_qqw6f + provider = provider.mso + dhcp_policy.name = acctest_qqw6f + dhcp_policy.version = 0 + display_name = acctest_qqw6f + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_qqw6f + schema_id = 621c5e1e1d0000d9614fb948 + template_name = acctest_ifkqt + vrf_name = acctest_qqw6f + vrf_schema_id = 621c5e1e1d0000d9614fb948 + vrf_template_name = acctest_ifkqt + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f + provider = provider.mso + bd_name = acctest_qqw6f + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_qqw6f + schema_id = 621c5e1e1d0000d9614fb948 + template_name = acctest_ifkqt + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_qqw6f + provider = provider.mso + display_name = acctest_qqw6f + layer3_multicast = false + name = acctest_qqw6f + schema_id = 621c5e1e1d0000d9614fb948 + template = acctest_ifkqt + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:01:18 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:01:18 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 11:01:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_option_policy.example (prepare state)] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (prepare state)" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:01:18 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:01:18 [DEBUG] mso_dhcp_option_policy.example: applying the planned Create change +2022/02/28 11:01:18 [DEBUG] : Beginning Create +2022/02/28 11:01:18 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 11:01:18 [DEBUG] Begin Injection +2022/02/28 11:01:18 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 11:01:18 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_nskt7","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x347ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:01:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:01:18 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:01:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000978140 161 [] false false map[] 0xc000caad00 0xc000632000} +2022/02/28 11:01:18 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c5e261b0000b207fd0c0f","name":"acctest_nskt7","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:18 [DEBUG] Exit from do method +2022/02/28 11:01:18 [DEBUG] 621c5e261b0000b207fd0c0f: Creation finished successfully +2022/02/28 11:01:18 [DEBUG] 621c5e261b0000b207fd0c0f: Beginning Read +2022/02/28 11:01:18 id: 621c5e261b0000b207fd0c0f +2022/02/28 11:01:18 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:18 [DEBUG] Begin Injection +2022/02/28 11:01:18 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000978480 161 [] false false map[] 0xc000742000 0xc000632000} +2022/02/28 11:01:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f {"id":"621c5e261b0000b207fd0c0f","name":"acctest_nskt7","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:19 [DEBUG] Exit from do method +2022/02/28 11:01:19 [DEBUG] 621c5e261b0000b207fd0c0f: Read finished successfully +2022/02/28 11:01:19 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change +2022/02/28 11:01:19 [DEBUG] Template BD: Beginning Update +2022/02/28 11:01:19 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:19 [DEBUG] Begin Injection +2022/02/28 11:01:19 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:19 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000414d00 0xc000632000} +2022/02/28 11:01:19 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:19 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Read +2022/02/28 11:01:19 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:19 [DEBUG] Begin Injection +2022/02/28 11:01:19 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000978b80 1472 [] false false map[] 0xc000cab800 0xc000632000} +2022/02/28 11:01:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:01:19 [DEBUG] Exit from do method +2022/02/28 11:01:19 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully +2022/02/28 11:01:19 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:19 [DEBUG] New state was assigned lineage "3ee4f7af-a14c-39f1-12bc-2a39d4cc6303" +2022/02/28 11:01:19 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:19 [DEBUG] Begin Injection +2022/02/28 11:01:19 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008ac040 1472 [] false false map[] 0xc000742000 0xc000632000} +2022/02/28 11:01:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:01:20 [DEBUG] Exit from do method +2022/02/28 11:01:20 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:01:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:01:20 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:01:20 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:20 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:01:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example] +2022/02/28 11:01:20 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:20 [DEBUG] : Beginning Read +2022/02/28 11:01:20 HTTP request GET mso/api/v1/tenants +2022/02/28 11:01:20 [DEBUG] Begin Injection +2022/02/28 11:01:20 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:01:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006dec00 5563 [] false false map[] 0xc000cabe00 0xc000632000} +2022/02/28 11:01:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:01:20 [DEBUG] Exit from do method +2022/02/28 11:01:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:01:20 [DEBUG] 621c5e261b0000b207fd0c0f: Beginning Read +2022/02/28 11:01:20 id: 621c5e261b0000b207fd0c0f +2022/02/28 11:01:20 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:20 [DEBUG] Begin Injection +2022/02/28 11:01:20 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:20 [DEBUG] 621c5e1f1b0000b307fd0c0e: Beginning Read +2022/02/28 11:01:20 id: 621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:20 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Read +2022/02/28 11:01:20 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:20 [DEBUG] Begin Injection +2022/02/28 11:01:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:20 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:20 [DEBUG] Begin Injection +2022/02/28 11:01:20 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ab6280 161 [] false false map[] 0xc000414600 0xc000632000} +2022/02/28 11:01:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f {"id":"621c5e261b0000b207fd0c0f","name":"acctest_nskt7","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:20 [DEBUG] Exit from do method +2022/02/28 11:01:20 [DEBUG] 621c5e261b0000b207fd0c0f: Read finished successfully +2022/02/28 11:01:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d81d40 160 [] false false map[] 0xc000ad0300 0xc000da8fd0} +2022/02/28 11:01:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e {"id":"621c5e1f1b0000b307fd0c0e","name":"acctest_qqw6f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:20 [DEBUG] Exit from do method +2022/02/28 11:01:20 [DEBUG] 621c5e1f1b0000b307fd0c0e: Read finished successfully +2022/02/28 11:01:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006df740 1472 [] false false map[] 0xc001106600 0xc000632000} +2022/02/28 11:01:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:01:21 [DEBUG] Exit from do method +2022/02/28 11:01:21 [DEBUG] 621c5e1e1d0000d9614fb948: Read finished successfully +2022/02/28 11:01:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:21 [DEBUG] acctest_qqw6f: Beginning Read +2022/02/28 11:01:21 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:21 [DEBUG] Begin Injection +2022/02/28 11:01:21 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d81e00 1472 [] false false map[] 0xc000ad0800 0xc000632000} +2022/02/28 11:01:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:01:21 [DEBUG] Exit from do method +2022/02/28 11:01:21 currentvrfname acctest_qqw6f +2022/02/28 11:01:21 found correct vrfname +2022/02/28 11:01:21 [DEBUG] acctest_qqw6f: Read finished successfully +2022/02/28 11:01:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:01:21 [DEBUG] acctest_qqw6f: Beginning Read +2022/02/28 11:01:21 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:21 [DEBUG] Begin Injection +2022/02/28 11:01:21 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008b6040 1472 [] false false map[] 0xc000414900 0xc000da82c0} +2022/02/28 11:01:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:01:21 [DEBUG] Exit from do method +2022/02/28 11:01:21 [DEBUG] acctest_qqw6f: Read finished successfully +2022/02/28 11:01:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:01:21 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Read +2022/02/28 11:01:21 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:21 [DEBUG] Begin Injection +2022/02/28 11:01:21 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ee200 1472 [] false false map[] 0xc001106500 0xc000da82c0} +2022/02/28 11:01:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:01:22 [DEBUG] Exit from do method +2022/02/28 11:01:22 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully +2022/02/28 11:01:22 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:22 [DEBUG] New state was assigned lineage "e80c29b9-bea0-b186-5e22-2ac67615db4f" +2022/02/28 11:01:22 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:01:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:22 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:01:22 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:22 [DEBUG] Test: Executing step 6 +2022/02/28 11:01:22 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f\")" references: [] +2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:22 [DEBUG] Starting graph walk: walkImport +2022/02/28 11:01:22 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Import +2022/02/28 11:01:22 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:22 [DEBUG] Begin Injection +2022/02/28 11:01:22 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736f00 1472 [] false false map[] 0xc000414c00 0xc000da82c0} +2022/02/28 11:01:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:01:22 [DEBUG] Exit from do method +2022/02/28 11:01:22 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Import finished successfully +2022/02/28 11:01:22 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Read +2022/02/28 11:01:22 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:22 [DEBUG] Begin Injection +2022/02/28 11:01:22 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736100 1472 [] false false map[] 0xc000414f00 0xc000da82c0} +2022/02/28 11:01:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:01:23 [DEBUG] Exit from do method +2022/02/28 11:01:23 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully +2022/02/28 11:01:23 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:23 [DEBUG] New state was assigned lineage "6007c05f-1fae-a77c-c2c4-dd14d7bce49b" +2022/02/28 11:01:23 [DEBUG] Test: Executing step 7 +2022/02/28 11:01:23 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:23 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:01:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:01:23 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:01:23 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config +2022/02/28 11:01:23 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:23 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:01:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:23 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:23 [DEBUG] : Beginning Read +2022/02/28 11:01:23 HTTP request GET mso/api/v1/tenants +2022/02/28 11:01:23 [DEBUG] Begin Injection +2022/02/28 11:01:23 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:01:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006dec40 5563 [] false false map[] 0xc0012fd300 0xc000da82c0} +2022/02/28 11:01:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:01:23 [DEBUG] Exit from do method +2022/02/28 11:01:23 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:01:23 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Read +2022/02/28 11:01:23 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:23 [DEBUG] Begin Injection +2022/02/28 11:01:23 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:23 [DEBUG] 621c5e1f1b0000b307fd0c0e: Beginning Read +2022/02/28 11:01:23 id: 621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:23 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:23 [DEBUG] Begin Injection +2022/02/28 11:01:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:23 [DEBUG] 621c5e261b0000b207fd0c0f: Beginning Read +2022/02/28 11:01:23 id: 621c5e261b0000b207fd0c0f +2022/02/28 11:01:23 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:23 [DEBUG] Begin Injection +2022/02/28 11:01:23 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008b6e00 160 [] false false map[] 0xc0000f6200 0xc000da8fd0} +2022/02/28 11:01:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e {"id":"621c5e1f1b0000b307fd0c0e","name":"acctest_qqw6f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c080 1472 [] false false map[] 0xc000ad0600 0xc000da82c0} +2022/02/28 11:01:24 [DEBUG] Exit from do method +2022/02/28 11:01:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:01:24 [DEBUG] Exit from do method +2022/02/28 11:01:24 [DEBUG] 621c5e1f1b0000b307fd0c0e: Read finished successfully +2022/02/28 11:01:24 [DEBUG] 621c5e1e1d0000d9614fb948: Read finished successfully +2022/02/28 11:01:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:24 [DEBUG] acctest_qqw6f: Beginning Read +2022/02/28 11:01:24 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:24 [DEBUG] Begin Injection +2022/02/28 11:01:24 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008ac700 1472 [] false false map[] 0xc000414e00 0xc000da82c0} +2022/02/28 11:01:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:01:24 [DEBUG] Exit from do method +2022/02/28 11:01:24 currentvrfname acctest_qqw6f +2022/02/28 11:01:24 found correct vrfname +2022/02/28 11:01:24 [DEBUG] acctest_qqw6f: Read finished successfully +2022/02/28 11:01:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:01:24 [DEBUG] acctest_qqw6f: Beginning Read +2022/02/28 11:01:24 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:24 [DEBUG] Begin Injection +2022/02/28 11:01:24 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001105200 161 [] false false map[] 0xc000ad0700 0xc000da8fd0} +2022/02/28 11:01:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f {"id":"621c5e261b0000b207fd0c0f","name":"acctest_nskt7","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:24 [DEBUG] Exit from do method +2022/02/28 11:01:24 [DEBUG] 621c5e261b0000b207fd0c0f: Read finished successfully +2022/02/28 11:01:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008b7840 1472 [] false false map[] 0xc000416500 0xc000da82c0} +2022/02/28 11:01:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:01:24 [DEBUG] Exit from do method +2022/02/28 11:01:24 [DEBUG] acctest_qqw6f: Read finished successfully +2022/02/28 11:01:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:01:24 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Read +2022/02/28 11:01:24 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:24 [DEBUG] Begin Injection +2022/02/28 11:01:24 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736200 1472 [] false false map[] 0xc000416a00 0xc0005d0000} +2022/02/28 11:01:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:01:25 [DEBUG] Exit from do method +2022/02/28 11:01:25 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully +2022/02/28 11:01:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:25 [DEBUG] New state was assigned lineage "0ba34c6a-3771-3fba-7863-f3aed4607950" +2022/02/28 11:01:25 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:01:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (orphan)" references: [data.mso_tenant.test] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:25 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:01:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:25 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.example + description: "" => "" + id: "621c5e261b0000b207fd0c0f" => "" + name: "acctest_nskt7" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c5e1f1b0000b307fd0c0e" => "" + name: "acctest_qqw6f" => "acctest_jgi6w" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + dhcp_policy.dhcp_option_policy_name: "acctest_nskt7" => "" + dhcp_policy.dhcp_option_policy_version: "1" => "" + dhcp_policy.name: "acctest_qqw6f" => "" + dhcp_policy.version: "1" => "" + display_name: "acctest_qqw6f" => "acctest_jgi6w" (forces new resource) + id: "acctest_qqw6f" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_qqw6f" => "acctest_jgi6w" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c5e1e1d0000d9614fb948" => "621c5e1e1d0000d9614fb948" + template_name: "acctest_ifkqt" => "acctest_ifkqt" + vrf_name: "acctest_qqw6f" => "acctest_jgi6w" + vrf_schema_id: "621c5e1e1d0000d9614fb948" => "" + vrf_template_name: "acctest_ifkqt" => "" +DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_qqw6f" => "acctest_jgi6w" (forces new resource) + dhcp_option_name: "acctest_nskt7" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f" => "" + name: "acctest_qqw6f" => "acctest_jgi6w" (forces new resource) + schema_id: "621c5e1e1d0000d9614fb948" => "621c5e1e1d0000d9614fb948" + template_name: "acctest_ifkqt" => "acctest_ifkqt" + version: "1" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_qqw6f" => "acctest_jgi6w" + id: "acctest_qqw6f" => "" + layer3_multicast: "false" => "" + name: "acctest_qqw6f" => "acctest_jgi6w" (forces new resource) + schema_id: "621c5e1e1d0000d9614fb948" => "621c5e1e1d0000d9614fb948" + template: "acctest_ifkqt" => "acctest_ifkqt" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.example: + ID = 621c5e261b0000b207fd0c0f + provider = provider.mso + description = + name = acctest_nskt7 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c5e1f1b0000b307fd0c0e + provider = provider.mso + description = + name = acctest_qqw6f + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5e1e1d0000d9614fb948 + provider = provider.mso + name = acctest_ifkqt + template_name = acctest_ifkqt + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_qqw6f + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_nskt7 + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_qqw6f + dhcp_policy.version = 1 + display_name = acctest_qqw6f + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_qqw6f + schema_id = 621c5e1e1d0000d9614fb948 + template_name = acctest_ifkqt + vrf_name = acctest_qqw6f + vrf_schema_id = 621c5e1e1d0000d9614fb948 + vrf_template_name = acctest_ifkqt + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f + provider = provider.mso + bd_name = acctest_qqw6f + dhcp_option_name = acctest_nskt7 + dhcp_option_version = 1 + name = acctest_qqw6f + schema_id = 621c5e1e1d0000d9614fb948 + template_name = acctest_ifkqt + version = 1 + + Dependencies: + mso_dhcp_option_policy.example + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_qqw6f + provider = provider.mso + display_name = acctest_qqw6f + layer3_multicast = false + name = acctest_qqw6f + schema_id = 621c5e1e1d0000d9614fb948 + template = acctest_ifkqt + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:01:25 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:01:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:01:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:01:25 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:01:25 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change +2022/02/28 11:01:25 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:01:25 [DEBUG] 621c5e261b0000b207fd0c0f: Beginning Read +2022/02/28 11:01:25 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:25 [DEBUG] Begin Injection +2022/02/28 11:01:25 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:25 [DEBUG] Template BD: Beginning Update +2022/02/28 11:01:25 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:25 [DEBUG] Begin Injection +2022/02/28 11:01:25 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:25 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:25 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[84] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:25 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000966200 84 [] false false map[] 0xc00115c500 0xc0005d0000} +2022/02/28 11:01:25 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001078200 0xc000da8fd0} +2022/02/28 11:01:25 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:25 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f {"code":144,"message":"Cannot Delete Resource: Policy acctest_nskt7 is being used."} +2022/02/28 11:01:25 [DEBUG] mso_dhcp_option_policy.example: apply errored, but we're indicating that via the Error pointer rather than returning it: Unable to delete the object +2022/02/28 11:01:25 [ERROR] : eval: *terraform.EvalApplyPost, err: Unable to delete the object +2022/02/28 11:01:25 [ERROR] : eval: *terraform.EvalSequence, err: Unable to delete the object +2022/02/28 11:01:25 [ERROR] : eval: *terraform.EvalOpFilter, err: Unable to delete the object +2022/02/28 11:01:25 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:01:25 [DEBUG] 621c5e1f1b0000b307fd0c0e: Beginning Read +2022/02/28 11:01:25 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:25 [DEBUG] Begin Injection +2022/02/28 11:01:25 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:01:25 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:25 [DEBUG] Template BD: Beginning Update +2022/02/28 11:01:25 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:25 [DEBUG] Begin Injection +2022/02/28 11:01:25 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:25 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001006d00 0xc0005d0000} +2022/02/28 11:01:25 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e +2022/02/28 11:01:25 [DEBUG] : Read finished successfully +2022/02/28 11:01:25 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:01:25 [DEBUG] : Beginning Create +2022/02/28 11:01:25 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:01:25 [DEBUG] Begin Injection +2022/02/28 11:01:25 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:01:25 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw] Content-Type:[application/json]] {{"desc":"","name":"acctest_jgi6w","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x347ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:01:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:01:25 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ad0400 0xc000da8fd0} +2022/02/28 11:01:25 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:25 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:01:25 [DEBUG] acctest_qqw6f: Beginning Destroy +2022/02/28 11:01:25 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:25 [DEBUG] Begin Injection +2022/02/28 11:01:25 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:26 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:01:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000966040 160 [] false false map[] 0xc001078300 0xc0005d0000} +2022/02/28 11:01:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00115c700 0xc000da8fd0} +2022/02/28 11:01:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:26 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5e2e1b0000b507fd0c10","name":"acctest_jgi6w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:26 [DEBUG] Exit from do method +2022/02/28 11:01:26 [DEBUG] acctest_qqw6f: Destroy finished successfully +2022/02/28 11:01:26 [DEBUG] 621c5e2e1b0000b507fd0c10: Creation finished successfully +2022/02/28 11:01:26 [DEBUG] 621c5e2e1b0000b507fd0c10: Beginning Read +2022/02/28 11:01:26 id: 621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:26 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:26 [DEBUG] Begin Injection +2022/02/28 11:01:26 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:26 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:01:26 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:01:26 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:26 [DEBUG] Begin Injection +2022/02/28 11:01:26 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c45440 160 [] false false map[] 0xc000416000 0xc0005d0000} +2022/02/28 11:01:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 {"id":"621c5e2e1b0000b507fd0c10","name":"acctest_jgi6w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:26 [DEBUG] Exit from do method +2022/02/28 11:01:26 [DEBUG] 621c5e2e1b0000b507fd0c10: Read finished successfully +2022/02/28 11:01:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001006500 0xc000da8fd0} +2022/02/28 11:01:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:26 [DEBUG] acctest_jgi6w: Creation finished successfully +2022/02/28 11:01:26 [DEBUG] acctest_jgi6w: Beginning Read +2022/02/28 11:01:26 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:26 [DEBUG] Begin Injection +2022/02/28 11:01:26 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c45500 768 [] false false map[] 0xc000ad0000 0xc000da8fd0} +2022/02/28 11:01:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 11:01:27 [DEBUG] Exit from do method +2022/02/28 11:01:27 currentvrfname acctest_jgi6w +2022/02/28 11:01:27 found correct vrfname +2022/02/28 11:01:27 [DEBUG] acctest_jgi6w: Read finished successfully +2022/02/28 11:01:27 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:01:27 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:01:27 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:01:27 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:27 [DEBUG] Begin Injection +2022/02/28 11:01:27 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:27 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001006c00 0xc000da8fd0} +2022/02/28 11:01:27 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:27 [DEBUG] : Beginning Read +2022/02/28 11:01:27 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:27 [DEBUG] Begin Injection +2022/02/28 11:01:27 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ee200 1278 [] false false map[] 0xc00115c000 0xc000da8fd0} +2022/02/28 11:01:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 11:01:27 [DEBUG] Exit from do method +2022/02/28 11:01:27 [DEBUG] acctest_jgi6w: Read finished successfully +2022/02/28 11:01:27 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:01:27 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:01:27 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:27 [DEBUG] Begin Injection +2022/02/28 11:01:27 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:28 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00115cb00 0xc000da8fd0} +2022/02/28 11:01:28 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:28 [DEBUG] Creation Complete +2022/02/28 11:01:28 [DEBUG] : Beginning Read +2022/02/28 11:01:28 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:28 [DEBUG] Begin Injection +2022/02/28 11:01:28 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736140 1363 [] false false map[] 0xc001006000 0xc000da8fd0} +2022/02/28 11:01:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","dhcpLabel":{"name":"acctest_jgi6w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jgi6w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:01:28 [DEBUG] Exit from do method +2022/02/28 11:01:28 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w/dhcpLabels/acctest_jgi6w: Read finished successfully +2022/02/28 11:01:28 [DEBUG] New state was assigned lineage "9f303055-c282-98ca-5d95-196c42fda878" +2022/02/28 11:01:28 [WARN] Test: Executing destroy step +2022/02/28 11:01:28 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:28 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:01:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:01:28 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:01:28 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:28 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config +2022/02/28 11:01:28 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:01:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:01:28 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:28 [DEBUG] : Beginning Read +2022/02/28 11:01:28 HTTP request GET mso/api/v1/tenants +2022/02/28 11:01:28 [DEBUG] Begin Injection +2022/02/28 11:01:28 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:01:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:28 [DEBUG] 621c5e261b0000b207fd0c0f: Beginning Read +2022/02/28 11:01:28 id: 621c5e261b0000b207fd0c0f +2022/02/28 11:01:28 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:28 [DEBUG] Begin Injection +2022/02/28 11:01:28 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009663c0 5563 [] false false map[] 0xc000cbc300 0xc000da8fd0} +2022/02/28 11:01:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008b7700 161 [] false false map[] 0xc00115d600 0xc0005d0000} +2022/02/28 11:01:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f {"id":"621c5e261b0000b207fd0c0f","name":"acctest_nskt7","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:01:29 [DEBUG] Exit from do method +2022/02/28 11:01:29 [DEBUG] Exit from do method +2022/02/28 11:01:29 [DEBUG] 621c5e261b0000b207fd0c0f: Read finished successfully +2022/02/28 11:01:29 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:01:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:01:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:01:29 [DEBUG] 621c5e2e1b0000b507fd0c10: Beginning Read +2022/02/28 11:01:29 id: 621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:29 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Read +2022/02/28 11:01:29 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:29 [DEBUG] Begin Injection +2022/02/28 11:01:29 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:29 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:29 [DEBUG] Begin Injection +2022/02/28 11:01:29 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d80040 1363 [] false false map[] 0xc000cbc800 0xc0005d0000} +2022/02/28 11:01:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","dhcpLabel":{"name":"acctest_jgi6w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jgi6w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:01:29 [DEBUG] Exit from do method +2022/02/28 11:01:29 [DEBUG] 621c5e1e1d0000d9614fb948: Read finished successfully +2022/02/28 11:01:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:01:29 [DEBUG] acctest_jgi6w: Beginning Read +2022/02/28 11:01:29 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:29 [DEBUG] Begin Injection +2022/02/28 11:01:29 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ee240 160 [] false false map[] 0xc000d8a200 0xc000da8fd0} +2022/02/28 11:01:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 {"id":"621c5e2e1b0000b507fd0c10","name":"acctest_jgi6w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:01:29 [DEBUG] Exit from do method +2022/02/28 11:01:29 [DEBUG] 621c5e2e1b0000b507fd0c10: Read finished successfully +2022/02/28 11:01:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000966240 1363 [] false false map[] 0xc00115c200 0xc0005d0000} +2022/02/28 11:01:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","dhcpLabel":{"name":"acctest_jgi6w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jgi6w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:01:29 [DEBUG] Exit from do method +2022/02/28 11:01:29 currentvrfname acctest_jgi6w +2022/02/28 11:01:29 found correct vrfname +2022/02/28 11:01:29 [DEBUG] acctest_jgi6w: Read finished successfully +2022/02/28 11:01:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:01:29 [DEBUG] acctest_jgi6w: Beginning Read +2022/02/28 11:01:29 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:29 [DEBUG] Begin Injection +2022/02/28 11:01:29 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d81840 1363 [] false false map[] 0xc000414200 0xc0005d0000} +2022/02/28 11:01:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","dhcpLabel":{"name":"acctest_jgi6w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jgi6w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:01:30 [DEBUG] Exit from do method +2022/02/28 11:01:30 [DEBUG] acctest_jgi6w: Read finished successfully +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:01:30 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w/dhcpLabels/acctest_jgi6w: Beginning Read +2022/02/28 11:01:30 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:30 [DEBUG] Begin Injection +2022/02/28 11:01:30 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009789c0 1363 [] false false map[] 0xc00115c800 0xc0005d0000} +2022/02/28 11:01:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","dhcpLabel":{"name":"acctest_jgi6w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jgi6w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:01:30 [DEBUG] Exit from do method +2022/02/28 11:01:30 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w/dhcpLabels/acctest_jgi6w: Read finished successfully +2022/02/28 11:01:30 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:30 [DEBUG] New state was assigned lineage "7ae30b0d-b96e-84d5-5665-4a5e4dc6b82c" +2022/02/28 11:01:30 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:01:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:30 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:01:30 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_option_policy.example + description: "" => "" + id: "621c5e261b0000b207fd0c0f" => "" + name: "acctest_nskt7" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c5e2e1b0000b507fd0c10" => "" + name: "acctest_jgi6w" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c5e1e1d0000d9614fb948" => "" + name: "acctest_ifkqt" => "" + template_name: "acctest_ifkqt" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_jgi6w" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_jgi6w" => "" + id: "acctest_jgi6w" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_jgi6w" => "" + schema_id: "621c5e1e1d0000d9614fb948" => "" + template_name: "acctest_ifkqt" => "" + vrf_name: "acctest_jgi6w" => "" + vrf_schema_id: "621c5e1e1d0000d9614fb948" => "" + vrf_template_name: "acctest_ifkqt" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_jgi6w" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w/dhcpLabels/acctest_jgi6w" => "" + name: "acctest_jgi6w" => "" + schema_id: "621c5e1e1d0000d9614fb948" => "" + template_name: "acctest_ifkqt" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_jgi6w" => "" + id: "acctest_jgi6w" => "" + layer3_multicast: "false" => "" + name: "acctest_jgi6w" => "" + schema_id: "621c5e1e1d0000d9614fb948" => "" + template: "acctest_ifkqt" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.example: + ID = 621c5e261b0000b207fd0c0f + provider = provider.mso + description = + name = acctest_nskt7 + tenant_id = 620cf5ad1d0000ab504f9a3d +mso_dhcp_relay_policy.test: + ID = 621c5e2e1b0000b507fd0c10 + provider = provider.mso + description = + name = acctest_jgi6w + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5e1e1d0000d9614fb948 + provider = provider.mso + name = acctest_ifkqt + template_name = acctest_ifkqt + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_jgi6w + provider = provider.mso + dhcp_policy.name = acctest_jgi6w + dhcp_policy.version = 0 + display_name = acctest_jgi6w + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_jgi6w + schema_id = 621c5e1e1d0000d9614fb948 + template_name = acctest_ifkqt + vrf_name = acctest_jgi6w + vrf_schema_id = 621c5e1e1d0000d9614fb948 + vrf_template_name = acctest_ifkqt + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w/dhcpLabels/acctest_jgi6w + provider = provider.mso + bd_name = acctest_jgi6w + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_jgi6w + schema_id = 621c5e1e1d0000d9614fb948 + template_name = acctest_ifkqt + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_jgi6w + provider = provider.mso + display_name = acctest_jgi6w + layer3_multicast = false + name = acctest_jgi6w + schema_id = 621c5e1e1d0000d9614fb948 + template = acctest_ifkqt + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:01:30 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:01:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:01:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:01:30 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:01:30 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:01:30 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:01:30 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:01:30 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:01:30 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:01:30 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:01:30 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:01:30 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change +2022/02/28 11:01:30 [DEBUG] Template BD: Beginning Update +2022/02/28 11:01:30 [DEBUG] 621c5e261b0000b207fd0c0f: Beginning Read +2022/02/28 11:01:30 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:30 [DEBUG] Begin Injection +2022/02/28 11:01:30 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:30 [DEBUG] Begin Injection +2022/02/28 11:01:30 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:30 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:30 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00115cc00 0xc0005d0000} +2022/02/28 11:01:30 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f +2022/02/28 11:01:30 [DEBUG] : Read finished successfully +2022/02/28 11:01:30 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000414b00 0xc000da8fd0} +2022/02/28 11:01:30 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:30 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:01:30 [DEBUG] 621c5e2e1b0000b507fd0c10: Beginning Read +2022/02/28 11:01:30 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:30 [DEBUG] Begin Injection +2022/02/28 11:01:30 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:01:30 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:30 [DEBUG] Template BD: Beginning Update +2022/02/28 11:01:30 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:30 [DEBUG] Begin Injection +2022/02/28 11:01:30 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:31 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00115d800 0xc000da8fd0} +2022/02/28 11:01:31 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 +2022/02/28 11:01:31 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:31 [DEBUG] : Read finished successfully +2022/02/28 11:01:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000414e00 0xc0005d0000} +2022/02/28 11:01:31 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:31 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:01:31 [DEBUG] acctest_jgi6w: Beginning Destroy +2022/02/28 11:01:31 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:31 [DEBUG] Begin Injection +2022/02/28 11:01:31 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:31 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000415500 0xc0005d0000} +2022/02/28 11:01:31 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false +2022/02/28 11:01:31 [DEBUG] acctest_jgi6w: Destroy finished successfully +2022/02/28 11:01:31 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:01:31 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Destroy +2022/02/28 11:01:31 HTTP request DELETE mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:31 [DEBUG] Begin Injection +2022/02/28 11:01:31 HTTP request after injection DELETE mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:31 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00115df00 0xc0005d0000} +2022/02/28 11:01:31 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:31 [DEBUG] 621c5e1e1d0000d9614fb948: Destroy finished successfully +2022/02/28 11:01:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:31 [DEBUG] New state was assigned lineage "23fc3399-8707-58de-1938-f1c5095b5c20" +2022/02/28 11:01:31 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:31 [DEBUG] Begin Injection +2022/02/28 11:01:31 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 +2022/02/28 11:01:32 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:32 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000737d40 39 [] false false map[] 0xc000415800 0xc0005d0000} +2022/02/28 11:01:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"code":404,"message":"Item not found"} +2022/02/28 11:01:32 [DEBUG] Exit from do method +2022/02/28 11:01:32 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:01:32 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:01:32 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:01:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:01:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:01:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:32 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:01:32 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:01:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:32 [DEBUG] : Beginning Read +2022/02/28 11:01:32 HTTP request GET mso/api/v1/tenants +2022/02/28 11:01:32 [DEBUG] Begin Injection +2022/02/28 11:01:32 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:01:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:01:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ab6200 5563 [] false false map[] 0xc000414800 0xc0005d0000} +2022/02/28 11:01:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:01:32 [DEBUG] Exit from do method +2022/02/28 11:01:32 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:01:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:01:32 [DEBUG] New state was assigned lineage "5f04d3cf-7a13-13db-5570-6fb49fcd3152" +2022/02/28 11:01:32 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:01:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:01:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:01:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:01:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:01:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:01:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:01:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:01:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:01:32 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:02:25 [DEBUG] Test: Executing step 0 +2022/02/28 11:02:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:25 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:25 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:02:25 [DEBUG] Test: Executing step 1 +2022/02/28 11:02:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:25 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:02:25 [DEBUG] Test: Executing step 2 +2022/02/28 11:02:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:25 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:02:25 [DEBUG] Test: Executing step 3 +2022/02/28 11:02:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:25 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:02:25 [DEBUG] Test: Executing step 4 +2022/02/28 11:02:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:25 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:25 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:02:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:25 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:25 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:02:25 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:25 [DEBUG] : Beginning Read +2022/02/28 11:02:25 HTTP request GET mso/api/v1/tenants +2022/02/28 11:02:25 [DEBUG] Begin Injection +2022/02/28 11:02:25 HTTP request POST /login +2022/02/28 11:02:25 HTTP request after injection POST /login +2022/02/28 11:02:25 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:02:27 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:02:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:27 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000648900 -1 [chunked] false false map[] 0xc0008b0600 0xc000aca0b0} +2022/02/28 11:02:27 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw"} +2022/02/28 11:02:27 [DEBUG] Exit from do method +2022/02/28 11:02:27 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:02:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a2180 5563 [] false false map[] 0xc0000a6300 0xc000aca0b0} +2022/02/28 11:02:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:02:27 [DEBUG] Exit from do method +2022/02/28 11:02:27 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:02:27 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:27 [DEBUG] New state was assigned lineage "9ae8c85d-c3d4-902e-f8ec-26a6ad3b02ce" +2022/02/28 11:02:27 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:02:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:27 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:27 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:27 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:02:27 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:27 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:02:27 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:02:27 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:27 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_aj6np" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_ewqek" + template_name: "" => "acctest_ewqek" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_aj6np" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_aj6np" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_ewqek" + vrf_name: "" => "acctest_aj6np" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_aj6np" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_aj6np" + schema_id: "" => "" + template_name: "" => "acctest_ewqek" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_aj6np" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_aj6np" + schema_id: "" => "" + template: "" => "acctest_ewqek" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:02:27 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:02:27 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:02:27 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:02:27 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:02:27 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:02:27 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:02:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:02:27 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:02:27 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:02:27 [DEBUG] Schema: Beginning Creation +2022/02/28 11:02:27 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:02:27 HTTP request POST mso/api/v1/schemas +2022/02/28 11:02:27 [DEBUG] Begin Injection +2022/02/28 11:02:27 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:02:27 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw] Content-Type:[application/json]] {{"displayName":"acctest_ewqek","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_ewqek","externalEpgs":[],"filters":[],"name":"acctest_ewqek","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xa77ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:02:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:02:27 [DEBUG] : Beginning Create +2022/02/28 11:02:27 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:02:27 [DEBUG] Begin Injection +2022/02/28 11:02:27 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:02:27 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw] Content-Type:[application/json]] {{"desc":"","name":"acctest_aj6np","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa77ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:02:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:02:28 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:02:28 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c5e6b1d0000e7614fb957] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a2680 400 [] false false map[] 0xc0008b0500 0xc000aca0b0} +2022/02/28 11:02:28 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:02:28 [DEBUG] Exit from do method +2022/02/28 11:02:28 [DEBUG] 621c5e6b1d0000e7614fb957: Schema Creation finished successfully +2022/02/28 11:02:28 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Read +2022/02/28 11:02:28 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:28 [DEBUG] Begin Injection +2022/02/28 11:02:28 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:28 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:02:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0fc0 160 [] false false map[] 0xc0000a6500 0xc000aca0b0} +2022/02/28 11:02:28 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5e6c1b0000c407fd0c11","name":"acctest_aj6np","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:28 [DEBUG] Exit from do method +2022/02/28 11:02:28 [DEBUG] 621c5e6c1b0000c407fd0c11: Creation finished successfully +2022/02/28 11:02:28 [DEBUG] 621c5e6c1b0000c407fd0c11: Beginning Read +2022/02/28 11:02:28 id: 621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:28 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:28 [DEBUG] Begin Injection +2022/02/28 11:02:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000649580 400 [] false false map[] 0xc0009f0000 0xc000aca0b0} +2022/02/28 11:02:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:02:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da12c0 160 [] false false map[] 0xc0009f0200 0xc0009fe210} +2022/02/28 11:02:29 [DEBUG] Exit from do method +2022/02/28 11:02:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 {"id":"621c5e6c1b0000c407fd0c11","name":"acctest_aj6np","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:29 [DEBUG] 621c5e6b1d0000e7614fb957: Read finished successfully +2022/02/28 11:02:29 [DEBUG] Exit from do method +2022/02/28 11:02:29 [DEBUG] 621c5e6c1b0000c407fd0c11: Read finished successfully +2022/02/28 11:02:29 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:02:29 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:02:29 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:29 [DEBUG] Begin Injection +2022/02/28 11:02:29 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:29 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:29 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a6c00 0xc000aca0b0} +2022/02/28 11:02:29 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:29 [DEBUG] acctest_aj6np: Creation finished successfully +2022/02/28 11:02:29 [DEBUG] acctest_aj6np: Beginning Read +2022/02/28 11:02:29 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:29 [DEBUG] Begin Injection +2022/02/28 11:02:29 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a3e00 768 [] false false map[] 0xc000c40300 0xc000aca0b0} +2022/02/28 11:02:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:02:29 [DEBUG] Exit from do method +2022/02/28 11:02:29 currentvrfname acctest_aj6np +2022/02/28 11:02:29 found correct vrfname +2022/02/28 11:02:29 [DEBUG] acctest_aj6np: Read finished successfully +2022/02/28 11:02:29 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:02:29 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:02:29 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:02:29 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:29 [DEBUG] Begin Injection +2022/02/28 11:02:29 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:30 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c40200 0xc0009fe6e0} +2022/02/28 11:02:30 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:30 [DEBUG] : Beginning Read +2022/02/28 11:02:30 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:30 [DEBUG] Begin Injection +2022/02/28 11:02:30 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c5d140 1277 [] false false map[] 0xc0008b0200 0xc0009fe6e0} +2022/02/28 11:02:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:02:30 [DEBUG] Exit from do method +2022/02/28 11:02:30 [DEBUG] acctest_aj6np: Read finished successfully +2022/02/28 11:02:30 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:02:30 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:02:30 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:30 [DEBUG] Begin Injection +2022/02/28 11:02:30 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:31 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0009f0300 0xc0009fe6e0} +2022/02/28 11:02:31 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:31 [DEBUG] Creation Complete +2022/02/28 11:02:31 [DEBUG] : Beginning Read +2022/02/28 11:02:31 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:31 [DEBUG] Begin Injection +2022/02/28 11:02:31 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a2180 1362 [] false false map[] 0xc000c40800 0xc0009fe6e0} +2022/02/28 11:02:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:02:31 [DEBUG] Exit from do method +2022/02/28 11:02:31 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully +2022/02/28 11:02:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:31 [DEBUG] New state was assigned lineage "7aaa4c05-cbba-3565-1d20-412d852bf9f5" +2022/02/28 11:02:31 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:31 [DEBUG] Begin Injection +2022/02/28 11:02:31 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000648600 1362 [] false false map[] 0xc0008b0000 0xc0009fe6e0} +2022/02/28 11:02:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:02:31 [DEBUG] Exit from do method +2022/02/28 11:02:31 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:02:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:31 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:02:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:31 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:02:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:31 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:31 [DEBUG] : Beginning Read +2022/02/28 11:02:31 HTTP request GET mso/api/v1/tenants +2022/02/28 11:02:31 [DEBUG] Begin Injection +2022/02/28 11:02:31 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:02:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a25c0 5563 [] false false map[] 0xc0009f0000 0xc0009fe6e0} +2022/02/28 11:02:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:02:32 [DEBUG] Exit from do method +2022/02/28 11:02:32 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:02:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:02:32 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Read +2022/02/28 11:02:32 [DEBUG] 621c5e6c1b0000c407fd0c11: Beginning Read +2022/02/28 11:02:32 id: 621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:32 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:32 [DEBUG] Begin Injection +2022/02/28 11:02:32 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:32 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:32 [DEBUG] Begin Injection +2022/02/28 11:02:32 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a96d00 160 [] false false map[] 0xc0008b0700 0xc0009fe6e0} +2022/02/28 11:02:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 {"id":"621c5e6c1b0000c407fd0c11","name":"acctest_aj6np","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:32 [DEBUG] Exit from do method +2022/02/28 11:02:32 [DEBUG] 621c5e6c1b0000c407fd0c11: Read finished successfully +2022/02/28 11:02:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a3940 1362 [] false false map[] 0xc000c40500 0xc000aca4d0} +2022/02/28 11:02:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:02:32 [DEBUG] Exit from do method +2022/02/28 11:02:32 [DEBUG] 621c5e6b1d0000e7614fb957: Read finished successfully +2022/02/28 11:02:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:32 [DEBUG] acctest_aj6np: Beginning Read +2022/02/28 11:02:32 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:32 [DEBUG] Begin Injection +2022/02/28 11:02:32 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c5c580 1362 [] false false map[] 0xc0000a6c00 0xc000aca4d0} +2022/02/28 11:02:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:02:32 [DEBUG] Exit from do method +2022/02/28 11:02:32 currentvrfname acctest_aj6np +2022/02/28 11:02:32 found correct vrfname +2022/02/28 11:02:32 [DEBUG] acctest_aj6np: Read finished successfully +2022/02/28 11:02:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:02:32 [DEBUG] acctest_aj6np: Beginning Read +2022/02/28 11:02:32 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:32 [DEBUG] Begin Injection +2022/02/28 11:02:32 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a96dc0 1362 [] false false map[] 0xc0000a7100 0xc000aca4d0} +2022/02/28 11:02:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:02:33 [DEBUG] Exit from do method +2022/02/28 11:02:33 [DEBUG] acctest_aj6np: Read finished successfully +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:02:33 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Read +2022/02/28 11:02:33 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:33 [DEBUG] Begin Injection +2022/02/28 11:02:33 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6b00 1362 [] false false map[] 0xc000c40a00 0xc000aca4d0} +2022/02/28 11:02:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:02:33 [DEBUG] Exit from do method +2022/02/28 11:02:33 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully +2022/02/28 11:02:33 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:33 [DEBUG] New state was assigned lineage "05575503-edce-b206-b3ff-6f2731d26e44" +2022/02/28 11:02:33 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:02:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:33 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:02:33 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:33 [DEBUG] Test: Executing step 5 +2022/02/28 11:02:33 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:02:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:02:33 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:02:33 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:02:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:33 [DEBUG] : Beginning Read +2022/02/28 11:02:33 HTTP request GET mso/api/v1/tenants +2022/02/28 11:02:33 [DEBUG] Begin Injection +2022/02/28 11:02:33 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:02:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0380 5563 [] false false map[] 0xc0008b0200 0xc000aca4d0} +2022/02/28 11:02:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:02:34 [DEBUG] Exit from do method +2022/02/28 11:02:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:02:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:02:34 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 11:02:34 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:02:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:34 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Read +2022/02/28 11:02:34 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:34 [DEBUG] Begin Injection +2022/02/28 11:02:34 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:34 [DEBUG] 621c5e6c1b0000c407fd0c11: Beginning Read +2022/02/28 11:02:34 id: 621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:34 [DEBUG] Begin Injection +2022/02/28 11:02:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000648780 1362 [] false false map[] 0xc0008b0900 0xc000aca4d0} +2022/02/28 11:02:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:02:34 [DEBUG] Exit from do method +2022/02/28 11:02:34 [DEBUG] 621c5e6b1d0000e7614fb957: Read finished successfully +2022/02/28 11:02:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:34 [DEBUG] acctest_aj6np: Beginning Read +2022/02/28 11:02:34 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:34 [DEBUG] Begin Injection +2022/02/28 11:02:34 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000496040 160 [] false false map[] 0xc0000a6500 0xc0009fe6e0} +2022/02/28 11:02:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 {"id":"621c5e6c1b0000c407fd0c11","name":"acctest_aj6np","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:34 [DEBUG] Exit from do method +2022/02/28 11:02:34 [DEBUG] 621c5e6c1b0000c407fd0c11: Read finished successfully +2022/02/28 11:02:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c5c400 1362 [] false false map[] 0xc0009f0f00 0xc000aca4d0} +2022/02/28 11:02:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:02:34 [DEBUG] Exit from do method +2022/02/28 11:02:34 currentvrfname acctest_aj6np +2022/02/28 11:02:34 found correct vrfname +2022/02/28 11:02:34 [DEBUG] acctest_aj6np: Read finished successfully +2022/02/28 11:02:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:02:34 [DEBUG] acctest_aj6np: Beginning Read +2022/02/28 11:02:34 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:34 [DEBUG] Begin Injection +2022/02/28 11:02:34 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000496340 1362 [] false false map[] 0xc000940400 0xc000aca4d0} +2022/02/28 11:02:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:02:35 [DEBUG] Exit from do method +2022/02/28 11:02:35 [DEBUG] acctest_aj6np: Read finished successfully +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:02:35 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Read +2022/02/28 11:02:35 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:35 [DEBUG] Begin Injection +2022/02/28 11:02:35 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000497b80 1362 [] false false map[] 0xc0000a6300 0xc000aca4d0} +2022/02/28 11:02:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:02:35 [DEBUG] Exit from do method +2022/02/28 11:02:35 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully +2022/02/28 11:02:35 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:35 [DEBUG] New state was assigned lineage "a3cd4121-4fdf-5dfe-5a8a-fb51b30944cd" +2022/02/28 11:02:35 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:02:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:35 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:35 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:02:35 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:35 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.example + description: "" => "" + id: "" => "" + name: "" => "acctest_2i1fb" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +UPDATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_aj6np" => "acctest_aj6np" + dhcp_option_name: "" => "acctest_2i1fb" + dhcp_option_version: "0" => "1" + id: "/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np" => "/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np" + name: "acctest_aj6np" => "acctest_aj6np" + schema_id: "621c5e6b1d0000e7614fb957" => "621c5e6b1d0000e7614fb957" + template_name: "acctest_ewqek" => "acctest_ewqek" + version: "0" => "1" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c5e6c1b0000c407fd0c11 + provider = provider.mso + description = + name = acctest_aj6np + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5e6b1d0000e7614fb957 + provider = provider.mso + name = acctest_ewqek + template_name = acctest_ewqek + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_aj6np + provider = provider.mso + dhcp_policy.name = acctest_aj6np + dhcp_policy.version = 0 + display_name = acctest_aj6np + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_aj6np + schema_id = 621c5e6b1d0000e7614fb957 + template_name = acctest_ewqek + vrf_name = acctest_aj6np + vrf_schema_id = 621c5e6b1d0000e7614fb957 + vrf_template_name = acctest_ewqek + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np + provider = provider.mso + bd_name = acctest_aj6np + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_aj6np + schema_id = 621c5e6b1d0000e7614fb957 + template_name = acctest_ewqek + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_aj6np + provider = provider.mso + display_name = acctest_aj6np + layer3_multicast = false + name = acctest_aj6np + schema_id = 621c5e6b1d0000e7614fb957 + template = acctest_ewqek + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:02:35 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:02:35 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 11:02:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_option_policy.example (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (prepare state)" references: [] +2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:02:35 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:02:35 [DEBUG] mso_dhcp_option_policy.example: applying the planned Create change +2022/02/28 11:02:35 [DEBUG] : Beginning Create +2022/02/28 11:02:35 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 11:02:35 [DEBUG] Begin Injection +2022/02/28 11:02:35 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 11:02:35 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_2i1fb","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa77ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:02:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:02:36 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:02:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0040 161 [] false false map[] 0xc0008b0c00 0xc000aca4d0} +2022/02/28 11:02:36 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c5e741b0000c607fd0c12","name":"acctest_2i1fb","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:36 [DEBUG] Exit from do method +2022/02/28 11:02:36 [DEBUG] 621c5e741b0000c607fd0c12: Creation finished successfully +2022/02/28 11:02:36 [DEBUG] 621c5e741b0000c607fd0c12: Beginning Read +2022/02/28 11:02:36 id: 621c5e741b0000c607fd0c12 +2022/02/28 11:02:36 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:36 [DEBUG] Begin Injection +2022/02/28 11:02:36 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c5c500 161 [] false false map[] 0xc000dfa200 0xc000aca4d0} +2022/02/28 11:02:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 {"id":"621c5e741b0000c607fd0c12","name":"acctest_2i1fb","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:36 [DEBUG] Exit from do method +2022/02/28 11:02:36 [DEBUG] 621c5e741b0000c607fd0c12: Read finished successfully +2022/02/28 11:02:36 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change +2022/02/28 11:02:36 [DEBUG] Template BD: Beginning Update +2022/02/28 11:02:36 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:36 [DEBUG] Begin Injection +2022/02/28 11:02:36 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000b22200 0xc000aca4d0} +2022/02/28 11:02:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:37 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Read +2022/02/28 11:02:37 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:37 [DEBUG] Begin Injection +2022/02/28 11:02:37 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da00c0 1472 [] false false map[] 0xc000b22400 0xc000aca4d0} +2022/02/28 11:02:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:02:37 [DEBUG] Exit from do method +2022/02/28 11:02:37 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully +2022/02/28 11:02:37 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:37 [DEBUG] New state was assigned lineage "9ae3d4f0-7661-96e1-37c1-bf3121121225" +2022/02/28 11:02:37 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:37 [DEBUG] Begin Injection +2022/02/28 11:02:37 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0a00 1472 [] false false map[] 0xc000dfa000 0xc000aca4d0} +2022/02/28 11:02:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:02:37 [DEBUG] Exit from do method +2022/02/28 11:02:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:02:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:02:37 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:02:37 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:02:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:37 [DEBUG] : Beginning Read +2022/02/28 11:02:37 HTTP request GET mso/api/v1/tenants +2022/02/28 11:02:37 [DEBUG] Begin Injection +2022/02/28 11:02:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:02:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a97c00 5563 [] false false map[] 0xc000dfb000 0xc000aca4d0} +2022/02/28 11:02:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:02:38 [DEBUG] Exit from do method +2022/02/28 11:02:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:02:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:02:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:02:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:38 [DEBUG] 621c5e741b0000c607fd0c12: Beginning Read +2022/02/28 11:02:38 id: 621c5e741b0000c607fd0c12 +2022/02/28 11:02:38 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:38 [DEBUG] Begin Injection +2022/02/28 11:02:38 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:38 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Read +2022/02/28 11:02:38 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:38 [DEBUG] Begin Injection +2022/02/28 11:02:38 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:38 [DEBUG] 621c5e6c1b0000c407fd0c11: Beginning Read +2022/02/28 11:02:38 id: 621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:38 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:38 [DEBUG] Begin Injection +2022/02/28 11:02:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000196cc0 161 [] false false map[] 0xc000dfa200 0xc000aca4d0} +2022/02/28 11:02:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 {"id":"621c5e741b0000c607fd0c12","name":"acctest_2i1fb","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000de02c0 1472 [] false false map[] 0xc000cb2100 0xc0009fe6e0} +2022/02/28 11:02:38 [DEBUG] Exit from do method +2022/02/28 11:02:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:02:38 [DEBUG] Exit from do method +2022/02/28 11:02:38 [DEBUG] 621c5e741b0000c607fd0c12: Read finished successfully +2022/02/28 11:02:38 [DEBUG] 621c5e6b1d0000e7614fb957: Read finished successfully +2022/02/28 11:02:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:38 [DEBUG] acctest_aj6np: Beginning Read +2022/02/28 11:02:38 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:38 [DEBUG] Begin Injection +2022/02/28 11:02:38 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000de0400 160 [] false false map[] 0xc0008b0500 0xc000aca4d0} +2022/02/28 11:02:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 {"id":"621c5e6c1b0000c407fd0c11","name":"acctest_aj6np","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:39 [DEBUG] Exit from do method +2022/02/28 11:02:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001970c0 1472 [] false false map[] 0xc0008b0a00 0xc0009fe6e0} +2022/02/28 11:02:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:02:39 [DEBUG] 621c5e6c1b0000c407fd0c11: Read finished successfully +2022/02/28 11:02:39 [DEBUG] Exit from do method +2022/02/28 11:02:39 currentvrfname acctest_aj6np +2022/02/28 11:02:39 found correct vrfname +2022/02/28 11:02:39 [DEBUG] acctest_aj6np: Read finished successfully +2022/02/28 11:02:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:02:39 [DEBUG] acctest_aj6np: Beginning Read +2022/02/28 11:02:39 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:39 [DEBUG] Begin Injection +2022/02/28 11:02:39 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0040 1472 [] false false map[] 0xc000dfa800 0xc0009fe6e0} +2022/02/28 11:02:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:02:41 [DEBUG] Exit from do method +2022/02/28 11:02:41 [DEBUG] acctest_aj6np: Read finished successfully +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:02:41 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Read +2022/02/28 11:02:41 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:41 [DEBUG] Begin Injection +2022/02/28 11:02:41 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000196d40 1472 [] false false map[] 0xc0000a6400 0xc0009fe4d0} +2022/02/28 11:02:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:02:41 [DEBUG] Exit from do method +2022/02/28 11:02:41 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully +2022/02/28 11:02:41 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:41 [DEBUG] New state was assigned lineage "498ec63f-f2ff-2cd2-1b27-26e8e8a2f9b1" +2022/02/28 11:02:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:02:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:41 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:02:41 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:41 [DEBUG] Test: Executing step 6 +2022/02/28 11:02:41 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np\")" references: [] +2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:41 [DEBUG] Starting graph walk: walkImport +2022/02/28 11:02:41 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Import +2022/02/28 11:02:41 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:41 [DEBUG] Begin Injection +2022/02/28 11:02:41 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005c4740 1472 [] false false map[] 0xc0008b0300 0xc0009fe4d0} +2022/02/28 11:02:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:02:42 [DEBUG] Exit from do method +2022/02/28 11:02:42 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Import finished successfully +2022/02/28 11:02:42 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Read +2022/02/28 11:02:42 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:42 [DEBUG] Begin Injection +2022/02/28 11:02:42 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006485c0 1472 [] false false map[] 0xc0008b0600 0xc0009fe4d0} +2022/02/28 11:02:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:02:42 [DEBUG] Exit from do method +2022/02/28 11:02:42 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully +2022/02/28 11:02:42 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:42 [DEBUG] New state was assigned lineage "e9b12bf0-9bb1-868a-7021-bdac2cb3689f" +2022/02/28 11:02:42 [DEBUG] Test: Executing step 7 +2022/02/28 11:02:42 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:42 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:02:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:42 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:02:42 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:42 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config +2022/02/28 11:02:42 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:02:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:02:42 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:42 [DEBUG] : Beginning Read +2022/02/28 11:02:42 HTTP request GET mso/api/v1/tenants +2022/02/28 11:02:42 [DEBUG] Begin Injection +2022/02/28 11:02:42 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:02:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a2580 5563 [] false false map[] 0xc000dfa500 0xc0009fe4d0} +2022/02/28 11:02:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:02:43 [DEBUG] Exit from do method +2022/02/28 11:02:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:02:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:02:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:43 [DEBUG] 621c5e741b0000c607fd0c12: Beginning Read +2022/02/28 11:02:43 [DEBUG] 621c5e6c1b0000c407fd0c11: Beginning Read +2022/02/28 11:02:43 id: 621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:43 id: 621c5e741b0000c607fd0c12 +2022/02/28 11:02:43 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:43 [DEBUG] Begin Injection +2022/02/28 11:02:43 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:43 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Read +2022/02/28 11:02:43 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:43 [DEBUG] Begin Injection +2022/02/28 11:02:43 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:43 [DEBUG] Begin Injection +2022/02/28 11:02:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:43 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0040 160 [] false false map[] 0xc0008b0800 0xc0009fe4d0} +2022/02/28 11:02:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000de0040 161 [] false false map[] 0xc0001a0100 0xc000aca4d0} +2022/02/28 11:02:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 {"id":"621c5e6c1b0000c407fd0c11","name":"acctest_aj6np","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 {"id":"621c5e741b0000c607fd0c12","name":"acctest_2i1fb","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:43 [DEBUG] Exit from do method +2022/02/28 11:02:43 [DEBUG] Exit from do method +2022/02/28 11:02:43 [DEBUG] 621c5e6c1b0000c407fd0c11: Read finished successfully +2022/02/28 11:02:43 [DEBUG] 621c5e741b0000c607fd0c12: Read finished successfully +2022/02/28 11:02:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c5c1c0 1472 [] false false map[] 0xc000dfac00 0xc0009fe4d0} +2022/02/28 11:02:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:02:44 [DEBUG] Exit from do method +2022/02/28 11:02:44 [DEBUG] 621c5e6b1d0000e7614fb957: Read finished successfully +2022/02/28 11:02:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:44 [DEBUG] acctest_aj6np: Beginning Read +2022/02/28 11:02:44 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:44 [DEBUG] Begin Injection +2022/02/28 11:02:44 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0580 1472 [] false false map[] 0xc000dfa200 0xc0009fe4d0} +2022/02/28 11:02:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:02:44 [DEBUG] Exit from do method +2022/02/28 11:02:44 currentvrfname acctest_aj6np +2022/02/28 11:02:44 found correct vrfname +2022/02/28 11:02:44 [DEBUG] acctest_aj6np: Read finished successfully +2022/02/28 11:02:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:02:44 [DEBUG] acctest_aj6np: Beginning Read +2022/02/28 11:02:44 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:44 [DEBUG] Begin Injection +2022/02/28 11:02:44 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000196d40 1472 [] false false map[] 0xc0008b0a00 0xc000aca000} +2022/02/28 11:02:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:02:44 [DEBUG] Exit from do method +2022/02/28 11:02:44 [DEBUG] acctest_aj6np: Read finished successfully +2022/02/28 11:02:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:02:44 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Read +2022/02/28 11:02:44 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:44 [DEBUG] Begin Injection +2022/02/28 11:02:44 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0b00 1472 [] false false map[] 0xc0001a0600 0xc000aca000} +2022/02/28 11:02:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:02:45 [DEBUG] Exit from do method +2022/02/28 11:02:45 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully +2022/02/28 11:02:45 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:45 [DEBUG] New state was assigned lineage "10851a1d-a6b2-382d-2430-0dce2ac9a616" +2022/02/28 11:02:45 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:02:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (orphan)" references: [data.mso_tenant.test] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:45 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:02:45 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:45 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.example + description: "" => "" + id: "621c5e741b0000c607fd0c12" => "" + name: "acctest_2i1fb" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c5e6c1b0000c407fd0c11" => "" + name: "acctest_aj6np" => "acctest_7jwgo" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + dhcp_policy.dhcp_option_policy_name: "acctest_2i1fb" => "" + dhcp_policy.dhcp_option_policy_version: "1" => "" + dhcp_policy.name: "acctest_aj6np" => "" + dhcp_policy.version: "1" => "" + display_name: "acctest_aj6np" => "acctest_7jwgo" (forces new resource) + id: "acctest_aj6np" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_aj6np" => "acctest_7jwgo" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c5e6b1d0000e7614fb957" => "621c5e6b1d0000e7614fb957" + template_name: "acctest_ewqek" => "acctest_ewqek" + vrf_name: "acctest_aj6np" => "acctest_7jwgo" + vrf_schema_id: "621c5e6b1d0000e7614fb957" => "" + vrf_template_name: "acctest_ewqek" => "" +DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_aj6np" => "acctest_7jwgo" (forces new resource) + dhcp_option_name: "acctest_2i1fb" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np" => "" + name: "acctest_aj6np" => "acctest_7jwgo" (forces new resource) + schema_id: "621c5e6b1d0000e7614fb957" => "621c5e6b1d0000e7614fb957" + template_name: "acctest_ewqek" => "acctest_ewqek" + version: "1" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_aj6np" => "acctest_7jwgo" + id: "acctest_aj6np" => "" + layer3_multicast: "false" => "" + name: "acctest_aj6np" => "acctest_7jwgo" (forces new resource) + schema_id: "621c5e6b1d0000e7614fb957" => "621c5e6b1d0000e7614fb957" + template: "acctest_ewqek" => "acctest_ewqek" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.example: + ID = 621c5e741b0000c607fd0c12 + provider = provider.mso + description = + name = acctest_2i1fb + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c5e6c1b0000c407fd0c11 + provider = provider.mso + description = + name = acctest_aj6np + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5e6b1d0000e7614fb957 + provider = provider.mso + name = acctest_ewqek + template_name = acctest_ewqek + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_aj6np + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_2i1fb + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_aj6np + dhcp_policy.version = 1 + display_name = acctest_aj6np + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_aj6np + schema_id = 621c5e6b1d0000e7614fb957 + template_name = acctest_ewqek + vrf_name = acctest_aj6np + vrf_schema_id = 621c5e6b1d0000e7614fb957 + vrf_template_name = acctest_ewqek + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np + provider = provider.mso + bd_name = acctest_aj6np + dhcp_option_name = acctest_2i1fb + dhcp_option_version = 1 + name = acctest_aj6np + schema_id = 621c5e6b1d0000e7614fb957 + template_name = acctest_ewqek + version = 1 + + Dependencies: + mso_dhcp_option_policy.example + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_aj6np + provider = provider.mso + display_name = acctest_aj6np + layer3_multicast = false + name = acctest_aj6np + schema_id = 621c5e6b1d0000e7614fb957 + template = acctest_ewqek + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:02:45 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:02:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:02:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:45 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:02:45 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change +2022/02/28 11:02:45 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:02:45 [DEBUG] 621c5e741b0000c607fd0c12: Beginning Read +2022/02/28 11:02:45 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:45 [DEBUG] Begin Injection +2022/02/28 11:02:45 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:45 [DEBUG] Template BD: Beginning Update +2022/02/28 11:02:45 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:45 [DEBUG] Begin Injection +2022/02/28 11:02:45 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:45 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:45 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:45 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[84] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:45 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e70c0 84 [] false false map[] 0xc0000a6f00 0xc000aca000} +2022/02/28 11:02:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0008b0500 0xc000aca4d0} +2022/02/28 11:02:45 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 {"code":144,"message":"Cannot Delete Resource: Policy acctest_2i1fb is being used."} +2022/02/28 11:02:45 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:45 [DEBUG] mso_dhcp_option_policy.example: apply errored, but we're indicating that via the Error pointer rather than returning it: Unable to delete the object +2022/02/28 11:02:45 [ERROR] : eval: *terraform.EvalApplyPost, err: Unable to delete the object +2022/02/28 11:02:45 [ERROR] : eval: *terraform.EvalSequence, err: Unable to delete the object +2022/02/28 11:02:45 [ERROR] : eval: *terraform.EvalOpFilter, err: Unable to delete the object +2022/02/28 11:02:45 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:02:45 [DEBUG] 621c5e6c1b0000c407fd0c11: Beginning Read +2022/02/28 11:02:45 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:45 [DEBUG] Begin Injection +2022/02/28 11:02:45 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:45 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:02:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:45 [DEBUG] Template BD: Beginning Update +2022/02/28 11:02:45 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:45 [DEBUG] Begin Injection +2022/02/28 11:02:45 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:45 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0001a0c00 0xc000aca000} +2022/02/28 11:02:45 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 +2022/02/28 11:02:45 [DEBUG] : Read finished successfully +2022/02/28 11:02:45 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:02:45 [DEBUG] : Beginning Create +2022/02/28 11:02:45 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:02:45 [DEBUG] Begin Injection +2022/02/28 11:02:45 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:02:45 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw] Content-Type:[application/json]] {{"desc":"","name":"acctest_7jwgo","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa77ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:02:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:02:45 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0008b0d00 0xc000aca4d0} +2022/02/28 11:02:45 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:45 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:02:45 [DEBUG] acctest_aj6np: Beginning Destroy +2022/02/28 11:02:45 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:45 [DEBUG] Begin Injection +2022/02/28 11:02:45 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:46 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001a1200 0xc000aca4d0} +2022/02/28 11:02:46 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:46 [DEBUG] acctest_aj6np: Destroy finished successfully +2022/02/28 11:02:46 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:02:46 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:02:46 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:46 [DEBUG] Begin Injection +2022/02/28 11:02:46 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:46 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:02:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010053c0 160 [] false false map[] 0xc0008b1800 0xc000aca000} +2022/02/28 11:02:46 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5e7e1b0000c707fd0c13","name":"acctest_7jwgo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:46 [DEBUG] Exit from do method +2022/02/28 11:02:46 [DEBUG] 621c5e7e1b0000c707fd0c13: Creation finished successfully +2022/02/28 11:02:46 [DEBUG] 621c5e7e1b0000c707fd0c13: Beginning Read +2022/02/28 11:02:46 id: 621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:46 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:46 [DEBUG] Begin Injection +2022/02/28 11:02:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000de0180 160 [] false false map[] 0xc0008b1d00 0xc000aca000} +2022/02/28 11:02:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 {"id":"621c5e7e1b0000c707fd0c13","name":"acctest_7jwgo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:46 [DEBUG] Exit from do method +2022/02/28 11:02:46 [DEBUG] 621c5e7e1b0000c707fd0c13: Read finished successfully +2022/02/28 11:02:46 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000fbc700 0xc000aca4d0} +2022/02/28 11:02:46 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:46 [DEBUG] acctest_7jwgo: Creation finished successfully +2022/02/28 11:02:46 [DEBUG] acctest_7jwgo: Beginning Read +2022/02/28 11:02:46 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:46 [DEBUG] Begin Injection +2022/02/28 11:02:46 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c5cec0 768 [] false false map[] 0xc000dfa200 0xc000aca4d0} +2022/02/28 11:02:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 11:02:46 [DEBUG] Exit from do method +2022/02/28 11:02:46 currentvrfname acctest_7jwgo +2022/02/28 11:02:46 found correct vrfname +2022/02/28 11:02:46 [DEBUG] acctest_7jwgo: Read finished successfully +2022/02/28 11:02:46 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:02:46 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:02:46 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:02:46 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:46 [DEBUG] Begin Injection +2022/02/28 11:02:46 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:47 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000dfa300 0xc000aca4d0} +2022/02/28 11:02:47 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:47 [DEBUG] : Beginning Read +2022/02/28 11:02:47 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:47 [DEBUG] Begin Injection +2022/02/28 11:02:47 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000de00c0 1278 [] false false map[] 0xc0000a6700 0xc000aca4d0} +2022/02/28 11:02:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 11:02:47 [DEBUG] Exit from do method +2022/02/28 11:02:47 [DEBUG] acctest_7jwgo: Read finished successfully +2022/02/28 11:02:47 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:02:47 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:02:47 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:47 [DEBUG] Begin Injection +2022/02/28 11:02:47 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:48 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:48 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0008b0600 0xc000aca4d0} +2022/02/28 11:02:48 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:48 [DEBUG] Creation Complete +2022/02/28 11:02:48 [DEBUG] : Beginning Read +2022/02/28 11:02:48 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:48 [DEBUG] Begin Injection +2022/02/28 11:02:48 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000196140 1363 [] false false map[] 0xc0008b0800 0xc000aca4d0} +2022/02/28 11:02:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","dhcpLabel":{"name":"acctest_7jwgo","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7jwgo","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:02:48 [DEBUG] Exit from do method +2022/02/28 11:02:48 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo/dhcpLabels/acctest_7jwgo: Read finished successfully +2022/02/28 11:02:48 [DEBUG] New state was assigned lineage "ae12d767-683d-1a09-dfb3-7434c710fc86" +2022/02/28 11:02:48 [WARN] Test: Executing destroy step +2022/02/28 11:02:48 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:48 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:02:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:48 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:02:48 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:48 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config +2022/02/28 11:02:48 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:02:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:02:48 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:48 [DEBUG] 621c5e741b0000c607fd0c12: Beginning Read +2022/02/28 11:02:48 id: 621c5e741b0000c607fd0c12 +2022/02/28 11:02:48 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:48 [DEBUG] Begin Injection +2022/02/28 11:02:48 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:48 [DEBUG] : Beginning Read +2022/02/28 11:02:48 HTTP request GET mso/api/v1/tenants +2022/02/28 11:02:48 [DEBUG] Begin Injection +2022/02/28 11:02:48 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:02:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da04c0 161 [] false false map[] 0xc0000a7d00 0xc000aca4d0} +2022/02/28 11:02:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 {"id":"621c5e741b0000c607fd0c12","name":"acctest_2i1fb","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:48 [DEBUG] Exit from do method +2022/02/28 11:02:48 [DEBUG] 621c5e741b0000c607fd0c12: Read finished successfully +2022/02/28 11:02:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a2040 5563 [] false false map[] 0xc0008b0d00 0xc000aca000} +2022/02/28 11:02:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:02:48 [DEBUG] Exit from do method +2022/02/28 11:02:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:02:48 [DEBUG] 621c5e7e1b0000c707fd0c13: Beginning Read +2022/02/28 11:02:48 id: 621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:48 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Read +2022/02/28 11:02:48 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:48 [DEBUG] Begin Injection +2022/02/28 11:02:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:48 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:48 [DEBUG] Begin Injection +2022/02/28 11:02:48 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0940 160 [] false false map[] 0xc000dfa400 0xc000aca4d0} +2022/02/28 11:02:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b2ea80 1363 [] false false map[] 0xc000e30000 0xc000aca000} +2022/02/28 11:02:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","dhcpLabel":{"name":"acctest_7jwgo","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7jwgo","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:02:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 {"id":"621c5e7e1b0000c707fd0c13","name":"acctest_7jwgo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:02:49 [DEBUG] Exit from do method +2022/02/28 11:02:49 [DEBUG] Exit from do method +2022/02/28 11:02:49 [DEBUG] 621c5e6b1d0000e7614fb957: Read finished successfully +2022/02/28 11:02:49 [DEBUG] 621c5e7e1b0000c707fd0c13: Read finished successfully +2022/02/28 11:02:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:02:49 [DEBUG] acctest_7jwgo: Beginning Read +2022/02/28 11:02:49 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:49 [DEBUG] Begin Injection +2022/02/28 11:02:49 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e61c0 1363 [] false false map[] 0xc000e30400 0xc000aca000} +2022/02/28 11:02:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","dhcpLabel":{"name":"acctest_7jwgo","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7jwgo","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:02:49 [DEBUG] Exit from do method +2022/02/28 11:02:49 currentvrfname acctest_7jwgo +2022/02/28 11:02:49 found correct vrfname +2022/02/28 11:02:49 [DEBUG] acctest_7jwgo: Read finished successfully +2022/02/28 11:02:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:02:49 [DEBUG] acctest_7jwgo: Beginning Read +2022/02/28 11:02:49 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:49 [DEBUG] Begin Injection +2022/02/28 11:02:49 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b2f8c0 1363 [] false false map[] 0xc000e30900 0xc000aca000} +2022/02/28 11:02:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","dhcpLabel":{"name":"acctest_7jwgo","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7jwgo","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:02:50 [DEBUG] Exit from do method +2022/02/28 11:02:50 [DEBUG] acctest_7jwgo: Read finished successfully +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:02:50 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo/dhcpLabels/acctest_7jwgo: Beginning Read +2022/02/28 11:02:50 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:50 [DEBUG] Begin Injection +2022/02/28 11:02:50 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6840 1363 [] false false map[] 0xc0000a6e00 0xc000aca000} +2022/02/28 11:02:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","dhcpLabel":{"name":"acctest_7jwgo","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7jwgo","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:02:50 [DEBUG] Exit from do method +2022/02/28 11:02:50 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo/dhcpLabels/acctest_7jwgo: Read finished successfully +2022/02/28 11:02:50 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:50 [DEBUG] New state was assigned lineage "49221d84-8733-a9e6-b139-9aa3984d004e" +2022/02/28 11:02:50 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:02:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:50 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:02:50 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_option_policy.example + description: "" => "" + id: "621c5e741b0000c607fd0c12" => "" + name: "acctest_2i1fb" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c5e7e1b0000c707fd0c13" => "" + name: "acctest_7jwgo" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c5e6b1d0000e7614fb957" => "" + name: "acctest_ewqek" => "" + template_name: "acctest_ewqek" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_7jwgo" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_7jwgo" => "" + id: "acctest_7jwgo" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_7jwgo" => "" + schema_id: "621c5e6b1d0000e7614fb957" => "" + template_name: "acctest_ewqek" => "" + vrf_name: "acctest_7jwgo" => "" + vrf_schema_id: "621c5e6b1d0000e7614fb957" => "" + vrf_template_name: "acctest_ewqek" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_7jwgo" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo/dhcpLabels/acctest_7jwgo" => "" + name: "acctest_7jwgo" => "" + schema_id: "621c5e6b1d0000e7614fb957" => "" + template_name: "acctest_ewqek" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_7jwgo" => "" + id: "acctest_7jwgo" => "" + layer3_multicast: "false" => "" + name: "acctest_7jwgo" => "" + schema_id: "621c5e6b1d0000e7614fb957" => "" + template: "acctest_ewqek" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.example: + ID = 621c5e741b0000c607fd0c12 + provider = provider.mso + description = + name = acctest_2i1fb + tenant_id = 620cf5ad1d0000ab504f9a3d +mso_dhcp_relay_policy.test: + ID = 621c5e7e1b0000c707fd0c13 + provider = provider.mso + description = + name = acctest_7jwgo + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5e6b1d0000e7614fb957 + provider = provider.mso + name = acctest_ewqek + template_name = acctest_ewqek + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_7jwgo + provider = provider.mso + dhcp_policy.name = acctest_7jwgo + dhcp_policy.version = 0 + display_name = acctest_7jwgo + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_7jwgo + schema_id = 621c5e6b1d0000e7614fb957 + template_name = acctest_ewqek + vrf_name = acctest_7jwgo + vrf_schema_id = 621c5e6b1d0000e7614fb957 + vrf_template_name = acctest_ewqek + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo/dhcpLabels/acctest_7jwgo + provider = provider.mso + bd_name = acctest_7jwgo + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_7jwgo + schema_id = 621c5e6b1d0000e7614fb957 + template_name = acctest_ewqek + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_7jwgo + provider = provider.mso + display_name = acctest_7jwgo + layer3_multicast = false + name = acctest_7jwgo + schema_id = 621c5e6b1d0000e7614fb957 + template = acctest_ewqek + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:02:50 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:02:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example (clean up state) +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:02:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:02:50 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:02:50 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:02:50 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:02:50 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:02:50 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:02:50 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:02:50 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:02:50 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change +2022/02/28 11:02:50 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:02:50 [DEBUG] 621c5e741b0000c607fd0c12: Beginning Read +2022/02/28 11:02:50 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:50 [DEBUG] Begin Injection +2022/02/28 11:02:50 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:50 [DEBUG] Template BD: Beginning Update +2022/02/28 11:02:50 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:50 [DEBUG] Begin Injection +2022/02/28 11:02:50 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:50 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0011a8f00 0xc000aca4d0} +2022/02/28 11:02:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000f9d200 0xc000aca000} +2022/02/28 11:02:50 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 +2022/02/28 11:02:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:50 [DEBUG] : Read finished successfully +2022/02/28 11:02:50 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:02:50 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:02:50 [DEBUG] 621c5e7e1b0000c707fd0c13: Beginning Read +2022/02/28 11:02:50 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:50 [DEBUG] Begin Injection +2022/02/28 11:02:50 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:50 [DEBUG] Template BD: Beginning Update +2022/02/28 11:02:50 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:50 [DEBUG] Begin Injection +2022/02/28 11:02:50 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:51 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f9c300 0xc000aca000} +2022/02/28 11:02:51 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:51 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000dfa100 0xc000aca4d0} +2022/02/28 11:02:51 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 +2022/02/28 11:02:51 [DEBUG] : Read finished successfully +2022/02/28 11:02:51 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:02:51 [DEBUG] acctest_7jwgo: Beginning Destroy +2022/02/28 11:02:51 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:51 [DEBUG] Begin Injection +2022/02/28 11:02:51 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:51 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f9cb00 0xc000aca000} +2022/02/28 11:02:51 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false +2022/02/28 11:02:51 [DEBUG] acctest_7jwgo: Destroy finished successfully +2022/02/28 11:02:51 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:02:51 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Destroy +2022/02/28 11:02:51 HTTP request DELETE mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:51 [DEBUG] Begin Injection +2022/02/28 11:02:51 HTTP request after injection DELETE mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:52 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000dfa800 0xc000aca000} +2022/02/28 11:02:52 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:52 [DEBUG] 621c5e6b1d0000e7614fb957: Destroy finished successfully +2022/02/28 11:02:52 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:52 [DEBUG] New state was assigned lineage "d4b8f3a0-ab54-d789-25f4-47c237ae8cd0" +2022/02/28 11:02:52 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:52 [DEBUG] Begin Injection +2022/02/28 11:02:52 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 +2022/02/28 11:02:52 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:52 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000752040 39 [] false false map[] 0xc0000a6500 0xc000aca000} +2022/02/28 11:02:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"code":404,"message":"Item not found"} +2022/02/28 11:02:52 [DEBUG] Exit from do method +2022/02/28 11:02:52 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:02:52 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:02:52 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:02:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:02:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:02:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:52 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:02:52 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:02:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:52 [DEBUG] : Beginning Read +2022/02/28 11:02:52 HTTP request GET mso/api/v1/tenants +2022/02/28 11:02:52 [DEBUG] Begin Injection +2022/02/28 11:02:52 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:02:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:02:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000197f80 5563 [] false false map[] 0xc0008b1100 0xc000aca000} +2022/02/28 11:02:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:02:53 [DEBUG] Exit from do method +2022/02/28 11:02:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:02:53 [DEBUG] provider has no plugin.Client +2022/02/28 11:02:53 [DEBUG] New state was assigned lineage "dd078738-7b00-84b9-f9a5-1a3ba33e5949" +2022/02/28 11:02:53 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:02:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:02:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:02:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:02:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:02:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:02:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:02:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:02:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:02:53 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:06:49 [DEBUG] Test: Executing step 0 +2022/02/28 11:06:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:49 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:06:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:49 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:06:49 [DEBUG] Test: Executing step 1 +2022/02/28 11:06:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:49 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:06:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:49 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:06:49 [DEBUG] Test: Executing step 2 +2022/02/28 11:06:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:49 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:06:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:49 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:06:49 [DEBUG] Test: Executing step 3 +2022/02/28 11:06:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:49 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:06:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:06:49 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:06:49 [DEBUG] Test: Executing step 4 +2022/02/28 11:06:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:49 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:06:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:49 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:06:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:49 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:06:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:49 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:06:49 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:49 [DEBUG] : Beginning Read +2022/02/28 11:06:49 HTTP request GET mso/api/v1/tenants +2022/02/28 11:06:49 [DEBUG] Begin Injection +2022/02/28 11:06:49 HTTP request POST /login +2022/02/28 11:06:49 HTTP request after injection POST /login +2022/02/28 11:06:49 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:06:50 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:06:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:50 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000828480 -1 [chunked] false false map[] 0xc00045b000 0xc001062840} +2022/02/28 11:06:50 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg"} +2022/02/28 11:06:50 [DEBUG] Exit from do method +2022/02/28 11:06:50 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:06:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:06:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:06:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016e3c0 5563 [] false false map[] 0xc00045af00 0xc001062840} +2022/02/28 11:06:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:06:51 [DEBUG] Exit from do method +2022/02/28 11:06:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:06:51 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:51 [DEBUG] New state was assigned lineage "aa568354-8abd-7a65-6b9e-79ca1e108a71" +2022/02/28 11:06:51 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:06:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:51 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:51 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:06:51 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:06:51 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:06:51 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:06:51 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:06:51 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:51 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_egwsr" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_3bt4p" + template_name: "" => "acctest_3bt4p" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_egwsr" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_egwsr" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_3bt4p" + vrf_name: "" => "acctest_egwsr" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_egwsr" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_egwsr" + schema_id: "" => "" + template_name: "" => "acctest_3bt4p" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_egwsr" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_egwsr" + schema_id: "" => "" + template: "" => "acctest_3bt4p" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:06:51 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:06:51 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:06:51 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:06:51 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:06:51 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:06:51 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:06:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:06:51 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:06:51 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:06:51 [DEBUG] Schema: Beginning Creation +2022/02/28 11:06:51 HTTP request POST mso/api/v1/schemas +2022/02/28 11:06:51 [DEBUG] Begin Injection +2022/02/28 11:06:51 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:06:51 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg] Content-Type:[application/json]] {{"displayName":"acctest_3bt4p","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_3bt4p","externalEpgs":[],"filters":[],"name":"acctest_3bt4p","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x857ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:06:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:06:51 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:06:51 [DEBUG] : Beginning Create +2022/02/28 11:06:51 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:06:51 [DEBUG] Begin Injection +2022/02/28 11:06:51 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:06:51 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg] Content-Type:[application/json]] {{"desc":"","name":"acctest_egwsr","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x857ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:06:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:06:51 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:06:51 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c5f731d000023624fb974] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000828580 400 [] false false map[] 0xc000b66100 0xc001062840} +2022/02/28 11:06:51 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:06:51 [DEBUG] Exit from do method +2022/02/28 11:06:51 [DEBUG] 621c5f731d000023624fb974: Schema Creation finished successfully +2022/02/28 11:06:51 [DEBUG] 621c5f731d000023624fb974: Beginning Read +2022/02/28 11:06:51 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:51 [DEBUG] Begin Injection +2022/02/28 11:06:51 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:51 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:06:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dc8a00 160 [] false false map[] 0xc00045a700 0xc001062840} +2022/02/28 11:06:51 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5f731b00000408fd0c17","name":"acctest_egwsr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:06:51 [DEBUG] Exit from do method +2022/02/28 11:06:51 [DEBUG] 621c5f731b00000408fd0c17: Creation finished successfully +2022/02/28 11:06:51 [DEBUG] 621c5f731b00000408fd0c17: Beginning Read +2022/02/28 11:06:51 id: 621c5f731b00000408fd0c17 +2022/02/28 11:06:51 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:51 [DEBUG] Begin Injection +2022/02/28 11:06:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008289c0 400 [] false false map[] 0xc000496300 0xc001062840} +2022/02/28 11:06:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:06:52 [DEBUG] Exit from do method +2022/02/28 11:06:52 [DEBUG] 621c5f731d000023624fb974: Read finished successfully +2022/02/28 11:06:52 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:06:52 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:06:52 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:52 [DEBUG] Begin Injection +2022/02/28 11:06:52 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a8580 160 [] false false map[] 0xc00045aa00 0xc0004f2580} +2022/02/28 11:06:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 {"id":"621c5f731b00000408fd0c17","name":"acctest_egwsr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:06:52 [DEBUG] Exit from do method +2022/02/28 11:06:52 [DEBUG] 621c5f731b00000408fd0c17: Read finished successfully +2022/02/28 11:06:52 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:36:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005ca900 0xc001062840} +2022/02/28 11:06:52 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:52 [DEBUG] acctest_egwsr: Creation finished successfully +2022/02/28 11:06:52 [DEBUG] acctest_egwsr: Beginning Read +2022/02/28 11:06:52 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:52 [DEBUG] Begin Injection +2022/02/28 11:06:52 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000828040 768 [] false false map[] 0xc000496700 0xc00037b4a0} +2022/02/28 11:06:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:06:52 [DEBUG] Exit from do method +2022/02/28 11:06:52 currentvrfname acctest_egwsr +2022/02/28 11:06:52 found correct vrfname +2022/02/28 11:06:52 [DEBUG] acctest_egwsr: Read finished successfully +2022/02/28 11:06:52 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:06:52 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:06:52 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:06:52 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:52 [DEBUG] Begin Injection +2022/02/28 11:06:52 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:53 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:36:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000496400 0xc0004f20b0} +2022/02/28 11:06:53 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:53 [DEBUG] : Beginning Read +2022/02/28 11:06:53 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:53 [DEBUG] Begin Injection +2022/02/28 11:06:53 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008284c0 1277 [] false false map[] 0xc000b3c000 0xc0004f20b0} +2022/02/28 11:06:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:06:53 [DEBUG] Exit from do method +2022/02/28 11:06:53 [DEBUG] acctest_egwsr: Read finished successfully +2022/02/28 11:06:53 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:06:53 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:06:53 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:53 [DEBUG] Begin Injection +2022/02/28 11:06:53 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:53 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:36:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000b3c800 0xc0004f20b0} +2022/02/28 11:06:53 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:53 [DEBUG] Creation Complete +2022/02/28 11:06:53 [DEBUG] : Beginning Read +2022/02/28 11:06:53 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:53 [DEBUG] Begin Injection +2022/02/28 11:06:53 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058f800 1362 [] false false map[] 0xc000496800 0xc0004f20b0} +2022/02/28 11:06:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:06:54 [DEBUG] Exit from do method +2022/02/28 11:06:54 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully +2022/02/28 11:06:54 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:54 [DEBUG] New state was assigned lineage "628720f9-b8fb-e7b6-9f97-b9ee29f992e9" +2022/02/28 11:06:54 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:54 [DEBUG] Begin Injection +2022/02/28 11:06:54 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058e300 1362 [] false false map[] 0xc000854000 0xc0004f20b0} +2022/02/28 11:06:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:06:54 [DEBUG] Exit from do method +2022/02/28 11:06:54 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:06:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:54 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:06:54 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:54 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:06:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:54 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:54 [DEBUG] : Beginning Read +2022/02/28 11:06:54 HTTP request GET mso/api/v1/tenants +2022/02/28 11:06:54 [DEBUG] Begin Injection +2022/02/28 11:06:54 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:06:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:06:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:06:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e821c0 5563 [] false false map[] 0xc000b66500 0xc0004f20b0} +2022/02/28 11:06:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:06:54 [DEBUG] Exit from do method +2022/02/28 11:06:54 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:06:54 [DEBUG] 621c5f731b00000408fd0c17: Beginning Read +2022/02/28 11:06:54 id: 621c5f731b00000408fd0c17 +2022/02/28 11:06:54 [DEBUG] 621c5f731d000023624fb974: Beginning Read +2022/02/28 11:06:54 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:54 [DEBUG] Begin Injection +2022/02/28 11:06:54 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:54 [DEBUG] Begin Injection +2022/02/28 11:06:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:54 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a8e80 1362 [] false false map[] 0xc000610000 0xc0004f20b0} +2022/02/28 11:06:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:06:55 [DEBUG] Exit from do method +2022/02/28 11:06:55 [DEBUG] 621c5f731d000023624fb974: Read finished successfully +2022/02/28 11:06:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:06:55 [DEBUG] acctest_egwsr: Beginning Read +2022/02/28 11:06:55 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:55 [DEBUG] Begin Injection +2022/02/28 11:06:55 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a98c0 160 [] false false map[] 0xc000854500 0xc0004f2580} +2022/02/28 11:06:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 {"id":"621c5f731b00000408fd0c17","name":"acctest_egwsr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:06:55 [DEBUG] Exit from do method +2022/02/28 11:06:55 [DEBUG] 621c5f731b00000408fd0c17: Read finished successfully +2022/02/28 11:06:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a9980 1362 [] false false map[] 0xc00045a800 0xc0004f20b0} +2022/02/28 11:06:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:06:55 [DEBUG] Exit from do method +2022/02/28 11:06:55 currentvrfname acctest_egwsr +2022/02/28 11:06:55 found correct vrfname +2022/02/28 11:06:55 [DEBUG] acctest_egwsr: Read finished successfully +2022/02/28 11:06:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:06:55 [DEBUG] acctest_egwsr: Beginning Read +2022/02/28 11:06:55 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:55 [DEBUG] Begin Injection +2022/02/28 11:06:55 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000828040 1362 [] false false map[] 0xc000610500 0xc0004f20b0} +2022/02/28 11:06:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:06:55 [DEBUG] Exit from do method +2022/02/28 11:06:55 [DEBUG] acctest_egwsr: Read finished successfully +2022/02/28 11:06:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:06:55 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Read +2022/02/28 11:06:55 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:55 [DEBUG] Begin Injection +2022/02/28 11:06:55 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008283c0 1362 [] false false map[] 0xc000610a00 0xc0004f20b0} +2022/02/28 11:06:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:06:56 [DEBUG] Exit from do method +2022/02/28 11:06:56 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully +2022/02/28 11:06:56 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:56 [DEBUG] New state was assigned lineage "32619710-96e7-b1d9-298f-eca3ff4bb8b5" +2022/02/28 11:06:56 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:06:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:56 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:06:56 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:56 [DEBUG] Test: Executing step 5 +2022/02/28 11:06:56 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:06:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:56 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:06:56 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:56 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:06:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:56 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:56 [DEBUG] : Beginning Read +2022/02/28 11:06:56 HTTP request GET mso/api/v1/tenants +2022/02/28 11:06:56 [DEBUG] Begin Injection +2022/02/28 11:06:56 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:06:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:06:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:06:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049a700 5563 [] false false map[] 0xc000f86200 0xc0004f20b0} +2022/02/28 11:06:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:06:56 [DEBUG] Exit from do method +2022/02/28 11:06:56 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:06:56 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:06:56 [DEBUG] 621c5f731d000023624fb974: Beginning Read +2022/02/28 11:06:56 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:56 [DEBUG] Begin Injection +2022/02/28 11:06:56 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:56 [DEBUG] 621c5f731b00000408fd0c17: Beginning Read +2022/02/28 11:06:56 id: 621c5f731b00000408fd0c17 +2022/02/28 11:06:56 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:56 [DEBUG] Begin Injection +2022/02/28 11:06:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006c33c0 1362 [] false false map[] 0xc0002d8200 0xc0004f20b0} +2022/02/28 11:06:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:06:56 [DEBUG] Exit from do method +2022/02/28 11:06:56 [DEBUG] 621c5f731d000023624fb974: Read finished successfully +2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:06:56 [DEBUG] acctest_egwsr: Beginning Read +2022/02/28 11:06:56 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:56 [DEBUG] Begin Injection +2022/02/28 11:06:56 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008296c0 160 [] false false map[] 0xc000fa6300 0xc0004f2580} +2022/02/28 11:06:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 {"id":"621c5f731b00000408fd0c17","name":"acctest_egwsr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:06:56 [DEBUG] Exit from do method +2022/02/28 11:06:56 [DEBUG] 621c5f731b00000408fd0c17: Read finished successfully +2022/02/28 11:06:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e821c0 1362 [] false false map[] 0xc000496900 0xc0004f20b0} +2022/02/28 11:06:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:06:57 [DEBUG] Exit from do method +2022/02/28 11:06:57 currentvrfname acctest_egwsr +2022/02/28 11:06:57 found correct vrfname +2022/02/28 11:06:57 [DEBUG] acctest_egwsr: Read finished successfully +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:06:57 [DEBUG] acctest_egwsr: Beginning Read +2022/02/28 11:06:57 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:57 [DEBUG] Begin Injection +2022/02/28 11:06:57 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073e880 1362 [] false false map[] 0xc000496d00 0xc0004f20b0} +2022/02/28 11:06:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:06:57 [DEBUG] Exit from do method +2022/02/28 11:06:57 [DEBUG] acctest_egwsr: Read finished successfully +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:06:57 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Read +2022/02/28 11:06:57 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:57 [DEBUG] Begin Injection +2022/02/28 11:06:57 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e82100 1362 [] false false map[] 0xc0002d8300 0xc0004f20b0} +2022/02/28 11:06:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:06:57 [DEBUG] Exit from do method +2022/02/28 11:06:57 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully +2022/02/28 11:06:57 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:57 [DEBUG] New state was assigned lineage "f7f6b9ad-dc5f-5f59-5387-92ac600f44bf" +2022/02/28 11:06:57 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:06:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example] +2022/02/28 11:06:57 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:57 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:06:57 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:57 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.example + description: "" => "" + id: "" => "" + name: "" => "acctest_6vwb3" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +UPDATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_egwsr" => "acctest_egwsr" + dhcp_option_name: "" => "acctest_6vwb3" + dhcp_option_version: "0" => "1" + id: "/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr" => "/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr" + name: "acctest_egwsr" => "acctest_egwsr" + schema_id: "621c5f731d000023624fb974" => "621c5f731d000023624fb974" + template_name: "acctest_3bt4p" => "acctest_3bt4p" + version: "0" => "1" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c5f731b00000408fd0c17 + provider = provider.mso + description = + name = acctest_egwsr + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5f731d000023624fb974 + provider = provider.mso + name = acctest_3bt4p + template_name = acctest_3bt4p + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_egwsr + provider = provider.mso + dhcp_policy.name = acctest_egwsr + dhcp_policy.version = 0 + display_name = acctest_egwsr + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_egwsr + schema_id = 621c5f731d000023624fb974 + template_name = acctest_3bt4p + vrf_name = acctest_egwsr + vrf_schema_id = 621c5f731d000023624fb974 + vrf_template_name = acctest_3bt4p + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr + provider = provider.mso + bd_name = acctest_egwsr + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_egwsr + schema_id = 621c5f731d000023624fb974 + template_name = acctest_3bt4p + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_egwsr + provider = provider.mso + display_name = acctest_egwsr + layer3_multicast = false + name = acctest_egwsr + schema_id = 621c5f731d000023624fb974 + template = acctest_3bt4p + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:06:57 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:06:57 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example +2022/02/28 11:06:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example (prepare state) +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (prepare state)" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.example (prepare state) mso_dhcp_option_policy.example mso_dhcp_option_policy.example] +2022/02/28 11:06:57 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:06:57 [DEBUG] mso_dhcp_option_policy.example: applying the planned Create change +2022/02/28 11:06:57 [DEBUG] : Beginning Create +2022/02/28 11:06:57 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 11:06:57 [DEBUG] Begin Injection +2022/02/28 11:06:57 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 11:06:57 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_6vwb3","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x857ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:06:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:06:58 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:06:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005f4e80 161 [] false false map[] 0xc000496500 0xc0004f20b0} +2022/02/28 11:06:58 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c5f7a1b0000de07fd0c18","name":"acctest_6vwb3","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:06:58 [DEBUG] Exit from do method +2022/02/28 11:06:58 [DEBUG] 621c5f7a1b0000de07fd0c18: Creation finished successfully +2022/02/28 11:06:58 [DEBUG] 621c5f7a1b0000de07fd0c18: Beginning Read +2022/02/28 11:06:58 id: 621c5f7a1b0000de07fd0c18 +2022/02/28 11:06:58 HTTP request GET mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:06:58 [DEBUG] Begin Injection +2022/02/28 11:06:58 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:06:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:06:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:06:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dc8940 161 [] false false map[] 0xc000d1e700 0xc0004f20b0} +2022/02/28 11:06:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 {"id":"621c5f7a1b0000de07fd0c18","name":"acctest_6vwb3","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:06:58 [DEBUG] Exit from do method +2022/02/28 11:06:58 [DEBUG] 621c5f7a1b0000de07fd0c18: Read finished successfully +2022/02/28 11:06:58 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change +2022/02/28 11:06:58 [DEBUG] Template BD: Beginning Update +2022/02/28 11:06:58 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:58 [DEBUG] Begin Injection +2022/02/28 11:06:58 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:58 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:36:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0002dc700 0xc0004f20b0} +2022/02/28 11:06:58 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:06:58 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Read +2022/02/28 11:06:58 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:58 [DEBUG] Begin Injection +2022/02/28 11:06:58 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058e7c0 1472 [] false false map[] 0xc0002dc000 0xc0004f20b0} +2022/02/28 11:06:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:06:59 [DEBUG] Exit from do method +2022/02/28 11:06:59 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully +2022/02/28 11:06:59 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:59 [DEBUG] New state was assigned lineage "173ec425-d817-5a2a-7454-79aacead6e45" +2022/02/28 11:06:59 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:59 [DEBUG] Begin Injection +2022/02/28 11:06:59 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058f680 1472 [] false false map[] 0xc0002dc100 0xc0004f20b0} +2022/02/28 11:06:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:06:59 [DEBUG] Exit from do method +2022/02/28 11:06:59 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:06:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:59 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:06:59 [DEBUG] provider has no plugin.Client +2022/02/28 11:06:59 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:06:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:06:59 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:06:59 [DEBUG] : Beginning Read +2022/02/28 11:06:59 HTTP request GET mso/api/v1/tenants +2022/02/28 11:06:59 [DEBUG] Begin Injection +2022/02/28 11:06:59 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:06:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:06:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:06:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000db4480 5563 [] false false map[] 0xc000b72600 0xc0004f20b0} +2022/02/28 11:06:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:06:59 [DEBUG] Exit from do method +2022/02/28 11:06:59 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:06:59 [DEBUG] 621c5f731d000023624fb974: Beginning Read +2022/02/28 11:06:59 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:59 [DEBUG] Begin Injection +2022/02/28 11:06:59 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:06:59 [DEBUG] 621c5f7a1b0000de07fd0c18: Beginning Read +2022/02/28 11:06:59 id: 621c5f7a1b0000de07fd0c18 +2022/02/28 11:06:59 HTTP request GET mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:06:59 [DEBUG] Begin Injection +2022/02/28 11:06:59 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:06:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:06:59 [DEBUG] 621c5f731b00000408fd0c17: Beginning Read +2022/02/28 11:06:59 id: 621c5f731b00000408fd0c17 +2022/02/28 11:06:59 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:59 [DEBUG] Begin Injection +2022/02/28 11:06:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:06:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:07:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009aa8c0 1472 [] false false map[] 0xc00045a500 0xc0004f20b0} +2022/02/28 11:07:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:07:00 [DEBUG] Exit from do method +2022/02/28 11:07:00 [DEBUG] 621c5f731d000023624fb974: Read finished successfully +2022/02/28 11:07:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:07:00 [DEBUG] acctest_egwsr: Beginning Read +2022/02/28 11:07:00 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:00 [DEBUG] Begin Injection +2022/02/28 11:07:00 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:07:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000db5f40 161 [] false false map[] 0xc000cb2400 0xc0004f2580} +2022/02/28 11:07:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 {"id":"621c5f7a1b0000de07fd0c18","name":"acctest_6vwb3","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:07:00 [DEBUG] Exit from do method +2022/02/28 11:07:00 [DEBUG] 621c5f7a1b0000de07fd0c18: Read finished successfully +2022/02/28 11:07:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:07:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009aae40 160 [] false false map[] 0xc0011ca300 0xc0004f20b0} +2022/02/28 11:07:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 {"id":"621c5f731b00000408fd0c17","name":"acctest_egwsr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:07:00 [DEBUG] Exit from do method +2022/02/28 11:07:00 [DEBUG] 621c5f731b00000408fd0c17: Read finished successfully +2022/02/28 11:07:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d34040 1472 [] false false map[] 0xc0011ca800 0xc0004f2580} +2022/02/28 11:07:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:07:00 [DEBUG] Exit from do method +2022/02/28 11:07:00 currentvrfname acctest_egwsr +2022/02/28 11:07:00 found correct vrfname +2022/02/28 11:07:00 [DEBUG] acctest_egwsr: Read finished successfully +2022/02/28 11:07:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:07:00 [DEBUG] acctest_egwsr: Beginning Read +2022/02/28 11:07:00 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:00 [DEBUG] Begin Injection +2022/02/28 11:07:00 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009aa0c0 1472 [] false false map[] 0xc000496300 0xc0004f2580} +2022/02/28 11:07:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:07:00 [DEBUG] Exit from do method +2022/02/28 11:07:00 [DEBUG] acctest_egwsr: Read finished successfully +2022/02/28 11:07:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:07:00 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Read +2022/02/28 11:07:00 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:00 [DEBUG] Begin Injection +2022/02/28 11:07:00 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058f7c0 1472 [] false false map[] 0xc000b72500 0xc0000be2c0} +2022/02/28 11:07:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:07:01 [DEBUG] Exit from do method +2022/02/28 11:07:01 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully +2022/02/28 11:07:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:01 [DEBUG] New state was assigned lineage "5569d146-1d5c-a1b6-ba53-33e94f79183c" +2022/02/28 11:07:01 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:07:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:07:01 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:07:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:01 [DEBUG] Test: Executing step 6 +2022/02/28 11:07:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr\")" references: [] +2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:01 [DEBUG] Starting graph walk: walkImport +2022/02/28 11:07:01 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Import +2022/02/28 11:07:01 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:01 [DEBUG] Begin Injection +2022/02/28 11:07:01 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005f5080 1472 [] false false map[] 0xc000496200 0xc0005a6370} +2022/02/28 11:07:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:07:01 [DEBUG] Exit from do method +2022/02/28 11:07:01 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Import finished successfully +2022/02/28 11:07:01 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Read +2022/02/28 11:07:01 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:01 [DEBUG] Begin Injection +2022/02/28 11:07:01 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073e800 1472 [] false false map[] 0xc000496300 0xc0005a6370} +2022/02/28 11:07:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:07:01 [DEBUG] Exit from do method +2022/02/28 11:07:01 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully +2022/02/28 11:07:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:01 [DEBUG] New state was assigned lineage "33e41478-1f18-ff5a-7cfa-23b5d1a6788e" +2022/02/28 11:07:01 [DEBUG] Test: Executing step 7 +2022/02/28 11:07:02 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:02 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:07:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:07:02 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:07:02 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config +2022/02/28 11:07:02 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:02 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:07:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] +2022/02/28 11:07:02 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:02 [DEBUG] : Beginning Read +2022/02/28 11:07:02 HTTP request GET mso/api/v1/tenants +2022/02/28 11:07:02 [DEBUG] Begin Injection +2022/02/28 11:07:02 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:07:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:07:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:07:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073e080 5563 [] false false map[] 0xc0011fc500 0xc0005a6370} +2022/02/28 11:07:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:07:02 [DEBUG] Exit from do method +2022/02/28 11:07:02 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:07:02 [DEBUG] 621c5f7a1b0000de07fd0c18: Beginning Read +2022/02/28 11:07:02 id: 621c5f7a1b0000de07fd0c18 +2022/02/28 11:07:02 [DEBUG] 621c5f731d000023624fb974: Beginning Read +2022/02/28 11:07:02 HTTP request GET mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:07:02 [DEBUG] Begin Injection +2022/02/28 11:07:02 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:07:02 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:02 [DEBUG] Begin Injection +2022/02/28 11:07:02 [DEBUG] 621c5f731b00000408fd0c17: Beginning Read +2022/02/28 11:07:02 id: 621c5f731b00000408fd0c17 +2022/02/28 11:07:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:07:02 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:02 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:07:02 [DEBUG] Begin Injection +2022/02/28 11:07:02 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:07:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:07:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000828bc0 1472 [] false false map[] 0xc000e9e100 0xc0004f20b0} +2022/02/28 11:07:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:07:02 [DEBUG] Exit from do method +2022/02/28 11:07:02 [DEBUG] 621c5f731d000023624fb974: Read finished successfully +2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:07:02 [DEBUG] acctest_egwsr: Beginning Read +2022/02/28 11:07:02 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:02 [DEBUG] Begin Injection +2022/02/28 11:07:02 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:07:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000829540 161 [] false false map[] 0xc00045a500 0xc0005a6370} +2022/02/28 11:07:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 {"id":"621c5f7a1b0000de07fd0c18","name":"acctest_6vwb3","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:07:02 [DEBUG] Exit from do method +2022/02/28 11:07:02 [DEBUG] 621c5f7a1b0000de07fd0c18: Read finished successfully +2022/02/28 11:07:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:07:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049a200 160 [] false false map[] 0xc000496b00 0xc0004f20b0} +2022/02/28 11:07:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 {"id":"621c5f731b00000408fd0c17","name":"acctest_egwsr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:07:03 [DEBUG] Exit from do method +2022/02/28 11:07:03 [DEBUG] 621c5f731b00000408fd0c17: Read finished successfully +2022/02/28 11:07:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e82040 1472 [] false false map[] 0xc000496f00 0xc0005a6370} +2022/02/28 11:07:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:07:03 [DEBUG] Exit from do method +2022/02/28 11:07:03 currentvrfname acctest_egwsr +2022/02/28 11:07:03 found correct vrfname +2022/02/28 11:07:03 [DEBUG] acctest_egwsr: Read finished successfully +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:07:03 [DEBUG] acctest_egwsr: Beginning Read +2022/02/28 11:07:03 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:03 [DEBUG] Begin Injection +2022/02/28 11:07:03 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009aa580 1472 [] false false map[] 0xc00045a400 0xc0005a6370} +2022/02/28 11:07:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:07:03 [DEBUG] Exit from do method +2022/02/28 11:07:03 [DEBUG] acctest_egwsr: Read finished successfully +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:07:03 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Read +2022/02/28 11:07:03 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:03 [DEBUG] Begin Injection +2022/02/28 11:07:03 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005f4e00 1472 [] false false map[] 0xc00045a900 0xc0005a6420} +2022/02/28 11:07:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:07:03 [DEBUG] Exit from do method +2022/02/28 11:07:03 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully +2022/02/28 11:07:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:03 [DEBUG] New state was assigned lineage "492669a4-8a07-96dd-eea8-2c08b65f6905" +2022/02/28 11:07:03 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:07:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (orphan)" references: [data.mso_tenant.test] +2022/02/28 11:07:03 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:07:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:03 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.example + description: "" => "" + id: "621c5f7a1b0000de07fd0c18" => "" + name: "acctest_6vwb3" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c5f731b00000408fd0c17" => "" + name: "acctest_egwsr" => "acctest_3fu8f" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + dhcp_policy.dhcp_option_policy_name: "acctest_6vwb3" => "" + dhcp_policy.dhcp_option_policy_version: "1" => "" + dhcp_policy.name: "acctest_egwsr" => "" + dhcp_policy.version: "1" => "" + display_name: "acctest_egwsr" => "acctest_3fu8f" (forces new resource) + id: "acctest_egwsr" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_egwsr" => "acctest_3fu8f" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c5f731d000023624fb974" => "621c5f731d000023624fb974" + template_name: "acctest_3bt4p" => "acctest_3bt4p" + vrf_name: "acctest_egwsr" => "acctest_3fu8f" + vrf_schema_id: "621c5f731d000023624fb974" => "" + vrf_template_name: "acctest_3bt4p" => "" +DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_egwsr" => "acctest_3fu8f" (forces new resource) + dhcp_option_name: "acctest_6vwb3" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr" => "" + name: "acctest_egwsr" => "acctest_3fu8f" (forces new resource) + schema_id: "621c5f731d000023624fb974" => "621c5f731d000023624fb974" + template_name: "acctest_3bt4p" => "acctest_3bt4p" + version: "1" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_egwsr" => "acctest_3fu8f" + id: "acctest_egwsr" => "" + layer3_multicast: "false" => "" + name: "acctest_egwsr" => "acctest_3fu8f" (forces new resource) + schema_id: "621c5f731d000023624fb974" => "621c5f731d000023624fb974" + template: "acctest_3bt4p" => "acctest_3bt4p" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.example: + ID = 621c5f7a1b0000de07fd0c18 + provider = provider.mso + description = + name = acctest_6vwb3 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c5f731b00000408fd0c17 + provider = provider.mso + description = + name = acctest_egwsr + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5f731d000023624fb974 + provider = provider.mso + name = acctest_3bt4p + template_name = acctest_3bt4p + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_egwsr + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_6vwb3 + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_egwsr + dhcp_policy.version = 1 + display_name = acctest_egwsr + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_egwsr + schema_id = 621c5f731d000023624fb974 + template_name = acctest_3bt4p + vrf_name = acctest_egwsr + vrf_schema_id = 621c5f731d000023624fb974 + vrf_template_name = acctest_3bt4p + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr + provider = provider.mso + bd_name = acctest_egwsr + dhcp_option_name = acctest_6vwb3 + dhcp_option_version = 1 + name = acctest_egwsr + schema_id = 621c5f731d000023624fb974 + template_name = acctest_3bt4p + version = 1 + + Dependencies: + mso_dhcp_option_policy.example + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_egwsr + provider = provider.mso + display_name = acctest_egwsr + layer3_multicast = false + name = acctest_egwsr + schema_id = 621c5f731d000023624fb974 + template = acctest_3bt4p + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:07:03 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:07:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:07:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example (destroy) +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:07:03 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:07:03 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change +2022/02/28 11:07:03 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:07:03 [DEBUG] 621c5f7a1b0000de07fd0c18: Beginning Read +2022/02/28 11:07:03 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:07:03 [DEBUG] Begin Injection +2022/02/28 11:07:03 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:07:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:07:03 [DEBUG] Template BD: Beginning Update +2022/02/28 11:07:03 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:03 [DEBUG] Begin Injection +2022/02/28 11:07:03 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001174f00 0xc0004f20b0} +2022/02/28 11:07:04 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:07:04 [DEBUG] 621c5f731b00000408fd0c17: Beginning Read +2022/02/28 11:07:04 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:07:04 [DEBUG] Begin Injection +2022/02/28 11:07:04 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:07:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:07:04 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:07:04 [DEBUG] Template BD: Beginning Update +2022/02/28 11:07:04 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 [DEBUG] Begin Injection +2022/02/28 11:07:04 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:07:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000aee400 0xc0004f2160} +2022/02/28 11:07:04 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 +2022/02/28 11:07:04 [DEBUG] : Read finished successfully +2022/02/28 11:07:04 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:07:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00045ad00 0xc0004f20b0} +2022/02/28 11:07:04 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 +2022/02/28 11:07:04 [DEBUG] : Read finished successfully +2022/02/28 11:07:04 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:07:04 [DEBUG] : Beginning Create +2022/02/28 11:07:04 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:07:04 [DEBUG] Begin Injection +2022/02/28 11:07:04 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:07:04 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg] Content-Type:[application/json]] {{"desc":"","name":"acctest_3fu8f","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x857ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:07:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:07:04 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00045a200 0xc0004f2160} +2022/02/28 11:07:04 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:07:04 [DEBUG] acctest_egwsr: Beginning Destroy +2022/02/28 11:07:04 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 [DEBUG] Begin Injection +2022/02/28 11:07:04 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:07:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005f5280 160 [] false false map[] 0xc000718700 0xc0004f20b0} +2022/02/28 11:07:04 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5f801b00000908fd0c19","name":"acctest_3fu8f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:07:04 [DEBUG] Exit from do method +2022/02/28 11:07:04 [DEBUG] 621c5f801b00000908fd0c19: Creation finished successfully +2022/02/28 11:07:04 [DEBUG] 621c5f801b00000908fd0c19: Beginning Read +2022/02/28 11:07:04 id: 621c5f801b00000908fd0c19 +2022/02/28 11:07:04 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:04 [DEBUG] Begin Injection +2022/02/28 11:07:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:04 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000aeea00 0xc0004f2160} +2022/02/28 11:07:04 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 [DEBUG] acctest_egwsr: Destroy finished successfully +2022/02/28 11:07:04 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:07:04 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:07:04 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 [DEBUG] Begin Injection +2022/02/28 11:07:04 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016e3c0 160 [] false false map[] 0xc000718b00 0xc0004f20b0} +2022/02/28 11:07:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 {"id":"621c5f801b00000908fd0c19","name":"acctest_3fu8f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:07:05 [DEBUG] Exit from do method +2022/02/28 11:07:05 [DEBUG] 621c5f801b00000908fd0c19: Read finished successfully +2022/02/28 11:07:05 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000497300 0xc0004f2160} +2022/02/28 11:07:05 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:05 [DEBUG] acctest_3fu8f: Creation finished successfully +2022/02/28 11:07:05 [DEBUG] acctest_3fu8f: Beginning Read +2022/02/28 11:07:05 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:05 [DEBUG] Begin Injection +2022/02/28 11:07:05 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b4040 768 [] false false map[] 0xc00045a100 0xc0004f20b0} +2022/02/28 11:07:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 11:07:05 [DEBUG] Exit from do method +2022/02/28 11:07:05 currentvrfname acctest_3fu8f +2022/02/28 11:07:05 found correct vrfname +2022/02/28 11:07:05 [DEBUG] acctest_3fu8f: Read finished successfully +2022/02/28 11:07:05 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:07:05 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:07:05 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:07:05 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:05 [DEBUG] Begin Injection +2022/02/28 11:07:05 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:05 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000718f00 0xc0004f20b0} +2022/02/28 11:07:05 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:05 [DEBUG] : Beginning Read +2022/02/28 11:07:05 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:05 [DEBUG] Begin Injection +2022/02/28 11:07:05 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005f5a40 1278 [] false false map[] 0xc000aee000 0xc0004f20b0} +2022/02/28 11:07:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 11:07:06 [DEBUG] Exit from do method +2022/02/28 11:07:06 [DEBUG] acctest_3fu8f: Read finished successfully +2022/02/28 11:07:06 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:07:06 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:07:06 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:06 [DEBUG] Begin Injection +2022/02/28 11:07:06 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:06 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000aee400 0xc0004f20b0} +2022/02/28 11:07:06 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:06 [DEBUG] Creation Complete +2022/02/28 11:07:06 [DEBUG] : Beginning Read +2022/02/28 11:07:06 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:06 [DEBUG] Begin Injection +2022/02/28 11:07:06 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016e340 1363 [] false false map[] 0xc000718000 0xc0004f20b0} +2022/02/28 11:07:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:07:06 [DEBUG] Exit from do method +2022/02/28 11:07:06 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f: Read finished successfully +2022/02/28 11:07:06 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:06 [DEBUG] New state was assigned lineage "160f3954-d7b7-cf1c-6365-ff30521387ef" +2022/02/28 11:07:06 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:06 [DEBUG] Begin Injection +2022/02/28 11:07:06 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016f0c0 1363 [] false false map[] 0xc000aee000 0xc0004f20b0} +2022/02/28 11:07:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:07:07 [DEBUG] Exit from do method +2022/02/28 11:07:07 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:07:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:07 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:07:07 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:07 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:07:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:07:07 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:07 [DEBUG] : Beginning Read +2022/02/28 11:07:07 HTTP request GET mso/api/v1/tenants +2022/02/28 11:07:07 [DEBUG] Begin Injection +2022/02/28 11:07:07 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:07:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:07:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:07:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00114e0c0 5563 [] false false map[] 0xc000719c00 0xc0004f20b0} +2022/02/28 11:07:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:07:07 [DEBUG] Exit from do method +2022/02/28 11:07:07 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:07:07 [DEBUG] 621c5f801b00000908fd0c19: Beginning Read +2022/02/28 11:07:07 id: 621c5f801b00000908fd0c19 +2022/02/28 11:07:07 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:07 [DEBUG] Begin Injection +2022/02/28 11:07:07 [DEBUG] 621c5f731d000023624fb974: Beginning Read +2022/02/28 11:07:07 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:07 [DEBUG] Begin Injection +2022/02/28 11:07:07 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049a2c0 1363 [] false false map[] 0xc000718700 0xc0004f20b0} +2022/02/28 11:07:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:07:07 [DEBUG] Exit from do method +2022/02/28 11:07:07 [DEBUG] 621c5f731d000023624fb974: Read finished successfully +2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:07:07 [DEBUG] acctest_3fu8f: Beginning Read +2022/02/28 11:07:07 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:07 [DEBUG] Begin Injection +2022/02/28 11:07:07 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009ab080 160 [] false false map[] 0xc00045a500 0xc0004f22c0} +2022/02/28 11:07:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 {"id":"621c5f801b00000908fd0c19","name":"acctest_3fu8f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:07:07 [DEBUG] Exit from do method +2022/02/28 11:07:07 [DEBUG] 621c5f801b00000908fd0c19: Read finished successfully +2022/02/28 11:07:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049b8c0 1363 [] false false map[] 0xc000d1e500 0xc0004f20b0} +2022/02/28 11:07:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:07:08 [DEBUG] Exit from do method +2022/02/28 11:07:08 currentvrfname acctest_3fu8f +2022/02/28 11:07:08 found correct vrfname +2022/02/28 11:07:08 [DEBUG] acctest_3fu8f: Read finished successfully +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:07:08 [DEBUG] acctest_3fu8f: Beginning Read +2022/02/28 11:07:08 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:08 [DEBUG] Begin Injection +2022/02/28 11:07:08 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073ef40 1363 [] false false map[] 0xc000d1ea00 0xc0004f20b0} +2022/02/28 11:07:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:07:08 [DEBUG] Exit from do method +2022/02/28 11:07:08 [DEBUG] acctest_3fu8f: Read finished successfully +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:07:08 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f: Beginning Read +2022/02/28 11:07:08 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:08 [DEBUG] Begin Injection +2022/02/28 11:07:08 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058e240 1363 [] false false map[] 0xc00045aa00 0xc0004f20b0} +2022/02/28 11:07:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:07:08 [DEBUG] Exit from do method +2022/02/28 11:07:08 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f: Read finished successfully +2022/02/28 11:07:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:08 [DEBUG] New state was assigned lineage "fdbb1c67-d980-b81d-8a98-5ed04dfc804a" +2022/02/28 11:07:08 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:07:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:08 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:07:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:08 [WARN] Test: Executing destroy step +2022/02/28 11:07:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:08 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:07:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:07:08 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:07:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:08 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:07:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:07:08 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:08 [DEBUG] : Beginning Read +2022/02/28 11:07:08 HTTP request GET mso/api/v1/tenants +2022/02/28 11:07:08 [DEBUG] Begin Injection +2022/02/28 11:07:08 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:07:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:07:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:07:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049a200 5563 [] false false map[] 0xc001144f00 0xc0004f20b0} +2022/02/28 11:07:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:07:09 [DEBUG] Exit from do method +2022/02/28 11:07:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:07:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:07:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:07:09 [DEBUG] 621c5f731d000023624fb974: Beginning Read +2022/02/28 11:07:09 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:09 [DEBUG] Begin Injection +2022/02/28 11:07:09 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:09 [DEBUG] 621c5f801b00000908fd0c19: Beginning Read +2022/02/28 11:07:09 id: 621c5f801b00000908fd0c19 +2022/02/28 11:07:09 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:09 [DEBUG] Begin Injection +2022/02/28 11:07:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049b080 1363 [] false false map[] 0xc000496700 0xc0004f20b0} +2022/02/28 11:07:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:07:09 [DEBUG] Exit from do method +2022/02/28 11:07:09 [DEBUG] 621c5f731d000023624fb974: Read finished successfully +2022/02/28 11:07:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:07:09 [DEBUG] acctest_3fu8f: Beginning Read +2022/02/28 11:07:09 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:09 [DEBUG] Begin Injection +2022/02/28 11:07:09 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049bd00 160 [] false false map[] 0xc000ea4a00 0xc0004f22c0} +2022/02/28 11:07:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 {"id":"621c5f801b00000908fd0c19","name":"acctest_3fu8f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:07:09 [DEBUG] Exit from do method +2022/02/28 11:07:09 [DEBUG] 621c5f801b00000908fd0c19: Read finished successfully +2022/02/28 11:07:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00114e300 1363 [] false false map[] 0xc000496b00 0xc0004f20b0} +2022/02/28 11:07:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:07:09 [DEBUG] Exit from do method +2022/02/28 11:07:09 currentvrfname acctest_3fu8f +2022/02/28 11:07:09 found correct vrfname +2022/02/28 11:07:09 [DEBUG] acctest_3fu8f: Read finished successfully +2022/02/28 11:07:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:07:09 [DEBUG] acctest_3fu8f: Beginning Read +2022/02/28 11:07:09 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:09 [DEBUG] Begin Injection +2022/02/28 11:07:09 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058f280 1363 [] false false map[] 0xc001144400 0xc0004f20b0} +2022/02/28 11:07:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:07:10 [DEBUG] Exit from do method +2022/02/28 11:07:10 [DEBUG] acctest_3fu8f: Read finished successfully +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:07:10 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f: Beginning Read +2022/02/28 11:07:10 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:10 [DEBUG] Begin Injection +2022/02/28 11:07:10 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00114fb40 1363 [] false false map[] 0xc000497000 0xc0004f20b0} +2022/02/28 11:07:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:07:10 [DEBUG] Exit from do method +2022/02/28 11:07:10 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f: Read finished successfully +2022/02/28 11:07:10 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:10 [DEBUG] New state was assigned lineage "63a3fe34-9edd-dd37-4c7d-fb4448d26fd7" +2022/02/28 11:07:10 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:07:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:07:10 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c5f801b00000908fd0c19" => "" + name: "acctest_3fu8f" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c5f731d000023624fb974" => "" + name: "acctest_3bt4p" => "" + template_name: "acctest_3bt4p" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_3fu8f" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_3fu8f" => "" + id: "acctest_3fu8f" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_3fu8f" => "" + schema_id: "621c5f731d000023624fb974" => "" + template_name: "acctest_3bt4p" => "" + vrf_name: "acctest_3fu8f" => "" + vrf_schema_id: "621c5f731d000023624fb974" => "" + vrf_template_name: "acctest_3bt4p" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_3fu8f" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f" => "" + name: "acctest_3fu8f" => "" + schema_id: "621c5f731d000023624fb974" => "" + template_name: "acctest_3bt4p" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_3fu8f" => "" + id: "acctest_3fu8f" => "" + layer3_multicast: "false" => "" + name: "acctest_3fu8f" => "" + schema_id: "621c5f731d000023624fb974" => "" + template: "acctest_3bt4p" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c5f801b00000908fd0c19 + provider = provider.mso + description = + name = acctest_3fu8f + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c5f731d000023624fb974 + provider = provider.mso + name = acctest_3bt4p + template_name = acctest_3bt4p + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_3fu8f + provider = provider.mso + dhcp_policy.name = acctest_3fu8f + dhcp_policy.version = 0 + display_name = acctest_3fu8f + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_3fu8f + schema_id = 621c5f731d000023624fb974 + template_name = acctest_3bt4p + vrf_name = acctest_3fu8f + vrf_schema_id = 621c5f731d000023624fb974 + vrf_template_name = acctest_3bt4p + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f + provider = provider.mso + bd_name = acctest_3fu8f + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_3fu8f + schema_id = 621c5f731d000023624fb974 + template_name = acctest_3bt4p + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_3fu8f + provider = provider.mso + display_name = acctest_3fu8f + layer3_multicast = false + name = acctest_3fu8f + schema_id = 621c5f731d000023624fb974 + template = acctest_3bt4p + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:07:10 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:07:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:07:10 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:07:10 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:07:10 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:07:10 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:07:10 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:07:10 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:07:10 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:07:10 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:07:10 [DEBUG] Template BD: Beginning Update +2022/02/28 11:07:10 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:10 [DEBUG] Begin Injection +2022/02/28 11:07:10 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:10 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000817100 0xc0004f20b0} +2022/02/28 11:07:10 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:10 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:07:10 [DEBUG] 621c5f801b00000908fd0c19: Beginning Read +2022/02/28 11:07:10 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:10 [DEBUG] Begin Injection +2022/02/28 11:07:10 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:10 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:07:10 [DEBUG] Template BD: Beginning Update +2022/02/28 11:07:10 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:10 [DEBUG] Begin Injection +2022/02/28 11:07:10 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:10 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000ea5400 0xc0004f20b0} +2022/02/28 11:07:10 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 +2022/02/28 11:07:10 [DEBUG] : Read finished successfully +2022/02/28 11:07:11 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:11 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000496200 0xc0004f22c0} +2022/02/28 11:07:11 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:11 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:07:11 [DEBUG] acctest_3fu8f: Beginning Destroy +2022/02/28 11:07:11 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:11 [DEBUG] Begin Injection +2022/02/28 11:07:11 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:11 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:11 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ea4b00 0xc0004f22c0} +2022/02/28 11:07:11 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false +2022/02/28 11:07:11 [DEBUG] acctest_3fu8f: Destroy finished successfully +2022/02/28 11:07:11 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:07:11 [DEBUG] 621c5f731d000023624fb974: Beginning Destroy +2022/02/28 11:07:11 HTTP request DELETE mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:11 [DEBUG] Begin Injection +2022/02/28 11:07:11 HTTP request after injection DELETE mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:11 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:11 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000ea5600 0xc0004f22c0} +2022/02/28 11:07:11 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:11 [DEBUG] 621c5f731d000023624fb974: Destroy finished successfully +2022/02/28 11:07:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:11 [DEBUG] New state was assigned lineage "c3a3f565-e444-2c88-546f-848507f7812d" +2022/02/28 11:07:11 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:11 [DEBUG] Begin Injection +2022/02/28 11:07:11 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 +2022/02/28 11:07:12 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:11 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000828400 39 [] false false map[] 0xc000816100 0xc0004f22c0} +2022/02/28 11:07:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"code":404,"message":"Item not found"} +2022/02/28 11:07:12 [DEBUG] Exit from do method +2022/02/28 11:07:12 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:07:12 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:07:12 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:07:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:07:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:07:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:12 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:07:12 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:07:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:12 [DEBUG] : Beginning Read +2022/02/28 11:07:12 HTTP request GET mso/api/v1/tenants +2022/02/28 11:07:12 [DEBUG] Begin Injection +2022/02/28 11:07:12 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:07:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:07:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:07:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010cc440 5563 [] false false map[] 0xc000ea4800 0xc0004f22c0} +2022/02/28 11:07:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:07:12 [DEBUG] Exit from do method +2022/02/28 11:07:12 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:07:12 [DEBUG] provider has no plugin.Client +2022/02/28 11:07:12 [DEBUG] New state was assigned lineage "981293bf-8d97-4b2f-cdd0-3d8797484921" +2022/02/28 11:07:12 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:07:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:07:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:07:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:07:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:07:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:07:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:07:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:07:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:07:12 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:15:24 [DEBUG] Test: Executing step 0 +2022/02/28 11:15:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:24 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:15:24 [DEBUG] Test: Executing step 1 +2022/02/28 11:15:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:24 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:15:24 [DEBUG] Test: Executing step 2 +2022/02/28 11:15:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:15:24 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:15:24 [DEBUG] Test: Executing step 3 +2022/02/28 11:15:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:24 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:15:24 [DEBUG] Test: Executing step 4 +2022/02/28 11:15:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:24 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:24 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:24 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:15:24 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:24 [DEBUG] : Beginning Read +2022/02/28 11:15:24 HTTP request GET mso/api/v1/tenants +2022/02/28 11:15:24 [DEBUG] Begin Injection +2022/02/28 11:15:24 HTTP request POST /login +2022/02/28 11:15:24 HTTP request after injection POST /login +2022/02/28 11:15:24 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:15:25 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:15:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:25 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00021a6c0 -1 [chunked] false false map[] 0xc000706200 0xc0001362c0} +2022/02/28 11:15:25 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA"} +2022/02/28 11:15:25 [DEBUG] Exit from do method +2022/02/28 11:15:25 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:15:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000488400 5563 [] false false map[] 0xc000706100 0xc0001362c0} +2022/02/28 11:15:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:15:26 [DEBUG] Exit from do method +2022/02/28 11:15:26 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:15:26 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:26 [DEBUG] New state was assigned lineage "6738ef0f-0f77-982c-cc17-7015c27fd3dd" +2022/02/28 11:15:26 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:15:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:26 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:26 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:26 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:26 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:26 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:26 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:26 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:26 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_98r79" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_0d0oj" + template_name: "" => "acctest_0d0oj" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_98r79" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_98r79" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_0d0oj" + vrf_name: "" => "acctest_98r79" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_98r79" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_98r79" + schema_id: "" => "" + template_name: "" => "acctest_0d0oj" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_98r79" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_98r79" + schema_id: "" => "" + template: "" => "acctest_0d0oj" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:15:26 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:15:26 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:15:26 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:15:26 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:15:26 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:15:26 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:15:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:15:26 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:15:26 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:15:26 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:15:26 [DEBUG] : Beginning Create +2022/02/28 11:15:26 [DEBUG] Schema: Beginning Creation +2022/02/28 11:15:26 HTTP request POST mso/api/v1/schemas +2022/02/28 11:15:26 [DEBUG] Begin Injection +2022/02/28 11:15:26 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:15:26 [DEBUG] Begin Injection +2022/02/28 11:15:26 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:15:26 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:15:26 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA] Content-Type:[application/json]] {{"desc":"","name":"acctest_98r79","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa97ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:15:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:15:26 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA] Content-Type:[application/json]] {{"displayName":"acctest_0d0oj","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_0d0oj","externalEpgs":[],"filters":[],"name":"acctest_0d0oj","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xa97ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:15:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:15:26 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:15:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000590140 160 [] false false map[] 0xc000bcd000 0xc0001362c0} +2022/02/28 11:15:26 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:26 [DEBUG] Exit from do method +2022/02/28 11:15:26 [DEBUG] 621c61761b00007008fd0c1a: Creation finished successfully +2022/02/28 11:15:26 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read +2022/02/28 11:15:26 id: 621c61761b00007008fd0c1a +2022/02/28 11:15:26 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:26 [DEBUG] Begin Injection +2022/02/28 11:15:26 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:27 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:15:27 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c61761d000050624fb983] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000489640 400 [] false false map[] 0xc000d2cd00 0xc0001362c0} +2022/02/28 11:15:27 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:15:27 [DEBUG] Exit from do method +2022/02/28 11:15:27 [DEBUG] 621c61761d000050624fb983: Schema Creation finished successfully +2022/02/28 11:15:27 [DEBUG] 621c61761d000050624fb983: Beginning Read +2022/02/28 11:15:27 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:27 [DEBUG] Begin Injection +2022/02/28 11:15:27 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000488040 160 [] false false map[] 0xc000bcd300 0xc000136420} +2022/02/28 11:15:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:27 [DEBUG] Exit from do method +2022/02/28 11:15:27 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully +2022/02/28 11:15:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000378040 400 [] false false map[] 0xc000fa4400 0xc0001362c0} +2022/02/28 11:15:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:15:27 [DEBUG] Exit from do method +2022/02/28 11:15:27 [DEBUG] 621c61761d000050624fb983: Read finished successfully +2022/02/28 11:15:27 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:15:27 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:15:27 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:27 [DEBUG] Begin Injection +2022/02/28 11:15:27 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:27 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000fa4a00 0xc0001362c0} +2022/02/28 11:15:27 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:27 [DEBUG] acctest_98r79: Creation finished successfully +2022/02/28 11:15:27 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:27 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:27 [DEBUG] Begin Injection +2022/02/28 11:15:27 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021ac00 768 [] false false map[] 0xc000fa4c00 0xc0003f1340} +2022/02/28 11:15:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:15:28 [DEBUG] Exit from do method +2022/02/28 11:15:28 currentvrfname acctest_98r79 +2022/02/28 11:15:28 found correct vrfname +2022/02/28 11:15:28 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:28 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:15:28 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:15:28 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:15:28 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:28 [DEBUG] Begin Injection +2022/02/28 11:15:28 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:28 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000fa5600 0xc0003f1340} +2022/02/28 11:15:28 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:28 [DEBUG] : Beginning Read +2022/02/28 11:15:28 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:28 [DEBUG] Begin Injection +2022/02/28 11:15:28 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000590400 1277 [] false false map[] 0xc000d2c000 0xc0003f1340} +2022/02/28 11:15:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:15:28 [DEBUG] Exit from do method +2022/02/28 11:15:28 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:28 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:15:28 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:15:28 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:28 [DEBUG] Begin Injection +2022/02/28 11:15:28 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:28 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d2d000 0xc0003f1340} +2022/02/28 11:15:28 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:28 [DEBUG] Creation Complete +2022/02/28 11:15:28 [DEBUG] : Beginning Read +2022/02/28 11:15:28 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:28 [DEBUG] Begin Injection +2022/02/28 11:15:28 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd7fc0 1362 [] false false map[] 0xc000bcc000 0xc0003f1340} +2022/02/28 11:15:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:15:29 [DEBUG] Exit from do method +2022/02/28 11:15:29 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully +2022/02/28 11:15:29 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:29 [DEBUG] New state was assigned lineage "cb741498-5fa2-bdb0-1ed1-2c2875b59944" +2022/02/28 11:15:29 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:29 [DEBUG] Begin Injection +2022/02/28 11:15:29 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000945000 1362 [] false false map[] 0xc000bcc100 0xc0003f1340} +2022/02/28 11:15:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:15:29 [DEBUG] Exit from do method +2022/02/28 11:15:29 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:15:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:15:29 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:29 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:29 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:15:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:15:29 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:29 [DEBUG] : Beginning Read +2022/02/28 11:15:29 HTTP request GET mso/api/v1/tenants +2022/02/28 11:15:29 [DEBUG] Begin Injection +2022/02/28 11:15:29 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:15:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000944040 5563 [] false false map[] 0xc000d2d100 0xc0003f1340} +2022/02/28 11:15:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:15:29 [DEBUG] Exit from do method +2022/02/28 11:15:29 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:29 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read +2022/02/28 11:15:29 id: 621c61761b00007008fd0c1a +2022/02/28 11:15:29 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:29 [DEBUG] Begin Injection +2022/02/28 11:15:29 [DEBUG] 621c61761d000050624fb983: Beginning Read +2022/02/28 11:15:29 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:29 [DEBUG] Begin Injection +2022/02/28 11:15:29 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:29 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000abec80 160 [] false false map[] 0xc000d84500 0xc000136420} +2022/02/28 11:15:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:30 [DEBUG] Exit from do method +2022/02/28 11:15:30 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully +2022/02/28 11:15:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd60c0 1362 [] false false map[] 0xc000098100 0xc0003f1340} +2022/02/28 11:15:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:15:30 [DEBUG] Exit from do method +2022/02/28 11:15:30 [DEBUG] 621c61761d000050624fb983: Read finished successfully +2022/02/28 11:15:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:30 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:30 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:30 [DEBUG] Begin Injection +2022/02/28 11:15:30 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00c00 1362 [] false false map[] 0xc000d84900 0xc0003f1340} +2022/02/28 11:15:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:15:30 [DEBUG] Exit from do method +2022/02/28 11:15:30 currentvrfname acctest_98r79 +2022/02/28 11:15:30 found correct vrfname +2022/02/28 11:15:30 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:30 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:30 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:30 [DEBUG] Begin Injection +2022/02/28 11:15:30 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd74c0 1362 [] false false map[] 0xc00037e500 0xc0003f1340} +2022/02/28 11:15:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:15:30 [DEBUG] Exit from do method +2022/02/28 11:15:30 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:30 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Read +2022/02/28 11:15:30 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:30 [DEBUG] Begin Injection +2022/02/28 11:15:30 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000abf800 1362 [] false false map[] 0xc0007f0900 0xc0003f1340} +2022/02/28 11:15:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:15:31 [DEBUG] Exit from do method +2022/02/28 11:15:31 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully +2022/02/28 11:15:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:31 [DEBUG] New state was assigned lineage "2bfebec7-03a5-6529-a0e8-112c33f122c9" +2022/02/28 11:15:31 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:15:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:31 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:31 [DEBUG] Test: Executing step 5 +2022/02/28 11:15:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:15:31 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:31 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:15:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:31 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:31 [DEBUG] : Beginning Read +2022/02/28 11:15:31 HTTP request GET mso/api/v1/tenants +2022/02/28 11:15:31 [DEBUG] Begin Injection +2022/02/28 11:15:31 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:15:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7000 5563 [] false false map[] 0xc000d2c700 0xc0003f1340} +2022/02/28 11:15:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:15:31 [DEBUG] Exit from do method +2022/02/28 11:15:31 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:31 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:15:31 [DEBUG] 621c61761d000050624fb983: Beginning Read +2022/02/28 11:15:31 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:31 [DEBUG] Begin Injection +2022/02/28 11:15:31 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:31 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read +2022/02/28 11:15:31 id: 621c61761b00007008fd0c1a +2022/02/28 11:15:31 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:31 [DEBUG] Begin Injection +2022/02/28 11:15:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005918c0 1362 [] false false map[] 0xc00037e700 0xc0003f1340} +2022/02/28 11:15:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:15:31 [DEBUG] Exit from do method +2022/02/28 11:15:31 [DEBUG] 621c61761d000050624fb983: Read finished successfully +2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:31 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:31 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:31 [DEBUG] Begin Injection +2022/02/28 11:15:31 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005919c0 160 [] false false map[] 0xc000d74200 0xc000136420} +2022/02/28 11:15:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:31 [DEBUG] Exit from do method +2022/02/28 11:15:31 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully +2022/02/28 11:15:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6ac0 1362 [] false false map[] 0xc000d74600 0xc0003f1340} +2022/02/28 11:15:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:15:32 [DEBUG] Exit from do method +2022/02/28 11:15:32 currentvrfname acctest_98r79 +2022/02/28 11:15:32 found correct vrfname +2022/02/28 11:15:32 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:32 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:32 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:32 [DEBUG] Begin Injection +2022/02/28 11:15:32 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00040 1362 [] false false map[] 0xc000440800 0xc0003f1340} +2022/02/28 11:15:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:15:32 [DEBUG] Exit from do method +2022/02/28 11:15:32 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:32 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Read +2022/02/28 11:15:32 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:32 [DEBUG] Begin Injection +2022/02/28 11:15:32 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a920c0 1362 [] false false map[] 0xc00037e400 0xc0003f1340} +2022/02/28 11:15:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:15:32 [DEBUG] Exit from do method +2022/02/28 11:15:32 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully +2022/02/28 11:15:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:32 [DEBUG] New state was assigned lineage "eb92c367-804e-9dfc-447b-21d603b9dc77" +2022/02/28 11:15:32 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:15:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:32 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:32 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:32 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.test + description: "" => "" + id: "" => "" + name: "" => "acctest_yc60f" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +UPDATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_98r79" => "acctest_98r79" + dhcp_option_name: "" => "acctest_yc60f" + dhcp_option_version: "0" => "1" + id: "/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79" => "/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79" + name: "acctest_98r79" => "acctest_98r79" + schema_id: "621c61761d000050624fb983" => "621c61761d000050624fb983" + template_name: "acctest_0d0oj" => "acctest_0d0oj" + version: "0" => "1" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c61761b00007008fd0c1a + provider = provider.mso + description = + name = acctest_98r79 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c61761d000050624fb983 + provider = provider.mso + name = acctest_0d0oj + template_name = acctest_0d0oj + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_98r79 + provider = provider.mso + dhcp_policy.name = acctest_98r79 + dhcp_policy.version = 0 + display_name = acctest_98r79 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_98r79 + schema_id = 621c61761d000050624fb983 + template_name = acctest_0d0oj + vrf_name = acctest_98r79 + vrf_schema_id = 621c61761d000050624fb983 + vrf_template_name = acctest_0d0oj + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79 + provider = provider.mso + bd_name = acctest_98r79 + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_98r79 + schema_id = 621c61761d000050624fb983 + template_name = acctest_0d0oj + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_98r79 + provider = provider.mso + display_name = acctest_98r79 + layer3_multicast = false + name = acctest_98r79 + schema_id = 621c61761d000050624fb983 + template = acctest_0d0oj + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:15:32 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:15:32 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:15:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state)] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:15:32 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:15:32 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change +2022/02/28 11:15:32 [DEBUG] : Beginning Create +2022/02/28 11:15:32 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 11:15:32 [DEBUG] Begin Injection +2022/02/28 11:15:32 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 11:15:32 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_yc60f","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa97ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:15:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:15:33 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:15:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a01400 161 [] false false map[] 0xc000d2c600 0xc0003f1340} +2022/02/28 11:15:33 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c617d1b00007108fd0c1b","name":"acctest_yc60f","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:33 [DEBUG] Exit from do method +2022/02/28 11:15:33 [DEBUG] 621c617d1b00007108fd0c1b: Creation finished successfully +2022/02/28 11:15:33 [DEBUG] 621c617d1b00007108fd0c1b: Beginning Read +2022/02/28 11:15:33 id: 621c617d1b00007108fd0c1b +2022/02/28 11:15:33 HTTP request GET mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:33 [DEBUG] Begin Injection +2022/02/28 11:15:33 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a01540 161 [] false false map[] 0xc00102a000 0xc0003f1340} +2022/02/28 11:15:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b {"id":"621c617d1b00007108fd0c1b","name":"acctest_yc60f","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:33 [DEBUG] Exit from do method +2022/02/28 11:15:33 [DEBUG] 621c617d1b00007108fd0c1b: Read finished successfully +2022/02/28 11:15:33 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change +2022/02/28 11:15:33 [DEBUG] Template BD: Beginning Update +2022/02/28 11:15:33 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:33 [DEBUG] Begin Injection +2022/02/28 11:15:33 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:33 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d2d500 0xc0003f1340} +2022/02/28 11:15:33 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:33 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Read +2022/02/28 11:15:33 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:33 [DEBUG] Begin Injection +2022/02/28 11:15:33 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000488040 1472 [] false false map[] 0xc000d2c100 0xc0003f1340} +2022/02/28 11:15:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:15:34 [DEBUG] Exit from do method +2022/02/28 11:15:34 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully +2022/02/28 11:15:34 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:34 [DEBUG] New state was assigned lineage "0bad6a73-f7db-1a24-7325-9fa0ad3051f4" +2022/02/28 11:15:34 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:34 [DEBUG] Begin Injection +2022/02/28 11:15:34 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000590480 1472 [] false false map[] 0xc0000a4000 0xc0003f1340} +2022/02/28 11:15:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:15:34 [DEBUG] Exit from do method +2022/02/28 11:15:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:15:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:34 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:34 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:34 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:15:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:34 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:34 [DEBUG] : Beginning Read +2022/02/28 11:15:34 HTTP request GET mso/api/v1/tenants +2022/02/28 11:15:34 [DEBUG] Begin Injection +2022/02/28 11:15:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:15:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00300 5563 [] false false map[] 0xc00037ec00 0xc0003f1340} +2022/02/28 11:15:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:15:34 [DEBUG] Exit from do method +2022/02/28 11:15:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:34 [DEBUG] 621c61761d000050624fb983: Beginning Read +2022/02/28 11:15:34 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:34 [DEBUG] Begin Injection +2022/02/28 11:15:34 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:34 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read +2022/02/28 11:15:34 id: 621c61761b00007008fd0c1a +2022/02/28 11:15:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:34 [DEBUG] Begin Injection +2022/02/28 11:15:34 [DEBUG] 621c617d1b00007108fd0c1b: Beginning Read +2022/02/28 11:15:34 id: 621c617d1b00007108fd0c1b +2022/02/28 11:15:34 HTTP request GET mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:34 [DEBUG] Begin Injection +2022/02/28 11:15:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:34 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000590180 1472 [] false false map[] 0xc0000a4100 0xc0003f1340} +2022/02/28 11:15:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:15:35 [DEBUG] Exit from do method +2022/02/28 11:15:35 [DEBUG] 621c61761d000050624fb983: Read finished successfully +2022/02/28 11:15:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:35 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:35 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:35 [DEBUG] Begin Injection +2022/02/28 11:15:35 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6180 160 [] false false map[] 0xc00037f100 0xc000136420} +2022/02/28 11:15:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:35 [DEBUG] Exit from do method +2022/02/28 11:15:35 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully +2022/02/28 11:15:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92280 161 [] false false map[] 0xc0008a0500 0xc0003f1340} +2022/02/28 11:15:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b {"id":"621c617d1b00007108fd0c1b","name":"acctest_yc60f","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:35 [DEBUG] Exit from do method +2022/02/28 11:15:35 [DEBUG] 621c617d1b00007108fd0c1b: Read finished successfully +2022/02/28 11:15:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92800 1472 [] false false map[] 0xc0000a4800 0xc000136420} +2022/02/28 11:15:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:15:35 [DEBUG] Exit from do method +2022/02/28 11:15:35 currentvrfname acctest_98r79 +2022/02/28 11:15:35 found correct vrfname +2022/02/28 11:15:35 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:35 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:35 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:35 [DEBUG] Begin Injection +2022/02/28 11:15:35 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd68c0 1472 [] false false map[] 0xc0008a0a00 0xc000136420} +2022/02/28 11:15:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:15:35 [DEBUG] Exit from do method +2022/02/28 11:15:35 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:35 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Read +2022/02/28 11:15:35 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:35 [DEBUG] Begin Injection +2022/02/28 11:15:35 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6980 1472 [] false false map[] 0xc00037f600 0xc000906000} +2022/02/28 11:15:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:15:36 [DEBUG] Exit from do method +2022/02/28 11:15:36 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully +2022/02/28 11:15:36 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:36 [DEBUG] New state was assigned lineage "cee5de00-a93f-a1fb-5b4f-1e782db6b16b" +2022/02/28 11:15:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:15:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:36 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:36 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:36 [DEBUG] Test: Executing step 6 +2022/02/28 11:15:36 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79\")" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:36 [DEBUG] Starting graph walk: walkImport +2022/02/28 11:15:36 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Import +2022/02/28 11:15:36 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:36 [DEBUG] Begin Injection +2022/02/28 11:15:36 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e46a00 1472 [] false false map[] 0xc000e26a00 0xc000d32840} +2022/02/28 11:15:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:15:36 [DEBUG] Exit from do method +2022/02/28 11:15:36 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Import finished successfully +2022/02/28 11:15:36 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Read +2022/02/28 11:15:36 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:36 [DEBUG] Begin Injection +2022/02/28 11:15:36 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6040 1472 [] false false map[] 0xc000d2cb00 0xc000d32840} +2022/02/28 11:15:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:15:36 [DEBUG] Exit from do method +2022/02/28 11:15:36 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully +2022/02/28 11:15:36 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:36 [DEBUG] New state was assigned lineage "67c7eda3-1216-cfa3-fbff-30fd7d8d8440" +2022/02/28 11:15:36 [DEBUG] Test: Executing step 7 +2022/02/28 11:15:36 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:36 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:36 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:36 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config +2022/02/28 11:15:36 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config +2022/02/28 11:15:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:15:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:36 [DEBUG] : Beginning Read +2022/02/28 11:15:36 HTTP request GET mso/api/v1/tenants +2022/02/28 11:15:36 [DEBUG] Begin Injection +2022/02/28 11:15:36 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:15:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6040 5563 [] false false map[] 0xc00037e800 0xc000d32840} +2022/02/28 11:15:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:15:37 [DEBUG] Exit from do method +2022/02/28 11:15:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:15:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:37 [DEBUG] 621c61761d000050624fb983: Beginning Read +2022/02/28 11:15:37 [DEBUG] 621c617d1b00007108fd0c1b: Beginning Read +2022/02/28 11:15:37 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:37 [DEBUG] Begin Injection +2022/02/28 11:15:37 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:37 id: 621c617d1b00007108fd0c1b +2022/02/28 11:15:37 HTTP request GET mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:37 [DEBUG] Begin Injection +2022/02/28 11:15:37 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:37 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read +2022/02/28 11:15:37 id: 621c61761b00007008fd0c1a +2022/02/28 11:15:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:37 [DEBUG] Begin Injection +2022/02/28 11:15:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000830500 1472 [] false false map[] 0xc00019eb00 0xc000d32840} +2022/02/28 11:15:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:15:37 [DEBUG] Exit from do method +2022/02/28 11:15:37 [DEBUG] 621c61761d000050624fb983: Read finished successfully +2022/02/28 11:15:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:37 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:37 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:37 [DEBUG] Begin Injection +2022/02/28 11:15:37 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000831640 161 [] false false map[] 0xc000e9e000 0xc0003f1340} +2022/02/28 11:15:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b {"id":"621c617d1b00007108fd0c1b","name":"acctest_yc60f","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:37 [DEBUG] Exit from do method +2022/02/28 11:15:37 [DEBUG] 621c617d1b00007108fd0c1b: Read finished successfully +2022/02/28 11:15:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6c80 160 [] false false map[] 0xc00041e100 0xc000d32840} +2022/02/28 11:15:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:37 [DEBUG] Exit from do method +2022/02/28 11:15:37 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully +2022/02/28 11:15:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004dfc0 1472 [] false false map[] 0xc00041e600 0xc0003f1340} +2022/02/28 11:15:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:15:37 [DEBUG] Exit from do method +2022/02/28 11:15:37 currentvrfname acctest_98r79 +2022/02/28 11:15:37 found correct vrfname +2022/02/28 11:15:37 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:37 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:37 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:37 [DEBUG] Begin Injection +2022/02/28 11:15:37 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6040 1472 [] false false map[] 0xc00041eb00 0xc0003f1340} +2022/02/28 11:15:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:15:38 [DEBUG] Exit from do method +2022/02/28 11:15:38 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:38 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Read +2022/02/28 11:15:38 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:38 [DEBUG] Begin Injection +2022/02/28 11:15:38 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000378280 1472 [] false false map[] 0xc00037ea00 0xc0001362c0} +2022/02/28 11:15:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:15:38 [DEBUG] Exit from do method +2022/02/28 11:15:38 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully +2022/02/28 11:15:38 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:38 [DEBUG] New state was assigned lineage "240b7527-1527-e389-88a6-d4f37b73d3ca" +2022/02/28 11:15:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:15:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] +2022/02/28 11:15:38 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:38 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:38 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.test + description: "" => "" + id: "621c617d1b00007108fd0c1b" => "" + name: "acctest_yc60f" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_98r79" => "" + dhcp_option_name: "acctest_yc60f" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79" => "" + name: "acctest_98r79" => "" + schema_id: "621c61761d000050624fb983" => "" + template_name: "acctest_0d0oj" => "" + version: "1" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.test: + ID = 621c617d1b00007108fd0c1b + provider = provider.mso + description = + name = acctest_yc60f + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c61761b00007008fd0c1a + provider = provider.mso + description = + name = acctest_98r79 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c61761d000050624fb983 + provider = provider.mso + name = acctest_0d0oj + template_name = acctest_0d0oj + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_98r79 + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_yc60f + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_98r79 + dhcp_policy.version = 1 + display_name = acctest_98r79 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_98r79 + schema_id = 621c61761d000050624fb983 + template_name = acctest_0d0oj + vrf_name = acctest_98r79 + vrf_schema_id = 621c61761d000050624fb983 + vrf_template_name = acctest_0d0oj + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79 + provider = provider.mso + bd_name = acctest_98r79 + dhcp_option_name = acctest_yc60f + dhcp_option_version = 1 + name = acctest_98r79 + schema_id = 621c61761d000050624fb983 + template_name = acctest_0d0oj + version = 1 + + Dependencies: + mso_dhcp_option_policy.test + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_98r79 + provider = provider.mso + display_name = acctest_98r79 + layer3_multicast = false + name = acctest_98r79 + schema_id = 621c61761d000050624fb983 + template = acctest_0d0oj + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:15:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:15:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] +2022/02/28 11:15:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] +2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:15:38 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:15:38 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:15:38 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:15:38 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:15:38 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:15:38 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:15:38 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:15:38 [DEBUG] Template BD: Beginning Update +2022/02/28 11:15:38 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:38 [DEBUG] Begin Injection +2022/02/28 11:15:38 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:38 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00043e300 0xc000d32000} +2022/02/28 11:15:38 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:38 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change +2022/02/28 11:15:38 [DEBUG] 621c617d1b00007108fd0c1b: Beginning Read +2022/02/28 11:15:38 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:38 [DEBUG] Begin Injection +2022/02/28 11:15:38 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:39 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00043eb00 0xc000d32000} +2022/02/28 11:15:39 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b +2022/02/28 11:15:39 [DEBUG] : Read finished successfully +2022/02/28 11:15:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:39 [DEBUG] New state was assigned lineage "9caf8173-d5ee-a266-b21a-44ab7e57c2a5" +2022/02/28 11:15:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:15:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:39 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:15:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:39 [DEBUG] : Beginning Read +2022/02/28 11:15:39 HTTP request GET mso/api/v1/tenants +2022/02/28 11:15:39 [DEBUG] Begin Injection +2022/02/28 11:15:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:15:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92040 5563 [] false false map[] 0xc0007de700 0xc000d32000} +2022/02/28 11:15:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:15:39 [DEBUG] Exit from do method +2022/02/28 11:15:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:39 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read +2022/02/28 11:15:39 id: 621c61761b00007008fd0c1a +2022/02/28 11:15:39 [DEBUG] 621c61761d000050624fb983: Beginning Read +2022/02/28 11:15:39 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:39 [DEBUG] Begin Injection +2022/02/28 11:15:39 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:39 [DEBUG] Begin Injection +2022/02/28 11:15:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92180 1277 [] false false map[] 0xc000100500 0xc000d32000} +2022/02/28 11:15:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:15:39 [DEBUG] Exit from do method +2022/02/28 11:15:39 [DEBUG] 621c61761d000050624fb983: Read finished successfully +2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:39 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:39 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:39 [DEBUG] Begin Injection +2022/02/28 11:15:39 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92500 160 [] false false map[] 0xc00037ea00 0xc000d32840} +2022/02/28 11:15:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:39 [DEBUG] Exit from do method +2022/02/28 11:15:39 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully +2022/02/28 11:15:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e47d00 1277 [] false false map[] 0xc000802400 0xc000d32000} +2022/02/28 11:15:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:15:40 [DEBUG] Exit from do method +2022/02/28 11:15:40 currentvrfname acctest_98r79 +2022/02/28 11:15:40 found correct vrfname +2022/02/28 11:15:40 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:40 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:40 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:40 [DEBUG] Begin Injection +2022/02/28 11:15:40 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021a2c0 1277 [] false false map[] 0xc00037eb00 0xc000d32000} +2022/02/28 11:15:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:15:40 [DEBUG] Exit from do method +2022/02/28 11:15:40 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:40 [DEBUG] New state was assigned lineage "da9894b1-015d-eef9-5635-13bd5b30848f" +2022/02/28 11:15:40 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:15:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:40 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:40 [DEBUG] Test: Executing step 8 +2022/02/28 11:15:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:40 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:15:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:40 [DEBUG] : Beginning Read +2022/02/28 11:15:40 HTTP request GET mso/api/v1/tenants +2022/02/28 11:15:40 [DEBUG] Begin Injection +2022/02/28 11:15:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:15:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098d8c0 5563 [] false false map[] 0xc000dde300 0xc000d32000} +2022/02/28 11:15:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:15:40 [DEBUG] Exit from do method +2022/02/28 11:15:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:40 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read +2022/02/28 11:15:40 id: 621c61761b00007008fd0c1a +2022/02/28 11:15:40 [DEBUG] 621c61761d000050624fb983: Beginning Read +2022/02/28 11:15:40 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:40 [DEBUG] Begin Injection +2022/02/28 11:15:40 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:40 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:40 [DEBUG] Begin Injection +2022/02/28 11:15:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a926c0 1277 [] false false map[] 0xc0001fa100 0xc000d32000} +2022/02/28 11:15:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:15:41 [DEBUG] Exit from do method +2022/02/28 11:15:41 [DEBUG] 621c61761d000050624fb983: Read finished successfully +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:41 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:41 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:41 [DEBUG] Begin Injection +2022/02/28 11:15:41 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00580 160 [] false false map[] 0xc000e44600 0xc000d32840} +2022/02/28 11:15:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:41 [DEBUG] Exit from do method +2022/02/28 11:15:41 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully +2022/02/28 11:15:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000590fc0 1277 [] false false map[] 0xc00037e500 0xc000d32000} +2022/02/28 11:15:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:15:41 [DEBUG] Exit from do method +2022/02/28 11:15:41 currentvrfname acctest_98r79 +2022/02/28 11:15:41 found correct vrfname +2022/02/28 11:15:41 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:41 [DEBUG] acctest_98r79: Beginning Read +2022/02/28 11:15:41 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:41 [DEBUG] Begin Injection +2022/02/28 11:15:41 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000590180 1277 [] false false map[] 0xc0006e0300 0xc000d32000} +2022/02/28 11:15:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:15:41 [DEBUG] Exit from do method +2022/02/28 11:15:41 [DEBUG] acctest_98r79: Read finished successfully +2022/02/28 11:15:41 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:41 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:41 [DEBUG] New state was assigned lineage "16106935-b39b-b751-2b08-376697819045" +2022/02/28 11:15:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:15:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:41 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:41 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:41 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:41 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c61761b00007008fd0c1a" => "" + name: "acctest_98r79" => "acctest_c7y9r" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "acctest_98r79" => "acctest_c7y9r" (forces new resource) + id: "acctest_98r79" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_98r79" => "acctest_c7y9r" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c61761d000050624fb983" => "621c61761d000050624fb983" + template_name: "acctest_0d0oj" => "acctest_0d0oj" + vrf_name: "acctest_98r79" => "acctest_c7y9r" + vrf_schema_id: "621c61761d000050624fb983" => "" + vrf_template_name: "acctest_0d0oj" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_c7y9r" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_c7y9r" + schema_id: "" => "621c61761d000050624fb983" + template_name: "" => "acctest_0d0oj" + version: "" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_98r79" => "acctest_c7y9r" + id: "acctest_98r79" => "" + layer3_multicast: "false" => "" + name: "acctest_98r79" => "acctest_c7y9r" (forces new resource) + schema_id: "621c61761d000050624fb983" => "621c61761d000050624fb983" + template: "acctest_0d0oj" => "acctest_0d0oj" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c61761b00007008fd0c1a + provider = provider.mso + description = + name = acctest_98r79 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c61761d000050624fb983 + provider = provider.mso + name = acctest_0d0oj + template_name = acctest_0d0oj + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_98r79 + provider = provider.mso + display_name = acctest_98r79 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_98r79 + schema_id = 621c61761d000050624fb983 + template_name = acctest_0d0oj + vrf_name = acctest_98r79 + vrf_schema_id = 621c61761d000050624fb983 + vrf_template_name = acctest_0d0oj + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_98r79 + provider = provider.mso + display_name = acctest_98r79 + layer3_multicast = false + name = acctest_98r79 + schema_id = 621c61761d000050624fb983 + template = acctest_0d0oj + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:15:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:15:41 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:15:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:15:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:15:41 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:15:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:15:41 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:15:41 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read +2022/02/28 11:15:41 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:41 [DEBUG] Begin Injection +2022/02/28 11:15:41 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:41 [DEBUG] Template BD: Beginning Update +2022/02/28 11:15:41 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:41 [DEBUG] Begin Injection +2022/02/28 11:15:41 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000dde200 0xc000d32000} +2022/02/28 11:15:42 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a +2022/02/28 11:15:42 [DEBUG] : Read finished successfully +2022/02/28 11:15:42 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:15:42 [DEBUG] : Beginning Create +2022/02/28 11:15:42 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:15:42 [DEBUG] Begin Injection +2022/02/28 11:15:42 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:15:42 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA] Content-Type:[application/json]] {{"desc":"","name":"acctest_c7y9r","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa97ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:15:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:15:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00037e500 0xc000d32840} +2022/02/28 11:15:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:15:42 [DEBUG] acctest_98r79: Beginning Destroy +2022/02/28 11:15:42 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 [DEBUG] Begin Injection +2022/02/28 11:15:42 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ddee00 0xc000d32840} +2022/02/28 11:15:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 [DEBUG] acctest_98r79: Destroy finished successfully +2022/02/28 11:15:42 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:15:42 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:15:42 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 [DEBUG] Begin Injection +2022/02/28 11:15:42 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:15:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098c040 160 [] false false map[] 0xc0006e0f00 0xc000d32000} +2022/02/28 11:15:42 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c61861b00006408fd0c1c","name":"acctest_c7y9r","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:42 [DEBUG] Exit from do method +2022/02/28 11:15:42 [DEBUG] 621c61861b00006408fd0c1c: Creation finished successfully +2022/02/28 11:15:42 [DEBUG] 621c61861b00006408fd0c1c: Beginning Read +2022/02/28 11:15:42 id: 621c61861b00006408fd0c1c +2022/02/28 11:15:42 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:42 [DEBUG] Begin Injection +2022/02/28 11:15:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ddf300 0xc000d32840} +2022/02/28 11:15:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:42 [DEBUG] acctest_c7y9r: Creation finished successfully +2022/02/28 11:15:42 [DEBUG] acctest_c7y9r: Beginning Read +2022/02/28 11:15:42 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:42 [DEBUG] Begin Injection +2022/02/28 11:15:42 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92080 160 [] false false map[] 0xc000ab2100 0xc000d32000} +2022/02/28 11:15:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c {"id":"621c61861b00006408fd0c1c","name":"acctest_c7y9r","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:42 [DEBUG] Exit from do method +2022/02/28 11:15:42 [DEBUG] 621c61861b00006408fd0c1c: Read finished successfully +2022/02/28 11:15:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd60c0 768 [] false false map[] 0xc000ab2000 0xc000d32840} +2022/02/28 11:15:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 11:15:43 [DEBUG] Exit from do method +2022/02/28 11:15:43 currentvrfname acctest_c7y9r +2022/02/28 11:15:43 found correct vrfname +2022/02/28 11:15:43 [DEBUG] acctest_c7y9r: Read finished successfully +2022/02/28 11:15:43 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:15:43 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:15:43 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:15:43 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:43 [DEBUG] Begin Injection +2022/02/28 11:15:43 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:43 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ddef00 0xc000d32840} +2022/02/28 11:15:43 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:43 [DEBUG] : Beginning Read +2022/02/28 11:15:43 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:43 [DEBUG] Begin Injection +2022/02/28 11:15:43 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098c240 1278 [] false false map[] 0xc000ab2200 0xc000d32840} +2022/02/28 11:15:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 11:15:43 [DEBUG] Exit from do method +2022/02/28 11:15:43 [DEBUG] acctest_c7y9r: Read finished successfully +2022/02/28 11:15:43 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:15:43 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:15:43 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:43 [DEBUG] Begin Injection +2022/02/28 11:15:43 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:44 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ddf900 0xc000d32840} +2022/02/28 11:15:44 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:44 [DEBUG] Creation Complete +2022/02/28 11:15:44 [DEBUG] : Beginning Read +2022/02/28 11:15:44 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:44 [DEBUG] Begin Injection +2022/02/28 11:15:44 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021a2c0 1363 [] false false map[] 0xc000dde000 0xc000d32840} +2022/02/28 11:15:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:15:44 [DEBUG] Exit from do method +2022/02/28 11:15:44 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r: Read finished successfully +2022/02/28 11:15:44 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:44 [DEBUG] New state was assigned lineage "8f0ddae4-ad40-226b-fc3d-02718a14bbdd" +2022/02/28 11:15:44 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:44 [DEBUG] Begin Injection +2022/02/28 11:15:44 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021aa40 1363 [] false false map[] 0xc0011ac000 0xc000d32840} +2022/02/28 11:15:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:15:44 [DEBUG] Exit from do method +2022/02/28 11:15:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:15:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:44 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:44 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:15:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:15:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:44 [DEBUG] : Beginning Read +2022/02/28 11:15:44 HTTP request GET mso/api/v1/tenants +2022/02/28 11:15:44 [DEBUG] Begin Injection +2022/02/28 11:15:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:15:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e46540 5563 [] false false map[] 0xc000bec100 0xc000d32840} +2022/02/28 11:15:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:15:45 [DEBUG] Exit from do method +2022/02/28 11:15:45 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:15:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:45 [DEBUG] 621c61761d000050624fb983: Beginning Read +2022/02/28 11:15:45 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:45 [DEBUG] Begin Injection +2022/02/28 11:15:45 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:45 [DEBUG] 621c61861b00006408fd0c1c: Beginning Read +2022/02/28 11:15:45 id: 621c61861b00006408fd0c1c +2022/02/28 11:15:45 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:45 [DEBUG] Begin Injection +2022/02/28 11:15:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92800 1363 [] false false map[] 0xc000bec900 0xc000d32840} +2022/02/28 11:15:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:15:45 [DEBUG] Exit from do method +2022/02/28 11:15:45 [DEBUG] 621c61761d000050624fb983: Read finished successfully +2022/02/28 11:15:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:45 [DEBUG] acctest_c7y9r: Beginning Read +2022/02/28 11:15:45 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:45 [DEBUG] Begin Injection +2022/02/28 11:15:45 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92940 160 [] false false map[] 0xc0001fa600 0xc000d32000} +2022/02/28 11:15:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c {"id":"621c61861b00006408fd0c1c","name":"acctest_c7y9r","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:45 [DEBUG] Exit from do method +2022/02/28 11:15:45 [DEBUG] 621c61861b00006408fd0c1c: Read finished successfully +2022/02/28 11:15:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098c380 1363 [] false false map[] 0xc0001faa00 0xc000d32840} +2022/02/28 11:15:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:15:45 [DEBUG] Exit from do method +2022/02/28 11:15:45 currentvrfname acctest_c7y9r +2022/02/28 11:15:45 found correct vrfname +2022/02/28 11:15:45 [DEBUG] acctest_c7y9r: Read finished successfully +2022/02/28 11:15:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:45 [DEBUG] acctest_c7y9r: Beginning Read +2022/02/28 11:15:45 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:45 [DEBUG] Begin Injection +2022/02/28 11:15:45 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098d6c0 1363 [] false false map[] 0xc000becc00 0xc000d32840} +2022/02/28 11:15:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:15:46 [DEBUG] Exit from do method +2022/02/28 11:15:46 [DEBUG] acctest_c7y9r: Read finished successfully +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:46 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r: Beginning Read +2022/02/28 11:15:46 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:46 [DEBUG] Begin Injection +2022/02/28 11:15:46 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098c040 1363 [] false false map[] 0xc0001fae00 0xc000d32840} +2022/02/28 11:15:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:15:46 [DEBUG] Exit from do method +2022/02/28 11:15:46 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r: Read finished successfully +2022/02/28 11:15:46 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:46 [DEBUG] New state was assigned lineage "365cffae-c82f-431e-d1f6-37739a556b96" +2022/02/28 11:15:46 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:15:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:46 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:46 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:46 [WARN] Test: Executing destroy step +2022/02/28 11:15:46 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:46 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:46 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:46 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:46 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:15:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:46 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:46 [DEBUG] : Beginning Read +2022/02/28 11:15:46 HTTP request GET mso/api/v1/tenants +2022/02/28 11:15:46 [DEBUG] Begin Injection +2022/02/28 11:15:46 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:15:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021a180 5563 [] false false map[] 0xc000fd6d00 0xc000d32840} +2022/02/28 11:15:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:15:47 [DEBUG] Exit from do method +2022/02/28 11:15:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:15:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:15:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:15:47 [DEBUG] 621c61761d000050624fb983: Beginning Read +2022/02/28 11:15:47 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:47 [DEBUG] Begin Injection +2022/02/28 11:15:47 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:47 [DEBUG] 621c61861b00006408fd0c1c: Beginning Read +2022/02/28 11:15:47 id: 621c61861b00006408fd0c1c +2022/02/28 11:15:47 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:47 [DEBUG] Begin Injection +2022/02/28 11:15:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92740 160 [] false false map[] 0xc00037e400 0xc000d32000} +2022/02/28 11:15:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c {"id":"621c61861b00006408fd0c1c","name":"acctest_c7y9r","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:15:47 [DEBUG] Exit from do method +2022/02/28 11:15:47 [DEBUG] 621c61861b00006408fd0c1c: Read finished successfully +2022/02/28 11:15:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00b40 1363 [] false false map[] 0xc00043e100 0xc000d32840} +2022/02/28 11:15:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:15:47 [DEBUG] Exit from do method +2022/02/28 11:15:47 [DEBUG] 621c61761d000050624fb983: Read finished successfully +2022/02/28 11:15:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:15:47 [DEBUG] acctest_c7y9r: Beginning Read +2022/02/28 11:15:47 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:47 [DEBUG] Begin Injection +2022/02/28 11:15:47 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098d1c0 1363 [] false false map[] 0xc001408600 0xc000d32840} +2022/02/28 11:15:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:15:47 [DEBUG] Exit from do method +2022/02/28 11:15:47 currentvrfname acctest_c7y9r +2022/02/28 11:15:47 found correct vrfname +2022/02/28 11:15:47 [DEBUG] acctest_c7y9r: Read finished successfully +2022/02/28 11:15:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:15:47 [DEBUG] acctest_c7y9r: Beginning Read +2022/02/28 11:15:47 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:47 [DEBUG] Begin Injection +2022/02/28 11:15:47 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6040 1363 [] false false map[] 0xc00037e300 0xc000d32840} +2022/02/28 11:15:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:15:48 [DEBUG] Exit from do method +2022/02/28 11:15:48 [DEBUG] acctest_c7y9r: Read finished successfully +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:15:48 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r: Beginning Read +2022/02/28 11:15:48 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:48 [DEBUG] Begin Injection +2022/02/28 11:15:48 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd72c0 1363 [] false false map[] 0xc00037e800 0xc000d32840} +2022/02/28 11:15:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:15:48 [DEBUG] Exit from do method +2022/02/28 11:15:48 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r: Read finished successfully +2022/02/28 11:15:48 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:48 [DEBUG] New state was assigned lineage "ff080fae-6f42-61a1-400a-eff98c063396" +2022/02/28 11:15:48 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:15:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:48 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:15:48 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c61861b00006408fd0c1c" => "" + name: "acctest_c7y9r" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c61761d000050624fb983" => "" + name: "acctest_0d0oj" => "" + template_name: "acctest_0d0oj" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_c7y9r" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_c7y9r" => "" + id: "acctest_c7y9r" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_c7y9r" => "" + schema_id: "621c61761d000050624fb983" => "" + template_name: "acctest_0d0oj" => "" + vrf_name: "acctest_c7y9r" => "" + vrf_schema_id: "621c61761d000050624fb983" => "" + vrf_template_name: "acctest_0d0oj" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_c7y9r" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r" => "" + name: "acctest_c7y9r" => "" + schema_id: "621c61761d000050624fb983" => "" + template_name: "acctest_0d0oj" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_c7y9r" => "" + id: "acctest_c7y9r" => "" + layer3_multicast: "false" => "" + name: "acctest_c7y9r" => "" + schema_id: "621c61761d000050624fb983" => "" + template: "acctest_0d0oj" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c61861b00006408fd0c1c + provider = provider.mso + description = + name = acctest_c7y9r + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c61761d000050624fb983 + provider = provider.mso + name = acctest_0d0oj + template_name = acctest_0d0oj + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_c7y9r + provider = provider.mso + dhcp_policy.name = acctest_c7y9r + dhcp_policy.version = 0 + display_name = acctest_c7y9r + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_c7y9r + schema_id = 621c61761d000050624fb983 + template_name = acctest_0d0oj + vrf_name = acctest_c7y9r + vrf_schema_id = 621c61761d000050624fb983 + vrf_template_name = acctest_0d0oj + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r + provider = provider.mso + bd_name = acctest_c7y9r + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_c7y9r + schema_id = 621c61761d000050624fb983 + template_name = acctest_0d0oj + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_c7y9r + provider = provider.mso + display_name = acctest_c7y9r + layer3_multicast = false + name = acctest_c7y9r + schema_id = 621c61761d000050624fb983 + template = acctest_0d0oj + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:15:48 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:15:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:15:48 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:15:48 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:15:48 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:15:48 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:15:48 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:15:48 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:15:48 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:15:48 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:15:48 [DEBUG] Template BD: Beginning Update +2022/02/28 11:15:48 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:48 [DEBUG] Begin Injection +2022/02/28 11:15:48 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:48 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:48 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ac4800 0xc000d32840} +2022/02/28 11:15:48 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:48 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:15:48 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:15:48 [DEBUG] 621c61861b00006408fd0c1c: Beginning Read +2022/02/28 11:15:48 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:48 [DEBUG] Begin Injection +2022/02/28 11:15:48 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:48 [DEBUG] Template BD: Beginning Update +2022/02/28 11:15:48 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:48 [DEBUG] Begin Injection +2022/02/28 11:15:48 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:49 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000ac4f00 0xc000d32840} +2022/02/28 11:15:49 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c +2022/02/28 11:15:49 [DEBUG] : Read finished successfully +2022/02/28 11:15:49 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001408600 0xc000d32000} +2022/02/28 11:15:49 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:49 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:15:49 [DEBUG] acctest_c7y9r: Beginning Destroy +2022/02/28 11:15:49 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:49 [DEBUG] Begin Injection +2022/02/28 11:15:49 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:49 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a6e700 0xc000d32000} +2022/02/28 11:15:49 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false +2022/02/28 11:15:49 [DEBUG] acctest_c7y9r: Destroy finished successfully +2022/02/28 11:15:49 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:15:49 [DEBUG] 621c61761d000050624fb983: Beginning Destroy +2022/02/28 11:15:49 HTTP request DELETE mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:49 [DEBUG] Begin Injection +2022/02/28 11:15:49 HTTP request after injection DELETE mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:49 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000a6ec00 0xc000d32000} +2022/02/28 11:15:49 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:49 [DEBUG] 621c61761d000050624fb983: Destroy finished successfully +2022/02/28 11:15:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:49 [DEBUG] New state was assigned lineage "c5a89102-2847-e8f2-456a-f583d3bfd6a3" +2022/02/28 11:15:49 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:49 [DEBUG] Begin Injection +2022/02/28 11:15:49 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 +2022/02/28 11:15:50 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:49 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000830340 39 [] false false map[] 0xc0001fa000 0xc000d32000} +2022/02/28 11:15:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"code":404,"message":"Item not found"} +2022/02/28 11:15:50 [DEBUG] Exit from do method +2022/02/28 11:15:50 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:15:50 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:15:50 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:15:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:15:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:50 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:15:50 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:15:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:50 [DEBUG] : Beginning Read +2022/02/28 11:15:50 HTTP request GET mso/api/v1/tenants +2022/02/28 11:15:50 [DEBUG] Begin Injection +2022/02/28 11:15:50 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:15:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:15:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000379b80 5563 [] false false map[] 0xc0001fab00 0xc000d32000} +2022/02/28 11:15:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:15:50 [DEBUG] Exit from do method +2022/02/28 11:15:50 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:15:50 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:50 [DEBUG] New state was assigned lineage "3d6ff49f-40a6-5d54-208e-85c8d675cf86" +2022/02/28 11:15:50 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:15:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:15:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:15:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:15:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:15:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:50 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:15:57 [DEBUG] Test: Executing step 0 +2022/02/28 11:15:57 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:57 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:15:57 [DEBUG] Test: Executing step 1 +2022/02/28 11:15:57 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:57 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:15:57 [DEBUG] Test: Executing step 2 +2022/02/28 11:15:57 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:57 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:15:57 [DEBUG] Test: Executing step 3 +2022/02/28 11:15:57 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:57 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:15:57 [DEBUG] Test: Executing step 4 +2022/02/28 11:15:57 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:15:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:15:57 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:15:57 [DEBUG] provider has no plugin.Client +2022/02/28 11:15:57 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:15:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:15:57 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:15:57 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:15:57 [DEBUG] : Beginning Read +2022/02/28 11:15:57 HTTP request GET mso/api/v1/tenants +2022/02/28 11:15:57 [DEBUG] Begin Injection +2022/02/28 11:15:57 HTTP request POST /login +2022/02/28 11:15:57 HTTP request after injection POST /login +2022/02/28 11:15:57 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:15:59 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:15:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:59 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0003480c0 -1 [chunked] false false map[] 0xc00076ca00 0xc0008786e0} +2022/02/28 11:15:59 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q"} +2022/02/28 11:15:59 [DEBUG] Exit from do method +2022/02/28 11:15:59 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:15:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348500 5563 [] false false map[] 0xc00076c300 0xc0008786e0} +2022/02/28 11:16:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:00 [DEBUG] Exit from do method +2022/02/28 11:16:00 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:00 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:00 [DEBUG] New state was assigned lineage "79a5c257-95a6-9de8-cd41-8001854405e9" +2022/02/28 11:16:00 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:00 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:00 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:00 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:00 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:00 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:00 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:00 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:00 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_ftdrh" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_zt2hf" + template_name: "" => "acctest_zt2hf" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_ftdrh" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_ftdrh" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_zt2hf" + vrf_name: "" => "acctest_ftdrh" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_ftdrh" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_ftdrh" + schema_id: "" => "" + template_name: "" => "acctest_zt2hf" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_ftdrh" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_ftdrh" + schema_id: "" => "" + template: "" => "acctest_zt2hf" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:16:00 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:16:00 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:16:00 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:16:00 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:16:00 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:16:00 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:16:00 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:16:00 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:16:00 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:16:00 [DEBUG] Schema: Beginning Creation +2022/02/28 11:16:00 [DEBUG] : Beginning Create +2022/02/28 11:16:00 HTTP request POST mso/api/v1/schemas +2022/02/28 11:16:00 [DEBUG] Begin Injection +2022/02/28 11:16:00 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:16:00 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:00 [DEBUG] Begin Injection +2022/02/28 11:16:00 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:00 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q] Content-Type:[application/json]] {{"displayName":"acctest_zt2hf","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_zt2hf","externalEpgs":[],"filters":[],"name":"acctest_zt2hf","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x7a7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:16:00 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q] Content-Type:[application/json]] {{"desc":"","name":"acctest_ftdrh","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x7a7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:16:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:16:00 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104a00 160 [] false false map[] 0xc00076d200 0xc0008786e0} +2022/02/28 11:16:00 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:00 [DEBUG] Exit from do method +2022/02/28 11:16:00 [DEBUG] 621c61981b00007d08fd0c1d: Creation finished successfully +2022/02/28 11:16:00 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read +2022/02/28 11:16:00 id: 621c61981b00007d08fd0c1d +2022/02/28 11:16:00 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:00 [DEBUG] Begin Injection +2022/02/28 11:16:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:01 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:16:01 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c61981d000061624fb992] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104b00 400 [] false false map[] 0xc000a1e600 0xc0008786e0} +2022/02/28 11:16:01 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:16:01 [DEBUG] Exit from do method +2022/02/28 11:16:01 [DEBUG] 621c61981d000061624fb992: Schema Creation finished successfully +2022/02/28 11:16:01 [DEBUG] 621c61981d000061624fb992: Beginning Read +2022/02/28 11:16:01 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:01 [DEBUG] Begin Injection +2022/02/28 11:16:01 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003495c0 160 [] false false map[] 0xc0000a6500 0xc000748370} +2022/02/28 11:16:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:01 [DEBUG] Exit from do method +2022/02/28 11:16:01 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully +2022/02/28 11:16:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000349a00 400 [] false false map[] 0xc0000a6600 0xc0008786e0} +2022/02/28 11:16:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:16:01 [DEBUG] Exit from do method +2022/02/28 11:16:01 [DEBUG] 621c61981d000061624fb992: Read finished successfully +2022/02/28 11:16:01 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:16:01 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:16:01 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:01 [DEBUG] Begin Injection +2022/02/28 11:16:01 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:01 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:01 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a6c00 0xc0008786e0} +2022/02/28 11:16:01 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:01 [DEBUG] acctest_ftdrh: Creation finished successfully +2022/02/28 11:16:01 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:01 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:01 [DEBUG] Begin Injection +2022/02/28 11:16:01 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6f80 768 [] false false map[] 0xc00076db00 0xc000786420} +2022/02/28 11:16:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:16:02 [DEBUG] Exit from do method +2022/02/28 11:16:02 currentvrfname acctest_ftdrh +2022/02/28 11:16:02 found correct vrfname +2022/02/28 11:16:02 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:02 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:16:02 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:16:02 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:16:02 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:02 [DEBUG] Begin Injection +2022/02/28 11:16:02 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:02 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:02 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a7700 0xc000786420} +2022/02/28 11:16:02 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:02 [DEBUG] : Beginning Read +2022/02/28 11:16:02 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:02 [DEBUG] Begin Injection +2022/02/28 11:16:02 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d48140 1277 [] false false map[] 0xc0000a7900 0xc000786420} +2022/02/28 11:16:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:16:02 [DEBUG] Exit from do method +2022/02/28 11:16:02 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:02 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:16:02 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:16:02 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:02 [DEBUG] Begin Injection +2022/02/28 11:16:02 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:03 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:03 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a1e200 0xc000786420} +2022/02/28 11:16:03 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:03 [DEBUG] Creation Complete +2022/02/28 11:16:03 [DEBUG] : Beginning Read +2022/02/28 11:16:03 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:03 [DEBUG] Begin Injection +2022/02/28 11:16:03 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004b6280 1362 [] false false map[] 0xc0008a0000 0xc000786420} +2022/02/28 11:16:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:03 [DEBUG] Exit from do method +2022/02/28 11:16:03 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully +2022/02/28 11:16:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:03 [DEBUG] New state was assigned lineage "b5d2bc7f-0778-4ff1-8e0c-ec1fedbd0994" +2022/02/28 11:16:03 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:03 [DEBUG] Begin Injection +2022/02/28 11:16:03 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d49d00 1362 [] false false map[] 0xc00076c100 0xc000786420} +2022/02/28 11:16:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:03 [DEBUG] Exit from do method +2022/02/28 11:16:03 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:03 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:03 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:16:03 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:03 [DEBUG] : Beginning Read +2022/02/28 11:16:03 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:03 [DEBUG] Begin Injection +2022/02/28 11:16:03 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f5280 5563 [] false false map[] 0xc0000a6f00 0xc000786420} +2022/02/28 11:16:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:04 [DEBUG] Exit from do method +2022/02/28 11:16:04 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:04 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:04 [DEBUG] 621c61981d000061624fb992: Beginning Read +2022/02/28 11:16:04 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read +2022/02/28 11:16:04 id: 621c61981b00007d08fd0c1d +2022/02/28 11:16:04 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:04 [DEBUG] Begin Injection +2022/02/28 11:16:04 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:04 [DEBUG] Begin Injection +2022/02/28 11:16:04 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003487c0 1362 [] false false map[] 0xc000b16000 0xc000748370} +2022/02/28 11:16:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:04 [DEBUG] Exit from do method +2022/02/28 11:16:04 [DEBUG] 621c61981d000061624fb992: Read finished successfully +2022/02/28 11:16:04 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:04 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:04 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:04 [DEBUG] Begin Injection +2022/02/28 11:16:04 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f5ac80 160 [] false false map[] 0xc00076d300 0xc000786420} +2022/02/28 11:16:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:04 [DEBUG] Exit from do method +2022/02/28 11:16:04 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully +2022/02/28 11:16:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003493c0 1362 [] false false map[] 0xc000a1e400 0xc000748370} +2022/02/28 11:16:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:04 [DEBUG] Exit from do method +2022/02/28 11:16:04 currentvrfname acctest_ftdrh +2022/02/28 11:16:04 found correct vrfname +2022/02/28 11:16:04 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:04 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:04 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:04 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:04 [DEBUG] Begin Injection +2022/02/28 11:16:04 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057e700 1362 [] false false map[] 0xc00076cc00 0xc000748370} +2022/02/28 11:16:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:05 [DEBUG] Exit from do method +2022/02/28 11:16:05 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:05 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Read +2022/02/28 11:16:05 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:05 [DEBUG] Begin Injection +2022/02/28 11:16:05 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090dc0 1362 [] false false map[] 0xc000cb4900 0xc000748370} +2022/02/28 11:16:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:05 [DEBUG] Exit from do method +2022/02/28 11:16:05 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully +2022/02/28 11:16:05 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:05 [DEBUG] New state was assigned lineage "40c73066-ed38-3931-c8f0-a0eb3f3138c1" +2022/02/28 11:16:05 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:05 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:05 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:05 [DEBUG] Test: Executing step 5 +2022/02/28 11:16:05 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:05 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:05 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:05 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:05 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:05 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:05 [DEBUG] : Beginning Read +2022/02/28 11:16:05 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:05 [DEBUG] Begin Injection +2022/02/28 11:16:05 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6c80 5563 [] false false map[] 0xc000a1ee00 0xc000748370} +2022/02/28 11:16:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:05 [DEBUG] Exit from do method +2022/02/28 11:16:05 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:05 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:16:05 [DEBUG] 621c61981d000061624fb992: Beginning Read +2022/02/28 11:16:05 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:05 [DEBUG] Begin Injection +2022/02/28 11:16:05 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:05 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read +2022/02/28 11:16:05 id: 621c61981b00007d08fd0c1d +2022/02/28 11:16:05 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:05 [DEBUG] Begin Injection +2022/02/28 11:16:05 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d78140 1362 [] false false map[] 0xc000cf8200 0xc000748370} +2022/02/28 11:16:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:06 [DEBUG] Exit from do method +2022/02/28 11:16:06 [DEBUG] 621c61981d000061624fb992: Read finished successfully +2022/02/28 11:16:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:06 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:06 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:06 [DEBUG] Begin Injection +2022/02/28 11:16:06 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d78740 160 [] false false map[] 0xc000f16400 0xc000786420} +2022/02/28 11:16:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:06 [DEBUG] Exit from do method +2022/02/28 11:16:06 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully +2022/02/28 11:16:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d78040 1362 [] false false map[] 0xc000f16800 0xc000748370} +2022/02/28 11:16:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:06 [DEBUG] Exit from do method +2022/02/28 11:16:06 currentvrfname acctest_ftdrh +2022/02/28 11:16:06 found correct vrfname +2022/02/28 11:16:06 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:06 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:06 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:06 [DEBUG] Begin Injection +2022/02/28 11:16:06 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d78100 1362 [] false false map[] 0xc0000a6500 0xc000748370} +2022/02/28 11:16:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:06 [DEBUG] Exit from do method +2022/02/28 11:16:06 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:06 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Read +2022/02/28 11:16:06 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:06 [DEBUG] Begin Injection +2022/02/28 11:16:06 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d78a40 1362 [] false false map[] 0xc000f16400 0xc000748370} +2022/02/28 11:16:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:07 [DEBUG] Exit from do method +2022/02/28 11:16:07 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully +2022/02/28 11:16:07 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:07 [DEBUG] New state was assigned lineage "c59f2963-fe99-0133-0a7d-4d564f4e6cf9" +2022/02/28 11:16:07 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:07 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:07 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:07 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:07 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.test + description: "" => "" + id: "" => "" + name: "" => "acctest_jh1aj" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +UPDATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_ftdrh" => "acctest_ftdrh" + dhcp_option_name: "" => "acctest_jh1aj" + dhcp_option_version: "0" => "1" + id: "/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh" => "/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh" + name: "acctest_ftdrh" => "acctest_ftdrh" + schema_id: "621c61981d000061624fb992" => "621c61981d000061624fb992" + template_name: "acctest_zt2hf" => "acctest_zt2hf" + version: "0" => "1" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c61981b00007d08fd0c1d + provider = provider.mso + description = + name = acctest_ftdrh + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c61981d000061624fb992 + provider = provider.mso + name = acctest_zt2hf + template_name = acctest_zt2hf + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_ftdrh + provider = provider.mso + dhcp_policy.name = acctest_ftdrh + dhcp_policy.version = 0 + display_name = acctest_ftdrh + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_ftdrh + schema_id = 621c61981d000061624fb992 + template_name = acctest_zt2hf + vrf_name = acctest_ftdrh + vrf_schema_id = 621c61981d000061624fb992 + vrf_template_name = acctest_zt2hf + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh + provider = provider.mso + bd_name = acctest_ftdrh + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_ftdrh + schema_id = 621c61981d000061624fb992 + template_name = acctest_zt2hf + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_ftdrh + provider = provider.mso + display_name = acctest_ftdrh + layer3_multicast = false + name = acctest_ftdrh + schema_id = 621c61981d000061624fb992 + template = acctest_zt2hf + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:16:07 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:16:07 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:16:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:16:07 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:16:07 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change +2022/02/28 11:16:07 [DEBUG] : Beginning Create +2022/02/28 11:16:07 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 11:16:07 [DEBUG] Begin Injection +2022/02/28 11:16:07 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 11:16:07 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_jh1aj","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x7a7ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:16:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:16:07 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:16:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f5aa00 161 [] false false map[] 0xc000d20500 0xc000748370} +2022/02/28 11:16:07 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c619f1b00008408fd0c1e","name":"acctest_jh1aj","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:07 [DEBUG] Exit from do method +2022/02/28 11:16:07 [DEBUG] 621c619f1b00008408fd0c1e: Creation finished successfully +2022/02/28 11:16:07 [DEBUG] 621c619f1b00008408fd0c1e: Beginning Read +2022/02/28 11:16:07 id: 621c619f1b00008408fd0c1e +2022/02/28 11:16:07 HTTP request GET mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:07 [DEBUG] Begin Injection +2022/02/28 11:16:07 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d49200 161 [] false false map[] 0xc000a1e500 0xc000748370} +2022/02/28 11:16:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e {"id":"621c619f1b00008408fd0c1e","name":"acctest_jh1aj","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:07 [DEBUG] Exit from do method +2022/02/28 11:16:07 [DEBUG] 621c619f1b00008408fd0c1e: Read finished successfully +2022/02/28 11:16:07 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change +2022/02/28 11:16:07 [DEBUG] Template BD: Beginning Update +2022/02/28 11:16:07 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:07 [DEBUG] Begin Injection +2022/02/28 11:16:07 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:08 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:08 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d21400 0xc000748370} +2022/02/28 11:16:08 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:08 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Read +2022/02/28 11:16:08 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:08 [DEBUG] Begin Injection +2022/02/28 11:16:08 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000200100 1472 [] false false map[] 0xc000d21600 0xc000748370} +2022/02/28 11:16:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:08 [DEBUG] Exit from do method +2022/02/28 11:16:08 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully +2022/02/28 11:16:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:08 [DEBUG] New state was assigned lineage "d22e8ea2-efe0-4302-d485-9aa20fd3c8a9" +2022/02/28 11:16:08 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:08 [DEBUG] Begin Injection +2022/02/28 11:16:08 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348100 1472 [] false false map[] 0xc000b12000 0xc000748370} +2022/02/28 11:16:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:08 [DEBUG] Exit from do method +2022/02/28 11:16:08 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:08 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:08 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:08 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:08 [DEBUG] : Beginning Read +2022/02/28 11:16:08 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:08 [DEBUG] Begin Injection +2022/02/28 11:16:08 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057e940 5563 [] false false map[] 0xc0000a6400 0xc000748370} +2022/02/28 11:16:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:09 [DEBUG] Exit from do method +2022/02/28 11:16:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:09 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:16:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:09 [DEBUG] 621c619f1b00008408fd0c1e: Beginning Read +2022/02/28 11:16:09 id: 621c619f1b00008408fd0c1e +2022/02/28 11:16:09 HTTP request GET mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:09 [DEBUG] Begin Injection +2022/02/28 11:16:09 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:09 [DEBUG] 621c61981d000061624fb992: Beginning Read +2022/02/28 11:16:09 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:09 [DEBUG] Begin Injection +2022/02/28 11:16:09 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:09 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read +2022/02/28 11:16:09 id: 621c61981b00007d08fd0c1d +2022/02/28 11:16:09 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:09 [DEBUG] Begin Injection +2022/02/28 11:16:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f5a500 161 [] false false map[] 0xc000a1f100 0xc000748370} +2022/02/28 11:16:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e {"id":"621c619f1b00008408fd0c1e","name":"acctest_jh1aj","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:09 [DEBUG] Exit from do method +2022/02/28 11:16:09 [DEBUG] 621c619f1b00008408fd0c1e: Read finished successfully +2022/02/28 11:16:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057ef80 1472 [] false false map[] 0xc000d74200 0xc000786420} +2022/02/28 11:16:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:09 [DEBUG] Exit from do method +2022/02/28 11:16:09 [DEBUG] 621c61981d000061624fb992: Read finished successfully +2022/02/28 11:16:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:09 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:09 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:09 [DEBUG] Begin Injection +2022/02/28 11:16:09 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f5aa80 160 [] false false map[] 0xc000bb0300 0xc000748370} +2022/02/28 11:16:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:09 [DEBUG] Exit from do method +2022/02/28 11:16:09 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully +2022/02/28 11:16:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7e80 1472 [] false false map[] 0xc0000a6b00 0xc000786420} +2022/02/28 11:16:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:09 [DEBUG] Exit from do method +2022/02/28 11:16:09 currentvrfname acctest_ftdrh +2022/02/28 11:16:09 found correct vrfname +2022/02/28 11:16:09 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:09 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:09 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:09 [DEBUG] Begin Injection +2022/02/28 11:16:09 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d48140 1472 [] false false map[] 0xc000b12b00 0xc000786420} +2022/02/28 11:16:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:10 [DEBUG] Exit from do method +2022/02/28 11:16:10 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:10 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Read +2022/02/28 11:16:10 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:10 [DEBUG] Begin Injection +2022/02/28 11:16:10 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004b6140 1472 [] false false map[] 0xc000a1e500 0xc000748000} +2022/02/28 11:16:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:10 [DEBUG] Exit from do method +2022/02/28 11:16:10 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully +2022/02/28 11:16:10 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:10 [DEBUG] New state was assigned lineage "7e631898-9233-5fe9-08c9-ba40e49a38d2" +2022/02/28 11:16:10 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:10 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:10 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:10 [DEBUG] Test: Executing step 6 +2022/02/28 11:16:10 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh\")" references: [] +2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:10 [DEBUG] Starting graph walk: walkImport +2022/02/28 11:16:10 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Import +2022/02/28 11:16:10 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:10 [DEBUG] Begin Injection +2022/02/28 11:16:10 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348b00 1472 [] false false map[] 0xc0000a6d00 0xc000748000} +2022/02/28 11:16:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:10 [DEBUG] Exit from do method +2022/02/28 11:16:10 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Import finished successfully +2022/02/28 11:16:10 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Read +2022/02/28 11:16:10 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:10 [DEBUG] Begin Injection +2022/02/28 11:16:10 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f4240 1472 [] false false map[] 0xc00123a000 0xc000748000} +2022/02/28 11:16:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:11 [DEBUG] Exit from do method +2022/02/28 11:16:11 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully +2022/02/28 11:16:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:11 [DEBUG] New state was assigned lineage "8af81acd-f9c4-ec9a-b4b4-319d0469a995" +2022/02/28 11:16:11 [DEBUG] Test: Executing step 7 +2022/02/28 11:16:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:11 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:11 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:11 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config +2022/02/28 11:16:11 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config +2022/02/28 11:16:11 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:11 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:11 [DEBUG] : Beginning Read +2022/02/28 11:16:11 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:11 [DEBUG] Begin Injection +2022/02/28 11:16:11 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004b6140 5563 [] false false map[] 0xc0009f0800 0xc000748000} +2022/02/28 11:16:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:11 [DEBUG] Exit from do method +2022/02/28 11:16:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:11 [DEBUG] 621c619f1b00008408fd0c1e: Beginning Read +2022/02/28 11:16:11 id: 621c619f1b00008408fd0c1e +2022/02/28 11:16:11 HTTP request GET mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:11 [DEBUG] Begin Injection +2022/02/28 11:16:11 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:11 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read +2022/02/28 11:16:11 id: 621c61981b00007d08fd0c1d +2022/02/28 11:16:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:11 [DEBUG] Begin Injection +2022/02/28 11:16:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:11 [DEBUG] 621c61981d000061624fb992: Beginning Read +2022/02/28 11:16:11 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:11 [DEBUG] Begin Injection +2022/02/28 11:16:11 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000201840 161 [] false false map[] 0xc0009f0900 0xc000748000} +2022/02/28 11:16:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e {"id":"621c619f1b00008408fd0c1e","name":"acctest_jh1aj","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:11 [DEBUG] Exit from do method +2022/02/28 11:16:11 [DEBUG] 621c619f1b00008408fd0c1e: Read finished successfully +2022/02/28 11:16:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000910c0 1472 [] false false map[] 0xc001138200 0xc000748370} +2022/02/28 11:16:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:11 [DEBUG] Exit from do method +2022/02/28 11:16:11 [DEBUG] 621c61981d000061624fb992: Read finished successfully +2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:11 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:11 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:11 [DEBUG] Begin Injection +2022/02/28 11:16:11 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d49d40 160 [] false false map[] 0xc0000a6600 0xc000748000} +2022/02/28 11:16:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:12 [DEBUG] Exit from do method +2022/02/28 11:16:12 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully +2022/02/28 11:16:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000200100 1472 [] false false map[] 0xc0000a6e00 0xc000748370} +2022/02/28 11:16:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:12 [DEBUG] Exit from do method +2022/02/28 11:16:12 currentvrfname acctest_ftdrh +2022/02/28 11:16:12 found correct vrfname +2022/02/28 11:16:12 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:12 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:12 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:12 [DEBUG] Begin Injection +2022/02/28 11:16:12 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000201240 1472 [] false false map[] 0xc001138300 0xc000748370} +2022/02/28 11:16:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:12 [DEBUG] Exit from do method +2022/02/28 11:16:12 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:12 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Read +2022/02/28 11:16:12 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:12 [DEBUG] Begin Injection +2022/02/28 11:16:12 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002012c0 1472 [] false false map[] 0xc001138800 0xc000cae0b0} +2022/02/28 11:16:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:12 [DEBUG] Exit from do method +2022/02/28 11:16:12 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully +2022/02/28 11:16:12 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:12 [DEBUG] New state was assigned lineage "a51c62fd-974e-8d87-50bd-21750526daff" +2022/02/28 11:16:12 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:12 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:12 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:12 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.test + description: "" => "" + id: "621c619f1b00008408fd0c1e" => "" + name: "acctest_jh1aj" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_ftdrh" => "" + dhcp_option_name: "acctest_jh1aj" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh" => "" + name: "acctest_ftdrh" => "" + schema_id: "621c61981d000061624fb992" => "" + template_name: "acctest_zt2hf" => "" + version: "1" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.test: + ID = 621c619f1b00008408fd0c1e + provider = provider.mso + description = + name = acctest_jh1aj + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c61981b00007d08fd0c1d + provider = provider.mso + description = + name = acctest_ftdrh + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c61981d000061624fb992 + provider = provider.mso + name = acctest_zt2hf + template_name = acctest_zt2hf + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_ftdrh + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_jh1aj + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_ftdrh + dhcp_policy.version = 1 + display_name = acctest_ftdrh + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_ftdrh + schema_id = 621c61981d000061624fb992 + template_name = acctest_zt2hf + vrf_name = acctest_ftdrh + vrf_schema_id = 621c61981d000061624fb992 + vrf_template_name = acctest_zt2hf + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh + provider = provider.mso + bd_name = acctest_ftdrh + dhcp_option_name = acctest_jh1aj + dhcp_option_version = 1 + name = acctest_ftdrh + schema_id = 621c61981d000061624fb992 + template_name = acctest_zt2hf + version = 1 + + Dependencies: + mso_dhcp_option_policy.test + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_ftdrh + provider = provider.mso + display_name = acctest_ftdrh + layer3_multicast = false + name = acctest_ftdrh + schema_id = 621c61981d000061624fb992 + template = acctest_zt2hf + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:16:12 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:16:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:16:12 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:16:12 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:16:12 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:16:12 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:16:12 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:16:12 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:16:12 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:16:12 [DEBUG] Template BD: Beginning Update +2022/02/28 11:16:12 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:12 [DEBUG] Begin Injection +2022/02/28 11:16:12 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a6800 0xc000cae0b0} +2022/02/28 11:16:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:13 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change +2022/02/28 11:16:13 [DEBUG] 621c619f1b00008408fd0c1e: Beginning Read +2022/02/28 11:16:13 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:13 [DEBUG] Begin Injection +2022/02/28 11:16:13 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:13 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0005aab00 0xc000cae0b0} +2022/02/28 11:16:13 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e +2022/02/28 11:16:13 [DEBUG] : Read finished successfully +2022/02/28 11:16:13 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:13 [DEBUG] New state was assigned lineage "f924ef12-f18f-2edd-1841-26df0f973093" +2022/02/28 11:16:13 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:13 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:13 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:13 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:13 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:13 [DEBUG] : Beginning Read +2022/02/28 11:16:13 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:13 [DEBUG] Begin Injection +2022/02/28 11:16:13 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000200100 5563 [] false false map[] 0xc0012a8200 0xc000cae0b0} +2022/02/28 11:16:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:13 [DEBUG] Exit from do method +2022/02/28 11:16:13 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:13 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read +2022/02/28 11:16:13 id: 621c61981b00007d08fd0c1d +2022/02/28 11:16:13 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:13 [DEBUG] Begin Injection +2022/02/28 11:16:13 [DEBUG] 621c61981d000061624fb992: Beginning Read +2022/02/28 11:16:13 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:13 [DEBUG] Begin Injection +2022/02/28 11:16:13 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:13 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00108b200 1277 [] false false map[] 0xc0012a8600 0xc000cae0b0} +2022/02/28 11:16:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:16:14 [DEBUG] Exit from do method +2022/02/28 11:16:14 [DEBUG] 621c61981d000061624fb992: Read finished successfully +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:14 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:14 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:14 [DEBUG] Begin Injection +2022/02/28 11:16:14 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00108be80 160 [] false false map[] 0xc0009f0900 0xc000748000} +2022/02/28 11:16:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:14 [DEBUG] Exit from do method +2022/02/28 11:16:14 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully +2022/02/28 11:16:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00108bf40 1277 [] false false map[] 0xc000bba600 0xc000cae0b0} +2022/02/28 11:16:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:16:14 [DEBUG] Exit from do method +2022/02/28 11:16:14 currentvrfname acctest_ftdrh +2022/02/28 11:16:14 found correct vrfname +2022/02/28 11:16:14 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:14 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:14 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:14 [DEBUG] Begin Injection +2022/02/28 11:16:14 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348100 1277 [] false false map[] 0xc0009f0c00 0xc000cae0b0} +2022/02/28 11:16:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:16:14 [DEBUG] Exit from do method +2022/02/28 11:16:14 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:14 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:14 [DEBUG] New state was assigned lineage "89c6f38c-50cc-caaa-8c3e-09ddcd1ae584" +2022/02/28 11:16:14 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:14 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:14 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:14 [DEBUG] Test: Executing step 8 +2022/02/28 11:16:14 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:14 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:14 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:14 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:14 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:14 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:14 [DEBUG] : Beginning Read +2022/02/28 11:16:14 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:14 [DEBUG] Begin Injection +2022/02/28 11:16:14 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f4180 5563 [] false false map[] 0xc001407400 0xc000cae0b0} +2022/02/28 11:16:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:15 [DEBUG] Exit from do method +2022/02/28 11:16:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:15 [DEBUG] 621c61981d000061624fb992: Beginning Read +2022/02/28 11:16:15 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read +2022/02/28 11:16:15 id: 621c61981b00007d08fd0c1d +2022/02/28 11:16:15 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:15 [DEBUG] Begin Injection +2022/02/28 11:16:15 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:15 [DEBUG] Begin Injection +2022/02/28 11:16:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348300 1277 [] false false map[] 0xc001406500 0xc000cae0b0} +2022/02/28 11:16:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:16:15 [DEBUG] Exit from do method +2022/02/28 11:16:15 [DEBUG] 621c61981d000061624fb992: Read finished successfully +2022/02/28 11:16:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:15 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:15 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:15 [DEBUG] Begin Injection +2022/02/28 11:16:15 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d48b40 160 [] false false map[] 0xc0000a6600 0xc000748000} +2022/02/28 11:16:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:15 [DEBUG] Exit from do method +2022/02/28 11:16:15 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully +2022/02/28 11:16:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000349080 1277 [] false false map[] 0xc0000a6a00 0xc000cae0b0} +2022/02/28 11:16:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:16:15 [DEBUG] Exit from do method +2022/02/28 11:16:15 currentvrfname acctest_ftdrh +2022/02/28 11:16:15 found correct vrfname +2022/02/28 11:16:15 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:15 [DEBUG] acctest_ftdrh: Beginning Read +2022/02/28 11:16:15 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:15 [DEBUG] Begin Injection +2022/02/28 11:16:15 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348040 1277 [] false false map[] 0xc0000a6f00 0xc000cae0b0} +2022/02/28 11:16:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:16:16 [DEBUG] Exit from do method +2022/02/28 11:16:16 [DEBUG] acctest_ftdrh: Read finished successfully +2022/02/28 11:16:16 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:16 [DEBUG] New state was assigned lineage "21c98971-ab0b-7a87-cfec-2a15deb3cd40" +2022/02/28 11:16:16 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:16 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:16 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:16 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c61981b00007d08fd0c1d" => "" + name: "acctest_ftdrh" => "acctest_4pmrt" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "acctest_ftdrh" => "acctest_4pmrt" (forces new resource) + id: "acctest_ftdrh" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_ftdrh" => "acctest_4pmrt" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c61981d000061624fb992" => "621c61981d000061624fb992" + template_name: "acctest_zt2hf" => "acctest_zt2hf" + vrf_name: "acctest_ftdrh" => "acctest_4pmrt" + vrf_schema_id: "621c61981d000061624fb992" => "" + vrf_template_name: "acctest_zt2hf" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_4pmrt" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_4pmrt" + schema_id: "" => "621c61981d000061624fb992" + template_name: "" => "acctest_zt2hf" + version: "" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_ftdrh" => "acctest_4pmrt" + id: "acctest_ftdrh" => "" + layer3_multicast: "false" => "" + name: "acctest_ftdrh" => "acctest_4pmrt" (forces new resource) + schema_id: "621c61981d000061624fb992" => "621c61981d000061624fb992" + template: "acctest_zt2hf" => "acctest_zt2hf" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c61981b00007d08fd0c1d + provider = provider.mso + description = + name = acctest_ftdrh + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c61981d000061624fb992 + provider = provider.mso + name = acctest_zt2hf + template_name = acctest_zt2hf + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_ftdrh + provider = provider.mso + display_name = acctest_ftdrh + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_ftdrh + schema_id = 621c61981d000061624fb992 + template_name = acctest_zt2hf + vrf_name = acctest_ftdrh + vrf_schema_id = 621c61981d000061624fb992 + vrf_template_name = acctest_zt2hf + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_ftdrh + provider = provider.mso + display_name = acctest_ftdrh + layer3_multicast = false + name = acctest_ftdrh + schema_id = 621c61981d000061624fb992 + template = acctest_zt2hf + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:16:16 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:16:16 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:16:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:16:16 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:16:16 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:16:16 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:16:16 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read +2022/02/28 11:16:16 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:16 [DEBUG] Begin Injection +2022/02/28 11:16:16 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:16 [DEBUG] Template BD: Beginning Update +2022/02/28 11:16:16 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:16 [DEBUG] Begin Injection +2022/02/28 11:16:16 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:16 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:16 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00083e200 0xc000748000} +2022/02/28 11:16:16 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:16 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:16:16 [DEBUG] acctest_ftdrh: Beginning Destroy +2022/02/28 11:16:16 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:16 [DEBUG] Begin Injection +2022/02/28 11:16:16 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:16 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:16 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0000a6a00 0xc000cae0b0} +2022/02/28 11:16:16 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d +2022/02/28 11:16:16 [DEBUG] : Read finished successfully +2022/02/28 11:16:16 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:16:16 [DEBUG] : Beginning Create +2022/02/28 11:16:16 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:16 [DEBUG] Begin Injection +2022/02/28 11:16:16 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:16 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q] Content-Type:[application/json]] {{"desc":"","name":"acctest_4pmrt","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x7a7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:16:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:17 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a7000 0xc000748000} +2022/02/28 11:16:17 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:17 [DEBUG] acctest_ftdrh: Destroy finished successfully +2022/02/28 11:16:17 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:16:17 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:16:17 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:17 [DEBUG] Begin Injection +2022/02/28 11:16:17 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:17 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bdaf80 160 [] false false map[] 0xc0008e0c00 0xc000cae0b0} +2022/02/28 11:16:17 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c61a81b00008008fd0c1f","name":"acctest_4pmrt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:17 [DEBUG] Exit from do method +2022/02/28 11:16:17 [DEBUG] 621c61a81b00008008fd0c1f: Creation finished successfully +2022/02/28 11:16:17 [DEBUG] 621c61a81b00008008fd0c1f: Beginning Read +2022/02/28 11:16:17 id: 621c61a81b00008008fd0c1f +2022/02/28 11:16:17 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:17 [DEBUG] Begin Injection +2022/02/28 11:16:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:17 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00083f400 0xc000748000} +2022/02/28 11:16:17 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:17 [DEBUG] acctest_4pmrt: Creation finished successfully +2022/02/28 11:16:17 [DEBUG] acctest_4pmrt: Beginning Read +2022/02/28 11:16:17 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:17 [DEBUG] Begin Injection +2022/02/28 11:16:17 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057fac0 160 [] false false map[] 0xc00075c600 0xc000cae0b0} +2022/02/28 11:16:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f {"id":"621c61a81b00008008fd0c1f","name":"acctest_4pmrt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:17 [DEBUG] Exit from do method +2022/02/28 11:16:17 [DEBUG] 621c61a81b00008008fd0c1f: Read finished successfully +2022/02/28 11:16:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7740 768 [] false false map[] 0xc0000a7200 0xc000748000} +2022/02/28 11:16:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 11:16:17 [DEBUG] Exit from do method +2022/02/28 11:16:17 currentvrfname acctest_4pmrt +2022/02/28 11:16:17 found correct vrfname +2022/02/28 11:16:17 [DEBUG] acctest_4pmrt: Read finished successfully +2022/02/28 11:16:17 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:16:17 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:16:17 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:16:17 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:17 [DEBUG] Begin Injection +2022/02/28 11:16:17 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:17 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00075cd00 0xc000748000} +2022/02/28 11:16:17 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:17 [DEBUG] : Beginning Read +2022/02/28 11:16:17 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:17 [DEBUG] Begin Injection +2022/02/28 11:16:17 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00108a040 1278 [] false false map[] 0xc0000a6200 0xc000748000} +2022/02/28 11:16:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 11:16:18 [DEBUG] Exit from do method +2022/02/28 11:16:18 [DEBUG] acctest_4pmrt: Read finished successfully +2022/02/28 11:16:18 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:16:18 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:16:18 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:18 [DEBUG] Begin Injection +2022/02/28 11:16:18 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:18 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:18 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00083e200 0xc000748000} +2022/02/28 11:16:18 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:18 [DEBUG] Creation Complete +2022/02/28 11:16:18 [DEBUG] : Beginning Read +2022/02/28 11:16:18 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:18 [DEBUG] Begin Injection +2022/02/28 11:16:18 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d48040 1363 [] false false map[] 0xc00083e400 0xc000748000} +2022/02/28 11:16:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:19 [DEBUG] Exit from do method +2022/02/28 11:16:19 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt: Read finished successfully +2022/02/28 11:16:19 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:19 [DEBUG] New state was assigned lineage "23795992-39b3-ad51-8c2b-71dfbe27b6a3" +2022/02/28 11:16:19 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:19 [DEBUG] Begin Injection +2022/02/28 11:16:19 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009cf5c0 1363 [] false false map[] 0xc0008e0000 0xc000748000} +2022/02/28 11:16:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:19 [DEBUG] Exit from do method +2022/02/28 11:16:19 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:19 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:19 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:19 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:19 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:19 [DEBUG] : Beginning Read +2022/02/28 11:16:19 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:19 [DEBUG] Begin Injection +2022/02/28 11:16:19 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000200100 5563 [] false false map[] 0xc0008e0100 0xc000748000} +2022/02/28 11:16:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:19 [DEBUG] Exit from do method +2022/02/28 11:16:19 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:19 [DEBUG] 621c61a81b00008008fd0c1f: Beginning Read +2022/02/28 11:16:19 [DEBUG] 621c61981d000061624fb992: Beginning Read +2022/02/28 11:16:19 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:19 [DEBUG] Begin Injection +2022/02/28 11:16:19 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:19 id: 621c61a81b00008008fd0c1f +2022/02/28 11:16:19 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:19 [DEBUG] Begin Injection +2022/02/28 11:16:19 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f4bc0 1363 [] false false map[] 0xc0008e0600 0xc000748000} +2022/02/28 11:16:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002018c0 160 [] false false map[] 0xc0000a6200 0xc000cae0b0} +2022/02/28 11:16:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f {"id":"621c61a81b00008008fd0c1f","name":"acctest_4pmrt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:20 [DEBUG] Exit from do method +2022/02/28 11:16:20 [DEBUG] Exit from do method +2022/02/28 11:16:20 [DEBUG] 621c61a81b00008008fd0c1f: Read finished successfully +2022/02/28 11:16:20 [DEBUG] 621c61981d000061624fb992: Read finished successfully +2022/02/28 11:16:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:20 [DEBUG] acctest_4pmrt: Beginning Read +2022/02/28 11:16:20 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:20 [DEBUG] Begin Injection +2022/02/28 11:16:20 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ab2040 1363 [] false false map[] 0xc0008e0d00 0xc000cae0b0} +2022/02/28 11:16:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:20 [DEBUG] Exit from do method +2022/02/28 11:16:20 currentvrfname acctest_4pmrt +2022/02/28 11:16:20 found correct vrfname +2022/02/28 11:16:20 [DEBUG] acctest_4pmrt: Read finished successfully +2022/02/28 11:16:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:20 [DEBUG] acctest_4pmrt: Beginning Read +2022/02/28 11:16:20 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:20 [DEBUG] Begin Injection +2022/02/28 11:16:20 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d78040 1363 [] false false map[] 0xc0000a6600 0xc000cae0b0} +2022/02/28 11:16:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:20 [DEBUG] Exit from do method +2022/02/28 11:16:20 [DEBUG] acctest_4pmrt: Read finished successfully +2022/02/28 11:16:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:20 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt: Beginning Read +2022/02/28 11:16:20 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:20 [DEBUG] Begin Injection +2022/02/28 11:16:20 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d79080 1363 [] false false map[] 0xc0008e0400 0xc000cae0b0} +2022/02/28 11:16:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:21 [DEBUG] Exit from do method +2022/02/28 11:16:21 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt: Read finished successfully +2022/02/28 11:16:21 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:21 [DEBUG] New state was assigned lineage "d77ea9b0-36c4-d662-0a63-08cfc42175f4" +2022/02/28 11:16:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:21 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:21 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:21 [WARN] Test: Executing destroy step +2022/02/28 11:16:21 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:21 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:21 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:21 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:21 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:21 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:21 [DEBUG] : Beginning Read +2022/02/28 11:16:21 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:21 [DEBUG] Begin Injection +2022/02/28 11:16:21 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002017c0 5563 [] false false map[] 0xc0000a6400 0xc000cae0b0} +2022/02/28 11:16:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:21 [DEBUG] Exit from do method +2022/02/28 11:16:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:21 [DEBUG] 621c61a81b00008008fd0c1f: Beginning Read +2022/02/28 11:16:21 id: 621c61a81b00008008fd0c1f +2022/02/28 11:16:21 [DEBUG] 621c61981d000061624fb992: Beginning Read +2022/02/28 11:16:21 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:21 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:21 [DEBUG] Begin Injection +2022/02/28 11:16:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:21 [DEBUG] Begin Injection +2022/02/28 11:16:21 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f49c0 1363 [] false false map[] 0xc000a4a400 0xc000748000} +2022/02/28 11:16:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:21 [DEBUG] Exit from do method +2022/02/28 11:16:21 [DEBUG] 621c61981d000061624fb992: Read finished successfully +2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:21 [DEBUG] acctest_4pmrt: Beginning Read +2022/02/28 11:16:21 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:21 [DEBUG] Begin Injection +2022/02/28 11:16:21 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7980 160 [] false false map[] 0xc000938f00 0xc000cae0b0} +2022/02/28 11:16:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f {"id":"621c61a81b00008008fd0c1f","name":"acctest_4pmrt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:21 [DEBUG] Exit from do method +2022/02/28 11:16:21 [DEBUG] 621c61a81b00008008fd0c1f: Read finished successfully +2022/02/28 11:16:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d48cc0 1363 [] false false map[] 0xc000939300 0xc000748000} +2022/02/28 11:16:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:22 [DEBUG] Exit from do method +2022/02/28 11:16:22 currentvrfname acctest_4pmrt +2022/02/28 11:16:22 found correct vrfname +2022/02/28 11:16:22 [DEBUG] acctest_4pmrt: Read finished successfully +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:22 [DEBUG] acctest_4pmrt: Beginning Read +2022/02/28 11:16:22 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:22 [DEBUG] Begin Injection +2022/02/28 11:16:22 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057e300 1363 [] false false map[] 0xc0000a6a00 0xc000748000} +2022/02/28 11:16:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:22 [DEBUG] Exit from do method +2022/02/28 11:16:22 [DEBUG] acctest_4pmrt: Read finished successfully +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:22 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt: Beginning Read +2022/02/28 11:16:22 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:22 [DEBUG] Begin Injection +2022/02/28 11:16:22 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d48f80 1363 [] false false map[] 0xc0008e0300 0xc000748000} +2022/02/28 11:16:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:22 [DEBUG] Exit from do method +2022/02/28 11:16:22 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt: Read finished successfully +2022/02/28 11:16:22 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:22 [DEBUG] New state was assigned lineage "50bef9ec-e77f-4fe5-279e-f46f57bf28d2" +2022/02/28 11:16:22 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:16:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:16:22 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c61a81b00008008fd0c1f" => "" + name: "acctest_4pmrt" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c61981d000061624fb992" => "" + name: "acctest_zt2hf" => "" + template_name: "acctest_zt2hf" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_4pmrt" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_4pmrt" => "" + id: "acctest_4pmrt" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_4pmrt" => "" + schema_id: "621c61981d000061624fb992" => "" + template_name: "acctest_zt2hf" => "" + vrf_name: "acctest_4pmrt" => "" + vrf_schema_id: "621c61981d000061624fb992" => "" + vrf_template_name: "acctest_zt2hf" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_4pmrt" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt" => "" + name: "acctest_4pmrt" => "" + schema_id: "621c61981d000061624fb992" => "" + template_name: "acctest_zt2hf" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_4pmrt" => "" + id: "acctest_4pmrt" => "" + layer3_multicast: "false" => "" + name: "acctest_4pmrt" => "" + schema_id: "621c61981d000061624fb992" => "" + template: "acctest_zt2hf" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c61a81b00008008fd0c1f + provider = provider.mso + description = + name = acctest_4pmrt + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c61981d000061624fb992 + provider = provider.mso + name = acctest_zt2hf + template_name = acctest_zt2hf + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_4pmrt + provider = provider.mso + dhcp_policy.name = acctest_4pmrt + dhcp_policy.version = 0 + display_name = acctest_4pmrt + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_4pmrt + schema_id = 621c61981d000061624fb992 + template_name = acctest_zt2hf + vrf_name = acctest_4pmrt + vrf_schema_id = 621c61981d000061624fb992 + vrf_template_name = acctest_zt2hf + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt + provider = provider.mso + bd_name = acctest_4pmrt + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_4pmrt + schema_id = 621c61981d000061624fb992 + template_name = acctest_zt2hf + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_4pmrt + provider = provider.mso + display_name = acctest_4pmrt + layer3_multicast = false + name = acctest_4pmrt + schema_id = 621c61981d000061624fb992 + template = acctest_zt2hf + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:16:22 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:16:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:22 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:16:22 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:16:22 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:16:22 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:16:22 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:16:22 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:16:22 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:16:22 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:16:22 [DEBUG] Template BD: Beginning Update +2022/02/28 11:16:22 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:22 [DEBUG] Begin Injection +2022/02/28 11:16:22 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00091a300 0xc000748000} +2022/02/28 11:16:23 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:16:23 [DEBUG] 621c61a81b00008008fd0c1f: Beginning Read +2022/02/28 11:16:23 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:23 [DEBUG] Begin Injection +2022/02/28 11:16:23 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:23 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:16:23 [DEBUG] Template BD: Beginning Update +2022/02/28 11:16:23 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 [DEBUG] Begin Injection +2022/02/28 11:16:23 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0008e0600 0xc000748000} +2022/02/28 11:16:23 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f +2022/02/28 11:16:23 [DEBUG] : Read finished successfully +2022/02/28 11:16:23 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000938e00 0xc000cae0b0} +2022/02/28 11:16:23 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:16:23 [DEBUG] acctest_4pmrt: Beginning Destroy +2022/02/28 11:16:23 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 [DEBUG] Begin Injection +2022/02/28 11:16:23 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f24900 0xc000cae0b0} +2022/02/28 11:16:23 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false +2022/02/28 11:16:23 [DEBUG] acctest_4pmrt: Destroy finished successfully +2022/02/28 11:16:23 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:16:23 [DEBUG] 621c61981d000061624fb992: Beginning Destroy +2022/02/28 11:16:23 HTTP request DELETE mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:23 [DEBUG] Begin Injection +2022/02/28 11:16:23 HTTP request after injection DELETE mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:24 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:24 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00091ab00 0xc000cae0b0} +2022/02/28 11:16:24 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:24 [DEBUG] 621c61981d000061624fb992: Destroy finished successfully +2022/02/28 11:16:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:24 [DEBUG] New state was assigned lineage "1d1bbd5d-d2de-5879-820c-b6fa1502373e" +2022/02/28 11:16:24 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:24 [DEBUG] Begin Injection +2022/02/28 11:16:24 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 +2022/02/28 11:16:24 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:24 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f42c0 39 [] false false map[] 0xc000938700 0xc000cae0b0} +2022/02/28 11:16:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"code":404,"message":"Item not found"} +2022/02/28 11:16:24 [DEBUG] Exit from do method +2022/02/28 11:16:24 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:16:24 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:16:24 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:24 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:24 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:16:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:24 [DEBUG] : Beginning Read +2022/02/28 11:16:24 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:24 [DEBUG] Begin Injection +2022/02/28 11:16:24 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348fc0 5563 [] false false map[] 0xc000f24900 0xc000cae0b0} +2022/02/28 11:16:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:24 [DEBUG] Exit from do method +2022/02/28 11:16:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:24 [DEBUG] New state was assigned lineage "2069eac0-6db9-d953-8026-057d0a2cb473" +2022/02/28 11:16:24 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:16:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:16:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:24 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:16:31 [DEBUG] Test: Executing step 0 +2022/02/28 11:16:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:31 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:16:31 [DEBUG] Test: Executing step 1 +2022/02/28 11:16:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:31 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:16:31 [DEBUG] Test: Executing step 2 +2022/02/28 11:16:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:31 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:16:31 [DEBUG] Test: Executing step 3 +2022/02/28 11:16:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] +2022/02/28 11:16:31 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:16:31 [DEBUG] Test: Executing step 4 +2022/02/28 11:16:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:31 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:31 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:31 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:31 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:31 [DEBUG] : Beginning Read +2022/02/28 11:16:31 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:31 [DEBUG] Begin Injection +2022/02/28 11:16:31 HTTP request POST /login +2022/02/28 11:16:31 HTTP request after injection POST /login +2022/02/28 11:16:31 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:16:33 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:16:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:33 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000b58100 -1 [chunked] false false map[] 0xc001026200 0xc0001b20b0} +2022/02/28 11:16:33 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw"} +2022/02/28 11:16:33 [DEBUG] Exit from do method +2022/02/28 11:16:33 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092a200 5563 [] false false map[] 0xc001026100 0xc0001b20b0} +2022/02/28 11:16:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:33 [DEBUG] Exit from do method +2022/02/28 11:16:33 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:33 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:33 [DEBUG] New state was assigned lineage "0c3bb869-28b7-7641-5e30-f7cf2ce9b438" +2022/02/28 11:16:33 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:33 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:33 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:33 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:33 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:33 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:33 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:33 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:33 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_9cio7" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_0d8iu" + template_name: "" => "acctest_0d8iu" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_9cio7" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_9cio7" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_0d8iu" + vrf_name: "" => "acctest_9cio7" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_9cio7" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_9cio7" + schema_id: "" => "" + template_name: "" => "acctest_0d8iu" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_9cio7" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_9cio7" + schema_id: "" => "" + template: "" => "acctest_0d8iu" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:16:33 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:16:33 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:16:33 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:16:33 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:16:33 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:16:33 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state)] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:16:33 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:16:33 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:16:33 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:16:33 [DEBUG] Schema: Beginning Creation +2022/02/28 11:16:33 [DEBUG] : Beginning Create +2022/02/28 11:16:33 HTTP request POST mso/api/v1/schemas +2022/02/28 11:16:33 [DEBUG] Begin Injection +2022/02/28 11:16:33 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:16:33 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:33 [DEBUG] Begin Injection +2022/02/28 11:16:33 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw] Content-Type:[application/json]] {{"displayName":"acctest_0d8iu","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_0d8iu","externalEpgs":[],"filters":[],"name":"acctest_0d8iu","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x9b7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:16:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:16:33 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:33 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw] Content-Type:[application/json]] {{"desc":"","name":"acctest_9cio7","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9b7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:16:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:34 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:16:34 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c61b91d000069624fb9a1] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7cc0 400 [] false false map[] 0xc00102c000 0xc0001b20b0} +2022/02/28 11:16:34 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:16:34 [DEBUG] Exit from do method +2022/02/28 11:16:34 [DEBUG] 621c61b91d000069624fb9a1: Schema Creation finished successfully +2022/02/28 11:16:34 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read +2022/02/28 11:16:34 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:34 [DEBUG] Begin Injection +2022/02/28 11:16:34 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:34 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf4e80 160 [] false false map[] 0xc0009f2500 0xc0001b20b0} +2022/02/28 11:16:34 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:34 [DEBUG] Exit from do method +2022/02/28 11:16:34 [DEBUG] 621c61ba1b00007908fd0c20: Creation finished successfully +2022/02/28 11:16:34 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read +2022/02/28 11:16:34 id: 621c61ba1b00007908fd0c20 +2022/02/28 11:16:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:34 [DEBUG] Begin Injection +2022/02/28 11:16:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092adc0 400 [] false false map[] 0xc000726500 0xc0001b20b0} +2022/02/28 11:16:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:16:34 [DEBUG] Exit from do method +2022/02/28 11:16:34 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully +2022/02/28 11:16:34 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:16:34 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:16:34 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:34 [DEBUG] Begin Injection +2022/02/28 11:16:34 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf4040 160 [] false false map[] 0xc00102c500 0xc00079a0b0} +2022/02/28 11:16:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:34 [DEBUG] Exit from do method +2022/02/28 11:16:34 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully +2022/02/28 11:16:35 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000930300 0xc0001b20b0} +2022/02/28 11:16:35 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:35 [DEBUG] acctest_9cio7: Creation finished successfully +2022/02/28 11:16:35 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:35 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:35 [DEBUG] Begin Injection +2022/02/28 11:16:35 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b583c0 768 [] false false map[] 0xc00037e200 0xc0001b2000} +2022/02/28 11:16:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:16:35 [DEBUG] Exit from do method +2022/02/28 11:16:35 currentvrfname acctest_9cio7 +2022/02/28 11:16:35 found correct vrfname +2022/02/28 11:16:35 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:35 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:16:35 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:16:35 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:16:35 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:35 [DEBUG] Begin Injection +2022/02/28 11:16:35 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:35 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000726d00 0xc00079a160} +2022/02/28 11:16:35 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:35 [DEBUG] : Beginning Read +2022/02/28 11:16:35 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:35 [DEBUG] Begin Injection +2022/02/28 11:16:35 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050d440 1277 [] false false map[] 0xc00037e300 0xc00079a160} +2022/02/28 11:16:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:16:36 [DEBUG] Exit from do method +2022/02/28 11:16:36 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:36 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:16:36 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:16:36 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:36 [DEBUG] Begin Injection +2022/02/28 11:16:36 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:36 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:36 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000727700 0xc00079a160} +2022/02/28 11:16:36 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:36 [DEBUG] Creation Complete +2022/02/28 11:16:36 [DEBUG] : Beginning Read +2022/02/28 11:16:36 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:36 [DEBUG] Begin Injection +2022/02/28 11:16:36 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cd080 1362 [] false false map[] 0xc000727900 0xc00079a160} +2022/02/28 11:16:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:36 [DEBUG] Exit from do method +2022/02/28 11:16:36 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully +2022/02/28 11:16:36 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:36 [DEBUG] New state was assigned lineage "64788efd-7e91-a6f7-08dc-90e5dd578305" +2022/02/28 11:16:36 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:36 [DEBUG] Begin Injection +2022/02/28 11:16:36 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cd740 1362 [] false false map[] 0xc00037e400 0xc00079a160} +2022/02/28 11:16:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:37 [DEBUG] Exit from do method +2022/02/28 11:16:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:37 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:37 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:37 [DEBUG] : Beginning Read +2022/02/28 11:16:37 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:37 [DEBUG] Begin Injection +2022/02/28 11:16:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b78fc0 5563 [] false false map[] 0xc00037e300 0xc00079a160} +2022/02/28 11:16:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:37 [DEBUG] Exit from do method +2022/02/28 11:16:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:37 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read +2022/02/28 11:16:37 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:37 [DEBUG] Begin Injection +2022/02/28 11:16:37 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:37 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read +2022/02/28 11:16:37 id: 621c61ba1b00007908fd0c20 +2022/02/28 11:16:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:37 [DEBUG] Begin Injection +2022/02/28 11:16:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cff040 1362 [] false false map[] 0xc000931800 0xc00079a160} +2022/02/28 11:16:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:37 [DEBUG] Exit from do method +2022/02/28 11:16:37 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully +2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:37 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:37 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:37 [DEBUG] Begin Injection +2022/02/28 11:16:37 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cd100 160 [] false false map[] 0xc0007ea400 0xc00079a0b0} +2022/02/28 11:16:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:37 [DEBUG] Exit from do method +2022/02/28 11:16:37 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully +2022/02/28 11:16:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cd580 1362 [] false false map[] 0xc0000b4500 0xc00079a160} +2022/02/28 11:16:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:38 [DEBUG] Exit from do method +2022/02/28 11:16:38 currentvrfname acctest_9cio7 +2022/02/28 11:16:38 found correct vrfname +2022/02/28 11:16:38 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:38 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:38 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:38 [DEBUG] Begin Injection +2022/02/28 11:16:38 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e80140 1362 [] false false map[] 0xc0000b4a00 0xc00079a160} +2022/02/28 11:16:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:38 [DEBUG] Exit from do method +2022/02/28 11:16:38 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:38 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Read +2022/02/28 11:16:38 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:38 [DEBUG] Begin Injection +2022/02/28 11:16:38 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e80280 1362 [] false false map[] 0xc000930c00 0xc00079a160} +2022/02/28 11:16:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:38 [DEBUG] Exit from do method +2022/02/28 11:16:38 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully +2022/02/28 11:16:38 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:38 [DEBUG] New state was assigned lineage "6b852c8d-c54a-e813-b5bc-08bd5c4b5cff" +2022/02/28 11:16:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:38 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:38 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:38 [DEBUG] Test: Executing step 5 +2022/02/28 11:16:38 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:38 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:38 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:38 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:38 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:38 [DEBUG] : Beginning Read +2022/02/28 11:16:38 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:38 [DEBUG] Begin Injection +2022/02/28 11:16:38 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cdd00 5563 [] false false map[] 0xc00037e700 0xc00079a160} +2022/02/28 11:16:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:39 [DEBUG] Exit from do method +2022/02/28 11:16:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:39 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:16:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:16:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:39 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read +2022/02/28 11:16:39 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:39 [DEBUG] Begin Injection +2022/02/28 11:16:39 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:39 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read +2022/02/28 11:16:39 id: 621c61ba1b00007908fd0c20 +2022/02/28 11:16:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:39 [DEBUG] Begin Injection +2022/02/28 11:16:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf5280 160 [] false false map[] 0xc00037ee00 0xc00079a0b0} +2022/02/28 11:16:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:39 [DEBUG] Exit from do method +2022/02/28 11:16:39 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully +2022/02/28 11:16:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2380 1362 [] false false map[] 0xc000eb2100 0xc00079a160} +2022/02/28 11:16:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:39 [DEBUG] Exit from do method +2022/02/28 11:16:39 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully +2022/02/28 11:16:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:39 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:39 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:39 [DEBUG] Begin Injection +2022/02/28 11:16:39 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050c500 1362 [] false false map[] 0xc001050400 0xc00079a160} +2022/02/28 11:16:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:39 [DEBUG] Exit from do method +2022/02/28 11:16:39 currentvrfname acctest_9cio7 +2022/02/28 11:16:39 found correct vrfname +2022/02/28 11:16:39 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:39 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:39 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:39 [DEBUG] Begin Injection +2022/02/28 11:16:39 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2600 1362 [] false false map[] 0xc000f12700 0xc00079a160} +2022/02/28 11:16:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:40 [DEBUG] Exit from do method +2022/02/28 11:16:40 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:40 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Read +2022/02/28 11:16:40 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:40 [DEBUG] Begin Injection +2022/02/28 11:16:40 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e72c0 1362 [] false false map[] 0xc0001fc300 0xc00079a160} +2022/02/28 11:16:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:16:40 [DEBUG] Exit from do method +2022/02/28 11:16:40 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully +2022/02/28 11:16:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:40 [DEBUG] New state was assigned lineage "4b905272-94e0-04dc-c376-cb9f5b1db323" +2022/02/28 11:16:40 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 11:16:40 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:40 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:40 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.test + description: "" => "" + id: "" => "" + name: "" => "acctest_a2sqa" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +UPDATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_9cio7" => "acctest_9cio7" + dhcp_option_name: "" => "acctest_a2sqa" + dhcp_option_version: "0" => "1" + id: "/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7" => "/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7" + name: "acctest_9cio7" => "acctest_9cio7" + schema_id: "621c61b91d000069624fb9a1" => "621c61b91d000069624fb9a1" + template_name: "acctest_0d8iu" => "acctest_0d8iu" + version: "0" => "1" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c61ba1b00007908fd0c20 + provider = provider.mso + description = + name = acctest_9cio7 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c61b91d000069624fb9a1 + provider = provider.mso + name = acctest_0d8iu + template_name = acctest_0d8iu + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_9cio7 + provider = provider.mso + dhcp_policy.name = acctest_9cio7 + dhcp_policy.version = 0 + display_name = acctest_9cio7 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_9cio7 + schema_id = 621c61b91d000069624fb9a1 + template_name = acctest_0d8iu + vrf_name = acctest_9cio7 + vrf_schema_id = 621c61b91d000069624fb9a1 + vrf_template_name = acctest_0d8iu + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7 + provider = provider.mso + bd_name = acctest_9cio7 + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_9cio7 + schema_id = 621c61b91d000069624fb9a1 + template_name = acctest_0d8iu + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_9cio7 + provider = provider.mso + display_name = acctest_9cio7 + layer3_multicast = false + name = acctest_9cio7 + schema_id = 621c61b91d000069624fb9a1 + template = acctest_0d8iu + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:16:40 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:16:40 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:16:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:16:40 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:16:40 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change +2022/02/28 11:16:40 [DEBUG] : Beginning Create +2022/02/28 11:16:40 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 11:16:40 [DEBUG] Begin Injection +2022/02/28 11:16:40 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 11:16:40 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_a2sqa","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9b7ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:16:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:16:40 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:16:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00093e080 161 [] false false map[] 0xc000fb4400 0xc00079a160} +2022/02/28 11:16:40 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c61c01b00008008fd0c21","name":"acctest_a2sqa","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:40 [DEBUG] Exit from do method +2022/02/28 11:16:40 [DEBUG] 621c61c01b00008008fd0c21: Creation finished successfully +2022/02/28 11:16:40 [DEBUG] 621c61c01b00008008fd0c21: Beginning Read +2022/02/28 11:16:40 id: 621c61c01b00008008fd0c21 +2022/02/28 11:16:40 HTTP request GET mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:40 [DEBUG] Begin Injection +2022/02/28 11:16:40 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000709c40 161 [] false false map[] 0xc00037e200 0xc00079a160} +2022/02/28 11:16:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 {"id":"621c61c01b00008008fd0c21","name":"acctest_a2sqa","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:41 [DEBUG] Exit from do method +2022/02/28 11:16:41 [DEBUG] 621c61c01b00008008fd0c21: Read finished successfully +2022/02/28 11:16:41 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change +2022/02/28 11:16:41 [DEBUG] Template BD: Beginning Update +2022/02/28 11:16:41 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:41 [DEBUG] Begin Injection +2022/02/28 11:16:41 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:41 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000732600 0xc00079a160} +2022/02/28 11:16:41 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:41 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Read +2022/02/28 11:16:41 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:41 [DEBUG] Begin Injection +2022/02/28 11:16:41 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050c200 1472 [] false false map[] 0xc000930100 0xc00079a160} +2022/02/28 11:16:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:41 [DEBUG] Exit from do method +2022/02/28 11:16:41 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully +2022/02/28 11:16:41 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:41 [DEBUG] New state was assigned lineage "830ad856-232e-8dcb-26f3-b4494dd6ad5c" +2022/02/28 11:16:41 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:41 [DEBUG] Begin Injection +2022/02/28 11:16:41 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2200 1472 [] false false map[] 0xc000930200 0xc00079a160} +2022/02/28 11:16:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:42 [DEBUG] Exit from do method +2022/02/28 11:16:42 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:42 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:42 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:42 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:42 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:42 [DEBUG] : Beginning Read +2022/02/28 11:16:42 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:42 [DEBUG] Begin Injection +2022/02/28 11:16:42 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b582c0 5563 [] false false map[] 0xc00037e300 0xc00079a160} +2022/02/28 11:16:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:42 [DEBUG] Exit from do method +2022/02/28 11:16:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:42 [DEBUG] 621c61c01b00008008fd0c21: Beginning Read +2022/02/28 11:16:42 id: 621c61c01b00008008fd0c21 +2022/02/28 11:16:42 HTTP request GET mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:42 [DEBUG] Begin Injection +2022/02/28 11:16:42 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:42 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read +2022/02/28 11:16:42 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:42 [DEBUG] Begin Injection +2022/02/28 11:16:42 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:42 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read +2022/02/28 11:16:42 id: 621c61ba1b00007908fd0c20 +2022/02/28 11:16:42 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:42 [DEBUG] Begin Injection +2022/02/28 11:16:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b59f00 161 [] false false map[] 0xc00048a700 0xc00079a160} +2022/02/28 11:16:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 {"id":"621c61c01b00008008fd0c21","name":"acctest_a2sqa","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:42 [DEBUG] Exit from do method +2022/02/28 11:16:42 [DEBUG] 621c61c01b00008008fd0c21: Read finished successfully +2022/02/28 11:16:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2700 1472 [] false false map[] 0xc000930700 0xc00079a0b0} +2022/02/28 11:16:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:42 [DEBUG] Exit from do method +2022/02/28 11:16:42 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully +2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:42 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:42 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:42 [DEBUG] Begin Injection +2022/02/28 11:16:42 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003752c0 160 [] false false map[] 0xc00037e700 0xc00079a160} +2022/02/28 11:16:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:43 [DEBUG] Exit from do method +2022/02/28 11:16:43 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully +2022/02/28 11:16:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf4040 1472 [] false false map[] 0xc000930c00 0xc00079a0b0} +2022/02/28 11:16:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:43 [DEBUG] Exit from do method +2022/02/28 11:16:43 currentvrfname acctest_9cio7 +2022/02/28 11:16:43 found correct vrfname +2022/02/28 11:16:43 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:43 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:43 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:43 [DEBUG] Begin Injection +2022/02/28 11:16:43 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf5cc0 1472 [] false false map[] 0xc00048ad00 0xc00079a0b0} +2022/02/28 11:16:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:43 [DEBUG] Exit from do method +2022/02/28 11:16:43 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:43 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Read +2022/02/28 11:16:43 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:43 [DEBUG] Begin Injection +2022/02/28 11:16:43 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000375880 1472 [] false false map[] 0xc00085e600 0xc0004f6370} +2022/02/28 11:16:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:43 [DEBUG] Exit from do method +2022/02/28 11:16:43 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully +2022/02/28 11:16:43 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:43 [DEBUG] New state was assigned lineage "78a2a4b3-92fd-f635-3141-00135cfe402f" +2022/02/28 11:16:43 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:43 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:43 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:43 [DEBUG] Test: Executing step 6 +2022/02/28 11:16:43 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7\")" references: [] +2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:43 [DEBUG] Starting graph walk: walkImport +2022/02/28 11:16:43 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Import +2022/02/28 11:16:43 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:43 [DEBUG] Begin Injection +2022/02/28 11:16:43 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b595c0 1472 [] false false map[] 0xc00037ec00 0xc0004f6370} +2022/02/28 11:16:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:44 [DEBUG] Exit from do method +2022/02/28 11:16:44 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Import finished successfully +2022/02/28 11:16:44 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Read +2022/02/28 11:16:44 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:44 [DEBUG] Begin Injection +2022/02/28 11:16:44 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000374c40 1472 [] false false map[] 0xc00044c300 0xc0004f6370} +2022/02/28 11:16:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:44 [DEBUG] Exit from do method +2022/02/28 11:16:44 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully +2022/02/28 11:16:44 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:44 [DEBUG] New state was assigned lineage "c1d4d5ee-b988-f2ba-b83c-bad28195f2b7" +2022/02/28 11:16:44 [DEBUG] Test: Executing step 7 +2022/02/28 11:16:44 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:44 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:44 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:44 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:44 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config +2022/02/28 11:16:44 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config +2022/02/28 11:16:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:44 [DEBUG] : Beginning Read +2022/02/28 11:16:44 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:44 [DEBUG] Begin Injection +2022/02/28 11:16:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b78040 5563 [] false false map[] 0xc000c7e600 0xc0004f6370} +2022/02/28 11:16:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:44 [DEBUG] Exit from do method +2022/02/28 11:16:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:44 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read +2022/02/28 11:16:44 [DEBUG] 621c61c01b00008008fd0c21: Beginning Read +2022/02/28 11:16:44 id: 621c61c01b00008008fd0c21 +2022/02/28 11:16:44 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:44 [DEBUG] Begin Injection +2022/02/28 11:16:44 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:44 HTTP request GET mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:44 [DEBUG] Begin Injection +2022/02/28 11:16:44 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:44 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read +2022/02/28 11:16:44 id: 621c61ba1b00007908fd0c20 +2022/02/28 11:16:44 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:44 [DEBUG] Begin Injection +2022/02/28 11:16:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6cc0 161 [] false false map[] 0xc0001b2100 0xc0004f6370} +2022/02/28 11:16:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 {"id":"621c61c01b00008008fd0c21","name":"acctest_a2sqa","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:45 [DEBUG] Exit from do method +2022/02/28 11:16:45 [DEBUG] 621c61c01b00008008fd0c21: Read finished successfully +2022/02/28 11:16:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b58a80 1472 [] false false map[] 0xc00030c200 0xc00079a160} +2022/02/28 11:16:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:45 [DEBUG] Exit from do method +2022/02/28 11:16:45 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully +2022/02/28 11:16:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:45 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:45 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:45 [DEBUG] Begin Injection +2022/02/28 11:16:45 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092aac0 1472 [] false false map[] 0xc00030c900 0xc00079a160} +2022/02/28 11:16:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b79600 160 [] false false map[] 0xc00030c400 0xc0004f6370} +2022/02/28 11:16:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:45 [DEBUG] Exit from do method +2022/02/28 11:16:45 [DEBUG] Exit from do method +2022/02/28 11:16:45 currentvrfname acctest_9cio7 +2022/02/28 11:16:45 found correct vrfname +2022/02/28 11:16:45 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:45 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully +2022/02/28 11:16:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:45 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:45 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:45 [DEBUG] Begin Injection +2022/02/28 11:16:45 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b79900 1472 [] false false map[] 0xc0001b2700 0xc0004f6370} +2022/02/28 11:16:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:45 [DEBUG] Exit from do method +2022/02/28 11:16:45 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:45 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Read +2022/02/28 11:16:45 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:45 [DEBUG] Begin Injection +2022/02/28 11:16:45 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd3780 1472 [] false false map[] 0xc0001b2c00 0xc000fc2000} +2022/02/28 11:16:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:16:46 [DEBUG] Exit from do method +2022/02/28 11:16:46 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully +2022/02/28 11:16:46 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:46 [DEBUG] New state was assigned lineage "ee728f58-0b35-f722-c350-12cfb2ba6e69" +2022/02/28 11:16:46 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:46 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:46 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:46 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.test + description: "" => "" + id: "621c61c01b00008008fd0c21" => "" + name: "acctest_a2sqa" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_9cio7" => "" + dhcp_option_name: "acctest_a2sqa" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7" => "" + name: "acctest_9cio7" => "" + schema_id: "621c61b91d000069624fb9a1" => "" + template_name: "acctest_0d8iu" => "" + version: "1" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.test: + ID = 621c61c01b00008008fd0c21 + provider = provider.mso + description = + name = acctest_a2sqa + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c61ba1b00007908fd0c20 + provider = provider.mso + description = + name = acctest_9cio7 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c61b91d000069624fb9a1 + provider = provider.mso + name = acctest_0d8iu + template_name = acctest_0d8iu + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_9cio7 + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_a2sqa + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_9cio7 + dhcp_policy.version = 1 + display_name = acctest_9cio7 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_9cio7 + schema_id = 621c61b91d000069624fb9a1 + template_name = acctest_0d8iu + vrf_name = acctest_9cio7 + vrf_schema_id = 621c61b91d000069624fb9a1 + vrf_template_name = acctest_0d8iu + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7 + provider = provider.mso + bd_name = acctest_9cio7 + dhcp_option_name = acctest_a2sqa + dhcp_option_version = 1 + name = acctest_9cio7 + schema_id = 621c61b91d000069624fb9a1 + template_name = acctest_0d8iu + version = 1 + + Dependencies: + mso_dhcp_option_policy.test + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_9cio7 + provider = provider.mso + display_name = acctest_9cio7 + layer3_multicast = false + name = acctest_9cio7 + schema_id = 621c61b91d000069624fb9a1 + template = acctest_0d8iu + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:16:46 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:16:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:16:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:46 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:16:46 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:16:46 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:16:46 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:16:46 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:16:46 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:16:46 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:16:46 [DEBUG] Template BD: Beginning Update +2022/02/28 11:16:46 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:46 [DEBUG] Begin Injection +2022/02/28 11:16:46 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:46 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00037f200 0xc000fc2000} +2022/02/28 11:16:46 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:46 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change +2022/02/28 11:16:46 [DEBUG] 621c61c01b00008008fd0c21: Beginning Read +2022/02/28 11:16:46 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:46 [DEBUG] Begin Injection +2022/02/28 11:16:46 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:46 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000930800 0xc000fc2000} +2022/02/28 11:16:46 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 +2022/02/28 11:16:46 [DEBUG] : Read finished successfully +2022/02/28 11:16:46 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:46 [DEBUG] New state was assigned lineage "001ac4ba-d429-b9bc-e34a-c156c92c472d" +2022/02/28 11:16:46 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:16:46 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:46 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:46 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:46 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:46 [DEBUG] : Beginning Read +2022/02/28 11:16:46 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:46 [DEBUG] Begin Injection +2022/02/28 11:16:46 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092a2c0 5563 [] false false map[] 0xc000beb600 0xc000fc2000} +2022/02/28 11:16:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:47 [DEBUG] Exit from do method +2022/02/28 11:16:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:47 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read +2022/02/28 11:16:47 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:47 [DEBUG] Begin Injection +2022/02/28 11:16:47 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:47 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read +2022/02/28 11:16:47 id: 621c61ba1b00007908fd0c20 +2022/02/28 11:16:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:47 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:47 [DEBUG] Begin Injection +2022/02/28 11:16:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092b180 160 [] false false map[] 0xc000bea500 0xc00079a160} +2022/02/28 11:16:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:47 [DEBUG] Exit from do method +2022/02/28 11:16:47 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully +2022/02/28 11:16:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf6100 1277 [] false false map[] 0xc000930900 0xc000fc2000} +2022/02/28 11:16:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:16:47 [DEBUG] Exit from do method +2022/02/28 11:16:47 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully +2022/02/28 11:16:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:47 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:47 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:47 [DEBUG] Begin Injection +2022/02/28 11:16:47 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050cec0 1277 [] false false map[] 0xc0001b4400 0xc000fc2000} +2022/02/28 11:16:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:16:47 [DEBUG] Exit from do method +2022/02/28 11:16:47 currentvrfname acctest_9cio7 +2022/02/28 11:16:47 found correct vrfname +2022/02/28 11:16:47 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:47 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:47 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:47 [DEBUG] Begin Injection +2022/02/28 11:16:47 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b580c0 1277 [] false false map[] 0xc000930f00 0xc000fc2000} +2022/02/28 11:16:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:16:48 [DEBUG] Exit from do method +2022/02/28 11:16:48 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:48 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:48 [DEBUG] New state was assigned lineage "22e8cc8f-3bbd-a023-265d-51d5258c09d3" +2022/02/28 11:16:48 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:48 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:48 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:48 [DEBUG] Test: Executing step 8 +2022/02/28 11:16:48 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:48 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:48 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:48 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:48 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:48 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:48 [DEBUG] : Beginning Read +2022/02/28 11:16:48 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:48 [DEBUG] Begin Injection +2022/02/28 11:16:48 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b58200 5563 [] false false map[] 0xc00120c100 0xc000fc2000} +2022/02/28 11:16:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:48 [DEBUG] Exit from do method +2022/02/28 11:16:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:48 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read +2022/02/28 11:16:48 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:48 [DEBUG] Begin Injection +2022/02/28 11:16:48 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:48 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read +2022/02/28 11:16:48 id: 621c61ba1b00007908fd0c20 +2022/02/28 11:16:48 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:48 [DEBUG] Begin Injection +2022/02/28 11:16:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092ad00 1277 [] false false map[] 0xc00037e500 0xc000fc2000} +2022/02/28 11:16:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:16:49 [DEBUG] Exit from do method +2022/02/28 11:16:49 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:49 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:49 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:49 [DEBUG] Begin Injection +2022/02/28 11:16:49 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092b500 160 [] false false map[] 0xc000930300 0xc00079a160} +2022/02/28 11:16:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:49 [DEBUG] Exit from do method +2022/02/28 11:16:49 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully +2022/02/28 11:16:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092a140 1277 [] false false map[] 0xc000930500 0xc000fc2000} +2022/02/28 11:16:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:16:49 [DEBUG] Exit from do method +2022/02/28 11:16:49 currentvrfname acctest_9cio7 +2022/02/28 11:16:49 found correct vrfname +2022/02/28 11:16:49 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:49 [DEBUG] acctest_9cio7: Beginning Read +2022/02/28 11:16:49 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:49 [DEBUG] Begin Injection +2022/02/28 11:16:49 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050ce80 1277 [] false false map[] 0xc000930300 0xc000fc2000} +2022/02/28 11:16:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:16:49 [DEBUG] Exit from do method +2022/02/28 11:16:49 [DEBUG] acctest_9cio7: Read finished successfully +2022/02/28 11:16:49 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:49 [DEBUG] New state was assigned lineage "6198c2fc-9a9d-a435-a6eb-728970fdb467" +2022/02/28 11:16:49 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:49 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:49 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:49 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c61ba1b00007908fd0c20" => "" + name: "acctest_9cio7" => "acctest_buuat" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "acctest_9cio7" => "acctest_buuat" (forces new resource) + id: "acctest_9cio7" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_9cio7" => "acctest_buuat" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c61b91d000069624fb9a1" => "621c61b91d000069624fb9a1" + template_name: "acctest_0d8iu" => "acctest_0d8iu" + vrf_name: "acctest_9cio7" => "acctest_buuat" + vrf_schema_id: "621c61b91d000069624fb9a1" => "" + vrf_template_name: "acctest_0d8iu" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_buuat" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_buuat" + schema_id: "" => "621c61b91d000069624fb9a1" + template_name: "" => "acctest_0d8iu" + version: "" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_9cio7" => "acctest_buuat" + id: "acctest_9cio7" => "" + layer3_multicast: "false" => "" + name: "acctest_9cio7" => "acctest_buuat" (forces new resource) + schema_id: "621c61b91d000069624fb9a1" => "621c61b91d000069624fb9a1" + template: "acctest_0d8iu" => "acctest_0d8iu" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c61ba1b00007908fd0c20 + provider = provider.mso + description = + name = acctest_9cio7 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c61b91d000069624fb9a1 + provider = provider.mso + name = acctest_0d8iu + template_name = acctest_0d8iu + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_9cio7 + provider = provider.mso + display_name = acctest_9cio7 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_9cio7 + schema_id = 621c61b91d000069624fb9a1 + template_name = acctest_0d8iu + vrf_name = acctest_9cio7 + vrf_schema_id = 621c61b91d000069624fb9a1 + vrf_template_name = acctest_0d8iu + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_9cio7 + provider = provider.mso + display_name = acctest_9cio7 + layer3_multicast = false + name = acctest_9cio7 + schema_id = 621c61b91d000069624fb9a1 + template = acctest_0d8iu + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:16:49 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:16:49 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:49 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:16:49 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:16:49 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read +2022/02/28 11:16:49 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:49 [DEBUG] Begin Injection +2022/02/28 11:16:49 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:49 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:16:49 [DEBUG] Template BD: Beginning Update +2022/02/28 11:16:49 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:49 [DEBUG] Begin Injection +2022/02/28 11:16:49 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d00000 0xc000fc2000} +2022/02/28 11:16:50 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 +2022/02/28 11:16:50 [DEBUG] : Read finished successfully +2022/02/28 11:16:50 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:16:50 [DEBUG] : Beginning Create +2022/02/28 11:16:50 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:50 [DEBUG] Begin Injection +2022/02/28 11:16:50 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:50 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw] Content-Type:[application/json]] {{"desc":"","name":"acctest_buuat","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9b7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:16:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d00100 0xc00079a160} +2022/02/28 11:16:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:16:50 [DEBUG] acctest_9cio7: Beginning Destroy +2022/02/28 11:16:50 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 [DEBUG] Begin Injection +2022/02/28 11:16:50 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d00900 0xc00079a160} +2022/02/28 11:16:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 [DEBUG] acctest_9cio7: Destroy finished successfully +2022/02/28 11:16:50 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:16:50 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:16:50 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 [DEBUG] Begin Injection +2022/02/28 11:16:50 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:16:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001239580 160 [] false false map[] 0xc0007c2700 0xc000fc2000} +2022/02/28 11:16:50 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c61ca1b00007908fd0c22","name":"acctest_buuat","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:50 [DEBUG] Exit from do method +2022/02/28 11:16:50 [DEBUG] 621c61ca1b00007908fd0c22: Creation finished successfully +2022/02/28 11:16:50 [DEBUG] 621c61ca1b00007908fd0c22: Beginning Read +2022/02/28 11:16:50 id: 621c61ca1b00007908fd0c22 +2022/02/28 11:16:50 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:50 [DEBUG] Begin Injection +2022/02/28 11:16:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000338500 0xc00079a160} +2022/02/28 11:16:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:50 [DEBUG] acctest_buuat: Creation finished successfully +2022/02/28 11:16:50 [DEBUG] acctest_buuat: Beginning Read +2022/02/28 11:16:50 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:50 [DEBUG] Begin Injection +2022/02/28 11:16:50 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050df40 160 [] false false map[] 0xc000338700 0xc000fc2000} +2022/02/28 11:16:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 {"id":"621c61ca1b00007908fd0c22","name":"acctest_buuat","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:50 [DEBUG] Exit from do method +2022/02/28 11:16:50 [DEBUG] 621c61ca1b00007908fd0c22: Read finished successfully +2022/02/28 11:16:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cd0c0 768 [] false false map[] 0xc0007c3100 0xc00079a160} +2022/02/28 11:16:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 11:16:51 [DEBUG] Exit from do method +2022/02/28 11:16:51 currentvrfname acctest_buuat +2022/02/28 11:16:51 found correct vrfname +2022/02/28 11:16:51 [DEBUG] acctest_buuat: Read finished successfully +2022/02/28 11:16:51 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:16:51 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:16:51 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:16:51 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:51 [DEBUG] Begin Injection +2022/02/28 11:16:51 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:51 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00037ec00 0xc00079a160} +2022/02/28 11:16:51 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:51 [DEBUG] : Beginning Read +2022/02/28 11:16:51 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:51 [DEBUG] Begin Injection +2022/02/28 11:16:51 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2040 1278 [] false false map[] 0xc0007c2000 0xc00079a160} +2022/02/28 11:16:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 11:16:51 [DEBUG] Exit from do method +2022/02/28 11:16:51 [DEBUG] acctest_buuat: Read finished successfully +2022/02/28 11:16:51 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:16:51 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:16:51 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:51 [DEBUG] Begin Injection +2022/02/28 11:16:51 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:52 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00037eb00 0xc00079a160} +2022/02/28 11:16:52 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:52 [DEBUG] Creation Complete +2022/02/28 11:16:52 [DEBUG] : Beginning Read +2022/02/28 11:16:52 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:52 [DEBUG] Begin Injection +2022/02/28 11:16:52 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050d240 1363 [] false false map[] 0xc000338000 0xc00079a160} +2022/02/28 11:16:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:52 [DEBUG] Exit from do method +2022/02/28 11:16:52 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat: Read finished successfully +2022/02/28 11:16:52 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:52 [DEBUG] New state was assigned lineage "a4b9ecdb-5f86-658f-228f-6ba6ebd65c31" +2022/02/28 11:16:52 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:52 [DEBUG] Begin Injection +2022/02/28 11:16:52 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cc400 1363 [] false false map[] 0xc00037f100 0xc00079a160} +2022/02/28 11:16:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:52 [DEBUG] Exit from do method +2022/02/28 11:16:52 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:52 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:52 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:52 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:52 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:52 [DEBUG] : Beginning Read +2022/02/28 11:16:52 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:52 [DEBUG] Begin Injection +2022/02/28 11:16:52 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2040 5563 [] false false map[] 0xc000f5d800 0xc00079a160} +2022/02/28 11:16:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:53 [DEBUG] Exit from do method +2022/02/28 11:16:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:53 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read +2022/02/28 11:16:53 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:53 [DEBUG] Begin Injection +2022/02/28 11:16:53 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:53 [DEBUG] 621c61ca1b00007908fd0c22: Beginning Read +2022/02/28 11:16:53 id: 621c61ca1b00007908fd0c22 +2022/02/28 11:16:53 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:53 [DEBUG] Begin Injection +2022/02/28 11:16:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ddc0 160 [] false false map[] 0xc000930600 0xc000fc2000} +2022/02/28 11:16:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 {"id":"621c61ca1b00007908fd0c22","name":"acctest_buuat","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:53 [DEBUG] Exit from do method +2022/02/28 11:16:53 [DEBUG] 621c61ca1b00007908fd0c22: Read finished successfully +2022/02/28 11:16:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00020ce00 1363 [] false false map[] 0xc000e42200 0xc00079a160} +2022/02/28 11:16:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:53 [DEBUG] Exit from do method +2022/02/28 11:16:53 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully +2022/02/28 11:16:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:53 [DEBUG] acctest_buuat: Beginning Read +2022/02/28 11:16:53 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:53 [DEBUG] Begin Injection +2022/02/28 11:16:53 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b79a40 1363 [] false false map[] 0xc000e42700 0xc00079a160} +2022/02/28 11:16:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:53 [DEBUG] Exit from do method +2022/02/28 11:16:53 currentvrfname acctest_buuat +2022/02/28 11:16:53 found correct vrfname +2022/02/28 11:16:53 [DEBUG] acctest_buuat: Read finished successfully +2022/02/28 11:16:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:53 [DEBUG] acctest_buuat: Beginning Read +2022/02/28 11:16:53 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:53 [DEBUG] Begin Injection +2022/02/28 11:16:53 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00126e040 1363 [] false false map[] 0xc0007c2800 0xc00079a160} +2022/02/28 11:16:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:54 [DEBUG] Exit from do method +2022/02/28 11:16:54 [DEBUG] acctest_buuat: Read finished successfully +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:54 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat: Beginning Read +2022/02/28 11:16:54 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:54 [DEBUG] Begin Injection +2022/02/28 11:16:54 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00020c6c0 1363 [] false false map[] 0xc000930500 0xc00079a160} +2022/02/28 11:16:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:54 [DEBUG] Exit from do method +2022/02/28 11:16:54 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat: Read finished successfully +2022/02/28 11:16:54 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:54 [DEBUG] New state was assigned lineage "b12db5f4-8448-354c-14f3-cc75c5418b35" +2022/02/28 11:16:54 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:16:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:54 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:54 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:54 [WARN] Test: Executing destroy step +2022/02/28 11:16:54 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:54 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:16:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:54 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:16:54 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:54 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:54 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:54 [DEBUG] : Beginning Read +2022/02/28 11:16:54 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:54 [DEBUG] Begin Injection +2022/02/28 11:16:54 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7bc0 5563 [] false false map[] 0xc000930200 0xc00079a160} +2022/02/28 11:16:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:54 [DEBUG] Exit from do method +2022/02/28 11:16:54 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:16:54 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read +2022/02/28 11:16:54 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:54 [DEBUG] Begin Injection +2022/02/28 11:16:54 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:54 [DEBUG] 621c61ca1b00007908fd0c22: Beginning Read +2022/02/28 11:16:54 id: 621c61ca1b00007908fd0c22 +2022/02/28 11:16:54 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:54 [DEBUG] Begin Injection +2022/02/28 11:16:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf5d80 1363 [] false false map[] 0xc000930700 0xc00079a160} +2022/02/28 11:16:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:55 [DEBUG] Exit from do method +2022/02/28 11:16:55 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully +2022/02/28 11:16:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:16:55 [DEBUG] acctest_buuat: Beginning Read +2022/02/28 11:16:55 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:55 [DEBUG] Begin Injection +2022/02/28 11:16:55 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2cc0 160 [] false false map[] 0xc00037e700 0xc000fc2000} +2022/02/28 11:16:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 {"id":"621c61ca1b00007908fd0c22","name":"acctest_buuat","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:16:55 [DEBUG] Exit from do method +2022/02/28 11:16:55 [DEBUG] 621c61ca1b00007908fd0c22: Read finished successfully +2022/02/28 11:16:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd3340 1363 [] false false map[] 0xc00037e900 0xc00079a160} +2022/02/28 11:16:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:55 [DEBUG] Exit from do method +2022/02/28 11:16:55 currentvrfname acctest_buuat +2022/02/28 11:16:55 found correct vrfname +2022/02/28 11:16:55 [DEBUG] acctest_buuat: Read finished successfully +2022/02/28 11:16:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:16:55 [DEBUG] acctest_buuat: Beginning Read +2022/02/28 11:16:55 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:55 [DEBUG] Begin Injection +2022/02/28 11:16:55 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd3780 1363 [] false false map[] 0xc000930500 0xc00079a160} +2022/02/28 11:16:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:55 [DEBUG] Exit from do method +2022/02/28 11:16:55 [DEBUG] acctest_buuat: Read finished successfully +2022/02/28 11:16:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:16:55 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat: Beginning Read +2022/02/28 11:16:55 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:55 [DEBUG] Begin Injection +2022/02/28 11:16:55 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00020c840 1363 [] false false map[] 0xc00037e300 0xc00079a160} +2022/02/28 11:16:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:16:56 [DEBUG] Exit from do method +2022/02/28 11:16:56 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat: Read finished successfully +2022/02/28 11:16:56 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:56 [DEBUG] New state was assigned lineage "fda4c44d-9394-6955-a5c9-675028e2c0ad" +2022/02/28 11:16:56 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:16:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:56 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:16:56 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c61ca1b00007908fd0c22" => "" + name: "acctest_buuat" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c61b91d000069624fb9a1" => "" + name: "acctest_0d8iu" => "" + template_name: "acctest_0d8iu" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_buuat" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_buuat" => "" + id: "acctest_buuat" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_buuat" => "" + schema_id: "621c61b91d000069624fb9a1" => "" + template_name: "acctest_0d8iu" => "" + vrf_name: "acctest_buuat" => "" + vrf_schema_id: "621c61b91d000069624fb9a1" => "" + vrf_template_name: "acctest_0d8iu" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_buuat" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat" => "" + name: "acctest_buuat" => "" + schema_id: "621c61b91d000069624fb9a1" => "" + template_name: "acctest_0d8iu" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_buuat" => "" + id: "acctest_buuat" => "" + layer3_multicast: "false" => "" + name: "acctest_buuat" => "" + schema_id: "621c61b91d000069624fb9a1" => "" + template: "acctest_0d8iu" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c61ca1b00007908fd0c22 + provider = provider.mso + description = + name = acctest_buuat + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c61b91d000069624fb9a1 + provider = provider.mso + name = acctest_0d8iu + template_name = acctest_0d8iu + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_buuat + provider = provider.mso + dhcp_policy.name = acctest_buuat + dhcp_policy.version = 0 + display_name = acctest_buuat + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_buuat + schema_id = 621c61b91d000069624fb9a1 + template_name = acctest_0d8iu + vrf_name = acctest_buuat + vrf_schema_id = 621c61b91d000069624fb9a1 + vrf_template_name = acctest_0d8iu + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat + provider = provider.mso + bd_name = acctest_buuat + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_buuat + schema_id = 621c61b91d000069624fb9a1 + template_name = acctest_0d8iu + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_buuat + provider = provider.mso + display_name = acctest_buuat + layer3_multicast = false + name = acctest_buuat + schema_id = 621c61b91d000069624fb9a1 + template = acctest_0d8iu + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:16:56 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:16:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:16:56 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:16:56 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:16:56 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:16:56 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:16:56 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:16:56 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:16:56 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:16:56 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:16:56 [DEBUG] Template BD: Beginning Update +2022/02/28 11:16:56 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:56 [DEBUG] Begin Injection +2022/02/28 11:16:56 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:56 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:56 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00130e600 0xc00079a160} +2022/02/28 11:16:56 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:56 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:16:56 [DEBUG] 621c61ca1b00007908fd0c22: Beginning Read +2022/02/28 11:16:56 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:56 [DEBUG] Begin Injection +2022/02/28 11:16:56 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:56 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:16:56 [DEBUG] Template BD: Beginning Update +2022/02/28 11:16:56 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:56 [DEBUG] Begin Injection +2022/02/28 11:16:56 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:56 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:56 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00130ee00 0xc00079a160} +2022/02/28 11:16:56 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 +2022/02/28 11:16:56 [DEBUG] : Read finished successfully +2022/02/28 11:16:56 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:56 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000420200 0xc000fc2000} +2022/02/28 11:16:56 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:56 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:16:56 [DEBUG] acctest_buuat: Beginning Destroy +2022/02/28 11:16:56 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:56 [DEBUG] Begin Injection +2022/02/28 11:16:56 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:57 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000930600 0xc000fc2000} +2022/02/28 11:16:57 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false +2022/02/28 11:16:57 [DEBUG] acctest_buuat: Destroy finished successfully +2022/02/28 11:16:57 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:16:57 [DEBUG] 621c61b91d000069624fb9a1: Beginning Destroy +2022/02/28 11:16:57 HTTP request DELETE mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:57 [DEBUG] Begin Injection +2022/02/28 11:16:57 HTTP request after injection DELETE mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:57 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00037e400 0xc000fc2000} +2022/02/28 11:16:57 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:57 [DEBUG] 621c61b91d000069624fb9a1: Destroy finished successfully +2022/02/28 11:16:57 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:57 [DEBUG] New state was assigned lineage "de3f1463-346a-0537-60f6-6f011550c49a" +2022/02/28 11:16:57 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:57 [DEBUG] Begin Injection +2022/02/28 11:16:57 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 +2022/02/28 11:16:57 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:57 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00126e240 39 [] false false map[] 0xc000930100 0xc000fc2000} +2022/02/28 11:16:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"code":404,"message":"Item not found"} +2022/02/28 11:16:57 [DEBUG] Exit from do method +2022/02/28 11:16:57 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:16:57 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:16:57 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:16:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:16:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:57 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:16:57 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:16:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:57 [DEBUG] : Beginning Read +2022/02/28 11:16:57 HTTP request GET mso/api/v1/tenants +2022/02/28 11:16:57 [DEBUG] Begin Injection +2022/02/28 11:16:57 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:16:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:16:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2a40 5563 [] false false map[] 0xc00037e500 0xc000fc2000} +2022/02/28 11:16:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:16:58 [DEBUG] Exit from do method +2022/02/28 11:16:58 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:16:58 [DEBUG] provider has no plugin.Client +2022/02/28 11:16:58 [DEBUG] New state was assigned lineage "21eeee34-9ba6-a86d-f072-6ae204ae1d18" +2022/02/28 11:16:58 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:16:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:16:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:16:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:16:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:16:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:16:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:16:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:16:58 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:19:32 [DEBUG] Test: Executing step 0 +2022/02/28 11:19:32 [DEBUG] Test: Executing step 0 +2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:19:32 [DEBUG] Test: Executing step 1 +2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:32 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:32 [DEBUG] : Beginning Read +2022/02/28 11:19:32 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:32 [DEBUG] Begin Injection +2022/02/28 11:19:32 HTTP request POST /login +2022/02/28 11:19:32 HTTP request after injection POST /login +2022/02/28 11:19:32 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:19:32 [DEBUG] Test: Executing step 2 +2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:19:32 [DEBUG] Test: Executing step 3 +2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:19:32 [DEBUG] Test: Executing step 4 +2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:32 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:32 [DEBUG] : Beginning Read +2022/02/28 11:19:32 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:32 [DEBUG] Begin Injection +2022/02/28 11:19:32 HTTP request POST /login +2022/02/28 11:19:32 HTTP request after injection POST /login +2022/02/28 11:19:32 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:19:33 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:19:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:33 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiV1dXd3BJPWpFN25oQ0RzZ2xubXk2TENQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.niHV_mDpCY0JapdpDOCEMvUGSsTTmMpeL9_3IxqjLOwfDVFhYMNg_OdO_E_atLak0P1YAJxB24j3veUis6whsjyhzdBRVZ3F1xvp-MOOow2pfjb86Io3AF4H5ezaz4deZMJ1v2O2aTz30b4tQl5Q7yB610J7ietBZEJL17X-_cbkv0mNDjdNYrX7F8xTP5kago_k1zHktztwEs69J3pSYD-4YBFZSXbN8rupD7dk2WvPq-YrIYcqH1FCWEZzx5uN38vf2fnGszm4GEg8vim_NI4wIFBZuDiNb8JpQUdi0UWxJc1j-_7xyF6zj2qja-SCm95iG3HZxwwWKeF3b5372g; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00061a6c0 -1 [chunked] false false map[] 0xc0001c8e00 0xc0007d0000} +2022/02/28 11:19:33 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiV1dXd3BJPWpFN25oQ0RzZ2xubXk2TENQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.niHV_mDpCY0JapdpDOCEMvUGSsTTmMpeL9_3IxqjLOwfDVFhYMNg_OdO_E_atLak0P1YAJxB24j3veUis6whsjyhzdBRVZ3F1xvp-MOOow2pfjb86Io3AF4H5ezaz4deZMJ1v2O2aTz30b4tQl5Q7yB610J7ietBZEJL17X-_cbkv0mNDjdNYrX7F8xTP5kago_k1zHktztwEs69J3pSYD-4YBFZSXbN8rupD7dk2WvPq-YrIYcqH1FCWEZzx5uN38vf2fnGszm4GEg8vim_NI4wIFBZuDiNb8JpQUdi0UWxJc1j-_7xyF6zj2qja-SCm95iG3HZxwwWKeF3b5372g","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiV1dXd3BJPWpFN25oQ0RzZ2xubXk2TENQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.niHV_mDpCY0JapdpDOCEMvUGSsTTmMpeL9_3IxqjLOwfDVFhYMNg_OdO_E_atLak0P1YAJxB24j3veUis6whsjyhzdBRVZ3F1xvp-MOOow2pfjb86Io3AF4H5ezaz4deZMJ1v2O2aTz30b4tQl5Q7yB610J7ietBZEJL17X-_cbkv0mNDjdNYrX7F8xTP5kago_k1zHktztwEs69J3pSYD-4YBFZSXbN8rupD7dk2WvPq-YrIYcqH1FCWEZzx5uN38vf2fnGszm4GEg8vim_NI4wIFBZuDiNb8JpQUdi0UWxJc1j-_7xyF6zj2qja-SCm95iG3HZxwwWKeF3b5372g"} +2022/02/28 11:19:33 [DEBUG] Exit from do method +2022/02/28 11:19:33 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:33 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:19:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:33 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000af6100 -1 [chunked] false false map[] 0xc000e2e200 0xc0005da0b0} +2022/02/28 11:19:33 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ"} +2022/02/28 11:19:33 [DEBUG] Exit from do method +2022/02/28 11:19:33 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00061a880 5563 [] false false map[] 0xc0001c8d00 0xc0007d0000} +2022/02/28 11:19:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:34 [DEBUG] Exit from do method +2022/02/28 11:19:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:34 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:34 [DEBUG] New state was assigned lineage "48e76066-c1f7-8845-c6f5-c8464ab1b3c5" +2022/02/28 11:19:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:34 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:34 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:34 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_nscpw" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_mxqpk" + template_name: "" => "acctest_mxqpk" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_nscpw" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_nscpw" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_mxqpk" + vrf_name: "" => "acctest_nscpw" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_nscpw" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_nscpw" + schema_id: "" => "" + template_name: "" => "acctest_mxqpk" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_nscpw" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_nscpw" + schema_id: "" => "" + template: "" => "acctest_mxqpk" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:19:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:19:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:34 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:19:34 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:19:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:19:34 [DEBUG] Schema: Beginning Creation +2022/02/28 11:19:34 HTTP request POST mso/api/v1/schemas +2022/02/28 11:19:34 [DEBUG] Begin Injection +2022/02/28 11:19:34 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:19:34 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ] Content-Type:[application/json]] {{"displayName":"acctest_mxqpk","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_mxqpk","externalEpgs":[],"filters":[],"name":"acctest_mxqpk","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x1107ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 11:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:19:34 [DEBUG] : Beginning Create +2022/02/28 11:19:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:19:34 [DEBUG] Begin Injection +2022/02/28 11:19:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:19:34 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_nscpw","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x1107ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 11:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:19:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af7940 5563 [] false false map[] 0xc000e2e000 0xc0005da0b0} +2022/02/28 11:19:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:34 [DEBUG] Exit from do method +2022/02/28 11:19:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:34 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:34 [DEBUG] New state was assigned lineage "c59caae0-c880-a5d5-cafd-3894217eefe1" +2022/02/28 11:19:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:34 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:34 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:34 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_7lxka" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_pphhx" + template_name: "" => "acctest_pphhx" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_7lxka" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_7lxka" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_pphhx" + vrf_name: "" => "acctest_7lxka" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_7lxka_invalid" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_7lxka" + schema_id: "" => "" + template_name: "" => "acctest_pphhx" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_7lxka" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_7lxka" + schema_id: "" => "" + template: "" => "acctest_pphhx" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:19:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:19:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:19:34 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:19:34 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:19:34 [DEBUG] Schema: Beginning Creation +2022/02/28 11:19:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:19:34 HTTP request POST mso/api/v1/schemas +2022/02/28 11:19:34 [DEBUG] Begin Injection +2022/02/28 11:19:34 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:19:34 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ] Content-Type:[application/json]] {{"displayName":"acctest_pphhx","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_pphhx","externalEpgs":[],"filters":[],"name":"acctest_pphhx","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x1107ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 11:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:19:34 [DEBUG] : Beginning Create +2022/02/28 11:19:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:19:34 [DEBUG] Begin Injection +2022/02/28 11:19:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:19:34 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_7lxka","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x1107ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 11:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:19:34 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:19:34 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c626e1d000085624fb9b0] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e3a40 400 [] false false map[] 0xc00015c800 0xc0007d0000} +2022/02/28 11:19:34 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:19:34 [DEBUG] Exit from do method +2022/02/28 11:19:34 [DEBUG] 621c626e1d000085624fb9b0: Schema Creation finished successfully +2022/02/28 11:19:34 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read +2022/02/28 11:19:34 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:34 [DEBUG] Begin Injection +2022/02/28 11:19:34 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:34 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:19:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e3b40 160 [] false false map[] 0xc000494c00 0xc0005da0b0} +2022/02/28 11:19:34 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:34 [DEBUG] Exit from do method +2022/02/28 11:19:34 [DEBUG] 621c626e1b0000a308fd0c23: Creation finished successfully +2022/02/28 11:19:34 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read +2022/02/28 11:19:34 id: 621c626e1b0000a308fd0c23 +2022/02/28 11:19:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:34 [DEBUG] Begin Injection +2022/02/28 11:19:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:19:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af62c0 160 [] false false map[] 0xc000830b00 0xc0005da0b0} +2022/02/28 11:19:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c626e1b0000b408fd0c24","name":"acctest_7lxka","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:35 [DEBUG] Exit from do method +2022/02/28 11:19:35 [DEBUG] 621c626e1b0000b408fd0c24: Creation finished successfully +2022/02/28 11:19:35 [DEBUG] 621c626e1b0000b408fd0c24: Beginning Read +2022/02/28 11:19:35 id: 621c626e1b0000b408fd0c24 +2022/02/28 11:19:35 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:35 [DEBUG] Begin Injection +2022/02/28 11:19:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:19:35 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c626e1d000081624fb9b2] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ae200 400 [] false false map[] 0xc000e2e700 0xc0007d0000} +2022/02/28 11:19:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:19:35 [DEBUG] Exit from do method +2022/02/28 11:19:35 [DEBUG] 621c626e1d000081624fb9b2: Schema Creation finished successfully +2022/02/28 11:19:35 [DEBUG] 621c626e1d000081624fb9b2: Beginning Read +2022/02/28 11:19:35 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:35 [DEBUG] Begin Injection +2022/02/28 11:19:35 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ae480 400 [] false false map[] 0xc000e2ed00 0xc0001ac000} +2022/02/28 11:19:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:19:35 [DEBUG] Exit from do method +2022/02/28 11:19:35 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully +2022/02/28 11:19:35 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:19:35 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:19:35 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:35 [DEBUG] Begin Injection +2022/02/28 11:19:35 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706680 160 [] false false map[] 0xc0001c8200 0xc0005da0b0} +2022/02/28 11:19:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c0700 400 [] false false map[] 0xc000494100 0xc0007d0000} +2022/02/28 11:19:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 {"id":"621c626e1b0000b408fd0c24","name":"acctest_7lxka","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:19:35 [DEBUG] Exit from do method +2022/02/28 11:19:35 [DEBUG] Exit from do method +2022/02/28 11:19:35 [DEBUG] 621c626e1d000081624fb9b2: Read finished successfully +2022/02/28 11:19:35 [DEBUG] 621c626e1b0000b408fd0c24: Read finished successfully +2022/02/28 11:19:35 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:19:35 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:19:35 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:35 [DEBUG] Begin Injection +2022/02/28 11:19:35 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ae640 160 [] false false map[] 0xc000e2ee00 0xc0014dc000} +2022/02/28 11:19:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:35 [DEBUG] Exit from do method +2022/02/28 11:19:35 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully +2022/02/28 11:19:35 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000e2f000 0xc0001ac000} +2022/02/28 11:19:35 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:35 [DEBUG] acctest_nscpw: Creation finished successfully +2022/02/28 11:19:35 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:35 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:35 [DEBUG] Begin Injection +2022/02/28 11:19:35 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:35 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001c8f00 0xc0007d0000} +2022/02/28 11:19:35 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:35 [DEBUG] acctest_7lxka: Creation finished successfully +2022/02/28 11:19:35 [DEBUG] acctest_7lxka: Beginning Read +2022/02/28 11:19:35 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:35 [DEBUG] Begin Injection +2022/02/28 11:19:35 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005aeb40 768 [] false false map[] 0xc000494300 0xc0014dc000} +2022/02/28 11:19:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:19:36 [DEBUG] Exit from do method +2022/02/28 11:19:36 currentvrfname acctest_nscpw +2022/02/28 11:19:36 found correct vrfname +2022/02/28 11:19:36 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:36 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:19:36 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:19:36 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:19:36 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:36 [DEBUG] Begin Injection +2022/02/28 11:19:36 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cab2c0 768 [] false false map[] 0xc000e2f200 0xc0007d0000} +2022/02/28 11:19:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:19:36 [DEBUG] Exit from do method +2022/02/28 11:19:36 currentvrfname acctest_7lxka +2022/02/28 11:19:36 found correct vrfname +2022/02/28 11:19:36 [DEBUG] acctest_7lxka: Read finished successfully +2022/02/28 11:19:36 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:19:36 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:19:36 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:19:36 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:36 [DEBUG] Begin Injection +2022/02/28 11:19:36 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:36 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:36 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000494f00 0xc0014dc000} +2022/02/28 11:19:36 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:36 [DEBUG] : Beginning Read +2022/02/28 11:19:36 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:36 [DEBUG] Begin Injection +2022/02/28 11:19:36 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:36 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:36 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000495400 0xc0007d0000} +2022/02/28 11:19:36 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:36 [DEBUG] : Beginning Read +2022/02/28 11:19:36 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:36 [DEBUG] Begin Injection +2022/02/28 11:19:36 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706040 1277 [] false false map[] 0xc0001c9800 0xc0014dc000} +2022/02/28 11:19:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:19:36 [DEBUG] Exit from do method +2022/02/28 11:19:36 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:36 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:19:36 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:19:36 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:36 [DEBUG] Begin Injection +2022/02/28 11:19:36 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c1a00 1277 [] false false map[] 0xc0001c9900 0xc0007d0000} +2022/02/28 11:19:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:19:36 [DEBUG] Exit from do method +2022/02/28 11:19:36 [DEBUG] acctest_7lxka: Read finished successfully +2022/02/28 11:19:36 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:19:36 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:19:36 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:36 [DEBUG] Begin Injection +2022/02/28 11:19:36 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000830100 0xc0014dc000} +2022/02/28 11:19:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:37 [DEBUG] Creation Complete +2022/02/28 11:19:37 [DEBUG] : Beginning Read +2022/02/28 11:19:37 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:37 [DEBUG] Begin Injection +2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:37 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[112] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:36 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc000706a80 112 [] false false map[] 0xc000494900 0xc0007d0000} +2022/02/28 11:19:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false {"code":141,"message":"Resource Not Found: Bd with name acctest_7lxka_invalid not found in List(acctest_7lxka)"} +2022/02/28 11:19:37 [DEBUG] Exit from do method +2022/02/28 11:19:37 [DEBUG] mso_schema_template_bd_dhcp_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Resource Not Found: Bd with name acctest_7lxka_invalid not found in List(acctest_7lxka)"{} +2022/02/28 11:19:37 [ERROR] : eval: *terraform.EvalApplyPost, err: "Resource Not Found: Bd with name acctest_7lxka_invalid not found in List(acctest_7lxka)"{} +2022/02/28 11:19:37 [ERROR] : eval: *terraform.EvalSequence, err: "Resource Not Found: Bd with name acctest_7lxka_invalid not found in List(acctest_7lxka)"{} +2022/02/28 11:19:37 [DEBUG] New state was assigned lineage "a78d9f90-3867-c53f-3697-2fdff0c7e3e6" +2022/02/28 11:19:37 [DEBUG] Test: Executing step 1 +2022/02/28 11:19:37 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:37 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:37 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "ljbsv" is not expected here. +2022/02/28 11:19:37 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "ljbsv" is not expected here. +2022/02/28 11:19:37 [DEBUG] Test: Executing step 2 +2022/02/28 11:19:37 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:37 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:37 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:37 [DEBUG] : Beginning Read +2022/02/28 11:19:37 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:37 [DEBUG] Begin Injection +2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ae380 1362 [] false false map[] 0xc0001c8100 0xc0014dc000} +2022/02/28 11:19:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:37 [DEBUG] Exit from do method +2022/02/28 11:19:37 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully +2022/02/28 11:19:37 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:37 [DEBUG] New state was assigned lineage "66de2800-a8ce-8abe-232d-dabf8629b152" +2022/02/28 11:19:37 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:37 [DEBUG] Begin Injection +2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af6180 5563 [] false false map[] 0xc000831400 0xc0007d0000} +2022/02/28 11:19:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:37 [DEBUG] Exit from do method +2022/02/28 11:19:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:37 [DEBUG] 621c626e1d000081624fb9b2: Beginning Read +2022/02/28 11:19:37 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:37 [DEBUG] Begin Injection +2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:37 [DEBUG] 621c626e1b0000b408fd0c24: Beginning Read +2022/02/28 11:19:37 id: 621c626e1b0000b408fd0c24 +2022/02/28 11:19:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:37 [DEBUG] Begin Injection +2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e2700 1362 [] false false map[] 0xc00015c000 0xc0014dc000} +2022/02/28 11:19:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:37 [DEBUG] Exit from do method +2022/02/28 11:19:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:37 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:37 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:37 [DEBUG] : Beginning Read +2022/02/28 11:19:37 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:37 [DEBUG] Begin Injection +2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c0100 1277 [] false false map[] 0xc00015c500 0xc0007d0000} +2022/02/28 11:19:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:19:37 [DEBUG] Exit from do method +2022/02/28 11:19:37 [DEBUG] 621c626e1d000081624fb9b2: Read finished successfully +2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:37 [DEBUG] acctest_7lxka: Beginning Read +2022/02/28 11:19:37 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:37 [DEBUG] Begin Injection +2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4580 160 [] false false map[] 0xc000830300 0xc0005da0b0} +2022/02/28 11:19:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 {"id":"621c626e1b0000b408fd0c24","name":"acctest_7lxka","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:37 [DEBUG] Exit from do method +2022/02/28 11:19:37 [DEBUG] 621c626e1b0000b408fd0c24: Read finished successfully +2022/02/28 11:19:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4a00 5563 [] false false map[] 0xc000831100 0xc0014dc000} +2022/02/28 11:19:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:38 [DEBUG] Exit from do method +2022/02/28 11:19:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:38 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read +2022/02/28 11:19:38 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 [DEBUG] Begin Injection +2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read +2022/02/28 11:19:38 id: 621c626e1b0000a308fd0c23 +2022/02/28 11:19:38 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:38 [DEBUG] Begin Injection +2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c1d40 1277 [] false false map[] 0xc000831300 0xc0007d0000} +2022/02/28 11:19:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:19:38 [DEBUG] Exit from do method +2022/02/28 11:19:38 currentvrfname acctest_7lxka +2022/02/28 11:19:38 found correct vrfname +2022/02/28 11:19:38 [DEBUG] acctest_7lxka: Read finished successfully +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:38 [DEBUG] acctest_7lxka: Beginning Read +2022/02/28 11:19:38 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:38 [DEBUG] Begin Injection +2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091d80 1362 [] false false map[] 0xc000e2f200 0xc0014dc000} +2022/02/28 11:19:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:38 [DEBUG] Exit from do method +2022/02/28 11:19:38 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:38 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:38 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 [DEBUG] Begin Injection +2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e2140 160 [] false false map[] 0xc000831700 0xc0005da0b0} +2022/02/28 11:19:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:38 [DEBUG] Exit from do method +2022/02/28 11:19:38 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully +2022/02/28 11:19:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4200 1277 [] false false map[] 0xc000e2f600 0xc0007d0000} +2022/02/28 11:19:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:19:38 [DEBUG] Exit from do method +2022/02/28 11:19:38 [DEBUG] acctest_7lxka: Read finished successfully +2022/02/28 11:19:38 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:38 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:38 [DEBUG] New state was assigned lineage "6435b94a-8daa-9e22-4dcd-3f30a99534d3" +2022/02/28 11:19:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:38 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:38 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:38 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:38 [WARN] Test: Step plan: DIFF: + +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_7lxka" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_7lxka" + schema_id: "" => "621c626e1d000081624fb9b2" + template_name: "" => "acctest_pphhx" + version: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c626e1b0000b408fd0c24 + provider = provider.mso + description = + name = acctest_7lxka + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c626e1d000081624fb9b2 + provider = provider.mso + name = acctest_pphhx + template_name = acctest_pphhx + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_7lxka + provider = provider.mso + display_name = acctest_7lxka + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_7lxka + schema_id = 621c626e1d000081624fb9b2 + template_name = acctest_pphhx + vrf_name = acctest_7lxka + vrf_schema_id = 621c626e1d000081624fb9b2 + vrf_template_name = acctest_pphhx + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_7lxka + provider = provider.mso + display_name = acctest_7lxka + layer3_multicast = false + name = acctest_7lxka + schema_id = 621c626e1d000081624fb9b2 + template = acctest_pphhx + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:19:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:19:38 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:19:38 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:19:38 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:19:38 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:19:38 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:38 [DEBUG] Begin Injection +2022/02/28 11:19:38 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4a40 1362 [] false false map[] 0xc000e2e500 0xc0014dc000} +2022/02/28 11:19:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:38 [DEBUG] Exit from do method +2022/02/28 11:19:38 currentvrfname acctest_nscpw +2022/02/28 11:19:38 found correct vrfname +2022/02/28 11:19:38 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:38 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:38 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 [DEBUG] Begin Injection +2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001c8300 0xc0007d0000} +2022/02/28 11:19:38 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:38 [DEBUG] Creation Complete +2022/02/28 11:19:38 [DEBUG] : Beginning Read +2022/02/28 11:19:38 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:38 [DEBUG] Begin Injection +2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4100 1362 [] false false map[] 0xc0001c8700 0xc0014dc000} +2022/02/28 11:19:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:38 [DEBUG] Exit from do method +2022/02/28 11:19:38 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:38 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Read +2022/02/28 11:19:38 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 [DEBUG] Begin Injection +2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae5a40 1362 [] false false map[] 0xc000495500 0xc0007d0000} +2022/02/28 11:19:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:39 [DEBUG] Exit from do method +2022/02/28 11:19:39 [DEBUG] /schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka: Read finished successfully +2022/02/28 11:19:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:39 [DEBUG] New state was assigned lineage "d25e3411-5838-8c5f-87f5-88af1e319f3a" +2022/02/28 11:19:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:39 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:39 [DEBUG] : Beginning Read +2022/02/28 11:19:39 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:39 [DEBUG] Begin Injection +2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d8040 1362 [] false false map[] 0xc00015c400 0xc0014dc000} +2022/02/28 11:19:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:39 [DEBUG] Exit from do method +2022/02/28 11:19:39 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully +2022/02/28 11:19:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:39 [DEBUG] New state was assigned lineage "17b86aa0-7399-da14-8c59-8fde34011bca" +2022/02/28 11:19:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:39 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:39 [DEBUG] Test: Executing step 5 +2022/02/28 11:19:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:39 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:39 [DEBUG] : Beginning Read +2022/02/28 11:19:39 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:39 [DEBUG] Begin Injection +2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091cc0 5563 [] false false map[] 0xc000e2e800 0xc0007d0000} +2022/02/28 11:19:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:39 [DEBUG] Exit from do method +2022/02/28 11:19:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:39 [DEBUG] 621c626e1d000081624fb9b2: Beginning Read +2022/02/28 11:19:39 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:39 [DEBUG] Begin Injection +2022/02/28 11:19:39 [DEBUG] 621c626e1b0000b408fd0c24: Beginning Read +2022/02/28 11:19:39 id: 621c626e1b0000b408fd0c24 +2022/02/28 11:19:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:39 [DEBUG] Begin Injection +2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c0440 5563 [] false false map[] 0xc00015c100 0xc0014dc000} +2022/02/28 11:19:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:39 [DEBUG] Exit from do method +2022/02/28 11:19:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:39 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:39 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read +2022/02/28 11:19:39 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:39 [DEBUG] Begin Injection +2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:39 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read +2022/02/28 11:19:39 id: 621c626e1b0000a308fd0c23 +2022/02/28 11:19:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:39 [DEBUG] Begin Injection +2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c1140 160 [] false false map[] 0xc0001c8300 0xc0007d0000} +2022/02/28 11:19:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 {"id":"621c626e1b0000b408fd0c24","name":"acctest_7lxka","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:39 [DEBUG] Exit from do method +2022/02/28 11:19:39 [DEBUG] 621c626e1b0000b408fd0c24: Read finished successfully +2022/02/28 11:19:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c1680 1362 [] false false map[] 0xc000495000 0xc0005da0b0} +2022/02/28 11:19:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:39 [DEBUG] Exit from do method +2022/02/28 11:19:39 [DEBUG] 621c626e1d000081624fb9b2: Read finished successfully +2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:39 [DEBUG] acctest_7lxka: Beginning Read +2022/02/28 11:19:39 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:39 [DEBUG] Begin Injection +2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d85c0 1362 [] false false map[] 0xc000830600 0xc0014dc000} +2022/02/28 11:19:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:40 [DEBUG] Exit from do method +2022/02/28 11:19:40 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:40 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:40 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 [DEBUG] Begin Injection +2022/02/28 11:19:40 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d89c0 160 [] false false map[] 0xc0001c8800 0xc0007d0000} +2022/02/28 11:19:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:40 [DEBUG] Exit from do method +2022/02/28 11:19:40 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully +2022/02/28 11:19:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d9280 1362 [] false false map[] 0xc000830a00 0xc0005da0b0} +2022/02/28 11:19:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:40 [DEBUG] Exit from do method +2022/02/28 11:19:40 currentvrfname acctest_7lxka +2022/02/28 11:19:40 found correct vrfname +2022/02/28 11:19:40 [DEBUG] acctest_7lxka: Read finished successfully +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:40 [DEBUG] acctest_7lxka: Beginning Read +2022/02/28 11:19:40 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:40 [DEBUG] Begin Injection +2022/02/28 11:19:40 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af6200 1362 [] false false map[] 0xc000495700 0xc0014dc000} +2022/02/28 11:19:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:40 [DEBUG] Exit from do method +2022/02/28 11:19:40 currentvrfname acctest_nscpw +2022/02/28 11:19:40 found correct vrfname +2022/02/28 11:19:40 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:40 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:40 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 [DEBUG] Begin Injection +2022/02/28 11:19:40 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af6840 1362 [] false false map[] 0xc0001c9500 0xc0005da0b0} +2022/02/28 11:19:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:40 [DEBUG] Exit from do method +2022/02/28 11:19:40 [DEBUG] acctest_7lxka: Read finished successfully +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:40 [DEBUG] /schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka: Beginning Read +2022/02/28 11:19:40 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:40 [DEBUG] Begin Injection +2022/02/28 11:19:40 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af7c80 1362 [] false false map[] 0xc00015c300 0xc0014dc000} +2022/02/28 11:19:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:40 [DEBUG] Exit from do method +2022/02/28 11:19:40 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:40 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Read +2022/02/28 11:19:40 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 [DEBUG] Begin Injection +2022/02/28 11:19:40 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00061ae80 1362 [] false false map[] 0xc001182300 0xc0005da0b0} +2022/02/28 11:19:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:40 [DEBUG] Exit from do method +2022/02/28 11:19:40 [DEBUG] /schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka: Read finished successfully +2022/02/28 11:19:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:40 [DEBUG] New state was assigned lineage "31f7cfc5-b944-3b3c-b451-d139f0724655" +2022/02/28 11:19:40 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:40 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:40 [WARN] Test: Executing destroy step +2022/02/28 11:19:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:40 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:19:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:40 [DEBUG] : Beginning Read +2022/02/28 11:19:40 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:40 [DEBUG] Begin Injection +2022/02/28 11:19:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008343c0 1362 [] false false map[] 0xc00015c700 0xc00144a370} +2022/02/28 11:19:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:40 [DEBUG] Exit from do method +2022/02/28 11:19:40 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully +2022/02/28 11:19:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:40 [DEBUG] New state was assigned lineage "580b20ec-4a4e-505c-b87a-56c0a4d0e461" +2022/02/28 11:19:40 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:40 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:40 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:40 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.test + description: "" => "" + id: "" => "" + name: "" => "acctest_3rqkz" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +UPDATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_nscpw" => "acctest_nscpw" + dhcp_option_name: "" => "acctest_3rqkz" + dhcp_option_version: "0" => "1" + id: "/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw" => "/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw" + name: "acctest_nscpw" => "acctest_nscpw" + schema_id: "621c626e1d000085624fb9b0" => "621c626e1d000085624fb9b0" + template_name: "acctest_mxqpk" => "acctest_mxqpk" + version: "0" => "1" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c626e1b0000a308fd0c23 + provider = provider.mso + description = + name = acctest_nscpw + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c626e1d000085624fb9b0 + provider = provider.mso + name = acctest_mxqpk + template_name = acctest_mxqpk + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_nscpw + provider = provider.mso + dhcp_policy.name = acctest_nscpw + dhcp_policy.version = 0 + display_name = acctest_nscpw + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_nscpw + schema_id = 621c626e1d000085624fb9b0 + template_name = acctest_mxqpk + vrf_name = acctest_nscpw + vrf_schema_id = 621c626e1d000085624fb9b0 + vrf_template_name = acctest_mxqpk + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw + provider = provider.mso + bd_name = acctest_nscpw + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_nscpw + schema_id = 621c626e1d000085624fb9b0 + template_name = acctest_mxqpk + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_nscpw + provider = provider.mso + display_name = acctest_nscpw + layer3_multicast = false + name = acctest_nscpw + schema_id = 621c626e1d000085624fb9b0 + template = acctest_mxqpk + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:19:40 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:19:40 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:19:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_option_policy.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:40 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:19:40 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change +2022/02/28 11:19:40 [DEBUG] : Beginning Create +2022/02/28 11:19:40 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 11:19:40 [DEBUG] Begin Injection +2022/02/28 11:19:40 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 11:19:40 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_3rqkz","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x1107ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:19:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000834340 5563 [] false false map[] 0xc000e2e400 0xc0005da0b0} +2022/02/28 11:19:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:41 [DEBUG] Exit from do method +2022/02/28 11:19:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:41 [DEBUG] 621c626e1d000081624fb9b2: Beginning Read +2022/02/28 11:19:41 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:41 [DEBUG] Begin Injection +2022/02/28 11:19:41 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:41 [DEBUG] 621c626e1b0000b408fd0c24: Beginning Read +2022/02/28 11:19:41 id: 621c626e1b0000b408fd0c24 +2022/02/28 11:19:41 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:41 [DEBUG] Begin Injection +2022/02/28 11:19:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:41 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:19:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706200 161 [] false false map[] 0xc000861b00 0xc00144a370} +2022/02/28 11:19:41 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c62751b0000b208fd0c25","name":"acctest_3rqkz","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:41 [DEBUG] Exit from do method +2022/02/28 11:19:41 [DEBUG] 621c62751b0000b208fd0c25: Creation finished successfully +2022/02/28 11:19:41 [DEBUG] 621c62751b0000b208fd0c25: Beginning Read +2022/02/28 11:19:41 id: 621c62751b0000b208fd0c25 +2022/02/28 11:19:41 HTTP request GET mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:41 [DEBUG] Begin Injection +2022/02/28 11:19:41 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007062c0 160 [] false false map[] 0xc000cc6100 0xc0007d0000} +2022/02/28 11:19:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 {"id":"621c626e1b0000b408fd0c24","name":"acctest_7lxka","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:41 [DEBUG] Exit from do method +2022/02/28 11:19:41 [DEBUG] 621c626e1b0000b408fd0c24: Read finished successfully +2022/02/28 11:19:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706740 1362 [] false false map[] 0xc000e2ef00 0xc0005da0b0} +2022/02/28 11:19:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:41 [DEBUG] Exit from do method +2022/02/28 11:19:41 [DEBUG] 621c626e1d000081624fb9b2: Read finished successfully +2022/02/28 11:19:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:41 [DEBUG] acctest_7lxka: Beginning Read +2022/02/28 11:19:41 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:41 [DEBUG] Begin Injection +2022/02/28 11:19:41 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007079c0 161 [] false false map[] 0xc0001c8300 0xc00144a370} +2022/02/28 11:19:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 {"id":"621c62751b0000b208fd0c25","name":"acctest_3rqkz","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:41 [DEBUG] Exit from do method +2022/02/28 11:19:41 [DEBUG] 621c62751b0000b208fd0c25: Read finished successfully +2022/02/28 11:19:41 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change +2022/02/28 11:19:41 [DEBUG] Template BD: Beginning Update +2022/02/28 11:19:41 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:41 [DEBUG] Begin Injection +2022/02/28 11:19:41 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4180 1362 [] false false map[] 0xc0014c6a00 0xc0005da0b0} +2022/02/28 11:19:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:41 [DEBUG] Exit from do method +2022/02/28 11:19:41 currentvrfname acctest_7lxka +2022/02/28 11:19:41 found correct vrfname +2022/02/28 11:19:41 [DEBUG] acctest_7lxka: Read finished successfully +2022/02/28 11:19:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:41 [DEBUG] acctest_7lxka: Beginning Read +2022/02/28 11:19:41 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:41 [DEBUG] Begin Injection +2022/02/28 11:19:41 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:41 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001c8c00 0xc00144a370} +2022/02/28 11:19:41 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:41 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Read +2022/02/28 11:19:41 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:41 [DEBUG] Begin Injection +2022/02/28 11:19:41 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000caa140 1362 [] false false map[] 0xc000e2e400 0xc0005da0b0} +2022/02/28 11:19:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:42 [DEBUG] Exit from do method +2022/02/28 11:19:42 [DEBUG] acctest_7lxka: Read finished successfully +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:42 [DEBUG] /schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka: Beginning Read +2022/02/28 11:19:42 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:42 [DEBUG] Begin Injection +2022/02/28 11:19:42 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005afc80 1472 [] false false map[] 0xc000e2e500 0xc00144a370} +2022/02/28 11:19:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:19:42 [DEBUG] Exit from do method +2022/02/28 11:19:42 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully +2022/02/28 11:19:42 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:42 [DEBUG] New state was assigned lineage "d614f920-8833-956d-f8df-0a49f2ea29ac" +2022/02/28 11:19:42 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:42 [DEBUG] Begin Injection +2022/02/28 11:19:42 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4800 1362 [] false false map[] 0xc0001c8600 0xc0005da0b0} +2022/02/28 11:19:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:19:42 [DEBUG] Exit from do method +2022/02/28 11:19:42 [DEBUG] /schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka: Read finished successfully +2022/02/28 11:19:42 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:42 [DEBUG] New state was assigned lineage "65ef0d82-16f6-ebfd-7f9b-0c7a8ae30f03" +2022/02/28 11:19:42 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:19:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:19:42 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:19:42 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c626e1b0000b408fd0c24" => "" + name: "acctest_7lxka" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c626e1d000081624fb9b2" => "" + name: "acctest_pphhx" => "" + template_name: "acctest_pphhx" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_7lxka" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_7lxka" => "" + id: "acctest_7lxka" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_7lxka" => "" + schema_id: "621c626e1d000081624fb9b2" => "" + template_name: "acctest_pphhx" => "" + vrf_name: "acctest_7lxka" => "" + vrf_schema_id: "621c626e1d000081624fb9b2" => "" + vrf_template_name: "acctest_pphhx" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_7lxka" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka" => "" + name: "acctest_7lxka" => "" + schema_id: "621c626e1d000081624fb9b2" => "" + template_name: "acctest_pphhx" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_7lxka" => "" + id: "acctest_7lxka" => "" + layer3_multicast: "false" => "" + name: "acctest_7lxka" => "" + schema_id: "621c626e1d000081624fb9b2" => "" + template: "acctest_pphhx" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c626e1b0000b408fd0c24 + provider = provider.mso + description = + name = acctest_7lxka + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c626e1d000081624fb9b2 + provider = provider.mso + name = acctest_pphhx + template_name = acctest_pphhx + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_7lxka + provider = provider.mso + dhcp_policy.name = acctest_7lxka + dhcp_policy.version = 0 + display_name = acctest_7lxka + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_7lxka + schema_id = 621c626e1d000081624fb9b2 + template_name = acctest_pphhx + vrf_name = acctest_7lxka + vrf_schema_id = 621c626e1d000081624fb9b2 + vrf_template_name = acctest_pphhx + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka + provider = provider.mso + bd_name = acctest_7lxka + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_7lxka + schema_id = 621c626e1d000081624fb9b2 + template_name = acctest_pphhx + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_7lxka + provider = provider.mso + display_name = acctest_7lxka + layer3_multicast = false + name = acctest_7lxka + schema_id = 621c626e1d000081624fb9b2 + template = acctest_pphhx + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:19:42 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:19:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:19:42 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:19:42 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:19:42 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:19:42 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:19:42 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:19:42 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:19:42 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:19:42 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:19:42 [DEBUG] Template BD: Beginning Update +2022/02/28 11:19:42 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:42 [DEBUG] Begin Injection +2022/02/28 11:19:42 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ae980 1472 [] false false map[] 0xc0001c8900 0xc00144a370} +2022/02/28 11:19:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:19:42 [DEBUG] Exit from do method +2022/02/28 11:19:42 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:42 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:42 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:42 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:42 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:42 [DEBUG] : Beginning Read +2022/02/28 11:19:42 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:42 [DEBUG] Begin Injection +2022/02/28 11:19:42 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000860000 0xc0005da0b0} +2022/02/28 11:19:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:42 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:19:42 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:19:42 [DEBUG] 621c626e1b0000b408fd0c24: Beginning Read +2022/02/28 11:19:42 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:42 [DEBUG] Begin Injection +2022/02/28 11:19:42 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:42 [DEBUG] Template BD: Beginning Update +2022/02/28 11:19:42 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:42 [DEBUG] Begin Injection +2022/02/28 11:19:42 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706580 5563 [] false false map[] 0xc0012d8f00 0xc00144a370} +2022/02/28 11:19:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:43 [DEBUG] Exit from do method +2022/02/28 11:19:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:19:43 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read +2022/02/28 11:19:43 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:43 [DEBUG] Begin Injection +2022/02/28 11:19:43 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:43 [DEBUG] 621c62751b0000b208fd0c25: Beginning Read +2022/02/28 11:19:43 id: 621c62751b0000b208fd0c25 +2022/02/28 11:19:43 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read +2022/02/28 11:19:43 id: 621c626e1b0000a308fd0c23 +2022/02/28 11:19:43 HTTP request GET mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:43 [DEBUG] Begin Injection +2022/02/28 11:19:43 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:43 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:43 [DEBUG] Begin Injection +2022/02/28 11:19:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:43 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001a48300 0xc0007d0000} +2022/02/28 11:19:43 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:43 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:19:43 [DEBUG] acctest_7lxka: Beginning Destroy +2022/02/28 11:19:43 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:43 [DEBUG] Begin Injection +2022/02/28 11:19:43 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:43 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0012d9500 0xc0005da0b0} +2022/02/28 11:19:43 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 +2022/02/28 11:19:43 [DEBUG] : Read finished successfully +2022/02/28 11:19:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4e40 1472 [] false false map[] 0xc000860500 0xc00144a370} +2022/02/28 11:19:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:19:43 [DEBUG] Exit from do method +2022/02/28 11:19:43 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully +2022/02/28 11:19:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:43 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:43 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:43 [DEBUG] Begin Injection +2022/02/28 11:19:43 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af6680 161 [] false false map[] 0xc0012d9d00 0xc0007d0000} +2022/02/28 11:19:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 {"id":"621c62751b0000b208fd0c25","name":"acctest_3rqkz","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:43 [DEBUG] Exit from do method +2022/02/28 11:19:43 [DEBUG] 621c62751b0000b208fd0c25: Read finished successfully +2022/02/28 11:19:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae5a80 160 [] false false map[] 0xc0001c8200 0xc0005da0b0} +2022/02/28 11:19:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:43 [DEBUG] Exit from do method +2022/02/28 11:19:43 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully +2022/02/28 11:19:43 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000860e00 0xc00144a370} +2022/02/28 11:19:43 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false +2022/02/28 11:19:43 [DEBUG] acctest_7lxka: Destroy finished successfully +2022/02/28 11:19:43 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:19:43 [DEBUG] 621c626e1d000081624fb9b2: Beginning Destroy +2022/02/28 11:19:43 HTTP request DELETE mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:43 [DEBUG] Begin Injection +2022/02/28 11:19:43 HTTP request after injection DELETE mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af7280 1472 [] false false map[] 0xc001a48900 0xc0007d0000} +2022/02/28 11:19:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:19:43 [DEBUG] Exit from do method +2022/02/28 11:19:43 currentvrfname acctest_nscpw +2022/02/28 11:19:43 found correct vrfname +2022/02/28 11:19:43 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:43 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:43 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:43 [DEBUG] Begin Injection +2022/02/28 11:19:43 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:44 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000494800 0xc00144a370} +2022/02/28 11:19:44 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:44 [DEBUG] 621c626e1d000081624fb9b2: Destroy finished successfully +2022/02/28 11:19:44 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:44 [DEBUG] New state was assigned lineage "a4985528-4219-daa4-a721-3b53fa4e7f68" +2022/02/28 11:19:44 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:44 [DEBUG] Begin Injection +2022/02/28 11:19:44 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00061a6c0 1472 [] false false map[] 0xc000860400 0xc0007d0000} +2022/02/28 11:19:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:19:44 [DEBUG] Exit from do method +2022/02/28 11:19:44 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:44 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Read +2022/02/28 11:19:44 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:44 [DEBUG] Begin Injection +2022/02/28 11:19:44 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 +2022/02/28 11:19:44 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:44 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706c80 39 [] false false map[] 0xc0001c8300 0xc0005c8bb0} +2022/02/28 11:19:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"code":404,"message":"Item not found"} +2022/02/28 11:19:44 [DEBUG] Exit from do method +2022/02/28 11:19:44 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:19:44 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:19:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:44 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:44 [DEBUG] : Beginning Read +2022/02/28 11:19:44 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:44 [DEBUG] Begin Injection +2022/02/28 11:19:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004df00 1472 [] false false map[] 0xc000861000 0xc0007d0000} +2022/02/28 11:19:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:19:44 [DEBUG] Exit from do method +2022/02/28 11:19:44 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully +2022/02/28 11:19:44 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:44 [DEBUG] New state was assigned lineage "be04b6a3-bb19-5914-23de-d37617f67229" +2022/02/28 11:19:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:44 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:44 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:44 [DEBUG] Test: Executing step 6 +2022/02/28 11:19:44 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw\")" references: [] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:44 [DEBUG] Starting graph walk: walkImport +2022/02/28 11:19:44 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Import +2022/02/28 11:19:44 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:44 [DEBUG] Begin Injection +2022/02/28 11:19:44 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c0080 5563 [] false false map[] 0xc000494200 0xc0014dc160} +2022/02/28 11:19:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:44 [DEBUG] Exit from do method +2022/02/28 11:19:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:44 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:44 [DEBUG] New state was assigned lineage "9d1e9816-ecac-e6b0-622a-4b48e14a2fbc" +2022/02/28 11:19:44 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:19:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:44 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:19:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d8340 1472 [] false false map[] 0xc000495700 0xc0007d0000} +2022/02/28 11:19:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:19:44 [DEBUG] Exit from do method +2022/02/28 11:19:44 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Import finished successfully +2022/02/28 11:19:44 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Read +2022/02/28 11:19:44 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:44 [DEBUG] Begin Injection +2022/02/28 11:19:44 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004db40 1472 [] false false map[] 0xc000494500 0xc0014dc160} +2022/02/28 11:19:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:19:45 [DEBUG] Exit from do method +2022/02/28 11:19:45 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully +2022/02/28 11:19:45 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:45 [DEBUG] New state was assigned lineage "ad8328c1-7dd1-6d96-52af-f7d1b67b735a" +2022/02/28 11:19:45 [DEBUG] Test: Executing step 7 +2022/02/28 11:19:45 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:45 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:45 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:45 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config +2022/02/28 11:19:45 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config +2022/02/28 11:19:45 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:45 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:45 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:45 [DEBUG] : Beginning Read +2022/02/28 11:19:45 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:45 [DEBUG] Begin Injection +2022/02/28 11:19:45 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c00c0 5563 [] false false map[] 0xc001300200 0xc0014dc160} +2022/02/28 11:19:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:45 [DEBUG] Exit from do method +2022/02/28 11:19:45 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:45 [DEBUG] 621c62751b0000b208fd0c25: Beginning Read +2022/02/28 11:19:45 id: 621c62751b0000b208fd0c25 +2022/02/28 11:19:45 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read +2022/02/28 11:19:45 id: 621c626e1b0000a308fd0c23 +2022/02/28 11:19:45 HTTP request GET mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:45 [DEBUG] Begin Injection +2022/02/28 11:19:45 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:45 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:45 [DEBUG] Begin Injection +2022/02/28 11:19:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:45 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read +2022/02/28 11:19:45 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:45 [DEBUG] Begin Injection +2022/02/28 11:19:45 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001b4380 161 [] false false map[] 0xc0015ce100 0xc0014dc160} +2022/02/28 11:19:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 {"id":"621c62751b0000b208fd0c25","name":"acctest_3rqkz","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:45 [DEBUG] Exit from do method +2022/02/28 11:19:45 [DEBUG] 621c62751b0000b208fd0c25: Read finished successfully +2022/02/28 11:19:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000707300 160 [] false false map[] 0xc000914200 0xc0005da0b0} +2022/02/28 11:19:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:45 [DEBUG] Exit from do method +2022/02/28 11:19:45 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully +2022/02/28 11:19:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007078c0 1472 [] false false map[] 0xc000914400 0xc0014dc160} +2022/02/28 11:19:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:19:46 [DEBUG] Exit from do method +2022/02/28 11:19:46 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully +2022/02/28 11:19:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:46 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:46 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:46 [DEBUG] Begin Injection +2022/02/28 11:19:46 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706040 1472 [] false false map[] 0xc0001c8800 0xc0014dc160} +2022/02/28 11:19:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:19:46 [DEBUG] Exit from do method +2022/02/28 11:19:46 currentvrfname acctest_nscpw +2022/02/28 11:19:46 found correct vrfname +2022/02/28 11:19:46 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:46 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:46 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:46 [DEBUG] Begin Injection +2022/02/28 11:19:46 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706180 1472 [] false false map[] 0xc000494500 0xc000395550} +2022/02/28 11:19:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:19:46 [DEBUG] Exit from do method +2022/02/28 11:19:46 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:46 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Read +2022/02/28 11:19:46 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:46 [DEBUG] Begin Injection +2022/02/28 11:19:46 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706d80 1472 [] false false map[] 0xc001300500 0xc000395550} +2022/02/28 11:19:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:19:47 [DEBUG] Exit from do method +2022/02/28 11:19:47 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully +2022/02/28 11:19:47 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:47 [DEBUG] New state was assigned lineage "1d6ac587-7798-af68-9515-c6db677e5793" +2022/02/28 11:19:47 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:47 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:47 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:47 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.test + description: "" => "" + id: "621c62751b0000b208fd0c25" => "" + name: "acctest_3rqkz" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_nscpw" => "" + dhcp_option_name: "acctest_3rqkz" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw" => "" + name: "acctest_nscpw" => "" + schema_id: "621c626e1d000085624fb9b0" => "" + template_name: "acctest_mxqpk" => "" + version: "1" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.test: + ID = 621c62751b0000b208fd0c25 + provider = provider.mso + description = + name = acctest_3rqkz + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c626e1b0000a308fd0c23 + provider = provider.mso + description = + name = acctest_nscpw + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c626e1d000085624fb9b0 + provider = provider.mso + name = acctest_mxqpk + template_name = acctest_mxqpk + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_nscpw + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_3rqkz + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_nscpw + dhcp_policy.version = 1 + display_name = acctest_nscpw + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_nscpw + schema_id = 621c626e1d000085624fb9b0 + template_name = acctest_mxqpk + vrf_name = acctest_nscpw + vrf_schema_id = 621c626e1d000085624fb9b0 + vrf_template_name = acctest_mxqpk + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw + provider = provider.mso + bd_name = acctest_nscpw + dhcp_option_name = acctest_3rqkz + dhcp_option_version = 1 + name = acctest_nscpw + schema_id = 621c626e1d000085624fb9b0 + template_name = acctest_mxqpk + version = 1 + + Dependencies: + mso_dhcp_option_policy.test + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_nscpw + provider = provider.mso + display_name = acctest_nscpw + layer3_multicast = false + name = acctest_nscpw + schema_id = 621c626e1d000085624fb9b0 + template = acctest_mxqpk + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:19:47 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:19:47 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:19:47 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:19:47 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:19:47 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:19:47 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:19:47 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:19:47 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:19:47 [DEBUG] Template BD: Beginning Update +2022/02/28 11:19:47 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:47 [DEBUG] Begin Injection +2022/02/28 11:19:47 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:47 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0009b6200 0xc000395550} +2022/02/28 11:19:47 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:47 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change +2022/02/28 11:19:47 [DEBUG] 621c62751b0000b208fd0c25: Beginning Read +2022/02/28 11:19:47 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:47 [DEBUG] Begin Injection +2022/02/28 11:19:47 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:47 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0013a7f00 0xc000395550} +2022/02/28 11:19:47 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 +2022/02/28 11:19:47 [DEBUG] : Read finished successfully +2022/02/28 11:19:47 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:47 [DEBUG] New state was assigned lineage "5ce084be-56b6-457e-c54d-844170c3b986" +2022/02/28 11:19:47 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:47 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:47 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:47 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:47 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:47 [DEBUG] : Beginning Read +2022/02/28 11:19:47 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:47 [DEBUG] Begin Injection +2022/02/28 11:19:47 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00061a580 5563 [] false false map[] 0xc000495300 0xc000395550} +2022/02/28 11:19:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:48 [DEBUG] Exit from do method +2022/02/28 11:19:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:48 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read +2022/02/28 11:19:48 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:48 [DEBUG] Begin Injection +2022/02/28 11:19:48 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read +2022/02/28 11:19:48 id: 621c626e1b0000a308fd0c23 +2022/02/28 11:19:48 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:48 [DEBUG] Begin Injection +2022/02/28 11:19:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:48 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c00c0 160 [] false false map[] 0xc000495a00 0xc000395550} +2022/02/28 11:19:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:48 [DEBUG] Exit from do method +2022/02/28 11:19:48 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully +2022/02/28 11:19:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ae180 1277 [] false false map[] 0xc0001c8400 0xc0005da0b0} +2022/02/28 11:19:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:19:48 [DEBUG] Exit from do method +2022/02/28 11:19:48 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully +2022/02/28 11:19:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:48 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:48 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:48 [DEBUG] Begin Injection +2022/02/28 11:19:48 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005af140 1277 [] false false map[] 0xc0001c8900 0xc0005da0b0} +2022/02/28 11:19:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:19:48 [DEBUG] Exit from do method +2022/02/28 11:19:48 currentvrfname acctest_nscpw +2022/02/28 11:19:48 found correct vrfname +2022/02/28 11:19:48 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:48 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:48 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:48 [DEBUG] Begin Injection +2022/02/28 11:19:48 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4840 1277 [] false false map[] 0xc0003dc700 0xc0005da0b0} +2022/02/28 11:19:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:19:49 [DEBUG] Exit from do method +2022/02/28 11:19:49 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:49 [DEBUG] New state was assigned lineage "af053317-44ac-1eeb-c15d-efa9cba08296" +2022/02/28 11:19:49 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:49 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:49 [DEBUG] Test: Executing step 8 +2022/02/28 11:19:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:49 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:49 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:49 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:49 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:49 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:49 [DEBUG] : Beginning Read +2022/02/28 11:19:49 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:49 [DEBUG] Begin Injection +2022/02/28 11:19:49 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4800 5563 [] false false map[] 0xc000494300 0xc0005da0b0} +2022/02/28 11:19:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:49 [DEBUG] Exit from do method +2022/02/28 11:19:49 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:49 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read +2022/02/28 11:19:49 id: 621c626e1b0000a308fd0c23 +2022/02/28 11:19:49 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:49 [DEBUG] Begin Injection +2022/02/28 11:19:49 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:49 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read +2022/02/28 11:19:49 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:49 [DEBUG] Begin Injection +2022/02/28 11:19:49 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00061a580 160 [] false false map[] 0xc000494600 0xc0005da0b0} +2022/02/28 11:19:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:49 [DEBUG] Exit from do method +2022/02/28 11:19:49 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully +2022/02/28 11:19:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005af880 1277 [] false false map[] 0xc0001c8600 0xc000395550} +2022/02/28 11:19:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:19:49 [DEBUG] Exit from do method +2022/02/28 11:19:49 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully +2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:49 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:49 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:49 [DEBUG] Begin Injection +2022/02/28 11:19:49 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af6140 1277 [] false false map[] 0xc000494900 0xc000395550} +2022/02/28 11:19:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:19:50 [DEBUG] Exit from do method +2022/02/28 11:19:50 currentvrfname acctest_nscpw +2022/02/28 11:19:50 found correct vrfname +2022/02/28 11:19:50 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:50 [DEBUG] acctest_nscpw: Beginning Read +2022/02/28 11:19:50 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:50 [DEBUG] Begin Injection +2022/02/28 11:19:50 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af67c0 1277 [] false false map[] 0xc0001c8500 0xc000395550} +2022/02/28 11:19:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:19:50 [DEBUG] Exit from do method +2022/02/28 11:19:50 [DEBUG] acctest_nscpw: Read finished successfully +2022/02/28 11:19:50 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:50 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:50 [DEBUG] New state was assigned lineage "d7b00c3a-b956-1860-f821-6d4cf2a48f78" +2022/02/28 11:19:50 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:50 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:50 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:50 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:50 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c626e1b0000a308fd0c23" => "" + name: "acctest_nscpw" => "acctest_sl4ce" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "acctest_nscpw" => "acctest_sl4ce" (forces new resource) + id: "acctest_nscpw" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_nscpw" => "acctest_sl4ce" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c626e1d000085624fb9b0" => "621c626e1d000085624fb9b0" + template_name: "acctest_mxqpk" => "acctest_mxqpk" + vrf_name: "acctest_nscpw" => "acctest_sl4ce" + vrf_schema_id: "621c626e1d000085624fb9b0" => "" + vrf_template_name: "acctest_mxqpk" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_sl4ce" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_sl4ce" + schema_id: "" => "621c626e1d000085624fb9b0" + template_name: "" => "acctest_mxqpk" + version: "" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_nscpw" => "acctest_sl4ce" + id: "acctest_nscpw" => "" + layer3_multicast: "false" => "" + name: "acctest_nscpw" => "acctest_sl4ce" (forces new resource) + schema_id: "621c626e1d000085624fb9b0" => "621c626e1d000085624fb9b0" + template: "acctest_mxqpk" => "acctest_mxqpk" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c626e1b0000a308fd0c23 + provider = provider.mso + description = + name = acctest_nscpw + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c626e1d000085624fb9b0 + provider = provider.mso + name = acctest_mxqpk + template_name = acctest_mxqpk + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_nscpw + provider = provider.mso + display_name = acctest_nscpw + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_nscpw + schema_id = 621c626e1d000085624fb9b0 + template_name = acctest_mxqpk + vrf_name = acctest_nscpw + vrf_schema_id = 621c626e1d000085624fb9b0 + vrf_template_name = acctest_mxqpk + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_nscpw + provider = provider.mso + display_name = acctest_nscpw + layer3_multicast = false + name = acctest_nscpw + schema_id = 621c626e1d000085624fb9b0 + template = acctest_mxqpk + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:19:50 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:19:50 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:19:50 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:19:50 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:19:50 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:19:50 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read +2022/02/28 11:19:50 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:50 [DEBUG] Begin Injection +2022/02/28 11:19:50 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:50 [DEBUG] Template BD: Beginning Update +2022/02/28 11:19:50 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:50 [DEBUG] Begin Injection +2022/02/28 11:19:50 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:50 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000828800 0xc000395550} +2022/02/28 11:19:50 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 +2022/02/28 11:19:50 [DEBUG] : Read finished successfully +2022/02/28 11:19:50 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:19:50 [DEBUG] : Beginning Create +2022/02/28 11:19:50 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:19:50 [DEBUG] Begin Injection +2022/02/28 11:19:50 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:19:50 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_sl4ce","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x1107ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 11:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:19:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000724300 0xc0005da0b0} +2022/02/28 11:19:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:50 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:19:50 [DEBUG] acctest_nscpw: Beginning Destroy +2022/02/28 11:19:50 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:50 [DEBUG] Begin Injection +2022/02/28 11:19:50 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:51 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000724800 0xc0005da0b0} +2022/02/28 11:19:51 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:51 [DEBUG] acctest_nscpw: Destroy finished successfully +2022/02/28 11:19:51 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:19:51 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:19:51 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:51 [DEBUG] Begin Injection +2022/02/28 11:19:51 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:51 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:19:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d9f00 160 [] false false map[] 0xc000828500 0xc000395550} +2022/02/28 11:19:51 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c627f1b0000aa08fd0c26","name":"acctest_sl4ce","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:51 [DEBUG] Exit from do method +2022/02/28 11:19:51 [DEBUG] 621c627f1b0000aa08fd0c26: Creation finished successfully +2022/02/28 11:19:51 [DEBUG] 621c627f1b0000aa08fd0c26: Beginning Read +2022/02/28 11:19:51 id: 621c627f1b0000aa08fd0c26 +2022/02/28 11:19:51 HTTP request GET mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:51 [DEBUG] Begin Injection +2022/02/28 11:19:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:51 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001c9300 0xc0005da0b0} +2022/02/28 11:19:51 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:51 [DEBUG] acctest_sl4ce: Creation finished successfully +2022/02/28 11:19:51 [DEBUG] acctest_sl4ce: Beginning Read +2022/02/28 11:19:51 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:51 [DEBUG] Begin Injection +2022/02/28 11:19:51 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c0dc0 160 [] false false map[] 0xc0001c9500 0xc000395550} +2022/02/28 11:19:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 {"id":"621c627f1b0000aa08fd0c26","name":"acctest_sl4ce","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:51 [DEBUG] Exit from do method +2022/02/28 11:19:51 [DEBUG] 621c627f1b0000aa08fd0c26: Read finished successfully +2022/02/28 11:19:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4400 768 [] false false map[] 0xc000724a00 0xc0005da0b0} +2022/02/28 11:19:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 11:19:51 [DEBUG] Exit from do method +2022/02/28 11:19:51 currentvrfname acctest_sl4ce +2022/02/28 11:19:51 found correct vrfname +2022/02/28 11:19:51 [DEBUG] acctest_sl4ce: Read finished successfully +2022/02/28 11:19:51 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:19:51 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:19:51 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:19:51 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:51 [DEBUG] Begin Injection +2022/02/28 11:19:51 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:52 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000725000 0xc0005da0b0} +2022/02/28 11:19:52 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:52 [DEBUG] : Beginning Read +2022/02/28 11:19:52 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:52 [DEBUG] Begin Injection +2022/02/28 11:19:52 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000caa0c0 1278 [] false false map[] 0xc0007ac000 0xc0005da0b0} +2022/02/28 11:19:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 11:19:52 [DEBUG] Exit from do method +2022/02/28 11:19:52 [DEBUG] acctest_sl4ce: Read finished successfully +2022/02/28 11:19:52 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:19:52 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:19:52 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:52 [DEBUG] Begin Injection +2022/02/28 11:19:52 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:52 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001c8600 0xc0005da0b0} +2022/02/28 11:19:52 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:52 [DEBUG] Creation Complete +2022/02/28 11:19:52 [DEBUG] : Beginning Read +2022/02/28 11:19:52 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:52 [DEBUG] Begin Injection +2022/02/28 11:19:52 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d8700 1363 [] false false map[] 0xc0007ac100 0xc0005da0b0} +2022/02/28 11:19:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:19:53 [DEBUG] Exit from do method +2022/02/28 11:19:53 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce: Read finished successfully +2022/02/28 11:19:53 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:53 [DEBUG] New state was assigned lineage "27fc70ff-f174-6b6a-f908-2cf05d5fa4ea" +2022/02/28 11:19:53 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:53 [DEBUG] Begin Injection +2022/02/28 11:19:53 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d8f40 1363 [] false false map[] 0xc000724400 0xc0005da0b0} +2022/02/28 11:19:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:19:53 [DEBUG] Exit from do method +2022/02/28 11:19:53 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:53 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:53 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:53 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:53 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:53 [DEBUG] : Beginning Read +2022/02/28 11:19:53 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:53 [DEBUG] Begin Injection +2022/02/28 11:19:53 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000caa9c0 5563 [] false false map[] 0xc000920700 0xc0005da0b0} +2022/02/28 11:19:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:53 [DEBUG] Exit from do method +2022/02/28 11:19:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:53 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read +2022/02/28 11:19:53 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:53 [DEBUG] Begin Injection +2022/02/28 11:19:53 [DEBUG] 621c627f1b0000aa08fd0c26: Beginning Read +2022/02/28 11:19:53 id: 621c627f1b0000aa08fd0c26 +2022/02/28 11:19:53 HTTP request GET mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:53 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:53 [DEBUG] Begin Injection +2022/02/28 11:19:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c0080 160 [] false false map[] 0xc000494a00 0xc000395550} +2022/02/28 11:19:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 {"id":"621c627f1b0000aa08fd0c26","name":"acctest_sl4ce","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:54 [DEBUG] Exit from do method +2022/02/28 11:19:54 [DEBUG] 621c627f1b0000aa08fd0c26: Read finished successfully +2022/02/28 11:19:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000834140 1363 [] false false map[] 0xc000a1c600 0xc0005da0b0} +2022/02/28 11:19:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:19:54 [DEBUG] Exit from do method +2022/02/28 11:19:54 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully +2022/02/28 11:19:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:54 [DEBUG] acctest_sl4ce: Beginning Read +2022/02/28 11:19:54 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:54 [DEBUG] Begin Injection +2022/02/28 11:19:54 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000caa280 1363 [] false false map[] 0xc000a1c300 0xc0005da0b0} +2022/02/28 11:19:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:19:54 [DEBUG] Exit from do method +2022/02/28 11:19:54 currentvrfname acctest_sl4ce +2022/02/28 11:19:54 found correct vrfname +2022/02/28 11:19:54 [DEBUG] acctest_sl4ce: Read finished successfully +2022/02/28 11:19:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:54 [DEBUG] acctest_sl4ce: Beginning Read +2022/02/28 11:19:54 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:54 [DEBUG] Begin Injection +2022/02/28 11:19:54 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c0d00 1363 [] false false map[] 0xc000494600 0xc0005da0b0} +2022/02/28 11:19:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:19:54 [DEBUG] Exit from do method +2022/02/28 11:19:54 [DEBUG] acctest_sl4ce: Read finished successfully +2022/02/28 11:19:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:54 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce: Beginning Read +2022/02/28 11:19:54 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:54 [DEBUG] Begin Injection +2022/02/28 11:19:54 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c13c0 1363 [] false false map[] 0xc000494b00 0xc0005da0b0} +2022/02/28 11:19:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:19:55 [DEBUG] Exit from do method +2022/02/28 11:19:55 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce: Read finished successfully +2022/02/28 11:19:55 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:55 [DEBUG] New state was assigned lineage "034e1c12-b4d5-3c51-39c2-61594b9397ca" +2022/02/28 11:19:55 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:19:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:19:55 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:55 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:55 [WARN] Test: Executing destroy step +2022/02/28 11:19:55 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:55 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:19:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:55 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:19:55 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:55 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:19:55 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:55 [DEBUG] : Beginning Read +2022/02/28 11:19:55 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:55 [DEBUG] Begin Injection +2022/02/28 11:19:55 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d9e40 5563 [] false false map[] 0xc0013d9200 0xc0005da0b0} +2022/02/28 11:19:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:55 [DEBUG] Exit from do method +2022/02/28 11:19:55 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:19:55 [DEBUG] 621c627f1b0000aa08fd0c26: Beginning Read +2022/02/28 11:19:55 id: 621c627f1b0000aa08fd0c26 +2022/02/28 11:19:55 HTTP request GET mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:55 [DEBUG] Begin Injection +2022/02/28 11:19:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:55 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read +2022/02/28 11:19:55 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:55 [DEBUG] Begin Injection +2022/02/28 11:19:55 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001b42c0 1363 [] false false map[] 0xc000494d00 0xc000395550} +2022/02/28 11:19:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:19:55 [DEBUG] Exit from do method +2022/02/28 11:19:55 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully +2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:19:55 [DEBUG] acctest_sl4ce: Beginning Read +2022/02/28 11:19:55 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:55 [DEBUG] Begin Injection +2022/02/28 11:19:55 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001b4980 160 [] false false map[] 0xc0001c9700 0xc0005da0b0} +2022/02/28 11:19:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 {"id":"621c627f1b0000aa08fd0c26","name":"acctest_sl4ce","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:19:55 [DEBUG] Exit from do method +2022/02/28 11:19:55 [DEBUG] 621c627f1b0000aa08fd0c26: Read finished successfully +2022/02/28 11:19:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c1200 1363 [] false false map[] 0xc000494500 0xc000395550} +2022/02/28 11:19:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:19:56 [DEBUG] Exit from do method +2022/02/28 11:19:56 currentvrfname acctest_sl4ce +2022/02/28 11:19:56 found correct vrfname +2022/02/28 11:19:56 [DEBUG] acctest_sl4ce: Read finished successfully +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:19:56 [DEBUG] acctest_sl4ce: Beginning Read +2022/02/28 11:19:56 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:56 [DEBUG] Begin Injection +2022/02/28 11:19:56 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00175adc0 1363 [] false false map[] 0xc000494a00 0xc000395550} +2022/02/28 11:19:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:19:56 [DEBUG] Exit from do method +2022/02/28 11:19:56 [DEBUG] acctest_sl4ce: Read finished successfully +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:19:56 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce: Beginning Read +2022/02/28 11:19:56 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:56 [DEBUG] Begin Injection +2022/02/28 11:19:56 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007063c0 1363 [] false false map[] 0xc000495100 0xc000395550} +2022/02/28 11:19:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:19:56 [DEBUG] Exit from do method +2022/02/28 11:19:56 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce: Read finished successfully +2022/02/28 11:19:56 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:56 [DEBUG] New state was assigned lineage "24a40166-c874-c33e-0e3f-a5a65aa3acea" +2022/02/28 11:19:56 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:19:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:56 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:19:56 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c627f1b0000aa08fd0c26" => "" + name: "acctest_sl4ce" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c626e1d000085624fb9b0" => "" + name: "acctest_mxqpk" => "" + template_name: "acctest_mxqpk" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_sl4ce" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_sl4ce" => "" + id: "acctest_sl4ce" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_sl4ce" => "" + schema_id: "621c626e1d000085624fb9b0" => "" + template_name: "acctest_mxqpk" => "" + vrf_name: "acctest_sl4ce" => "" + vrf_schema_id: "621c626e1d000085624fb9b0" => "" + vrf_template_name: "acctest_mxqpk" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_sl4ce" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce" => "" + name: "acctest_sl4ce" => "" + schema_id: "621c626e1d000085624fb9b0" => "" + template_name: "acctest_mxqpk" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_sl4ce" => "" + id: "acctest_sl4ce" => "" + layer3_multicast: "false" => "" + name: "acctest_sl4ce" => "" + schema_id: "621c626e1d000085624fb9b0" => "" + template: "acctest_mxqpk" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c627f1b0000aa08fd0c26 + provider = provider.mso + description = + name = acctest_sl4ce + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c626e1d000085624fb9b0 + provider = provider.mso + name = acctest_mxqpk + template_name = acctest_mxqpk + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_sl4ce + provider = provider.mso + dhcp_policy.name = acctest_sl4ce + dhcp_policy.version = 0 + display_name = acctest_sl4ce + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_sl4ce + schema_id = 621c626e1d000085624fb9b0 + template_name = acctest_mxqpk + vrf_name = acctest_sl4ce + vrf_schema_id = 621c626e1d000085624fb9b0 + vrf_template_name = acctest_mxqpk + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce + provider = provider.mso + bd_name = acctest_sl4ce + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_sl4ce + schema_id = 621c626e1d000085624fb9b0 + template_name = acctest_mxqpk + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_sl4ce + provider = provider.mso + display_name = acctest_sl4ce + layer3_multicast = false + name = acctest_sl4ce + schema_id = 621c626e1d000085624fb9b0 + template = acctest_mxqpk + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:19:56 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:19:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:19:56 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:19:56 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:19:56 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:19:56 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:19:56 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:19:56 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:19:56 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:19:56 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:19:56 [DEBUG] Template BD: Beginning Update +2022/02/28 11:19:56 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:56 [DEBUG] Begin Injection +2022/02/28 11:19:56 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000494600 0xc000395550} +2022/02/28 11:19:57 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:19:57 [DEBUG] 621c627f1b0000aa08fd0c26: Beginning Read +2022/02/28 11:19:57 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:57 [DEBUG] Begin Injection +2022/02/28 11:19:57 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:19:57 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:57 [DEBUG] Template BD: Beginning Update +2022/02/28 11:19:57 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 [DEBUG] Begin Injection +2022/02/28 11:19:57 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000258200 0xc0005da0b0} +2022/02/28 11:19:57 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:19:57 [DEBUG] acctest_sl4ce: Beginning Destroy +2022/02/28 11:19:57 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 [DEBUG] Begin Injection +2022/02/28 11:19:57 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000495000 0xc000395550} +2022/02/28 11:19:57 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 +2022/02/28 11:19:57 [DEBUG] : Read finished successfully +2022/02/28 11:19:57 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000258900 0xc0005da0b0} +2022/02/28 11:19:57 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false +2022/02/28 11:19:57 [DEBUG] acctest_sl4ce: Destroy finished successfully +2022/02/28 11:19:57 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:19:57 [DEBUG] 621c626e1d000085624fb9b0: Beginning Destroy +2022/02/28 11:19:57 HTTP request DELETE mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:57 [DEBUG] Begin Injection +2022/02/28 11:19:57 HTTP request after injection DELETE mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:58 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000495b00 0xc0005da0b0} +2022/02/28 11:19:58 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:58 [DEBUG] 621c626e1d000085624fb9b0: Destroy finished successfully +2022/02/28 11:19:58 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:58 [DEBUG] New state was assigned lineage "6c0dcb5d-6b45-ce2f-b745-33dfa6719de9" +2022/02/28 11:19:58 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:58 [DEBUG] Begin Injection +2022/02/28 11:19:58 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 +2022/02/28 11:19:58 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:58 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001b4140 39 [] false false map[] 0xc001356300 0xc0005da0b0} +2022/02/28 11:19:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"code":404,"message":"Item not found"} +2022/02/28 11:19:58 [DEBUG] Exit from do method +2022/02/28 11:19:58 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:19:58 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:19:58 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:19:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:19:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:58 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:19:58 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:19:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:58 [DEBUG] : Beginning Read +2022/02/28 11:19:58 HTTP request GET mso/api/v1/tenants +2022/02/28 11:19:58 [DEBUG] Begin Injection +2022/02/28 11:19:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:19:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:19:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001b4380 5563 [] false false map[] 0xc000e00100 0xc0005da0b0} +2022/02/28 11:19:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:19:58 [DEBUG] Exit from do method +2022/02/28 11:19:58 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:19:58 [DEBUG] provider has no plugin.Client +2022/02/28 11:19:58 [DEBUG] New state was assigned lineage "ae8d6c3c-050b-9ae3-fbb3-ead9c0e6140f" +2022/02/28 11:19:58 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:19:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:19:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:19:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:19:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:19:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:19:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:19:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:19:58 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:20:15 [DEBUG] Test: Executing step 0 +2022/02/28 11:20:15 [DEBUG] Test: Executing step 0 +2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:20:15 [DEBUG] Test: Executing step 1 +2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:15 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:15 [DEBUG] : Beginning Read +2022/02/28 11:20:15 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:15 [DEBUG] Begin Injection +2022/02/28 11:20:15 HTTP request POST /login +2022/02/28 11:20:15 HTTP request after injection POST /login +2022/02/28 11:20:15 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:20:15 [DEBUG] Test: Executing step 2 +2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:20:15 [DEBUG] Test: Executing step 3 +2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:20:15 [DEBUG] Test: Executing step 4 +2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:15 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:15 [DEBUG] : Beginning Read +2022/02/28 11:20:15 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:15 [DEBUG] Begin Injection +2022/02/28 11:20:15 HTTP request POST /login +2022/02/28 11:20:15 HTTP request after injection POST /login +2022/02/28 11:20:15 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:20:17 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:20:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:16 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUkxXNnR5WTBhYkRkQjNnaWx6VnhQd2tOIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.e1Pvv1fr9RCCZQNO3uMHm31rFiSG4dCyaY0jKy5mkd5A80-CRirGj-E6uEjbjdVHWeO8NVMv-iJ1Ua2HV8juq4KEUMjzgmyBbYG6hwAAMH8NthSWqTlpQ62M3MfICFhgWxgYUlyn3c1_SXHqvsC1DAWSzUISEBuW-YkjMIhSkq28IAapWAxQXRS7V_HxawsKxI99ft6SwaGN6i5290oqVADuKopvY6DmDr0PsJ3WYdsarbCWZxup5QOnOBVoKqPrYjEIMe57boeQRnq3y-xdSiVoYUTq91OjCpEJi6difhQS15evtKybEChivHCs-DP4xH4zKp_DXn_Z3cZ0HM-ehg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0000b01c0 -1 [chunked] false false map[] 0xc000510400 0xc00091c000} +2022/02/28 11:20:17 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUkxXNnR5WTBhYkRkQjNnaWx6VnhQd2tOIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.e1Pvv1fr9RCCZQNO3uMHm31rFiSG4dCyaY0jKy5mkd5A80-CRirGj-E6uEjbjdVHWeO8NVMv-iJ1Ua2HV8juq4KEUMjzgmyBbYG6hwAAMH8NthSWqTlpQ62M3MfICFhgWxgYUlyn3c1_SXHqvsC1DAWSzUISEBuW-YkjMIhSkq28IAapWAxQXRS7V_HxawsKxI99ft6SwaGN6i5290oqVADuKopvY6DmDr0PsJ3WYdsarbCWZxup5QOnOBVoKqPrYjEIMe57boeQRnq3y-xdSiVoYUTq91OjCpEJi6difhQS15evtKybEChivHCs-DP4xH4zKp_DXn_Z3cZ0HM-ehg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUkxXNnR5WTBhYkRkQjNnaWx6VnhQd2tOIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.e1Pvv1fr9RCCZQNO3uMHm31rFiSG4dCyaY0jKy5mkd5A80-CRirGj-E6uEjbjdVHWeO8NVMv-iJ1Ua2HV8juq4KEUMjzgmyBbYG6hwAAMH8NthSWqTlpQ62M3MfICFhgWxgYUlyn3c1_SXHqvsC1DAWSzUISEBuW-YkjMIhSkq28IAapWAxQXRS7V_HxawsKxI99ft6SwaGN6i5290oqVADuKopvY6DmDr0PsJ3WYdsarbCWZxup5QOnOBVoKqPrYjEIMe57boeQRnq3y-xdSiVoYUTq91OjCpEJi6difhQS15evtKybEChivHCs-DP4xH4zKp_DXn_Z3cZ0HM-ehg"} +2022/02/28 11:20:17 [DEBUG] Exit from do method +2022/02/28 11:20:17 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:17 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:20:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:16 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0000b03c0 -1 [chunked] false false map[] 0xc000510800 0xc0009a00b0} +2022/02/28 11:20:17 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw"} +2022/02/28 11:20:17 [DEBUG] Exit from do method +2022/02/28 11:20:17 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b0540 5563 [] false false map[] 0xc000510700 0xc0009a00b0} +2022/02/28 11:20:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:17 [DEBUG] Exit from do method +2022/02/28 11:20:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:17 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:17 [DEBUG] New state was assigned lineage "47cf79d8-fb38-b171-42cd-b819a9750277" +2022/02/28 11:20:17 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:17 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:17 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:17 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_0qbd3" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_g44b1" + template_name: "" => "acctest_g44b1" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_0qbd3" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_0qbd3" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_g44b1" + vrf_name: "" => "acctest_0qbd3" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_0qbd3" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_0qbd3" + schema_id: "" => "" + template_name: "" => "acctest_g44b1" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_0qbd3" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_0qbd3" + schema_id: "" => "" + template: "" => "acctest_g44b1" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:20:17 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:20:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000883740 5563 [] false false map[] 0xc000510300 0xc00091c000} +2022/02/28 11:20:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:17 [DEBUG] Exit from do method +2022/02/28 11:20:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:17 [DEBUG] New state was assigned lineage "9d7ebc84-d850-8166-8589-28a952e76425" +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:20:17 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state)] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:20:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:17 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:20:17 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:17 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:20:17 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:20:17 [DEBUG] Schema: Beginning Creation +2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:20:17 [DEBUG] : Beginning Create +2022/02/28 11:20:17 HTTP request POST mso/api/v1/schemas +2022/02/28 11:20:17 [DEBUG] Begin Injection +2022/02/28 11:20:17 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:20:17 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:20:17 [DEBUG] Begin Injection +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:17 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:20:17 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw] Content-Type:[application/json]] {{"displayName":"acctest_g44b1","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_g44b1","externalEpgs":[],"filters":[],"name":"acctest_g44b1","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xaf7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:20:17 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw] Content-Type:[application/json]] {{"desc":"","name":"acctest_0qbd3","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xaf7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:17 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:17 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_l789w" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_dt4xf" + template_name: "" => "acctest_dt4xf" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_l789w" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_l789w" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_dt4xf" + vrf_name: "" => "acctest_l789w" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_l789w_invalid" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_l789w" + schema_id: "" => "" + template_name: "" => "acctest_dt4xf" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_l789w" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_l789w" + schema_id: "" => "" + template: "" => "acctest_dt4xf" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:20:17 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:20:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:20:17 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:20:17 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:20:17 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:20:17 [DEBUG] : Beginning Create +2022/02/28 11:20:17 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:20:17 [DEBUG] Begin Injection +2022/02/28 11:20:17 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:20:17 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw] Content-Type:[application/json]] {{"desc":"","name":"acctest_l789w","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xaf7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:20:17 [DEBUG] Schema: Beginning Creation +2022/02/28 11:20:17 HTTP request POST mso/api/v1/schemas +2022/02/28 11:20:17 [DEBUG] Begin Injection +2022/02/28 11:20:17 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:20:17 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw] Content-Type:[application/json]] {{"displayName":"acctest_dt4xf","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_dt4xf","externalEpgs":[],"filters":[],"name":"acctest_dt4xf","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xaf7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:20:17 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:20:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001364100 160 [] false false map[] 0xc000510e00 0xc0009a00b0} +2022/02/28 11:20:17 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:17 [DEBUG] Exit from do method +2022/02/28 11:20:17 [DEBUG] 621c62991b0000af08fd0c27: Creation finished successfully +2022/02/28 11:20:17 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read +2022/02/28 11:20:17 id: 621c62991b0000af08fd0c27 +2022/02/28 11:20:17 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:17 [DEBUG] Begin Injection +2022/02/28 11:20:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:17 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:20:17 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c62991d000080624fb9c7] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba4240 400 [] false false map[] 0xc000914100 0xc00091c000} +2022/02/28 11:20:17 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:20:17 [DEBUG] Exit from do method +2022/02/28 11:20:17 [DEBUG] 621c62991d000080624fb9c7: Schema Creation finished successfully +2022/02/28 11:20:17 [DEBUG] 621c62991d000080624fb9c7: Beginning Read +2022/02/28 11:20:17 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:17 [DEBUG] Begin Injection +2022/02/28 11:20:17 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:18 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:20:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001428240 160 [] false false map[] 0xc000a9e200 0xc0009a00b0} +2022/02/28 11:20:18 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c629a1b0000aa08fd0c28","name":"acctest_l789w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:18 [DEBUG] Exit from do method +2022/02/28 11:20:18 [DEBUG] 621c629a1b0000aa08fd0c28: Creation finished successfully +2022/02/28 11:20:18 [DEBUG] 621c629a1b0000aa08fd0c28: Beginning Read +2022/02/28 11:20:18 id: 621c629a1b0000aa08fd0c28 +2022/02/28 11:20:18 HTTP request GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:18 [DEBUG] Begin Injection +2022/02/28 11:20:18 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:18 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:20:18 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c629a1d000095624fb9c9] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001428400 400 [] false false map[] 0xc000887900 0xc00091c000} +2022/02/28 11:20:18 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:20:18 [DEBUG] Exit from do method +2022/02/28 11:20:18 [DEBUG] 621c629a1d000095624fb9c9: Schema Creation finished successfully +2022/02/28 11:20:18 [DEBUG] 621c629a1d000095624fb9c9: Beginning Read +2022/02/28 11:20:18 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:18 [DEBUG] Begin Injection +2022/02/28 11:20:18 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a5c0 160 [] false false map[] 0xc0010dc000 0xc0009a00b0} +2022/02/28 11:20:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:18 [DEBUG] Exit from do method +2022/02/28 11:20:18 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully +2022/02/28 11:20:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a040 400 [] false false map[] 0xc000886000 0xc0009a0160} +2022/02/28 11:20:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:20:18 [DEBUG] Exit from do method +2022/02/28 11:20:18 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully +2022/02/28 11:20:18 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:20:18 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:20:18 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:18 [DEBUG] Begin Injection +2022/02/28 11:20:18 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000882100 160 [] false false map[] 0xc000a9e500 0xc000d000b0} +2022/02/28 11:20:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 {"id":"621c629a1b0000aa08fd0c28","name":"acctest_l789w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:18 [DEBUG] Exit from do method +2022/02/28 11:20:18 [DEBUG] 621c629a1b0000aa08fd0c28: Read finished successfully +2022/02/28 11:20:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a2c0 400 [] false false map[] 0xc000a9e600 0xc00091c000} +2022/02/28 11:20:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:20:18 [DEBUG] Exit from do method +2022/02/28 11:20:18 [DEBUG] 621c629a1d000095624fb9c9: Read finished successfully +2022/02/28 11:20:18 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:20:18 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:20:18 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:18 [DEBUG] Begin Injection +2022/02/28 11:20:18 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:18 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:18 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000510e00 0xc0009a0160} +2022/02/28 11:20:18 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:18 [DEBUG] acctest_0qbd3: Creation finished successfully +2022/02/28 11:20:18 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:18 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:18 [DEBUG] Begin Injection +2022/02/28 11:20:18 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:19 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000886400 0xc000d000b0} +2022/02/28 11:20:19 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:19 [DEBUG] acctest_l789w: Creation finished successfully +2022/02/28 11:20:19 [DEBUG] acctest_l789w: Beginning Read +2022/02/28 11:20:19 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:19 [DEBUG] Begin Injection +2022/02/28 11:20:19 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007720c0 768 [] false false map[] 0xc0010dc100 0xc0009a0210} +2022/02/28 11:20:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:20:19 [DEBUG] Exit from do method +2022/02/28 11:20:19 currentvrfname acctest_0qbd3 +2022/02/28 11:20:19 found correct vrfname +2022/02/28 11:20:19 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:19 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:20:19 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:20:19 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:20:19 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:19 [DEBUG] Begin Injection +2022/02/28 11:20:19 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050a800 768 [] false false map[] 0xc0010dc400 0xc000d000b0} +2022/02/28 11:20:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:20:19 [DEBUG] Exit from do method +2022/02/28 11:20:19 currentvrfname acctest_l789w +2022/02/28 11:20:19 found correct vrfname +2022/02/28 11:20:19 [DEBUG] acctest_l789w: Read finished successfully +2022/02/28 11:20:19 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:20:19 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:20:19 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:20:19 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:19 [DEBUG] Begin Injection +2022/02/28 11:20:19 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:19 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a9e900 0xc0009a0370} +2022/02/28 11:20:19 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:19 [DEBUG] : Beginning Read +2022/02/28 11:20:19 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:19 [DEBUG] Begin Injection +2022/02/28 11:20:19 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:19 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a9f400 0xc000d000b0} +2022/02/28 11:20:19 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:19 [DEBUG] : Beginning Read +2022/02/28 11:20:19 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:19 [DEBUG] Begin Injection +2022/02/28 11:20:19 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001365900 1277 [] false false map[] 0xc000a9f600 0xc0009a0370} +2022/02/28 11:20:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:20:19 [DEBUG] Exit from do method +2022/02/28 11:20:19 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:19 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:20:19 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:20:19 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:19 [DEBUG] Begin Injection +2022/02/28 11:20:19 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000338780 1277 [] false false map[] 0xc000a9f700 0xc000d000b0} +2022/02/28 11:20:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:20:19 [DEBUG] Exit from do method +2022/02/28 11:20:19 [DEBUG] acctest_l789w: Read finished successfully +2022/02/28 11:20:20 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:20:20 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:20:20 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:20 [DEBUG] Begin Injection +2022/02/28 11:20:20 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:20 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000887200 0xc0009a0370} +2022/02/28 11:20:20 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:20 [DEBUG] Creation Complete +2022/02/28 11:20:20 [DEBUG] : Beginning Read +2022/02/28 11:20:20 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:20 [DEBUG] Begin Injection +2022/02/28 11:20:20 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:20 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:20 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[112] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc000377280 112 [] false false map[] 0xc000a9f900 0xc000d000b0} +2022/02/28 11:20:20 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false {"code":141,"message":"Resource Not Found: Bd with name acctest_l789w_invalid not found in List(acctest_l789w)"} +2022/02/28 11:20:20 [DEBUG] Exit from do method +2022/02/28 11:20:20 [DEBUG] mso_schema_template_bd_dhcp_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Resource Not Found: Bd with name acctest_l789w_invalid not found in List(acctest_l789w)"{} +2022/02/28 11:20:20 [ERROR] : eval: *terraform.EvalApplyPost, err: "Resource Not Found: Bd with name acctest_l789w_invalid not found in List(acctest_l789w)"{} +2022/02/28 11:20:20 [ERROR] : eval: *terraform.EvalSequence, err: "Resource Not Found: Bd with name acctest_l789w_invalid not found in List(acctest_l789w)"{} +2022/02/28 11:20:20 [DEBUG] New state was assigned lineage "16733663-d774-f37c-b13f-0650d2755b4f" +2022/02/28 11:20:20 [DEBUG] Test: Executing step 1 +2022/02/28 11:20:20 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:20 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:20 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:20 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "uylbv" is not expected here. +2022/02/28 11:20:20 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "uylbv" is not expected here. +2022/02/28 11:20:20 [DEBUG] Test: Executing step 2 +2022/02/28 11:20:20 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:20 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:20 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:20 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:20 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:20 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:20 [DEBUG] : Beginning Read +2022/02/28 11:20:20 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:20 [DEBUG] Begin Injection +2022/02/28 11:20:20 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b0100 1362 [] false false map[] 0xc0010dd500 0xc0009a0370} +2022/02/28 11:20:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:20 [DEBUG] Exit from do method +2022/02/28 11:20:20 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully +2022/02/28 11:20:20 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:20 [DEBUG] New state was assigned lineage "e0f54b91-f66c-8f84-b6df-852de9e7af0c" +2022/02/28 11:20:20 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:20 [DEBUG] Begin Injection +2022/02/28 11:20:20 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772100 5563 [] false false map[] 0xc0010ddb00 0xc000d000b0} +2022/02/28 11:20:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:20 [DEBUG] Exit from do method +2022/02/28 11:20:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:20 [DEBUG] 621c629a1d000095624fb9c9: Beginning Read +2022/02/28 11:20:20 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:20 [DEBUG] Begin Injection +2022/02/28 11:20:20 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:20 [DEBUG] 621c629a1b0000aa08fd0c28: Beginning Read +2022/02/28 11:20:20 id: 621c629a1b0000aa08fd0c28 +2022/02/28 11:20:20 HTTP request GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:20 [DEBUG] Begin Injection +2022/02/28 11:20:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000773a40 1362 [] false false map[] 0xc000510100 0xc0009a0370} +2022/02/28 11:20:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:20 [DEBUG] Exit from do method +2022/02/28 11:20:20 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:20 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:20 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:20 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:20 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:20 [DEBUG] : Beginning Read +2022/02/28 11:20:20 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:20 [DEBUG] Begin Injection +2022/02/28 11:20:20 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013b0540 1277 [] false false map[] 0xc000d68200 0xc000d000b0} +2022/02/28 11:20:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:20:21 [DEBUG] Exit from do method +2022/02/28 11:20:21 [DEBUG] 621c629a1d000095624fb9c9: Read finished successfully +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:21 [DEBUG] acctest_l789w: Beginning Read +2022/02/28 11:20:21 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:21 [DEBUG] Begin Injection +2022/02/28 11:20:21 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013b0b40 160 [] false false map[] 0xc000886400 0xc0009a00b0} +2022/02/28 11:20:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 {"id":"621c629a1b0000aa08fd0c28","name":"acctest_l789w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:21 [DEBUG] Exit from do method +2022/02/28 11:20:21 [DEBUG] 621c629a1b0000aa08fd0c28: Read finished successfully +2022/02/28 11:20:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012d7bc0 5563 [] false false map[] 0xc000886500 0xc0009a0370} +2022/02/28 11:20:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:21 [DEBUG] Exit from do method +2022/02/28 11:20:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:21 [DEBUG] 621c62991d000080624fb9c7: Beginning Read +2022/02/28 11:20:21 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:21 [DEBUG] Begin Injection +2022/02/28 11:20:21 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:21 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read +2022/02/28 11:20:21 id: 621c62991b0000af08fd0c27 +2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:21 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:21 [DEBUG] Begin Injection +2022/02/28 11:20:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013b1800 1277 [] false false map[] 0xc0010c1100 0xc000d000b0} +2022/02/28 11:20:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:20:21 [DEBUG] Exit from do method +2022/02/28 11:20:21 currentvrfname acctest_l789w +2022/02/28 11:20:21 found correct vrfname +2022/02/28 11:20:21 [DEBUG] acctest_l789w: Read finished successfully +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:21 [DEBUG] acctest_l789w: Beginning Read +2022/02/28 11:20:21 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:21 [DEBUG] Begin Injection +2022/02/28 11:20:21 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba4080 1362 [] false false map[] 0xc0010c1300 0xc0009a0370} +2022/02/28 11:20:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:21 [DEBUG] Exit from do method +2022/02/28 11:20:21 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:21 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:21 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:21 [DEBUG] Begin Injection +2022/02/28 11:20:21 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001428100 160 [] false false map[] 0xc000d69700 0xc0009a00b0} +2022/02/28 11:20:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:21 [DEBUG] Exit from do method +2022/02/28 11:20:21 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully +2022/02/28 11:20:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772180 1277 [] false false map[] 0xc000d69c00 0xc000d000b0} +2022/02/28 11:20:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:20:21 [DEBUG] Exit from do method +2022/02/28 11:20:21 [DEBUG] acctest_l789w: Read finished successfully +2022/02/28 11:20:21 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:21 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:21 [DEBUG] New state was assigned lineage "39eb78f0-1271-a5fd-44db-fedb69c517ae" +2022/02/28 11:20:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:21 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:21 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:21 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:21 [WARN] Test: Step plan: DIFF: + +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_l789w" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_l789w" + schema_id: "" => "621c629a1d000095624fb9c9" + template_name: "" => "acctest_dt4xf" + version: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c629a1b0000aa08fd0c28 + provider = provider.mso + description = + name = acctest_l789w + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c629a1d000095624fb9c9 + provider = provider.mso + name = acctest_dt4xf + template_name = acctest_dt4xf + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_l789w + provider = provider.mso + display_name = acctest_l789w + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_l789w + schema_id = 621c629a1d000095624fb9c9 + template_name = acctest_dt4xf + vrf_name = acctest_l789w + vrf_schema_id = 621c629a1d000095624fb9c9 + vrf_template_name = acctest_dt4xf + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_l789w + provider = provider.mso + display_name = acctest_l789w + layer3_multicast = false + name = acctest_l789w + schema_id = 621c629a1d000095624fb9c9 + template = acctest_dt4xf + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:20:21 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:20:21 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:20:21 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:20:21 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:20:21 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:20:21 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:21 [DEBUG] Begin Injection +2022/02/28 11:20:21 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001517e40 1362 [] false false map[] 0xc0010c0500 0xc0009a0370} +2022/02/28 11:20:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:21 [DEBUG] Exit from do method +2022/02/28 11:20:21 currentvrfname acctest_0qbd3 +2022/02/28 11:20:21 found correct vrfname +2022/02/28 11:20:21 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:21 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:21 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:21 [DEBUG] Begin Injection +2022/02/28 11:20:21 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:22 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001005c00 0xc000d000b0} +2022/02/28 11:20:22 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:22 [DEBUG] Creation Complete +2022/02/28 11:20:22 [DEBUG] : Beginning Read +2022/02/28 11:20:22 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:22 [DEBUG] Begin Injection +2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001364140 1362 [] false false map[] 0xc00112e200 0xc0009a0370} +2022/02/28 11:20:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:22 [DEBUG] Exit from do method +2022/02/28 11:20:22 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:22 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Read +2022/02/28 11:20:22 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:22 [DEBUG] Begin Injection +2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9bc00 1362 [] false false map[] 0xc00112e400 0xc000d000b0} +2022/02/28 11:20:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:22 [DEBUG] Exit from do method +2022/02/28 11:20:22 [DEBUG] /schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w: Read finished successfully +2022/02/28 11:20:22 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:22 [DEBUG] New state was assigned lineage "f5a51075-d508-5717-128e-37b106d0d21f" +2022/02/28 11:20:22 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:20:22 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:22 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:22 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:22 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:22 [DEBUG] : Beginning Read +2022/02/28 11:20:22 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:22 [DEBUG] Begin Injection +2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba40c0 1362 [] false false map[] 0xc000d68300 0xc0009a0370} +2022/02/28 11:20:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:22 [DEBUG] Exit from do method +2022/02/28 11:20:22 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully +2022/02/28 11:20:22 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:22 [DEBUG] New state was assigned lineage "d5463eba-a551-4cae-970c-33fc1738a03d" +2022/02/28 11:20:22 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:22 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:22 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:22 [DEBUG] Test: Executing step 5 +2022/02/28 11:20:22 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:22 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:22 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:22 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:22 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:22 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:22 [DEBUG] : Beginning Read +2022/02/28 11:20:22 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:22 [DEBUG] Begin Injection +2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a980 5563 [] false false map[] 0xc000cda700 0xc000d000b0} +2022/02/28 11:20:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:22 [DEBUG] Exit from do method +2022/02/28 11:20:22 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:22 [DEBUG] 621c629a1d000095624fb9c9: Beginning Read +2022/02/28 11:20:22 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:22 [DEBUG] Begin Injection +2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:22 [DEBUG] 621c629a1b0000aa08fd0c28: Beginning Read +2022/02/28 11:20:22 id: 621c629a1b0000aa08fd0c28 +2022/02/28 11:20:22 HTTP request GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:22 [DEBUG] Begin Injection +2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001364680 5563 [] false false map[] 0xc000cdbf00 0xc0009a0370} +2022/02/28 11:20:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:22 [DEBUG] Exit from do method +2022/02/28 11:20:22 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:22 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:20:22 [DEBUG] 621c62991d000080624fb9c7: Beginning Read +2022/02/28 11:20:22 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:22 [DEBUG] Begin Injection +2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:22 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read +2022/02/28 11:20:22 id: 621c62991b0000af08fd0c27 +2022/02/28 11:20:22 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:22 [DEBUG] Begin Injection +2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc2980 1362 [] false false map[] 0xc000b74a00 0xc000d000b0} +2022/02/28 11:20:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:23 [DEBUG] Exit from do method +2022/02/28 11:20:23 [DEBUG] 621c629a1d000095624fb9c9: Read finished successfully +2022/02/28 11:20:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:23 [DEBUG] acctest_l789w: Beginning Read +2022/02/28 11:20:23 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:23 [DEBUG] Begin Injection +2022/02/28 11:20:23 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc2a80 160 [] false false map[] 0xc000510600 0xc0009a00b0} +2022/02/28 11:20:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 {"id":"621c629a1b0000aa08fd0c28","name":"acctest_l789w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:23 [DEBUG] Exit from do method +2022/02/28 11:20:23 [DEBUG] 621c629a1b0000aa08fd0c28: Read finished successfully +2022/02/28 11:20:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba42c0 1362 [] false false map[] 0xc000cda900 0xc0009a0370} +2022/02/28 11:20:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:23 [DEBUG] Exit from do method +2022/02/28 11:20:23 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully +2022/02/28 11:20:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:23 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:23 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:23 [DEBUG] Begin Injection +2022/02/28 11:20:23 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376dc0 160 [] false false map[] 0xc000510c00 0xc000d000b0} +2022/02/28 11:20:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:23 [DEBUG] Exit from do method +2022/02/28 11:20:23 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully +2022/02/28 11:20:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba4880 1362 [] false false map[] 0xc000cdac00 0xc0009a00b0} +2022/02/28 11:20:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:23 [DEBUG] Exit from do method +2022/02/28 11:20:23 currentvrfname acctest_l789w +2022/02/28 11:20:23 found correct vrfname +2022/02/28 11:20:23 [DEBUG] acctest_l789w: Read finished successfully +2022/02/28 11:20:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:23 [DEBUG] acctest_l789w: Beginning Read +2022/02/28 11:20:23 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:23 [DEBUG] Begin Injection +2022/02/28 11:20:23 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc3100 1362 [] false false map[] 0xc000510f00 0xc0009a0370} +2022/02/28 11:20:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:23 [DEBUG] Exit from do method +2022/02/28 11:20:23 currentvrfname acctest_0qbd3 +2022/02/28 11:20:23 found correct vrfname +2022/02/28 11:20:23 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:23 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:23 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:23 [DEBUG] Begin Injection +2022/02/28 11:20:23 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba5d80 1362 [] false false map[] 0xc000cdaf00 0xc0009a00b0} +2022/02/28 11:20:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:23 [DEBUG] Exit from do method +2022/02/28 11:20:23 [DEBUG] acctest_l789w: Read finished successfully +2022/02/28 11:20:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:23 [DEBUG] /schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w: Beginning Read +2022/02/28 11:20:23 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:23 [DEBUG] Begin Injection +2022/02/28 11:20:23 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377900 1362 [] false false map[] 0xc0010c0500 0xc0009a0370} +2022/02/28 11:20:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:23 [DEBUG] Exit from do method +2022/02/28 11:20:23 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:23 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Read +2022/02/28 11:20:23 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:23 [DEBUG] Begin Injection +2022/02/28 11:20:23 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012d6040 1362 [] false false map[] 0xc000b75500 0xc000d006e0} +2022/02/28 11:20:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:24 [DEBUG] Exit from do method +2022/02/28 11:20:24 [DEBUG] /schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w: Read finished successfully +2022/02/28 11:20:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:24 [DEBUG] New state was assigned lineage "f75baee5-a6bc-653f-c52f-cde77330c9fc" +2022/02/28 11:20:24 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:24 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001429f00 1362 [] false false map[] 0xc000cdb400 0xc0009a0370} +2022/02/28 11:20:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:24 [DEBUG] Exit from do method +2022/02/28 11:20:24 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:24 [DEBUG] New state was assigned lineage "a27cb301-cf16-a5ab-55ee-22b71229970b" +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:24 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:24 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:24 [WARN] Test: Executing destroy step +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:24 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:24 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.test + description: "" => "" + id: "" => "" + name: "" => "acctest_qhr63" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +UPDATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_0qbd3" => "acctest_0qbd3" + dhcp_option_name: "" => "acctest_qhr63" + dhcp_option_version: "0" => "1" + id: "/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3" => "/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3" + name: "acctest_0qbd3" => "acctest_0qbd3" + schema_id: "621c62991d000080624fb9c7" => "621c62991d000080624fb9c7" + template_name: "acctest_g44b1" => "acctest_g44b1" + version: "0" => "1" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c62991b0000af08fd0c27 + provider = provider.mso + description = + name = acctest_0qbd3 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c62991d000080624fb9c7 + provider = provider.mso + name = acctest_g44b1 + template_name = acctest_g44b1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_0qbd3 + provider = provider.mso + dhcp_policy.name = acctest_0qbd3 + dhcp_policy.version = 0 + display_name = acctest_0qbd3 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_0qbd3 + schema_id = 621c62991d000080624fb9c7 + template_name = acctest_g44b1 + vrf_name = acctest_0qbd3 + vrf_schema_id = 621c62991d000080624fb9c7 + vrf_template_name = acctest_g44b1 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3 + provider = provider.mso + bd_name = acctest_0qbd3 + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_0qbd3 + schema_id = 621c62991d000080624fb9c7 + template_name = acctest_g44b1 + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_0qbd3 + provider = provider.mso + display_name = acctest_0qbd3 + layer3_multicast = false + name = acctest_0qbd3 + schema_id = 621c62991d000080624fb9c7 + template = acctest_g44b1 + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:20:24 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:20:24 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:20:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test (prepare state) +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test] +2022/02/28 11:20:24 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:20:24 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change +2022/02/28 11:20:24 [DEBUG] : Beginning Create +2022/02/28 11:20:24 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 11:20:24 [DEBUG] Begin Injection +2022/02/28 11:20:24 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 11:20:24 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_qhr63","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xaf7ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:20:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:24 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:24 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:24 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:24 [DEBUG] : Beginning Read +2022/02/28 11:20:24 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:24 [DEBUG] Begin Injection +2022/02/28 11:20:24 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:24 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:20:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104bc0 161 [] false false map[] 0xc000d68700 0xc000d009a0} +2022/02/28 11:20:24 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c62a01b0000b108fd0c29","name":"acctest_qhr63","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:24 [DEBUG] Exit from do method +2022/02/28 11:20:24 [DEBUG] 621c62a01b0000b108fd0c29: Creation finished successfully +2022/02/28 11:20:24 [DEBUG] 621c62a01b0000b108fd0c29: Beginning Read +2022/02/28 11:20:24 id: 621c62a01b0000b108fd0c29 +2022/02/28 11:20:24 HTTP request GET mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:24 [DEBUG] Begin Injection +2022/02/28 11:20:24 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a0c0 5563 [] false false map[] 0xc000d68200 0xc000d000b0} +2022/02/28 11:20:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:24 [DEBUG] Exit from do method +2022/02/28 11:20:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:24 [DEBUG] 621c629a1d000095624fb9c9: Beginning Read +2022/02/28 11:20:24 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:24 [DEBUG] Begin Injection +2022/02/28 11:20:24 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:24 [DEBUG] 621c629a1b0000aa08fd0c28: Beginning Read +2022/02/28 11:20:24 id: 621c629a1b0000aa08fd0c28 +2022/02/28 11:20:24 HTTP request GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:24 [DEBUG] Begin Injection +2022/02/28 11:20:24 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011050c0 161 [] false false map[] 0xc000b74700 0xc000d009a0} +2022/02/28 11:20:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 {"id":"621c62a01b0000b108fd0c29","name":"acctest_qhr63","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:24 [DEBUG] Exit from do method +2022/02/28 11:20:24 [DEBUG] 621c62a01b0000b108fd0c29: Read finished successfully +2022/02/28 11:20:24 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change +2022/02/28 11:20:24 [DEBUG] Template BD: Beginning Update +2022/02/28 11:20:24 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:24 [DEBUG] Begin Injection +2022/02/28 11:20:24 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000339d80 1362 [] false false map[] 0xc0016f4500 0xc000d000b0} +2022/02/28 11:20:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:24 [DEBUG] Exit from do method +2022/02/28 11:20:24 [DEBUG] 621c629a1d000095624fb9c9: Read finished successfully +2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:24 [DEBUG] acctest_l789w: Beginning Read +2022/02/28 11:20:24 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:24 [DEBUG] Begin Injection +2022/02/28 11:20:24 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772040 160 [] false false map[] 0xc000d68800 0xc000d009a0} +2022/02/28 11:20:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 {"id":"621c629a1b0000aa08fd0c28","name":"acctest_l789w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:25 [DEBUG] Exit from do method +2022/02/28 11:20:25 [DEBUG] 621c629a1b0000aa08fd0c28: Read finished successfully +2022/02/28 11:20:25 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0016f4b00 0xc000d000b0} +2022/02/28 11:20:25 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:25 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Read +2022/02/28 11:20:25 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:25 [DEBUG] Begin Injection +2022/02/28 11:20:25 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba4580 1362 [] false false map[] 0xc000b75200 0xc000d009a0} +2022/02/28 11:20:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:25 [DEBUG] Exit from do method +2022/02/28 11:20:25 currentvrfname acctest_l789w +2022/02/28 11:20:25 found correct vrfname +2022/02/28 11:20:25 [DEBUG] acctest_l789w: Read finished successfully +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:25 [DEBUG] acctest_l789w: Beginning Read +2022/02/28 11:20:25 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:25 [DEBUG] Begin Injection +2022/02/28 11:20:25 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014289c0 1472 [] false false map[] 0xc000510700 0xc000d000b0} +2022/02/28 11:20:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:20:25 [DEBUG] Exit from do method +2022/02/28 11:20:25 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully +2022/02/28 11:20:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:25 [DEBUG] New state was assigned lineage "f0957ca7-2bac-40ad-a516-1b4aca0da073" +2022/02/28 11:20:25 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:25 [DEBUG] Begin Injection +2022/02/28 11:20:25 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376d80 1362 [] false false map[] 0xc000510a00 0xc000d009a0} +2022/02/28 11:20:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:25 [DEBUG] Exit from do method +2022/02/28 11:20:25 [DEBUG] acctest_l789w: Read finished successfully +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:25 [DEBUG] /schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w: Beginning Read +2022/02/28 11:20:25 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:25 [DEBUG] Begin Injection +2022/02/28 11:20:25 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377480 1472 [] false false map[] 0xc0016f4000 0xc000d000b0} +2022/02/28 11:20:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:20:25 [DEBUG] Exit from do method +2022/02/28 11:20:25 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:25 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:25 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:25 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:25 [DEBUG] : Beginning Read +2022/02/28 11:20:25 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:25 [DEBUG] Begin Injection +2022/02/28 11:20:25 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001429d40 1362 [] false false map[] 0xc0016f4300 0xc000520210} +2022/02/28 11:20:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:20:26 [DEBUG] Exit from do method +2022/02/28 11:20:26 [DEBUG] /schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w: Read finished successfully +2022/02/28 11:20:26 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:26 [DEBUG] New state was assigned lineage "9fe35f6e-8a87-ec65-97d9-9cf8e07650b5" +2022/02/28 11:20:26 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:20:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:20:26 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c629a1b0000aa08fd0c28" => "" + name: "acctest_l789w" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c629a1d000095624fb9c9" => "" + name: "acctest_dt4xf" => "" + template_name: "acctest_dt4xf" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_l789w" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_l789w" => "" + id: "acctest_l789w" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_l789w" => "" + schema_id: "621c629a1d000095624fb9c9" => "" + template_name: "acctest_dt4xf" => "" + vrf_name: "acctest_l789w" => "" + vrf_schema_id: "621c629a1d000095624fb9c9" => "" + vrf_template_name: "acctest_dt4xf" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_l789w" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w" => "" + name: "acctest_l789w" => "" + schema_id: "621c629a1d000095624fb9c9" => "" + template_name: "acctest_dt4xf" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_l789w" => "" + id: "acctest_l789w" => "" + layer3_multicast: "false" => "" + name: "acctest_l789w" => "" + schema_id: "621c629a1d000095624fb9c9" => "" + template: "acctest_dt4xf" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c629a1b0000aa08fd0c28 + provider = provider.mso + description = + name = acctest_l789w + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c629a1d000095624fb9c9 + provider = provider.mso + name = acctest_dt4xf + template_name = acctest_dt4xf + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_l789w + provider = provider.mso + dhcp_policy.name = acctest_l789w + dhcp_policy.version = 0 + display_name = acctest_l789w + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_l789w + schema_id = 621c629a1d000095624fb9c9 + template_name = acctest_dt4xf + vrf_name = acctest_l789w + vrf_schema_id = 621c629a1d000095624fb9c9 + vrf_template_name = acctest_dt4xf + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w + provider = provider.mso + bd_name = acctest_l789w + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_l789w + schema_id = 621c629a1d000095624fb9c9 + template_name = acctest_dt4xf + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_l789w + provider = provider.mso + display_name = acctest_l789w + layer3_multicast = false + name = acctest_l789w + schema_id = 621c629a1d000095624fb9c9 + template = acctest_dt4xf + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:20:26 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:20:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:20:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:26 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:20:26 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:20:26 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:20:26 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:20:26 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:20:26 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:20:26 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:20:26 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:20:26 [DEBUG] Template BD: Beginning Update +2022/02/28 11:20:26 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:26 [DEBUG] Begin Injection +2022/02/28 11:20:26 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104080 5563 [] false false map[] 0xc000eacc00 0xc000d000b0} +2022/02/28 11:20:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:26 [DEBUG] Exit from do method +2022/02/28 11:20:26 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:26 [DEBUG] 621c62991d000080624fb9c7: Beginning Read +2022/02/28 11:20:26 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:26 [DEBUG] Begin Injection +2022/02/28 11:20:26 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:26 [DEBUG] 621c62a01b0000b108fd0c29: Beginning Read +2022/02/28 11:20:26 id: 621c62a01b0000b108fd0c29 +2022/02/28 11:20:26 HTTP request GET mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:26 [DEBUG] Begin Injection +2022/02/28 11:20:26 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:26 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read +2022/02/28 11:20:26 id: 621c62991b0000af08fd0c27 +2022/02/28 11:20:26 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:26 [DEBUG] Begin Injection +2022/02/28 11:20:26 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000511200 0xc000520210} +2022/02/28 11:20:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:26 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:20:26 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:20:26 [DEBUG] 621c629a1b0000aa08fd0c28: Beginning Read +2022/02/28 11:20:26 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:26 [DEBUG] Begin Injection +2022/02/28 11:20:26 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:26 [DEBUG] Template BD: Beginning Update +2022/02/28 11:20:26 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:26 [DEBUG] Begin Injection +2022/02/28 11:20:26 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012d6b00 1472 [] false false map[] 0xc000b74900 0xc000d000b0} +2022/02/28 11:20:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:20:26 [DEBUG] Exit from do method +2022/02/28 11:20:26 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully +2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:26 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:26 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:26 [DEBUG] Begin Injection +2022/02/28 11:20:26 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377800 161 [] false false map[] 0xc000eacd00 0xc0005200b0} +2022/02/28 11:20:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 {"id":"621c62a01b0000b108fd0c29","name":"acctest_qhr63","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:26 [DEBUG] Exit from do method +2022/02/28 11:20:26 [DEBUG] 621c62a01b0000b108fd0c29: Read finished successfully +2022/02/28 11:20:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377d80 160 [] false false map[] 0xc0018c6300 0xc000520210} +2022/02/28 11:20:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:26 [DEBUG] Exit from do method +2022/02/28 11:20:26 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully +2022/02/28 11:20:26 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000511600 0xc000d000b0} +2022/02/28 11:20:26 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 +2022/02/28 11:20:26 [DEBUG] : Read finished successfully +2022/02/28 11:20:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ead200 0xc0005200b0} +2022/02/28 11:20:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:26 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:20:26 [DEBUG] acctest_l789w: Beginning Destroy +2022/02/28 11:20:26 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:26 [DEBUG] Begin Injection +2022/02/28 11:20:26 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050a600 1472 [] false false map[] 0xc000ead800 0xc000520210} +2022/02/28 11:20:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:20:27 [DEBUG] Exit from do method +2022/02/28 11:20:27 currentvrfname acctest_0qbd3 +2022/02/28 11:20:27 found correct vrfname +2022/02/28 11:20:27 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:27 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:27 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:27 [DEBUG] Begin Injection +2022/02/28 11:20:27 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:27 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000b75100 0xc0005200b0} +2022/02/28 11:20:27 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false +2022/02/28 11:20:27 [DEBUG] acctest_l789w: Destroy finished successfully +2022/02/28 11:20:27 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:20:27 [DEBUG] 621c629a1d000095624fb9c9: Beginning Destroy +2022/02/28 11:20:27 HTTP request DELETE mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:27 [DEBUG] Begin Injection +2022/02/28 11:20:27 HTTP request after injection DELETE mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a080 1472 [] false false map[] 0xc0018c6900 0xc000d00a50} +2022/02/28 11:20:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:20:27 [DEBUG] Exit from do method +2022/02/28 11:20:27 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:27 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Read +2022/02/28 11:20:27 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:27 [DEBUG] Begin Injection +2022/02/28 11:20:27 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:27 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000511f00 0xc0005200b0} +2022/02/28 11:20:27 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:27 [DEBUG] 621c629a1d000095624fb9c9: Destroy finished successfully +2022/02/28 11:20:27 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:27 [DEBUG] New state was assigned lineage "c904134d-dc5a-880a-3258-12829552715f" +2022/02/28 11:20:27 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:27 [DEBUG] Begin Injection +2022/02/28 11:20:27 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001364ac0 1472 [] false false map[] 0xc000510c00 0xc0018c8000} +2022/02/28 11:20:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:20:27 [DEBUG] Exit from do method +2022/02/28 11:20:27 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully +2022/02/28 11:20:27 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:27 [DEBUG] New state was assigned lineage "c0826343-808c-df61-b7c8-5b2279c5712a" +2022/02/28 11:20:27 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:27 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:27 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:27 [DEBUG] Test: Executing step 6 +2022/02/28 11:20:27 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3\")" references: [] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:27 [DEBUG] Starting graph walk: walkImport +2022/02/28 11:20:27 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Import +2022/02/28 11:20:27 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:27 [DEBUG] Begin Injection +2022/02/28 11:20:27 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 +2022/02/28 11:20:27 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:27 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9ab00 39 [] false false map[] 0xc000510e00 0xc0005200b0} +2022/02/28 11:20:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"code":404,"message":"Item not found"} +2022/02/28 11:20:27 [DEBUG] Exit from do method +2022/02/28 11:20:27 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:20:27 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:20:27 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:27 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:27 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:27 [DEBUG] : Beginning Read +2022/02/28 11:20:27 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:27 [DEBUG] Begin Injection +2022/02/28 11:20:27 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050b4c0 1472 [] false false map[] 0xc0004fc100 0xc0018c8000} +2022/02/28 11:20:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:20:28 [DEBUG] Exit from do method +2022/02/28 11:20:28 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Import finished successfully +2022/02/28 11:20:28 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Read +2022/02/28 11:20:28 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:28 [DEBUG] Begin Injection +2022/02/28 11:20:28 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377380 5563 [] false false map[] 0xc0004fce00 0xc0005200b0} +2022/02/28 11:20:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:28 [DEBUG] Exit from do method +2022/02/28 11:20:28 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:28 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:28 [DEBUG] New state was assigned lineage "fb3bba47-d618-ecd7-76e1-359e81b68138" +2022/02/28 11:20:28 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:20:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:20:28 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:20:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a040 1472 [] false false map[] 0xc000ead100 0xc0018c8000} +2022/02/28 11:20:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:20:28 [DEBUG] Exit from do method +2022/02/28 11:20:28 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully +2022/02/28 11:20:28 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:28 [DEBUG] New state was assigned lineage "89b276ec-ca63-1558-36bc-529c929eec52" +2022/02/28 11:20:28 [DEBUG] Test: Executing step 7 +2022/02/28 11:20:28 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:28 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:28 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:28 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:28 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config +2022/02/28 11:20:28 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config +2022/02/28 11:20:28 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:28 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:28 [DEBUG] : Beginning Read +2022/02/28 11:20:28 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:28 [DEBUG] Begin Injection +2022/02/28 11:20:28 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376a00 5563 [] false false map[] 0xc0016eee00 0xc0005200b0} +2022/02/28 11:20:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:28 [DEBUG] Exit from do method +2022/02/28 11:20:28 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:28 [DEBUG] 621c62991d000080624fb9c7: Beginning Read +2022/02/28 11:20:28 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read +2022/02/28 11:20:28 id: 621c62991b0000af08fd0c27 +2022/02/28 11:20:28 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:28 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:28 [DEBUG] Begin Injection +2022/02/28 11:20:28 [DEBUG] Begin Injection +2022/02/28 11:20:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:28 [DEBUG] 621c62a01b0000b108fd0c29: Beginning Read +2022/02/28 11:20:28 id: 621c62a01b0000b108fd0c29 +2022/02/28 11:20:28 HTTP request GET mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:28 [DEBUG] Begin Injection +2022/02/28 11:20:28 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:28 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc2780 161 [] false false map[] 0xc000510400 0xc000d000b0} +2022/02/28 11:20:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 {"id":"621c62a01b0000b108fd0c29","name":"acctest_qhr63","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:29 [DEBUG] Exit from do method +2022/02/28 11:20:29 [DEBUG] 621c62a01b0000b108fd0c29: Read finished successfully +2022/02/28 11:20:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377f40 160 [] false false map[] 0xc0017b8100 0xc0005200b0} +2022/02/28 11:20:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:29 [DEBUG] Exit from do method +2022/02/28 11:20:29 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully +2022/02/28 11:20:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008824c0 1472 [] false false map[] 0xc0016ee500 0xc000d000b0} +2022/02/28 11:20:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:20:29 [DEBUG] Exit from do method +2022/02/28 11:20:29 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully +2022/02/28 11:20:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:29 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:29 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:29 [DEBUG] Begin Injection +2022/02/28 11:20:29 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d219c0 1472 [] false false map[] 0xc000510800 0xc000d000b0} +2022/02/28 11:20:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:20:29 [DEBUG] Exit from do method +2022/02/28 11:20:29 currentvrfname acctest_0qbd3 +2022/02/28 11:20:29 found correct vrfname +2022/02/28 11:20:29 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:29 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:29 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:29 [DEBUG] Begin Injection +2022/02/28 11:20:29 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000338b40 1472 [] false false map[] 0xc000eace00 0xc000d00840} +2022/02/28 11:20:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:20:30 [DEBUG] Exit from do method +2022/02/28 11:20:30 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:30 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Read +2022/02/28 11:20:30 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:30 [DEBUG] Begin Injection +2022/02/28 11:20:30 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001364040 1472 [] false false map[] 0xc000876300 0xc000d00840} +2022/02/28 11:20:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:20:30 [DEBUG] Exit from do method +2022/02/28 11:20:30 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully +2022/02/28 11:20:30 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:30 [DEBUG] New state was assigned lineage "846f9ea9-9bc5-be49-491c-2f1275290303" +2022/02/28 11:20:30 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:30 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:30 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:30 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.test + description: "" => "" + id: "621c62a01b0000b108fd0c29" => "" + name: "acctest_qhr63" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_0qbd3" => "" + dhcp_option_name: "acctest_qhr63" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3" => "" + name: "acctest_0qbd3" => "" + schema_id: "621c62991d000080624fb9c7" => "" + template_name: "acctest_g44b1" => "" + version: "1" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.test: + ID = 621c62a01b0000b108fd0c29 + provider = provider.mso + description = + name = acctest_qhr63 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c62991b0000af08fd0c27 + provider = provider.mso + description = + name = acctest_0qbd3 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c62991d000080624fb9c7 + provider = provider.mso + name = acctest_g44b1 + template_name = acctest_g44b1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_0qbd3 + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_qhr63 + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_0qbd3 + dhcp_policy.version = 1 + display_name = acctest_0qbd3 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_0qbd3 + schema_id = 621c62991d000080624fb9c7 + template_name = acctest_g44b1 + vrf_name = acctest_0qbd3 + vrf_schema_id = 621c62991d000080624fb9c7 + vrf_template_name = acctest_g44b1 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3 + provider = provider.mso + bd_name = acctest_0qbd3 + dhcp_option_name = acctest_qhr63 + dhcp_option_version = 1 + name = acctest_0qbd3 + schema_id = 621c62991d000080624fb9c7 + template_name = acctest_g44b1 + version = 1 + + Dependencies: + mso_dhcp_option_policy.test + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_0qbd3 + provider = provider.mso + display_name = acctest_0qbd3 + layer3_multicast = false + name = acctest_0qbd3 + schema_id = 621c62991d000080624fb9c7 + template = acctest_g44b1 + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:20:30 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:20:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] +2022/02/28 11:20:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:30 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:20:30 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:20:30 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:20:30 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:20:30 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:20:30 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:20:30 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:20:30 [DEBUG] Template BD: Beginning Update +2022/02/28 11:20:30 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:30 [DEBUG] Begin Injection +2022/02/28 11:20:30 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:30 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000eac800 0xc000d00840} +2022/02/28 11:20:30 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:30 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change +2022/02/28 11:20:30 [DEBUG] 621c62a01b0000b108fd0c29: Beginning Read +2022/02/28 11:20:30 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:30 [DEBUG] Begin Injection +2022/02/28 11:20:30 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:31 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000877c00 0xc000d00840} +2022/02/28 11:20:31 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 +2022/02/28 11:20:31 [DEBUG] : Read finished successfully +2022/02/28 11:20:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:31 [DEBUG] New state was assigned lineage "91b33a37-903c-0c60-1ae2-ed13127431b1" +2022/02/28 11:20:31 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:31 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:31 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:31 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:31 [DEBUG] : Beginning Read +2022/02/28 11:20:31 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:31 [DEBUG] Begin Injection +2022/02/28 11:20:31 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d20140 5563 [] false false map[] 0xc000876500 0xc000d00840} +2022/02/28 11:20:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:31 [DEBUG] Exit from do method +2022/02/28 11:20:31 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:31 [DEBUG] 621c62991d000080624fb9c7: Beginning Read +2022/02/28 11:20:31 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:31 [DEBUG] Begin Injection +2022/02/28 11:20:31 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:31 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read +2022/02/28 11:20:31 id: 621c62991b0000af08fd0c27 +2022/02/28 11:20:31 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:31 [DEBUG] Begin Injection +2022/02/28 11:20:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d20780 1277 [] false false map[] 0xc000dec300 0xc000d00840} +2022/02/28 11:20:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:20:31 [DEBUG] Exit from do method +2022/02/28 11:20:31 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully +2022/02/28 11:20:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b0240 160 [] false false map[] 0xc000876e00 0xc0005200b0} +2022/02/28 11:20:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:31 [DEBUG] Exit from do method +2022/02/28 11:20:31 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully +2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:31 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:31 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:31 [DEBUG] Begin Injection +2022/02/28 11:20:31 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376ac0 1277 [] false false map[] 0xc000dec800 0xc0005200b0} +2022/02/28 11:20:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:20:32 [DEBUG] Exit from do method +2022/02/28 11:20:32 currentvrfname acctest_0qbd3 +2022/02/28 11:20:32 found correct vrfname +2022/02/28 11:20:32 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:32 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:32 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:32 [DEBUG] Begin Injection +2022/02/28 11:20:32 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba4080 1277 [] false false map[] 0xc000877300 0xc0005200b0} +2022/02/28 11:20:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:20:32 [DEBUG] Exit from do method +2022/02/28 11:20:32 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:32 [DEBUG] New state was assigned lineage "05971024-481f-bab8-3db2-3227fe1404eb" +2022/02/28 11:20:32 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:32 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:32 [DEBUG] Test: Executing step 8 +2022/02/28 11:20:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:32 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:32 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:32 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:32 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:32 [DEBUG] : Beginning Read +2022/02/28 11:20:32 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:32 [DEBUG] Begin Injection +2022/02/28 11:20:32 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001364b00 5563 [] false false map[] 0xc001b24f00 0xc0005200b0} +2022/02/28 11:20:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:33 [DEBUG] Exit from do method +2022/02/28 11:20:33 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:33 [DEBUG] 621c62991d000080624fb9c7: Beginning Read +2022/02/28 11:20:33 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:33 [DEBUG] Begin Injection +2022/02/28 11:20:33 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:33 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read +2022/02/28 11:20:33 id: 621c62991b0000af08fd0c27 +2022/02/28 11:20:33 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:33 [DEBUG] Begin Injection +2022/02/28 11:20:33 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d200c0 1277 [] false false map[] 0xc001b25400 0xc0005200b0} +2022/02/28 11:20:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:20:33 [DEBUG] Exit from do method +2022/02/28 11:20:33 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully +2022/02/28 11:20:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d207c0 160 [] false false map[] 0xc0017aa900 0xc000d00840} +2022/02/28 11:20:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:33 [DEBUG] Exit from do method +2022/02/28 11:20:33 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully +2022/02/28 11:20:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:33 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:33 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:33 [DEBUG] Begin Injection +2022/02/28 11:20:33 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00132e740 1277 [] false false map[] 0xc000510500 0xc000d00840} +2022/02/28 11:20:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:20:33 [DEBUG] Exit from do method +2022/02/28 11:20:33 currentvrfname acctest_0qbd3 +2022/02/28 11:20:33 found correct vrfname +2022/02/28 11:20:33 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:33 [DEBUG] acctest_0qbd3: Beginning Read +2022/02/28 11:20:33 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:33 [DEBUG] Begin Injection +2022/02/28 11:20:33 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104240 1277 [] false false map[] 0xc000510e00 0xc000d00840} +2022/02/28 11:20:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:20:34 [DEBUG] Exit from do method +2022/02/28 11:20:34 [DEBUG] acctest_0qbd3: Read finished successfully +2022/02/28 11:20:34 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:34 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:34 [DEBUG] New state was assigned lineage "b37c3187-1881-f1bb-5ac8-3929105740ad" +2022/02/28 11:20:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:20:34 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:34 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:34 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:34 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c62991b0000af08fd0c27" => "" + name: "acctest_0qbd3" => "acctest_3hr40" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "acctest_0qbd3" => "acctest_3hr40" (forces new resource) + id: "acctest_0qbd3" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_0qbd3" => "acctest_3hr40" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c62991d000080624fb9c7" => "621c62991d000080624fb9c7" + template_name: "acctest_g44b1" => "acctest_g44b1" + vrf_name: "acctest_0qbd3" => "acctest_3hr40" + vrf_schema_id: "621c62991d000080624fb9c7" => "" + vrf_template_name: "acctest_g44b1" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_3hr40" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_3hr40" + schema_id: "" => "621c62991d000080624fb9c7" + template_name: "" => "acctest_g44b1" + version: "" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_0qbd3" => "acctest_3hr40" + id: "acctest_0qbd3" => "" + layer3_multicast: "false" => "" + name: "acctest_0qbd3" => "acctest_3hr40" (forces new resource) + schema_id: "621c62991d000080624fb9c7" => "621c62991d000080624fb9c7" + template: "acctest_g44b1" => "acctest_g44b1" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c62991b0000af08fd0c27 + provider = provider.mso + description = + name = acctest_0qbd3 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c62991d000080624fb9c7 + provider = provider.mso + name = acctest_g44b1 + template_name = acctest_g44b1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_0qbd3 + provider = provider.mso + display_name = acctest_0qbd3 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_0qbd3 + schema_id = 621c62991d000080624fb9c7 + template_name = acctest_g44b1 + vrf_name = acctest_0qbd3 + vrf_schema_id = 621c62991d000080624fb9c7 + vrf_template_name = acctest_g44b1 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_0qbd3 + provider = provider.mso + display_name = acctest_0qbd3 + layer3_multicast = false + name = acctest_0qbd3 + schema_id = 621c62991d000080624fb9c7 + template = acctest_g44b1 + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:20:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:20:34 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] +2022/02/28 11:20:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:34 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:20:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:20:34 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read +2022/02/28 11:20:34 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:34 [DEBUG] Begin Injection +2022/02/28 11:20:34 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:34 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:20:34 [DEBUG] Template BD: Beginning Update +2022/02/28 11:20:34 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 [DEBUG] Begin Injection +2022/02/28 11:20:34 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000510600 0xc0005200b0} +2022/02/28 11:20:34 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0013a6700 0xc000d00840} +2022/02/28 11:20:34 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 +2022/02/28 11:20:34 [DEBUG] : Read finished successfully +2022/02/28 11:20:34 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:20:34 [DEBUG] acctest_0qbd3: Beginning Destroy +2022/02/28 11:20:34 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 [DEBUG] Begin Injection +2022/02/28 11:20:34 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:20:34 [DEBUG] : Beginning Create +2022/02/28 11:20:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:20:34 [DEBUG] Begin Injection +2022/02/28 11:20:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:20:34 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw] Content-Type:[application/json]] {{"desc":"","name":"acctest_3hr40","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xaf7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:20:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:20:34 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000cfa500 0xc000d00840} +2022/02/28 11:20:34 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 [DEBUG] acctest_0qbd3: Destroy finished successfully +2022/02/28 11:20:34 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:20:34 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:20:34 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 [DEBUG] Begin Injection +2022/02/28 11:20:34 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:34 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:20:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001428180 160 [] false false map[] 0xc001b24f00 0xc0005200b0} +2022/02/28 11:20:34 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c62aa1b0000c408fd0c2a","name":"acctest_3hr40","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:34 [DEBUG] Exit from do method +2022/02/28 11:20:34 [DEBUG] 621c62aa1b0000c408fd0c2a: Creation finished successfully +2022/02/28 11:20:34 [DEBUG] 621c62aa1b0000c408fd0c2a: Beginning Read +2022/02/28 11:20:34 id: 621c62aa1b0000c408fd0c2a +2022/02/28 11:20:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:34 [DEBUG] Begin Injection +2022/02/28 11:20:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:35 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0013a7900 0xc000d00840} +2022/02/28 11:20:35 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:35 [DEBUG] acctest_3hr40: Creation finished successfully +2022/02/28 11:20:35 [DEBUG] acctest_3hr40: Beginning Read +2022/02/28 11:20:35 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:35 [DEBUG] Begin Injection +2022/02/28 11:20:35 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc31c0 160 [] false false map[] 0xc000e2e000 0xc0005200b0} +2022/02/28 11:20:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a {"id":"621c62aa1b0000c408fd0c2a","name":"acctest_3hr40","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:35 [DEBUG] Exit from do method +2022/02/28 11:20:35 [DEBUG] 621c62aa1b0000c408fd0c2a: Read finished successfully +2022/02/28 11:20:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc2040 768 [] false false map[] 0xc0013a7b00 0xc000d00840} +2022/02/28 11:20:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 11:20:35 [DEBUG] Exit from do method +2022/02/28 11:20:35 currentvrfname acctest_3hr40 +2022/02/28 11:20:35 found correct vrfname +2022/02/28 11:20:35 [DEBUG] acctest_3hr40: Read finished successfully +2022/02/28 11:20:35 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:20:35 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:20:35 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:20:35 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:35 [DEBUG] Begin Injection +2022/02/28 11:20:35 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:35 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000e2e800 0xc000d00840} +2022/02/28 11:20:35 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:35 [DEBUG] : Beginning Read +2022/02/28 11:20:35 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:35 [DEBUG] Begin Injection +2022/02/28 11:20:35 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc2180 1278 [] false false map[] 0xc0013a6200 0xc000d00840} +2022/02/28 11:20:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 11:20:36 [DEBUG] Exit from do method +2022/02/28 11:20:36 [DEBUG] acctest_3hr40: Read finished successfully +2022/02/28 11:20:36 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:20:36 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:20:36 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:36 [DEBUG] Begin Injection +2022/02/28 11:20:36 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:36 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:36 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000510800 0xc000d00840} +2022/02/28 11:20:36 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:36 [DEBUG] Creation Complete +2022/02/28 11:20:36 [DEBUG] : Beginning Read +2022/02/28 11:20:36 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:36 [DEBUG] Begin Injection +2022/02/28 11:20:36 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d210c0 1363 [] false false map[] 0xc0013a6400 0xc000d00840} +2022/02/28 11:20:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:20:36 [DEBUG] Exit from do method +2022/02/28 11:20:36 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40: Read finished successfully +2022/02/28 11:20:36 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:36 [DEBUG] New state was assigned lineage "9a5f448f-8c81-0dc7-bcab-0c8f77915cac" +2022/02/28 11:20:36 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:36 [DEBUG] Begin Injection +2022/02/28 11:20:36 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050bb80 1363 [] false false map[] 0xc001b24000 0xc000d00840} +2022/02/28 11:20:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:20:37 [DEBUG] Exit from do method +2022/02/28 11:20:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:37 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:37 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:37 [DEBUG] : Beginning Read +2022/02/28 11:20:37 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:37 [DEBUG] Begin Injection +2022/02/28 11:20:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772440 5563 [] false false map[] 0xc000510600 0xc000d00840} +2022/02/28 11:20:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:37 [DEBUG] Exit from do method +2022/02/28 11:20:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:37 [DEBUG] 621c62991d000080624fb9c7: Beginning Read +2022/02/28 11:20:37 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:37 [DEBUG] Begin Injection +2022/02/28 11:20:37 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:37 [DEBUG] 621c62aa1b0000c408fd0c2a: Beginning Read +2022/02/28 11:20:37 id: 621c62aa1b0000c408fd0c2a +2022/02/28 11:20:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:37 [DEBUG] Begin Injection +2022/02/28 11:20:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014280c0 160 [] false false map[] 0xc000cd4a00 0xc0005200b0} +2022/02/28 11:20:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a {"id":"621c62aa1b0000c408fd0c2a","name":"acctest_3hr40","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:37 [DEBUG] Exit from do method +2022/02/28 11:20:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:37 [DEBUG] 621c62aa1b0000c408fd0c2a: Read finished successfully +2022/02/28 11:20:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b0500 1363 [] false false map[] 0xc000cd4700 0xc000d00840} +2022/02/28 11:20:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:20:37 [DEBUG] Exit from do method +2022/02/28 11:20:37 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully +2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:37 [DEBUG] acctest_3hr40: Beginning Read +2022/02/28 11:20:37 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:37 [DEBUG] Begin Injection +2022/02/28 11:20:37 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104180 1363 [] false false map[] 0xc001b24a00 0xc000d00840} +2022/02/28 11:20:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:20:38 [DEBUG] Exit from do method +2022/02/28 11:20:38 currentvrfname acctest_3hr40 +2022/02/28 11:20:38 found correct vrfname +2022/02/28 11:20:38 [DEBUG] acctest_3hr40: Read finished successfully +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:38 [DEBUG] acctest_3hr40: Beginning Read +2022/02/28 11:20:38 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:38 [DEBUG] Begin Injection +2022/02/28 11:20:38 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a0c0 1363 [] false false map[] 0xc000cd4400 0xc000d00840} +2022/02/28 11:20:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:20:38 [DEBUG] Exit from do method +2022/02/28 11:20:38 [DEBUG] acctest_3hr40: Read finished successfully +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:38 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40: Beginning Read +2022/02/28 11:20:38 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:38 [DEBUG] Begin Injection +2022/02/28 11:20:38 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000338280 1363 [] false false map[] 0xc001b24e00 0xc000d00840} +2022/02/28 11:20:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:20:38 [DEBUG] Exit from do method +2022/02/28 11:20:38 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40: Read finished successfully +2022/02/28 11:20:38 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:38 [DEBUG] New state was assigned lineage "ff9481f9-e9bf-f301-21ca-a9d4daac0b4d" +2022/02/28 11:20:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:20:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:20:38 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:38 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:38 [WARN] Test: Executing destroy step +2022/02/28 11:20:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:20:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:39 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:20:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:39 [DEBUG] : Beginning Read +2022/02/28 11:20:39 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:39 [DEBUG] Begin Injection +2022/02/28 11:20:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050a040 5563 [] false false map[] 0xc00056f000 0xc000d00840} +2022/02/28 11:20:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:39 [DEBUG] Exit from do method +2022/02/28 11:20:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:20:39 [DEBUG] 621c62aa1b0000c408fd0c2a: Beginning Read +2022/02/28 11:20:39 id: 621c62aa1b0000c408fd0c2a +2022/02/28 11:20:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:39 [DEBUG] Begin Injection +2022/02/28 11:20:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:39 [DEBUG] 621c62991d000080624fb9c7: Beginning Read +2022/02/28 11:20:39 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:39 [DEBUG] Begin Injection +2022/02/28 11:20:39 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba53c0 1363 [] false false map[] 0xc001b24b00 0xc0005200b0} +2022/02/28 11:20:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:20:40 [DEBUG] Exit from do method +2022/02/28 11:20:40 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:20:40 [DEBUG] acctest_3hr40: Beginning Read +2022/02/28 11:20:40 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 [DEBUG] Begin Injection +2022/02/28 11:20:40 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772340 160 [] false false map[] 0xc001b24a00 0xc000d00840} +2022/02/28 11:20:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a {"id":"621c62aa1b0000c408fd0c2a","name":"acctest_3hr40","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:20:40 [DEBUG] Exit from do method +2022/02/28 11:20:40 [DEBUG] 621c62aa1b0000c408fd0c2a: Read finished successfully +2022/02/28 11:20:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000882440 1363 [] false false map[] 0xc00056e500 0xc0005200b0} +2022/02/28 11:20:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:20:40 [DEBUG] Exit from do method +2022/02/28 11:20:40 currentvrfname acctest_3hr40 +2022/02/28 11:20:40 found correct vrfname +2022/02/28 11:20:40 [DEBUG] acctest_3hr40: Read finished successfully +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:20:40 [DEBUG] acctest_3hr40: Beginning Read +2022/02/28 11:20:40 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 [DEBUG] Begin Injection +2022/02/28 11:20:40 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba5a40 1363 [] false false map[] 0xc000510500 0xc0005200b0} +2022/02/28 11:20:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:20:40 [DEBUG] Exit from do method +2022/02/28 11:20:40 [DEBUG] acctest_3hr40: Read finished successfully +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:20:40 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40: Beginning Read +2022/02/28 11:20:40 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 [DEBUG] Begin Injection +2022/02/28 11:20:40 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a5c0 1363 [] false false map[] 0xc001b25000 0xc0005200b0} +2022/02/28 11:20:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:20:40 [DEBUG] Exit from do method +2022/02/28 11:20:40 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40: Read finished successfully +2022/02/28 11:20:40 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:40 [DEBUG] New state was assigned lineage "0acad888-65b5-fbb6-bb9b-28b4cd209405" +2022/02/28 11:20:40 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:20:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:40 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:20:41 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c62aa1b0000c408fd0c2a" => "" + name: "acctest_3hr40" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c62991d000080624fb9c7" => "" + name: "acctest_g44b1" => "" + template_name: "acctest_g44b1" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_3hr40" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_3hr40" => "" + id: "acctest_3hr40" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_3hr40" => "" + schema_id: "621c62991d000080624fb9c7" => "" + template_name: "acctest_g44b1" => "" + vrf_name: "acctest_3hr40" => "" + vrf_schema_id: "621c62991d000080624fb9c7" => "" + vrf_template_name: "acctest_g44b1" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_3hr40" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40" => "" + name: "acctest_3hr40" => "" + schema_id: "621c62991d000080624fb9c7" => "" + template_name: "acctest_g44b1" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_3hr40" => "" + id: "acctest_3hr40" => "" + layer3_multicast: "false" => "" + name: "acctest_3hr40" => "" + schema_id: "621c62991d000080624fb9c7" => "" + template: "acctest_g44b1" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c62aa1b0000c408fd0c2a + provider = provider.mso + description = + name = acctest_3hr40 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c62991d000080624fb9c7 + provider = provider.mso + name = acctest_g44b1 + template_name = acctest_g44b1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_3hr40 + provider = provider.mso + dhcp_policy.name = acctest_3hr40 + dhcp_policy.version = 0 + display_name = acctest_3hr40 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_3hr40 + schema_id = 621c62991d000080624fb9c7 + template_name = acctest_g44b1 + vrf_name = acctest_3hr40 + vrf_schema_id = 621c62991d000080624fb9c7 + vrf_template_name = acctest_g44b1 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40 + provider = provider.mso + bd_name = acctest_3hr40 + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_3hr40 + schema_id = 621c62991d000080624fb9c7 + template_name = acctest_g44b1 + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_3hr40 + provider = provider.mso + display_name = acctest_3hr40 + layer3_multicast = false + name = acctest_3hr40 + schema_id = 621c62991d000080624fb9c7 + template = acctest_g44b1 + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:20:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:20:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:20:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:20:41 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:20:41 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:20:41 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:20:41 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:20:41 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:20:41 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:20:41 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:20:41 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:20:41 [DEBUG] Template BD: Beginning Update +2022/02/28 11:20:41 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 [DEBUG] Begin Injection +2022/02/28 11:20:41 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001b24700 0xc0005200b0} +2022/02/28 11:20:41 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:20:41 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:20:41 [DEBUG] 621c62aa1b0000c408fd0c2a: Beginning Read +2022/02/28 11:20:41 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:41 [DEBUG] Begin Injection +2022/02/28 11:20:41 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:41 [DEBUG] Template BD: Beginning Update +2022/02/28 11:20:41 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 [DEBUG] Begin Injection +2022/02/28 11:20:41 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000511000 0xc000d00840} +2022/02/28 11:20:41 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:20:41 [DEBUG] acctest_3hr40: Beginning Destroy +2022/02/28 11:20:41 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 [DEBUG] Begin Injection +2022/02/28 11:20:41 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:41 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00056e300 0xc0005200b0} +2022/02/28 11:20:41 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a +2022/02/28 11:20:41 [DEBUG] : Read finished successfully +2022/02/28 11:20:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00137c400 0xc000d00840} +2022/02/28 11:20:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false +2022/02/28 11:20:42 [DEBUG] acctest_3hr40: Destroy finished successfully +2022/02/28 11:20:42 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:20:42 [DEBUG] 621c62991d000080624fb9c7: Beginning Destroy +2022/02/28 11:20:42 HTTP request DELETE mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:42 [DEBUG] Begin Injection +2022/02/28 11:20:42 HTTP request after injection DELETE mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:42 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00137cc00 0xc000d00840} +2022/02/28 11:20:42 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:42 [DEBUG] 621c62991d000080624fb9c7: Destroy finished successfully +2022/02/28 11:20:42 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:42 [DEBUG] New state was assigned lineage "d87086ec-cf34-01d4-38f5-3ea2fe0cfe4d" +2022/02/28 11:20:42 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:42 [DEBUG] Begin Injection +2022/02/28 11:20:42 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 +2022/02/28 11:20:42 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:42 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104040 39 [] false false map[] 0xc000511400 0xc000d00840} +2022/02/28 11:20:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"code":404,"message":"Item not found"} +2022/02/28 11:20:42 [DEBUG] Exit from do method +2022/02/28 11:20:42 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:20:42 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:20:42 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:20:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:20:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:20:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:42 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:20:42 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:20:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:42 [DEBUG] : Beginning Read +2022/02/28 11:20:42 HTTP request GET mso/api/v1/tenants +2022/02/28 11:20:42 [DEBUG] Begin Injection +2022/02/28 11:20:42 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:20:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:20:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376040 5563 [] false false map[] 0xc001b25c00 0xc000d00840} +2022/02/28 11:20:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:20:43 [DEBUG] Exit from do method +2022/02/28 11:20:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:20:43 [DEBUG] provider has no plugin.Client +2022/02/28 11:20:43 [DEBUG] New state was assigned lineage "cddec7eb-b283-1a29-e66b-372df14ce7ec" +2022/02/28 11:20:43 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:20:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:20:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:20:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/28 11:20:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:20:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:20:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:20:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:20:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:20:43 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:21:01 [DEBUG] Test: Executing step 0 +2022/02/28 11:21:01 [DEBUG] Test: Executing step 0 +2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:21:01 [DEBUG] Test: Executing step 1 +2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:01 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:01 [DEBUG] : Beginning Read +2022/02/28 11:21:01 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:01 [DEBUG] Begin Injection +2022/02/28 11:21:01 HTTP request POST /login +2022/02/28 11:21:01 HTTP request after injection POST /login +2022/02/28 11:21:01 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:21:01 [DEBUG] Test: Executing step 2 +2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:21:01 [DEBUG] Test: Executing step 3 +2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:21:01 [DEBUG] Test: Executing step 4 +2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:01 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:01 [DEBUG] : Beginning Read +2022/02/28 11:21:01 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:01 [DEBUG] Begin Injection +2022/02/28 11:21:01 HTTP request POST /login +2022/02/28 11:21:01 HTTP request after injection POST /login +2022/02/28 11:21:01 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:21:03 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:21:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:03 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0x3OXVVaXdDSHlERlRoWlVLaXJxTnQwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.lBgh_RRUHHkbGWvWW1Z-fvNYAiHpvDxyf6CfTf7ZISgDCnI7wnfOyx0_gsAPL-TUvgNjFC8naZIEGip9M3EyfXLZcaXryh-mjVR64-hnEhyrpCcvO2idmA7tPLi3jsBl1RbsZanXcuaS95zmfnl_oBxS_IRpMX8JDEA7XWH5riUZq9hiFnenDN3ZH8RH5wnxdSUdzvBnXlZjuA9dgcYxUX1zwd-Q19A1m5ICOpHh2tZnwZITqrK0-e5x6-rpmj5wqtxNS89p0Yfpc75zc2nBtEOJFQXlTIN8ivb_na1E0P8-r8m-Tx6aaXPsVQzccWgssfY9LcAdWQmSSp-nWm6gMw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00036ea40 -1 [chunked] false false map[] 0xc00032f200 0xc000b6e000} +2022/02/28 11:21:03 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0x3OXVVaXdDSHlERlRoWlVLaXJxTnQwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.lBgh_RRUHHkbGWvWW1Z-fvNYAiHpvDxyf6CfTf7ZISgDCnI7wnfOyx0_gsAPL-TUvgNjFC8naZIEGip9M3EyfXLZcaXryh-mjVR64-hnEhyrpCcvO2idmA7tPLi3jsBl1RbsZanXcuaS95zmfnl_oBxS_IRpMX8JDEA7XWH5riUZq9hiFnenDN3ZH8RH5wnxdSUdzvBnXlZjuA9dgcYxUX1zwd-Q19A1m5ICOpHh2tZnwZITqrK0-e5x6-rpmj5wqtxNS89p0Yfpc75zc2nBtEOJFQXlTIN8ivb_na1E0P8-r8m-Tx6aaXPsVQzccWgssfY9LcAdWQmSSp-nWm6gMw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0x3OXVVaXdDSHlERlRoWlVLaXJxTnQwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.lBgh_RRUHHkbGWvWW1Z-fvNYAiHpvDxyf6CfTf7ZISgDCnI7wnfOyx0_gsAPL-TUvgNjFC8naZIEGip9M3EyfXLZcaXryh-mjVR64-hnEhyrpCcvO2idmA7tPLi3jsBl1RbsZanXcuaS95zmfnl_oBxS_IRpMX8JDEA7XWH5riUZq9hiFnenDN3ZH8RH5wnxdSUdzvBnXlZjuA9dgcYxUX1zwd-Q19A1m5ICOpHh2tZnwZITqrK0-e5x6-rpmj5wqtxNS89p0Yfpc75zc2nBtEOJFQXlTIN8ivb_na1E0P8-r8m-Tx6aaXPsVQzccWgssfY9LcAdWQmSSp-nWm6gMw"} +2022/02/28 11:21:03 [DEBUG] Exit from do method +2022/02/28 11:21:03 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:03 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:21:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:03 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000b84240 -1 [chunked] false false map[] 0xc000f7e600 0xc000272000} +2022/02/28 11:21:03 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg"} +2022/02/28 11:21:03 [DEBUG] Exit from do method +2022/02/28 11:21:03 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036ec40 5563 [] false false map[] 0xc000f7e500 0xc000272000} +2022/02/28 11:21:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:03 [DEBUG] Exit from do method +2022/02/28 11:21:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:03 [DEBUG] New state was assigned lineage "5b4ad76b-d17a-e444-81a5-23f892e610a8" +2022/02/28 11:21:03 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:21:03 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b84080 5563 [] false false map[] 0xc00032f100 0xc000b6e000} +2022/02/28 11:21:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:03 [DEBUG] Exit from do method +2022/02/28 11:21:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:03 [DEBUG] New state was assigned lineage "f6654e98-4454-b767-1b83-cb3f94e2c6f0" +2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:03 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:21:03 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:03 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_u6xd0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_sy1l1" + template_name: "" => "acctest_sy1l1" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_u6xd0" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_u6xd0" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_sy1l1" + vrf_name: "" => "acctest_u6xd0" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_u6xd0" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_u6xd0" + schema_id: "" => "" + template_name: "" => "acctest_sy1l1" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_u6xd0" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_u6xd0" + schema_id: "" => "" + template: "" => "acctest_sy1l1" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:21:03 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:21:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:21:03 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:03 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:21:03 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:21:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:03 [DEBUG] Schema: Beginning Creation +2022/02/28 11:21:03 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_603zk" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_cn2xx" + template_name: "" => "acctest_cn2xx" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_603zk" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_603zk" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_cn2xx" + vrf_name: "" => "acctest_603zk" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_603zk_invalid" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_603zk" + schema_id: "" => "" + template_name: "" => "acctest_cn2xx" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_603zk" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_603zk" + schema_id: "" => "" + template: "" => "acctest_cn2xx" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:21:03 [DEBUG] : Beginning Create +2022/02/28 11:21:03 HTTP request POST mso/api/v1/schemas +2022/02/28 11:21:03 [DEBUG] Begin Injection +2022/02/28 11:21:03 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:21:03 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:21:03 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg] Content-Type:[application/json]] {{"displayName":"acctest_sy1l1","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_sy1l1","externalEpgs":[],"filters":[],"name":"acctest_sy1l1","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xc77ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:21:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:21:03 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:21:03 [DEBUG] Begin Injection +2022/02/28 11:21:03 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:21:03 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg] Content-Type:[application/json]] {{"desc":"","name":"acctest_u6xd0","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xc77ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:21:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:21:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state)] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:21:03 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:21:03 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:21:03 [DEBUG] Schema: Beginning Creation +2022/02/28 11:21:03 HTTP request POST mso/api/v1/schemas +2022/02/28 11:21:03 [DEBUG] Begin Injection +2022/02/28 11:21:03 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:21:03 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg] Content-Type:[application/json]] {{"displayName":"acctest_cn2xx","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_cn2xx","externalEpgs":[],"filters":[],"name":"acctest_cn2xx","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xc77ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:21:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:21:03 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:21:03 [DEBUG] : Beginning Create +2022/02/28 11:21:03 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:21:03 [DEBUG] Begin Injection +2022/02/28 11:21:03 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:21:03 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg] Content-Type:[application/json]] {{"desc":"","name":"acctest_603zk","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xc77ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:21:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:21:04 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:21:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6a40 160 [] false false map[] 0xc000d0a900 0xc000272000} +2022/02/28 11:21:04 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:04 [DEBUG] Exit from do method +2022/02/28 11:21:04 [DEBUG] 621c62c71b0000c408fd0c2b: Creation finished successfully +2022/02/28 11:21:04 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read +2022/02/28 11:21:04 id: 621c62c71b0000c408fd0c2b +2022/02/28 11:21:04 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:04 [DEBUG] Begin Injection +2022/02/28 11:21:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:04 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:21:04 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c62c71d000094624fb9de] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b84180 400 [] false false map[] 0xc000512100 0xc000b6e000} +2022/02/28 11:21:04 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:21:04 [DEBUG] Exit from do method +2022/02/28 11:21:04 [DEBUG] 621c62c71d000094624fb9de: Schema Creation finished successfully +2022/02/28 11:21:04 [DEBUG] 621c62c71d000094624fb9de: Beginning Read +2022/02/28 11:21:04 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:04 [DEBUG] Begin Injection +2022/02/28 11:21:04 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:04 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:21:04 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c62c81d000094624fb9e0] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036e640 400 [] false false map[] 0xc000accd00 0xc000272000} +2022/02/28 11:21:04 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:21:04 [DEBUG] Exit from do method +2022/02/28 11:21:04 [DEBUG] 621c62c81d000094624fb9e0: Schema Creation finished successfully +2022/02/28 11:21:04 [DEBUG] 621c62c81d000094624fb9e0: Beginning Read +2022/02/28 11:21:04 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:04 [DEBUG] Begin Injection +2022/02/28 11:21:04 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:04 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:21:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036e940 160 [] false false map[] 0xc000513400 0xc000b6e000} +2022/02/28 11:21:04 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c62c81b0000aa08fd0c2c","name":"acctest_603zk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:04 [DEBUG] Exit from do method +2022/02/28 11:21:04 [DEBUG] 621c62c81b0000aa08fd0c2c: Creation finished successfully +2022/02/28 11:21:04 [DEBUG] 621c62c81b0000aa08fd0c2c: Beginning Read +2022/02/28 11:21:04 id: 621c62c81b0000aa08fd0c2c +2022/02/28 11:21:04 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:04 [DEBUG] Begin Injection +2022/02/28 11:21:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036ec00 160 [] false false map[] 0xc000d0a400 0xc000272000} +2022/02/28 11:21:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:04 [DEBUG] Exit from do method +2022/02/28 11:21:04 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully +2022/02/28 11:21:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036ecc0 160 [] false false map[] 0xc0013d4100 0xc000b6e000} +2022/02/28 11:21:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c {"id":"621c62c81b0000aa08fd0c2c","name":"acctest_603zk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b84500 400 [] false false map[] 0xc0013d4000 0xc0003f14a0} +2022/02/28 11:21:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:05 [DEBUG] Exit from do method +2022/02/28 11:21:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:21:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090c00 400 [] false false map[] 0xc000d0a500 0xc000786000} +2022/02/28 11:21:05 [DEBUG] Exit from do method +2022/02/28 11:21:05 [DEBUG] 621c62c81d000094624fb9e0: Read finished successfully +2022/02/28 11:21:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:21:05 [DEBUG] Exit from do method +2022/02/28 11:21:05 [DEBUG] 621c62c81b0000aa08fd0c2c: Read finished successfully +2022/02/28 11:21:05 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully +2022/02/28 11:21:05 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:21:05 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:21:05 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:21:05 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:21:05 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:05 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:05 [DEBUG] Begin Injection +2022/02/28 11:21:05 [DEBUG] Begin Injection +2022/02/28 11:21:05 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:05 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:05 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:05 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c7c800 0xc0002720b0} +2022/02/28 11:21:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d0ae00 0xc000272000} +2022/02/28 11:21:05 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:05 [DEBUG] acctest_u6xd0: Creation finished successfully +2022/02/28 11:21:05 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:05 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:05 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:05 [DEBUG] Begin Injection +2022/02/28 11:21:05 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:05 [DEBUG] acctest_603zk: Creation finished successfully +2022/02/28 11:21:05 [DEBUG] acctest_603zk: Beginning Read +2022/02/28 11:21:05 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:05 [DEBUG] Begin Injection +2022/02/28 11:21:05 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090640 768 [] false false map[] 0xc000acc000 0xc000272000} +2022/02/28 11:21:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ce2100 768 [] false false map[] 0xc000f7e200 0xc000272160} +2022/02/28 11:21:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:21:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:21:05 [DEBUG] Exit from do method +2022/02/28 11:21:05 [DEBUG] Exit from do method +2022/02/28 11:21:05 currentvrfname acctest_u6xd0 +2022/02/28 11:21:05 found correct vrfname +2022/02/28 11:21:05 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:05 currentvrfname acctest_603zk +2022/02/28 11:21:05 found correct vrfname +2022/02/28 11:21:05 [DEBUG] acctest_603zk: Read finished successfully +2022/02/28 11:21:05 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:21:05 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:21:05 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:21:05 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:21:05 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:05 [DEBUG] Begin Injection +2022/02/28 11:21:05 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:05 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:21:05 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:21:05 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:05 [DEBUG] Begin Injection +2022/02/28 11:21:05 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:06 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0013d4800 0xc000272160} +2022/02/28 11:21:06 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:06 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:06 [DEBUG] : Beginning Read +2022/02/28 11:21:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c7d000 0xc000272000} +2022/02/28 11:21:06 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:06 [DEBUG] : Beginning Read +2022/02/28 11:21:06 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:06 [DEBUG] Begin Injection +2022/02/28 11:21:06 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:06 [DEBUG] Begin Injection +2022/02/28 11:21:06 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:06 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000654240 1277 [] false false map[] 0xc000c7d300 0xc000272160} +2022/02/28 11:21:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036e640 1277 [] false false map[] 0xc000512700 0xc000272000} +2022/02/28 11:21:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:21:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:21:07 [DEBUG] Exit from do method +2022/02/28 11:21:07 [DEBUG] Exit from do method +2022/02/28 11:21:07 [DEBUG] acctest_603zk: Read finished successfully +2022/02/28 11:21:07 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:07 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:21:07 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:21:07 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:21:07 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:07 [DEBUG] Begin Injection +2022/02/28 11:21:07 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:07 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:21:07 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:07 [DEBUG] Begin Injection +2022/02/28 11:21:07 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:08 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:08 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[112] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:07 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc0001e79c0 112 [] false false map[] 0xc000c7c100 0xc000272160} +2022/02/28 11:21:08 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false {"code":141,"message":"Resource Not Found: Bd with name acctest_603zk_invalid not found in List(acctest_603zk)"} +2022/02/28 11:21:08 [DEBUG] Exit from do method +2022/02/28 11:21:08 [DEBUG] mso_schema_template_bd_dhcp_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Resource Not Found: Bd with name acctest_603zk_invalid not found in List(acctest_603zk)"{} +2022/02/28 11:21:08 [ERROR] : eval: *terraform.EvalApplyPost, err: "Resource Not Found: Bd with name acctest_603zk_invalid not found in List(acctest_603zk)"{} +2022/02/28 11:21:08 [ERROR] : eval: *terraform.EvalSequence, err: "Resource Not Found: Bd with name acctest_603zk_invalid not found in List(acctest_603zk)"{} +2022/02/28 11:21:08 [DEBUG] New state was assigned lineage "743441ba-b402-7e7a-facf-b0b4db47dbf0" +2022/02/28 11:21:08 [DEBUG] Test: Executing step 1 +2022/02/28 11:21:08 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:08 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f7e900 0xc000272000} +2022/02/28 11:21:08 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:08 [DEBUG] Creation Complete +2022/02/28 11:21:08 [DEBUG] : Beginning Read +2022/02/28 11:21:08 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:08 [DEBUG] Begin Injection +2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:08 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:08 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:08 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "dsqmm" is not expected here. +2022/02/28 11:21:08 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "dsqmm" is not expected here. +2022/02/28 11:21:08 [DEBUG] Test: Executing step 2 +2022/02/28 11:21:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:08 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:08 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:08 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:08 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:08 [DEBUG] : Beginning Read +2022/02/28 11:21:08 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:08 [DEBUG] Begin Injection +2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c180 1362 [] false false map[] 0xc000c7c300 0xc000272000} +2022/02/28 11:21:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:08 [DEBUG] Exit from do method +2022/02/28 11:21:08 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully +2022/02/28 11:21:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:08 [DEBUG] New state was assigned lineage "000edbe9-7335-3888-68a1-0fb69c7ba357" +2022/02/28 11:21:08 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:08 [DEBUG] Begin Injection +2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7700 5563 [] false false map[] 0xc000512e00 0xc000272160} +2022/02/28 11:21:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:08 [DEBUG] Exit from do method +2022/02/28 11:21:08 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:08 [DEBUG] 621c62c81b0000aa08fd0c2c: Beginning Read +2022/02/28 11:21:08 [DEBUG] 621c62c81d000094624fb9e0: Beginning Read +2022/02/28 11:21:08 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:08 [DEBUG] Begin Injection +2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:08 id: 621c62c81b0000aa08fd0c2c +2022/02/28 11:21:08 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:08 [DEBUG] Begin Injection +2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000906c0 1362 [] false false map[] 0xc000512f00 0xc000272000} +2022/02/28 11:21:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:08 [DEBUG] Exit from do method +2022/02/28 11:21:08 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:08 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:08 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:08 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:08 [DEBUG] : Beginning Read +2022/02/28 11:21:08 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:08 [DEBUG] Begin Injection +2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000654800 1277 [] false false map[] 0xc000c7c100 0xc000272160} +2022/02/28 11:21:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:21:08 [DEBUG] Exit from do method +2022/02/28 11:21:08 [DEBUG] 621c62c81d000094624fb9e0: Read finished successfully +2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:08 [DEBUG] acctest_603zk: Beginning Read +2022/02/28 11:21:08 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:08 [DEBUG] Begin Injection +2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a9a00 160 [] false false map[] 0xc000d0a700 0xc000272000} +2022/02/28 11:21:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c {"id":"621c62c81b0000aa08fd0c2c","name":"acctest_603zk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:09 [DEBUG] Exit from do method +2022/02/28 11:21:09 [DEBUG] 621c62c81b0000aa08fd0c2c: Read finished successfully +2022/02/28 11:21:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a9e80 5563 [] false false map[] 0xc000d0a100 0xc000272160} +2022/02/28 11:21:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:09 [DEBUG] Exit from do method +2022/02/28 11:21:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:09 [DEBUG] 621c62c71d000094624fb9de: Beginning Read +2022/02/28 11:21:09 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:09 [DEBUG] Begin Injection +2022/02/28 11:21:09 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:09 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read +2022/02/28 11:21:09 id: 621c62c71b0000c408fd0c2b +2022/02/28 11:21:09 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:09 [DEBUG] Begin Injection +2022/02/28 11:21:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036ed00 1277 [] false false map[] 0xc00032e700 0xc000272000} +2022/02/28 11:21:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:21:09 [DEBUG] Exit from do method +2022/02/28 11:21:09 currentvrfname acctest_603zk +2022/02/28 11:21:09 found correct vrfname +2022/02/28 11:21:09 [DEBUG] acctest_603zk: Read finished successfully +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:09 [DEBUG] acctest_603zk: Beginning Read +2022/02/28 11:21:09 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:09 [DEBUG] Begin Injection +2022/02/28 11:21:09 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f880 1362 [] false false map[] 0xc00032f200 0xc000272160} +2022/02/28 11:21:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:09 [DEBUG] Exit from do method +2022/02/28 11:21:09 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:09 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:09 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:09 [DEBUG] Begin Injection +2022/02/28 11:21:09 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000994340 160 [] false false map[] 0xc000f7e300 0xc0003f1d90} +2022/02/28 11:21:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:09 [DEBUG] Exit from do method +2022/02/28 11:21:09 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully +2022/02/28 11:21:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013a1c80 1277 [] false false map[] 0xc000f7f100 0xc000272000} +2022/02/28 11:21:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:21:09 [DEBUG] Exit from do method +2022/02/28 11:21:09 [DEBUG] acctest_603zk: Read finished successfully +2022/02/28 11:21:09 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:09 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:09 [DEBUG] New state was assigned lineage "a209a0c8-c0fa-6a3b-6c24-7c0f36656b4d" +2022/02/28 11:21:09 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:09 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:09 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:09 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:09 [WARN] Test: Step plan: DIFF: + +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_603zk" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_603zk" + schema_id: "" => "621c62c81d000094624fb9e0" + template_name: "" => "acctest_cn2xx" + version: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c62c81b0000aa08fd0c2c + provider = provider.mso + description = + name = acctest_603zk + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c62c81d000094624fb9e0 + provider = provider.mso + name = acctest_cn2xx + template_name = acctest_cn2xx + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_603zk + provider = provider.mso + display_name = acctest_603zk + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_603zk + schema_id = 621c62c81d000094624fb9e0 + template_name = acctest_cn2xx + vrf_name = acctest_603zk + vrf_schema_id = 621c62c81d000094624fb9e0 + vrf_template_name = acctest_cn2xx + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_603zk + provider = provider.mso + display_name = acctest_603zk + layer3_multicast = false + name = acctest_603zk + schema_id = 621c62c81d000094624fb9e0 + template = acctest_cn2xx + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:21:09 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:21:09 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:21:09 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:21:09 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:21:09 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:21:09 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:09 [DEBUG] Begin Injection +2022/02/28 11:21:09 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086d6c0 1362 [] false false map[] 0xc000512900 0xc000272160} +2022/02/28 11:21:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:09 [DEBUG] Exit from do method +2022/02/28 11:21:09 currentvrfname acctest_u6xd0 +2022/02/28 11:21:09 found correct vrfname +2022/02/28 11:21:09 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:09 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:09 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:09 [DEBUG] Begin Injection +2022/02/28 11:21:09 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:10 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00032e800 0xc000908000} +2022/02/28 11:21:10 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:10 [DEBUG] Creation Complete +2022/02/28 11:21:10 [DEBUG] : Beginning Read +2022/02/28 11:21:10 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:10 [DEBUG] Begin Injection +2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e400 1362 [] false false map[] 0xc00032f400 0xc000272160} +2022/02/28 11:21:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:10 [DEBUG] Exit from do method +2022/02/28 11:21:10 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:10 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Read +2022/02/28 11:21:10 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:10 [DEBUG] Begin Injection +2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000916c0 1362 [] false false map[] 0xc00032f500 0xc000b6e000} +2022/02/28 11:21:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:10 [DEBUG] Exit from do method +2022/02/28 11:21:10 [DEBUG] /schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk: Read finished successfully +2022/02/28 11:21:10 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:10 [DEBUG] New state was assigned lineage "243953e0-6cac-cb3f-f896-fdaddbe52c34" +2022/02/28 11:21:10 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:10 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:10 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:10 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:10 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:10 [DEBUG] : Beginning Read +2022/02/28 11:21:10 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:10 [DEBUG] Begin Injection +2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086dcc0 1362 [] false false map[] 0xc000d0a600 0xc000272160} +2022/02/28 11:21:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:10 [DEBUG] Exit from do method +2022/02/28 11:21:10 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully +2022/02/28 11:21:10 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:10 [DEBUG] New state was assigned lineage "cb1da283-e7d6-044f-5599-1c3345d78ca1" +2022/02/28 11:21:10 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:10 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:10 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:10 [DEBUG] Test: Executing step 5 +2022/02/28 11:21:10 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:10 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:10 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:10 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:10 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:10 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:10 [DEBUG] : Beginning Read +2022/02/28 11:21:10 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:10 [DEBUG] Begin Injection +2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086c200 5563 [] false false map[] 0xc000512100 0xc000b6e000} +2022/02/28 11:21:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:10 [DEBUG] Exit from do method +2022/02/28 11:21:10 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:10 [DEBUG] 621c62c81d000094624fb9e0: Beginning Read +2022/02/28 11:21:10 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:10 [DEBUG] Begin Injection +2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:10 [DEBUG] 621c62c81b0000aa08fd0c2c: Beginning Read +2022/02/28 11:21:10 id: 621c62c81b0000aa08fd0c2c +2022/02/28 11:21:10 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:10 [DEBUG] Begin Injection +2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086d180 5563 [] false false map[] 0xc000cb5300 0xc000272160} +2022/02/28 11:21:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:10 [DEBUG] Exit from do method +2022/02/28 11:21:10 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:10 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:21:10 [DEBUG] 621c62c71d000094624fb9de: Beginning Read +2022/02/28 11:21:10 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:10 [DEBUG] Begin Injection +2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:10 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read +2022/02/28 11:21:10 id: 621c62c71b0000c408fd0c2b +2022/02/28 11:21:10 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:10 [DEBUG] Begin Injection +2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086db00 1362 [] false false map[] 0xc000f7e700 0xc000b6e000} +2022/02/28 11:21:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d52700 160 [] false false map[] 0xc000cb4000 0xc000136790} +2022/02/28 11:21:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c {"id":"621c62c81b0000aa08fd0c2c","name":"acctest_603zk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:11 [DEBUG] Exit from do method +2022/02/28 11:21:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:11 [DEBUG] Exit from do method +2022/02/28 11:21:11 [DEBUG] 621c62c81d000094624fb9e0: Read finished successfully +2022/02/28 11:21:11 [DEBUG] 621c62c81b0000aa08fd0c2c: Read finished successfully +2022/02/28 11:21:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:11 [DEBUG] acctest_603zk: Beginning Read +2022/02/28 11:21:11 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:11 [DEBUG] Begin Injection +2022/02/28 11:21:11 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013a1ec0 1362 [] false false map[] 0xc000f7e900 0xc000272160} +2022/02/28 11:21:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:11 [DEBUG] Exit from do method +2022/02/28 11:21:11 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully +2022/02/28 11:21:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:11 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:11 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:11 [DEBUG] Begin Injection +2022/02/28 11:21:11 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000995500 160 [] false false map[] 0xc000d0a200 0xc000b6e000} +2022/02/28 11:21:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:11 [DEBUG] Exit from do method +2022/02/28 11:21:11 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully +2022/02/28 11:21:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000995700 1362 [] false false map[] 0xc000f7ed00 0xc000272160} +2022/02/28 11:21:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:11 [DEBUG] Exit from do method +2022/02/28 11:21:11 currentvrfname acctest_u6xd0 +2022/02/28 11:21:11 found correct vrfname +2022/02/28 11:21:11 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:11 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:11 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:11 [DEBUG] Begin Injection +2022/02/28 11:21:11 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d52ac0 1362 [] false false map[] 0xc000d0a200 0xc000272160} +2022/02/28 11:21:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:11 [DEBUG] Exit from do method +2022/02/28 11:21:11 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:11 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Read +2022/02/28 11:21:11 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:11 [DEBUG] Begin Injection +2022/02/28 11:21:11 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e340 1362 [] false false map[] 0xc000cb4300 0xc000c5a420} +2022/02/28 11:21:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:12 [DEBUG] Exit from do method +2022/02/28 11:21:12 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully +2022/02/28 11:21:12 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:12 [DEBUG] New state was assigned lineage "380f1747-b3e4-ee2e-0822-3f8d2de9ecae" +2022/02/28 11:21:12 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:12 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:12 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:12 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:12 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.test + description: "" => "" + id: "" => "" + name: "" => "acctest_k1ism" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +UPDATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_u6xd0" => "acctest_u6xd0" + dhcp_option_name: "" => "acctest_k1ism" + dhcp_option_version: "0" => "1" + id: "/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0" => "/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0" + name: "acctest_u6xd0" => "acctest_u6xd0" + schema_id: "621c62c71d000094624fb9de" => "621c62c71d000094624fb9de" + template_name: "acctest_sy1l1" => "acctest_sy1l1" + version: "0" => "1" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c62c71b0000c408fd0c2b + provider = provider.mso + description = + name = acctest_u6xd0 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c62c71d000094624fb9de + provider = provider.mso + name = acctest_sy1l1 + template_name = acctest_sy1l1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_u6xd0 + provider = provider.mso + dhcp_policy.name = acctest_u6xd0 + dhcp_policy.version = 0 + display_name = acctest_u6xd0 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_u6xd0 + schema_id = 621c62c71d000094624fb9de + template_name = acctest_sy1l1 + vrf_name = acctest_u6xd0 + vrf_schema_id = 621c62c71d000094624fb9de + vrf_template_name = acctest_sy1l1 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0 + provider = provider.mso + bd_name = acctest_u6xd0 + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_u6xd0 + schema_id = 621c62c71d000094624fb9de + template_name = acctest_sy1l1 + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_u6xd0 + provider = provider.mso + display_name = acctest_u6xd0 + layer3_multicast = false + name = acctest_u6xd0 + schema_id = 621c62c71d000094624fb9de + template = acctest_sy1l1 + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:21:12 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:21:12 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:21:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:21:12 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:21:12 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change +2022/02/28 11:21:12 [DEBUG] : Beginning Create +2022/02/28 11:21:12 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 11:21:12 [DEBUG] Begin Injection +2022/02/28 11:21:12 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 11:21:12 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_k1ism","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xc77ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:21:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:21:12 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:21:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000504040 161 [] false false map[] 0xc000513100 0xc000c5a420} +2022/02/28 11:21:12 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c62d01b0000cb08fd0c2d","name":"acctest_k1ism","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:12 [DEBUG] Exit from do method +2022/02/28 11:21:12 [DEBUG] 621c62d01b0000cb08fd0c2d: Creation finished successfully +2022/02/28 11:21:12 [DEBUG] 621c62d01b0000cb08fd0c2d: Beginning Read +2022/02/28 11:21:12 id: 621c62d01b0000cb08fd0c2d +2022/02/28 11:21:12 HTTP request GET mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:12 [DEBUG] Begin Injection +2022/02/28 11:21:12 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6080 1362 [] false false map[] 0xc000c7d100 0xc000136790} +2022/02/28 11:21:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:12 [DEBUG] Exit from do method +2022/02/28 11:21:12 currentvrfname acctest_603zk +2022/02/28 11:21:12 found correct vrfname +2022/02/28 11:21:12 [DEBUG] acctest_603zk: Read finished successfully +2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:12 [DEBUG] acctest_603zk: Beginning Read +2022/02/28 11:21:12 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:12 [DEBUG] Begin Injection +2022/02/28 11:21:12 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000994840 161 [] false false map[] 0xc000cb4000 0xc000c5a420} +2022/02/28 11:21:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d {"id":"621c62d01b0000cb08fd0c2d","name":"acctest_k1ism","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:12 [DEBUG] Exit from do method +2022/02/28 11:21:12 [DEBUG] 621c62d01b0000cb08fd0c2d: Read finished successfully +2022/02/28 11:21:12 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change +2022/02/28 11:21:12 [DEBUG] Template BD: Beginning Update +2022/02/28 11:21:12 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:12 [DEBUG] Begin Injection +2022/02/28 11:21:12 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000504900 1362 [] false false map[] 0xc000512500 0xc000136790} +2022/02/28 11:21:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:13 [DEBUG] Exit from do method +2022/02/28 11:21:13 [DEBUG] acctest_603zk: Read finished successfully +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:13 [DEBUG] /schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk: Beginning Read +2022/02/28 11:21:13 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:13 [DEBUG] Begin Injection +2022/02/28 11:21:13 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c7ce00 0xc000c5a420} +2022/02/28 11:21:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:13 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Read +2022/02/28 11:21:13 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:13 [DEBUG] Begin Injection +2022/02/28 11:21:13 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ce3400 1362 [] false false map[] 0xc0012fa300 0xc000136790} +2022/02/28 11:21:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:13 [DEBUG] Exit from do method +2022/02/28 11:21:13 [DEBUG] /schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk: Read finished successfully +2022/02/28 11:21:13 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:13 [DEBUG] New state was assigned lineage "6ac0dc22-987b-9cd7-3d3d-c03e9cf41344" +2022/02/28 11:21:13 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:13 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:13 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:13 [WARN] Test: Executing destroy step +2022/02/28 11:21:13 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:13 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:13 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:13 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:13 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:13 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:13 [DEBUG] : Beginning Read +2022/02/28 11:21:13 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:13 [DEBUG] Begin Injection +2022/02/28 11:21:13 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013ad500 1472 [] false false map[] 0xc000f7e000 0xc000c5a420} +2022/02/28 11:21:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:21:13 [DEBUG] Exit from do method +2022/02/28 11:21:13 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully +2022/02/28 11:21:13 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:13 [DEBUG] New state was assigned lineage "b5aac9c6-dec0-e18b-1059-2d577206e298" +2022/02/28 11:21:13 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:13 [DEBUG] Begin Injection +2022/02/28 11:21:13 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e240 1472 [] false false map[] 0xc0010c6000 0xc000c5a420} +2022/02/28 11:21:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:21:14 [DEBUG] Exit from do method +2022/02/28 11:21:14 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:14 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:14 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:14 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:14 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:14 [DEBUG] : Beginning Read +2022/02/28 11:21:14 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:14 [DEBUG] Begin Injection +2022/02/28 11:21:14 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcfe00 5563 [] false false map[] 0xc000512800 0xc000136790} +2022/02/28 11:21:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013a0100 5563 [] false false map[] 0xc000d5ae00 0xc000c5a420} +2022/02/28 11:21:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:14 [DEBUG] Exit from do method +2022/02/28 11:21:14 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:21:14 [DEBUG] 621c62c71d000094624fb9de: Beginning Read +2022/02/28 11:21:14 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read +2022/02/28 11:21:14 id: 621c62c71b0000c408fd0c2b +2022/02/28 11:21:14 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:14 [DEBUG] Begin Injection +2022/02/28 11:21:14 [DEBUG] 621c62d01b0000cb08fd0c2d: Beginning Read +2022/02/28 11:21:14 id: 621c62d01b0000cb08fd0c2d +2022/02/28 11:21:14 HTTP request GET mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:14 [DEBUG] Begin Injection +2022/02/28 11:21:14 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:14 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:14 [DEBUG] Begin Injection +2022/02/28 11:21:14 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:15 [DEBUG] Exit from do method +2022/02/28 11:21:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:15 [DEBUG] 621c62c81d000094624fb9e0: Beginning Read +2022/02/28 11:21:15 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:15 [DEBUG] Begin Injection +2022/02/28 11:21:15 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:15 [DEBUG] 621c62c81b0000aa08fd0c2c: Beginning Read +2022/02/28 11:21:15 id: 621c62c81b0000aa08fd0c2c +2022/02/28 11:21:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:15 [DEBUG] Begin Injection +2022/02/28 11:21:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090d80 161 [] false false map[] 0xc000f7fb00 0xc000c5a420} +2022/02/28 11:21:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d {"id":"621c62d01b0000cb08fd0c2d","name":"acctest_k1ism","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:15 [DEBUG] Exit from do method +2022/02/28 11:21:15 [DEBUG] 621c62d01b0000cb08fd0c2d: Read finished successfully +2022/02/28 11:21:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091480 1472 [] false false map[] 0xc0010c6700 0xc000b6e000} +2022/02/28 11:21:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:21:15 [DEBUG] Exit from do method +2022/02/28 11:21:15 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully +2022/02/28 11:21:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:15 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:15 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:15 [DEBUG] Begin Injection +2022/02/28 11:21:15 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036ef00 160 [] false false map[] 0xc000f7fa00 0xc000136790} +2022/02/28 11:21:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:15 [DEBUG] Exit from do method +2022/02/28 11:21:15 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully +2022/02/28 11:21:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f380 1362 [] false false map[] 0xc000c04300 0xc000c5a420} +2022/02/28 11:21:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:15 [DEBUG] Exit from do method +2022/02/28 11:21:15 [DEBUG] 621c62c81d000094624fb9e0: Read finished successfully +2022/02/28 11:21:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:15 [DEBUG] acctest_603zk: Beginning Read +2022/02/28 11:21:15 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:15 [DEBUG] Begin Injection +2022/02/28 11:21:15 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ce2880 160 [] false false map[] 0xc000d5b000 0xc000b6e000} +2022/02/28 11:21:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c {"id":"621c62c81b0000aa08fd0c2c","name":"acctest_603zk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:15 [DEBUG] Exit from do method +2022/02/28 11:21:15 [DEBUG] 621c62c81b0000aa08fd0c2c: Read finished successfully +2022/02/28 11:21:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7840 1472 [] false false map[] 0xc000d5b600 0xc000136790} +2022/02/28 11:21:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:21:15 [DEBUG] Exit from do method +2022/02/28 11:21:15 currentvrfname acctest_u6xd0 +2022/02/28 11:21:15 found correct vrfname +2022/02/28 11:21:15 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:15 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:15 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:15 [DEBUG] Begin Injection +2022/02/28 11:21:15 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000994840 1362 [] false false map[] 0xc000c04100 0xc000c5a420} +2022/02/28 11:21:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:15 [DEBUG] Exit from do method +2022/02/28 11:21:15 currentvrfname acctest_603zk +2022/02/28 11:21:15 found correct vrfname +2022/02/28 11:21:15 [DEBUG] acctest_603zk: Read finished successfully +2022/02/28 11:21:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:15 [DEBUG] acctest_603zk: Beginning Read +2022/02/28 11:21:15 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:15 [DEBUG] Begin Injection +2022/02/28 11:21:15 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a80c0 1472 [] false false map[] 0xc000cb4300 0xc000c5a0b0} +2022/02/28 11:21:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:21:16 [DEBUG] Exit from do method +2022/02/28 11:21:16 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:16 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Read +2022/02/28 11:21:16 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:16 [DEBUG] Begin Injection +2022/02/28 11:21:16 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013ac540 1362 [] false false map[] 0xc000cb4800 0xc000c5a420} +2022/02/28 11:21:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:16 [DEBUG] Exit from do method +2022/02/28 11:21:16 [DEBUG] acctest_603zk: Read finished successfully +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:16 [DEBUG] /schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk: Beginning Read +2022/02/28 11:21:16 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:16 [DEBUG] Begin Injection +2022/02/28 11:21:16 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce0c0 1472 [] false false map[] 0xc000512700 0xc0008c0000} +2022/02/28 11:21:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:21:16 [DEBUG] Exit from do method +2022/02/28 11:21:16 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully +2022/02/28 11:21:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:16 [DEBUG] New state was assigned lineage "2ce6ee2d-971c-cc8e-6227-58bc4448736a" +2022/02/28 11:21:16 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:16 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:16 [DEBUG] Test: Executing step 6 +2022/02/28 11:21:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0\")" references: [] +2022/02/28 11:21:16 [DEBUG] Starting graph walk: walkImport +2022/02/28 11:21:16 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Import +2022/02/28 11:21:16 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:16 [DEBUG] Begin Injection +2022/02/28 11:21:16 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000654040 1362 [] false false map[] 0xc000c04900 0xc000c5a420} +2022/02/28 11:21:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:21:16 [DEBUG] Exit from do method +2022/02/28 11:21:16 [DEBUG] /schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk: Read finished successfully +2022/02/28 11:21:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:16 [DEBUG] New state was assigned lineage "f59a7aa0-f718-00e3-20ae-7188cf46b525" +2022/02/28 11:21:16 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:21:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:21:16 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:21:16 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c62c81b0000aa08fd0c2c" => "" + name: "acctest_603zk" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c62c81d000094624fb9e0" => "" + name: "acctest_cn2xx" => "" + template_name: "acctest_cn2xx" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_603zk" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_603zk" => "" + id: "acctest_603zk" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_603zk" => "" + schema_id: "621c62c81d000094624fb9e0" => "" + template_name: "acctest_cn2xx" => "" + vrf_name: "acctest_603zk" => "" + vrf_schema_id: "621c62c81d000094624fb9e0" => "" + vrf_template_name: "acctest_cn2xx" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_603zk" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk" => "" + name: "acctest_603zk" => "" + schema_id: "621c62c81d000094624fb9e0" => "" + template_name: "acctest_cn2xx" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_603zk" => "" + id: "acctest_603zk" => "" + layer3_multicast: "false" => "" + name: "acctest_603zk" => "" + schema_id: "621c62c81d000094624fb9e0" => "" + template: "acctest_cn2xx" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c62c81b0000aa08fd0c2c + provider = provider.mso + description = + name = acctest_603zk + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c62c81d000094624fb9e0 + provider = provider.mso + name = acctest_cn2xx + template_name = acctest_cn2xx + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_603zk + provider = provider.mso + dhcp_policy.name = acctest_603zk + dhcp_policy.version = 0 + display_name = acctest_603zk + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_603zk + schema_id = 621c62c81d000094624fb9e0 + template_name = acctest_cn2xx + vrf_name = acctest_603zk + vrf_schema_id = 621c62c81d000094624fb9e0 + vrf_template_name = acctest_cn2xx + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk + provider = provider.mso + bd_name = acctest_603zk + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_603zk + schema_id = 621c62c81d000094624fb9e0 + template_name = acctest_cn2xx + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_603zk + provider = provider.mso + display_name = acctest_603zk + layer3_multicast = false + name = acctest_603zk + schema_id = 621c62c81d000094624fb9e0 + template = acctest_cn2xx + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:21:16 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:21:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:21:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:21:16 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:21:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:21:16 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:21:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:21:16 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:21:16 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:21:16 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:21:16 [DEBUG] Template BD: Beginning Update +2022/02/28 11:21:16 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:16 [DEBUG] Begin Injection +2022/02/28 11:21:16 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000655700 1472 [] false false map[] 0xc000512c00 0xc0008c0000} +2022/02/28 11:21:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:21:16 [DEBUG] Exit from do method +2022/02/28 11:21:16 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Import finished successfully +2022/02/28 11:21:16 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Read +2022/02/28 11:21:16 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:16 [DEBUG] Begin Injection +2022/02/28 11:21:16 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:16 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:16 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000512500 0xc000c5a420} +2022/02/28 11:21:16 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:16 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:21:16 [DEBUG] 621c62c81b0000aa08fd0c2c: Beginning Read +2022/02/28 11:21:16 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:21:16 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:16 [DEBUG] Begin Injection +2022/02/28 11:21:16 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:16 [DEBUG] Template BD: Beginning Update +2022/02/28 11:21:16 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:16 [DEBUG] Begin Injection +2022/02/28 11:21:16 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a8900 1472 [] false false map[] 0xc000f7fc00 0xc0008c0000} +2022/02/28 11:21:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:21:17 [DEBUG] Exit from do method +2022/02/28 11:21:17 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully +2022/02/28 11:21:17 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:17 [DEBUG] New state was assigned lineage "e0522e9a-3669-565b-81b9-29e41269eb0e" +2022/02/28 11:21:17 [DEBUG] Test: Executing step 7 +2022/02/28 11:21:17 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d5a100 0xc000c5a420} +2022/02/28 11:21:17 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c +2022/02/28 11:21:17 [DEBUG] : Read finished successfully +2022/02/28 11:21:17 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000cb4400 0xc000b6e000} +2022/02/28 11:21:17 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:17 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:21:17 [DEBUG] acctest_603zk: Beginning Destroy +2022/02/28 11:21:17 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:17 [DEBUG] Begin Injection +2022/02/28 11:21:17 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:17 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:17 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:17 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config +2022/02/28 11:21:17 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config +2022/02/28 11:21:17 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:17 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:17 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:17 [DEBUG] : Beginning Read +2022/02/28 11:21:17 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:17 [DEBUG] Begin Injection +2022/02/28 11:21:17 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:17 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000cb4a00 0xc000c5a420} +2022/02/28 11:21:17 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false +2022/02/28 11:21:17 [DEBUG] acctest_603zk: Destroy finished successfully +2022/02/28 11:21:17 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:21:17 [DEBUG] 621c62c81d000094624fb9e0: Beginning Destroy +2022/02/28 11:21:17 HTTP request DELETE mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:17 [DEBUG] Begin Injection +2022/02/28 11:21:17 HTTP request after injection DELETE mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019f240 5563 [] false false map[] 0xc000512200 0xc0008c0000} +2022/02/28 11:21:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:17 [DEBUG] Exit from do method +2022/02/28 11:21:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:17 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read +2022/02/28 11:21:17 [DEBUG] 621c62c71d000094624fb9de: Beginning Read +2022/02/28 11:21:17 [DEBUG] 621c62d01b0000cb08fd0c2d: Beginning Read +2022/02/28 11:21:17 id: 621c62d01b0000cb08fd0c2d +2022/02/28 11:21:17 HTTP request GET mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:17 [DEBUG] Begin Injection +2022/02/28 11:21:17 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:17 id: 621c62c71b0000c408fd0c2b +2022/02/28 11:21:17 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:17 [DEBUG] Begin Injection +2022/02/28 11:21:17 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:17 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:17 [DEBUG] Begin Injection +2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:17 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000512900 0xc000c5a420} +2022/02/28 11:21:17 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:17 [DEBUG] 621c62c81d000094624fb9e0: Destroy finished successfully +2022/02/28 11:21:17 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:17 [DEBUG] New state was assigned lineage "0d94ef19-874f-510a-ff52-46fac7e52628" +2022/02/28 11:21:17 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:17 [DEBUG] Begin Injection +2022/02/28 11:21:17 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013aca80 161 [] false false map[] 0xc000c04700 0xc0008c0000} +2022/02/28 11:21:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d {"id":"621c62d01b0000cb08fd0c2d","name":"acctest_k1ism","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:17 [DEBUG] Exit from do method +2022/02/28 11:21:17 [DEBUG] 621c62d01b0000cb08fd0c2d: Read finished successfully +2022/02/28 11:21:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a8780 1472 [] false false map[] 0xc000d5a500 0xc000c5a420} +2022/02/28 11:21:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:21:18 [DEBUG] Exit from do method +2022/02/28 11:21:18 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully +2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:18 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:18 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:18 [DEBUG] Begin Injection +2022/02/28 11:21:18 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcfa00 160 [] false false map[] 0xc000d5a600 0xc0008c0000} +2022/02/28 11:21:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:18 [DEBUG] Exit from do method +2022/02/28 11:21:18 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully +2022/02/28 11:21:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 +2022/02/28 11:21:18 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:18 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcfc00 39 [] false false map[] 0xc000cb4300 0xc000c5a420} +2022/02/28 11:21:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"code":404,"message":"Item not found"} +2022/02/28 11:21:18 [DEBUG] Exit from do method +2022/02/28 11:21:18 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:21:18 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:21:18 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:18 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:18 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:18 [DEBUG] : Beginning Read +2022/02/28 11:21:18 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:18 [DEBUG] Begin Injection +2022/02/28 11:21:18 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086c5c0 1472 [] false false map[] 0xc000f7e400 0xc0008c0000} +2022/02/28 11:21:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:21:18 [DEBUG] Exit from do method +2022/02/28 11:21:18 currentvrfname acctest_u6xd0 +2022/02/28 11:21:18 found correct vrfname +2022/02/28 11:21:18 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:18 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:18 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:18 [DEBUG] Begin Injection +2022/02/28 11:21:18 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f3c0 1472 [] false false map[] 0xc000cb4200 0xc0008c0000} +2022/02/28 11:21:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:21:18 [DEBUG] Exit from do method +2022/02/28 11:21:18 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:18 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Read +2022/02/28 11:21:18 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:18 [DEBUG] Begin Injection +2022/02/28 11:21:18 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f440 5563 [] false false map[] 0xc000d5ae00 0xc000c5a6e0} +2022/02/28 11:21:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:18 [DEBUG] Exit from do method +2022/02/28 11:21:18 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:18 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:18 [DEBUG] New state was assigned lineage "8b27addc-35ea-06aa-7dc8-27dfe48578b6" +2022/02/28 11:21:18 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:21:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:18 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:21:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ce2040 1472 [] false false map[] 0xc000c04900 0xc0008c0840} +2022/02/28 11:21:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 11:21:19 [DEBUG] Exit from do method +2022/02/28 11:21:19 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully +2022/02/28 11:21:19 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:19 [DEBUG] New state was assigned lineage "4ce56150-7798-7d31-43ba-9b6551a51de2" +2022/02/28 11:21:19 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:19 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:19 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:19 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.test + description: "" => "" + id: "621c62d01b0000cb08fd0c2d" => "" + name: "acctest_k1ism" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_u6xd0" => "" + dhcp_option_name: "acctest_k1ism" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0" => "" + name: "acctest_u6xd0" => "" + schema_id: "621c62c71d000094624fb9de" => "" + template_name: "acctest_sy1l1" => "" + version: "1" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.test: + ID = 621c62d01b0000cb08fd0c2d + provider = provider.mso + description = + name = acctest_k1ism + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c62c71b0000c408fd0c2b + provider = provider.mso + description = + name = acctest_u6xd0 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c62c71d000094624fb9de + provider = provider.mso + name = acctest_sy1l1 + template_name = acctest_sy1l1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_u6xd0 + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_k1ism + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_u6xd0 + dhcp_policy.version = 1 + display_name = acctest_u6xd0 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_u6xd0 + schema_id = 621c62c71d000094624fb9de + template_name = acctest_sy1l1 + vrf_name = acctest_u6xd0 + vrf_schema_id = 621c62c71d000094624fb9de + vrf_template_name = acctest_sy1l1 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0 + provider = provider.mso + bd_name = acctest_u6xd0 + dhcp_option_name = acctest_k1ism + dhcp_option_version = 1 + name = acctest_u6xd0 + schema_id = 621c62c71d000094624fb9de + template_name = acctest_sy1l1 + version = 1 + + Dependencies: + mso_dhcp_option_policy.test + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_u6xd0 + provider = provider.mso + display_name = acctest_u6xd0 + layer3_multicast = false + name = acctest_u6xd0 + schema_id = 621c62c71d000094624fb9de + template = acctest_sy1l1 + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:21:19 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:21:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:21:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] +2022/02/28 11:21:19 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:21:19 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:21:19 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:21:19 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:21:19 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:21:19 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:21:19 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:21:19 [DEBUG] Template BD: Beginning Update +2022/02/28 11:21:19 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:19 [DEBUG] Begin Injection +2022/02/28 11:21:19 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:19 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c04c00 0xc000c5a6e0} +2022/02/28 11:21:19 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:19 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change +2022/02/28 11:21:19 [DEBUG] 621c62d01b0000cb08fd0c2d: Beginning Read +2022/02/28 11:21:19 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:19 [DEBUG] Begin Injection +2022/02/28 11:21:19 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:19 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000c04e00 0xc000c5a6e0} +2022/02/28 11:21:19 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d +2022/02/28 11:21:19 [DEBUG] : Read finished successfully +2022/02/28 11:21:19 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:19 [DEBUG] New state was assigned lineage "31809cea-104c-9f0b-f629-dde1b1a43ad8" +2022/02/28 11:21:19 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:19 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:19 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:19 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:19 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:19 [DEBUG] : Beginning Read +2022/02/28 11:21:19 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:19 [DEBUG] Begin Injection +2022/02/28 11:21:19 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000994a00 5563 [] false false map[] 0xc0010cf200 0xc000c5a6e0} +2022/02/28 11:21:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:20 [DEBUG] Exit from do method +2022/02/28 11:21:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:20 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read +2022/02/28 11:21:20 [DEBUG] 621c62c71d000094624fb9de: Beginning Read +2022/02/28 11:21:20 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:20 [DEBUG] Begin Injection +2022/02/28 11:21:20 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:20 id: 621c62c71b0000c408fd0c2b +2022/02/28 11:21:20 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:20 [DEBUG] Begin Injection +2022/02/28 11:21:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000994a80 160 [] false false map[] 0xc000d5a500 0xc000b6e580} +2022/02/28 11:21:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:20 [DEBUG] Exit from do method +2022/02/28 11:21:20 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully +2022/02/28 11:21:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000654400 1277 [] false false map[] 0xc0010ce400 0xc000c5a6e0} +2022/02/28 11:21:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:21:20 [DEBUG] Exit from do method +2022/02/28 11:21:20 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully +2022/02/28 11:21:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:20 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:20 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:20 [DEBUG] Begin Injection +2022/02/28 11:21:20 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ce2300 1277 [] false false map[] 0xc000512400 0xc000c5a6e0} +2022/02/28 11:21:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:21:20 [DEBUG] Exit from do method +2022/02/28 11:21:20 currentvrfname acctest_u6xd0 +2022/02/28 11:21:20 found correct vrfname +2022/02/28 11:21:20 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:20 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:20 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:20 [DEBUG] Begin Injection +2022/02/28 11:21:20 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f240 1277 [] false false map[] 0xc0010ceb00 0xc000c5a6e0} +2022/02/28 11:21:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:21:21 [DEBUG] Exit from do method +2022/02/28 11:21:21 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:21 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:21 [DEBUG] New state was assigned lineage "16558fa7-7778-85c4-89df-e24f39f769f3" +2022/02/28 11:21:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:21 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:21 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:21 [DEBUG] Test: Executing step 8 +2022/02/28 11:21:21 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:21 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:21 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:21 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:21 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:21 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:21 [DEBUG] : Beginning Read +2022/02/28 11:21:21 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:21 [DEBUG] Begin Injection +2022/02/28 11:21:21 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a9f00 5563 [] false false map[] 0xc000512200 0xc000c5a6e0} +2022/02/28 11:21:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:21 [DEBUG] Exit from do method +2022/02/28 11:21:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:21 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read +2022/02/28 11:21:21 [DEBUG] 621c62c71d000094624fb9de: Beginning Read +2022/02/28 11:21:21 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:21 [DEBUG] Begin Injection +2022/02/28 11:21:21 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:21 id: 621c62c71b0000c408fd0c2b +2022/02/28 11:21:21 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:21 [DEBUG] Begin Injection +2022/02/28 11:21:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000504780 160 [] false false map[] 0xc000cb4200 0xc000b6e580} +2022/02/28 11:21:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:21 [DEBUG] Exit from do method +2022/02/28 11:21:21 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully +2022/02/28 11:21:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036e680 1277 [] false false map[] 0xc000512700 0xc000c5a6e0} +2022/02/28 11:21:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:21:21 [DEBUG] Exit from do method +2022/02/28 11:21:21 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully +2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:21 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:21 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:21 [DEBUG] Begin Injection +2022/02/28 11:21:21 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019f4c0 1277 [] false false map[] 0xc000d5a400 0xc000c5a6e0} +2022/02/28 11:21:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:21:22 [DEBUG] Exit from do method +2022/02/28 11:21:22 currentvrfname acctest_u6xd0 +2022/02/28 11:21:22 found correct vrfname +2022/02/28 11:21:22 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:22 [DEBUG] acctest_u6xd0: Beginning Read +2022/02/28 11:21:22 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:22 [DEBUG] Begin Injection +2022/02/28 11:21:22 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000504040 1277 [] false false map[] 0xc000512b00 0xc000c5a6e0} +2022/02/28 11:21:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 11:21:22 [DEBUG] Exit from do method +2022/02/28 11:21:22 [DEBUG] acctest_u6xd0: Read finished successfully +2022/02/28 11:21:22 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:22 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:22 [DEBUG] New state was assigned lineage "5adb64b4-f491-e9a6-b103-59257252f7e9" +2022/02/28 11:21:22 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:22 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:22 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:22 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:22 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c62c71b0000c408fd0c2b" => "" + name: "acctest_u6xd0" => "acctest_joxs1" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "acctest_u6xd0" => "acctest_joxs1" (forces new resource) + id: "acctest_u6xd0" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_u6xd0" => "acctest_joxs1" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c62c71d000094624fb9de" => "621c62c71d000094624fb9de" + template_name: "acctest_sy1l1" => "acctest_sy1l1" + vrf_name: "acctest_u6xd0" => "acctest_joxs1" + vrf_schema_id: "621c62c71d000094624fb9de" => "" + vrf_template_name: "acctest_sy1l1" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_joxs1" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_joxs1" + schema_id: "" => "621c62c71d000094624fb9de" + template_name: "" => "acctest_sy1l1" + version: "" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_u6xd0" => "acctest_joxs1" + id: "acctest_u6xd0" => "" + layer3_multicast: "false" => "" + name: "acctest_u6xd0" => "acctest_joxs1" (forces new resource) + schema_id: "621c62c71d000094624fb9de" => "621c62c71d000094624fb9de" + template: "acctest_sy1l1" => "acctest_sy1l1" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c62c71b0000c408fd0c2b + provider = provider.mso + description = + name = acctest_u6xd0 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c62c71d000094624fb9de + provider = provider.mso + name = acctest_sy1l1 + template_name = acctest_sy1l1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_u6xd0 + provider = provider.mso + display_name = acctest_u6xd0 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_u6xd0 + schema_id = 621c62c71d000094624fb9de + template_name = acctest_sy1l1 + vrf_name = acctest_u6xd0 + vrf_schema_id = 621c62c71d000094624fb9de + vrf_template_name = acctest_sy1l1 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_u6xd0 + provider = provider.mso + display_name = acctest_u6xd0 + layer3_multicast = false + name = acctest_u6xd0 + schema_id = 621c62c71d000094624fb9de + template = acctest_sy1l1 + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:21:22 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:21:22 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:21:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:22 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:21:22 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:21:22 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:21:22 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read +2022/02/28 11:21:22 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:22 [DEBUG] Begin Injection +2022/02/28 11:21:22 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:22 [DEBUG] Template BD: Beginning Update +2022/02/28 11:21:22 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:22 [DEBUG] Begin Injection +2022/02/28 11:21:22 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:22 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d5b300 0xc000c5a6e0} +2022/02/28 11:21:22 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:22 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b +2022/02/28 11:21:22 [DEBUG] : Read finished successfully +2022/02/28 11:21:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000eb8400 0xc000b6e580} +2022/02/28 11:21:22 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:22 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:21:22 [DEBUG] acctest_u6xd0: Beginning Destroy +2022/02/28 11:21:22 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:22 [DEBUG] Begin Injection +2022/02/28 11:21:22 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:22 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:21:22 [DEBUG] : Beginning Create +2022/02/28 11:21:22 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:21:22 [DEBUG] Begin Injection +2022/02/28 11:21:22 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:21:22 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg] Content-Type:[application/json]] {{"desc":"","name":"acctest_joxs1","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xc77ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:21:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:21:23 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000eb8900 0xc000b6e580} +2022/02/28 11:21:23 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:23 [DEBUG] acctest_u6xd0: Destroy finished successfully +2022/02/28 11:21:23 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:21:23 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:21:23 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:23 [DEBUG] Begin Injection +2022/02/28 11:21:23 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:23 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:21:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019ecc0 160 [] false false map[] 0xc000cb4a00 0xc000c5a6e0} +2022/02/28 11:21:23 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c62db1b0000ca08fd0c2e","name":"acctest_joxs1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:23 [DEBUG] Exit from do method +2022/02/28 11:21:23 [DEBUG] 621c62db1b0000ca08fd0c2e: Creation finished successfully +2022/02/28 11:21:23 [DEBUG] 621c62db1b0000ca08fd0c2e: Beginning Read +2022/02/28 11:21:23 id: 621c62db1b0000ca08fd0c2e +2022/02/28 11:21:23 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:23 [DEBUG] Begin Injection +2022/02/28 11:21:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:23 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000eb9400 0xc000b6e580} +2022/02/28 11:21:23 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:23 [DEBUG] acctest_joxs1: Creation finished successfully +2022/02/28 11:21:23 [DEBUG] acctest_joxs1: Beginning Read +2022/02/28 11:21:23 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:23 [DEBUG] Begin Injection +2022/02/28 11:21:23 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e340 160 [] false false map[] 0xc000d5b400 0xc000c5a6e0} +2022/02/28 11:21:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e {"id":"621c62db1b0000ca08fd0c2e","name":"acctest_joxs1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:23 [DEBUG] Exit from do method +2022/02/28 11:21:23 [DEBUG] 621c62db1b0000ca08fd0c2e: Read finished successfully +2022/02/28 11:21:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013f2080 768 [] false false map[] 0xc000cb4000 0xc000b6e580} +2022/02/28 11:21:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 11:21:23 [DEBUG] Exit from do method +2022/02/28 11:21:23 currentvrfname acctest_joxs1 +2022/02/28 11:21:23 found correct vrfname +2022/02/28 11:21:23 [DEBUG] acctest_joxs1: Read finished successfully +2022/02/28 11:21:23 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:21:23 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:21:23 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:21:23 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:23 [DEBUG] Begin Injection +2022/02/28 11:21:23 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:24 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:24 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d5af00 0xc000b6e580} +2022/02/28 11:21:24 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:24 [DEBUG] : Beginning Read +2022/02/28 11:21:24 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:24 [DEBUG] Begin Injection +2022/02/28 11:21:24 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010b6200 1278 [] false false map[] 0xc000eb8000 0xc000b6e580} +2022/02/28 11:21:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 11:21:24 [DEBUG] Exit from do method +2022/02/28 11:21:24 [DEBUG] acctest_joxs1: Read finished successfully +2022/02/28 11:21:24 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:21:24 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:21:24 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:24 [DEBUG] Begin Injection +2022/02/28 11:21:24 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:24 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:24 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0007fa300 0xc000b6e580} +2022/02/28 11:21:24 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:24 [DEBUG] Creation Complete +2022/02/28 11:21:24 [DEBUG] : Beginning Read +2022/02/28 11:21:24 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:24 [DEBUG] Begin Injection +2022/02/28 11:21:24 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015921c0 1363 [] false false map[] 0xc000eb8000 0xc000b6e580} +2022/02/28 11:21:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:21:25 [DEBUG] Exit from do method +2022/02/28 11:21:25 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1: Read finished successfully +2022/02/28 11:21:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:25 [DEBUG] New state was assigned lineage "b45fd664-08e0-fadb-b9c3-59965f4073d2" +2022/02/28 11:21:25 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:25 [DEBUG] Begin Injection +2022/02/28 11:21:25 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013ac4c0 1363 [] false false map[] 0xc000cb4000 0xc000b6e580} +2022/02/28 11:21:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:21:25 [DEBUG] Exit from do method +2022/02/28 11:21:25 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:25 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:25 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:25 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:25 [DEBUG] : Beginning Read +2022/02/28 11:21:25 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:25 [DEBUG] Begin Injection +2022/02/28 11:21:25 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010b72c0 5563 [] false false map[] 0xc0007d3100 0xc000b6e580} +2022/02/28 11:21:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:25 [DEBUG] Exit from do method +2022/02/28 11:21:25 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:25 [DEBUG] 621c62db1b0000ca08fd0c2e: Beginning Read +2022/02/28 11:21:25 id: 621c62db1b0000ca08fd0c2e +2022/02/28 11:21:25 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:25 [DEBUG] Begin Injection +2022/02/28 11:21:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:25 [DEBUG] 621c62c71d000094624fb9de: Beginning Read +2022/02/28 11:21:25 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:25 [DEBUG] Begin Injection +2022/02/28 11:21:25 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013ac4c0 160 [] false false map[] 0xc000cb4b00 0xc000b6e580} +2022/02/28 11:21:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e {"id":"621c62db1b0000ca08fd0c2e","name":"acctest_joxs1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:26 [DEBUG] Exit from do method +2022/02/28 11:21:26 [DEBUG] 621c62db1b0000ca08fd0c2e: Read finished successfully +2022/02/28 11:21:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a8040 1363 [] false false map[] 0xc00028db00 0xc000c5a6e0} +2022/02/28 11:21:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:21:26 [DEBUG] Exit from do method +2022/02/28 11:21:26 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully +2022/02/28 11:21:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:26 [DEBUG] acctest_joxs1: Beginning Read +2022/02/28 11:21:26 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:26 [DEBUG] Begin Injection +2022/02/28 11:21:26 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013f2b00 1363 [] false false map[] 0xc000cb4200 0xc000c5a6e0} +2022/02/28 11:21:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:21:26 [DEBUG] Exit from do method +2022/02/28 11:21:26 currentvrfname acctest_joxs1 +2022/02/28 11:21:26 found correct vrfname +2022/02/28 11:21:26 [DEBUG] acctest_joxs1: Read finished successfully +2022/02/28 11:21:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:26 [DEBUG] acctest_joxs1: Beginning Read +2022/02/28 11:21:26 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:26 [DEBUG] Begin Injection +2022/02/28 11:21:26 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013acf40 1363 [] false false map[] 0xc00028c500 0xc000c5a6e0} +2022/02/28 11:21:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:21:26 [DEBUG] Exit from do method +2022/02/28 11:21:26 [DEBUG] acctest_joxs1: Read finished successfully +2022/02/28 11:21:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:26 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1: Beginning Read +2022/02/28 11:21:26 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:26 [DEBUG] Begin Injection +2022/02/28 11:21:26 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013a0040 1363 [] false false map[] 0xc000cb4600 0xc000c5a6e0} +2022/02/28 11:21:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:21:27 [DEBUG] Exit from do method +2022/02/28 11:21:27 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1: Read finished successfully +2022/02/28 11:21:27 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:27 [DEBUG] New state was assigned lineage "b6663c98-96dd-e199-5f81-ad6742e0d38b" +2022/02/28 11:21:27 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:21:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:27 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:27 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:27 [WARN] Test: Executing destroy step +2022/02/28 11:21:27 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:27 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:21:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:27 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:21:27 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:27 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:27 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:27 [DEBUG] : Beginning Read +2022/02/28 11:21:27 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:27 [DEBUG] Begin Injection +2022/02/28 11:21:27 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013f2640 5563 [] false false map[] 0xc000d5a100 0xc000c5a6e0} +2022/02/28 11:21:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:27 [DEBUG] Exit from do method +2022/02/28 11:21:27 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:21:27 [DEBUG] 621c62c71d000094624fb9de: Beginning Read +2022/02/28 11:21:27 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:27 [DEBUG] Begin Injection +2022/02/28 11:21:27 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:27 [DEBUG] 621c62db1b0000ca08fd0c2e: Beginning Read +2022/02/28 11:21:27 id: 621c62db1b0000ca08fd0c2e +2022/02/28 11:21:27 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:27 [DEBUG] Begin Injection +2022/02/28 11:21:27 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013ad340 1363 [] false false map[] 0xc000cb4300 0xc000c5a6e0} +2022/02/28 11:21:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:21:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013f3b80 160 [] false false map[] 0xc000710200 0xc000b6e580} +2022/02/28 11:21:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e {"id":"621c62db1b0000ca08fd0c2e","name":"acctest_joxs1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:21:28 [DEBUG] Exit from do method +2022/02/28 11:21:28 [DEBUG] Exit from do method +2022/02/28 11:21:28 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully +2022/02/28 11:21:28 [DEBUG] 621c62db1b0000ca08fd0c2e: Read finished successfully +2022/02/28 11:21:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:21:28 [DEBUG] acctest_joxs1: Beginning Read +2022/02/28 11:21:28 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:28 [DEBUG] Begin Injection +2022/02/28 11:21:28 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce1c0 1363 [] false false map[] 0xc0018a2400 0xc000b6e580} +2022/02/28 11:21:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:21:28 [DEBUG] Exit from do method +2022/02/28 11:21:28 currentvrfname acctest_joxs1 +2022/02/28 11:21:28 found correct vrfname +2022/02/28 11:21:28 [DEBUG] acctest_joxs1: Read finished successfully +2022/02/28 11:21:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:21:28 [DEBUG] acctest_joxs1: Beginning Read +2022/02/28 11:21:28 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:28 [DEBUG] Begin Injection +2022/02/28 11:21:28 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015920c0 1363 [] false false map[] 0xc000d5a400 0xc000b6e580} +2022/02/28 11:21:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:21:28 [DEBUG] Exit from do method +2022/02/28 11:21:28 [DEBUG] acctest_joxs1: Read finished successfully +2022/02/28 11:21:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:21:28 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1: Beginning Read +2022/02/28 11:21:28 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:28 [DEBUG] Begin Injection +2022/02/28 11:21:28 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015921c0 1363 [] false false map[] 0xc000512500 0xc000b6e580} +2022/02/28 11:21:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 11:21:29 [DEBUG] Exit from do method +2022/02/28 11:21:29 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1: Read finished successfully +2022/02/28 11:21:29 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:29 [DEBUG] New state was assigned lineage "9b3685d8-7ebc-1200-e14f-4c645db5d915" +2022/02/28 11:21:29 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:21:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:29 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:21:29 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c62db1b0000ca08fd0c2e" => "" + name: "acctest_joxs1" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c62c71d000094624fb9de" => "" + name: "acctest_sy1l1" => "" + template_name: "acctest_sy1l1" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_joxs1" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_joxs1" => "" + id: "acctest_joxs1" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_joxs1" => "" + schema_id: "621c62c71d000094624fb9de" => "" + template_name: "acctest_sy1l1" => "" + vrf_name: "acctest_joxs1" => "" + vrf_schema_id: "621c62c71d000094624fb9de" => "" + vrf_template_name: "acctest_sy1l1" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_joxs1" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1" => "" + name: "acctest_joxs1" => "" + schema_id: "621c62c71d000094624fb9de" => "" + template_name: "acctest_sy1l1" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_joxs1" => "" + id: "acctest_joxs1" => "" + layer3_multicast: "false" => "" + name: "acctest_joxs1" => "" + schema_id: "621c62c71d000094624fb9de" => "" + template: "acctest_sy1l1" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c62db1b0000ca08fd0c2e + provider = provider.mso + description = + name = acctest_joxs1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c62c71d000094624fb9de + provider = provider.mso + name = acctest_sy1l1 + template_name = acctest_sy1l1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_joxs1 + provider = provider.mso + dhcp_policy.name = acctest_joxs1 + dhcp_policy.version = 0 + display_name = acctest_joxs1 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_joxs1 + schema_id = 621c62c71d000094624fb9de + template_name = acctest_sy1l1 + vrf_name = acctest_joxs1 + vrf_schema_id = 621c62c71d000094624fb9de + vrf_template_name = acctest_sy1l1 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1 + provider = provider.mso + bd_name = acctest_joxs1 + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_joxs1 + schema_id = 621c62c71d000094624fb9de + template_name = acctest_sy1l1 + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_joxs1 + provider = provider.mso + display_name = acctest_joxs1 + layer3_multicast = false + name = acctest_joxs1 + schema_id = 621c62c71d000094624fb9de + template = acctest_sy1l1 + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:21:29 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:21:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:21:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:21:29 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:21:29 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:21:29 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:21:29 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:21:29 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:21:29 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:21:29 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:21:29 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:21:29 [DEBUG] Template BD: Beginning Update +2022/02/28 11:21:29 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:29 [DEBUG] Begin Injection +2022/02/28 11:21:29 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:29 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:29 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000cb4500 0xc000b6e580} +2022/02/28 11:21:29 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:29 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:21:29 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:21:29 [DEBUG] 621c62db1b0000ca08fd0c2e: Beginning Read +2022/02/28 11:21:29 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:29 [DEBUG] Begin Injection +2022/02/28 11:21:29 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:29 [DEBUG] Template BD: Beginning Update +2022/02/28 11:21:29 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:29 [DEBUG] Begin Injection +2022/02/28 11:21:29 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:29 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:29 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000cb4000 0xc000b6e580} +2022/02/28 11:21:29 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e +2022/02/28 11:21:29 [DEBUG] : Read finished successfully +2022/02/28 11:21:29 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:29 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d5a100 0xc000c5a6e0} +2022/02/28 11:21:29 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:29 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:21:29 [DEBUG] acctest_joxs1: Beginning Destroy +2022/02/28 11:21:29 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:29 [DEBUG] Begin Injection +2022/02/28 11:21:29 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:30 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000cb4600 0xc000c5a6e0} +2022/02/28 11:21:30 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false +2022/02/28 11:21:30 [DEBUG] acctest_joxs1: Destroy finished successfully +2022/02/28 11:21:30 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:21:30 [DEBUG] 621c62c71d000094624fb9de: Beginning Destroy +2022/02/28 11:21:30 HTTP request DELETE mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:30 [DEBUG] Begin Injection +2022/02/28 11:21:30 HTTP request after injection DELETE mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:30 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0018a2700 0xc000c5a6e0} +2022/02/28 11:21:30 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:30 [DEBUG] 621c62c71d000094624fb9de: Destroy finished successfully +2022/02/28 11:21:30 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:30 [DEBUG] New state was assigned lineage "e9bec437-f0c0-232f-1aa5-3b1e83c29073" +2022/02/28 11:21:30 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:30 [DEBUG] Begin Injection +2022/02/28 11:21:30 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de +2022/02/28 11:21:30 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:30 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcee40 39 [] false false map[] 0xc000d5a400 0xc000c5a6e0} +2022/02/28 11:21:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"code":404,"message":"Item not found"} +2022/02/28 11:21:30 [DEBUG] Exit from do method +2022/02/28 11:21:30 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:21:30 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:21:30 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:21:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:21:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:30 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:21:30 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:21:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:30 [DEBUG] : Beginning Read +2022/02/28 11:21:30 HTTP request GET mso/api/v1/tenants +2022/02/28 11:21:30 [DEBUG] Begin Injection +2022/02/28 11:21:30 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:21:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:21:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086c580 5563 [] false false map[] 0xc000d5a600 0xc000c5a6e0} +2022/02/28 11:21:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:21:31 [DEBUG] Exit from do method +2022/02/28 11:21:31 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:21:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:21:31 [DEBUG] New state was assigned lineage "db511c02-7027-367e-ca1e-265cd6a83c76" +2022/02/28 11:21:31 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:21:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:21:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:21:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:21:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:21:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:21:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:21:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:21:31 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:33:18 [DEBUG] Test: Executing step 0 +2022/02/28 11:33:18 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:18 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:33:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:33:18 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:33:18 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:33:18 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:33:18 [DEBUG] Test: Executing step 1 +2022/02/28 11:33:18 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:18 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:33:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:33:18 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:33:19 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:33:19 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:33:19 [DEBUG] Test: Executing step 2 +2022/02/28 11:33:19 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:19 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:33:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:33:19 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:33:19 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:33:19 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:33:19 [DEBUG] Test: Executing step 3 +2022/02/28 11:33:19 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:19 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:33:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:33:19 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:33:19 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:33:19 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:33:19 [DEBUG] Test: Executing step 4 +2022/02/28 11:33:19 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:19 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:33:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:19 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:33:19 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:19 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:33:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:33:19 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:33:19 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:33:19 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:19 [DEBUG] : Beginning Read +2022/02/28 11:33:19 HTTP request GET mso/api/v1/tenants +2022/02/28 11:33:19 [DEBUG] Begin Injection +2022/02/28 11:33:19 HTTP request POST /login +2022/02/28 11:33:19 HTTP request after injection POST /login +2022/02/28 11:33:19 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:33:20 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:33:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:20 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDAwLCJpYXQiOjE2NDYwMjgyMDAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiME56aGYyU252TTFWQjBKMldmeDdZQjJMIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tB8wfRESuP6CPYke2CAFs46yQpr0MIa57zcxBQO32b65PBX-q50u74I0ykOTb2T-dzYA6977qAjX0LLgBVhNjhC7oXBmL_GZnke4eqofKUs19hq5T2Ooli_QUY57kWzxB-j11alA_OVfK9vBr-QP0MrgPROOuj4ZiZPLFE1YmGUkaV1QLiZS2jiysFTD847j5JPDhNHERyr11-jZciDWP9q0FckvPBhF47o2eNCU_5EiVwmFayGOWfXRW_fpR-3wy2ENPXW_SxFdgsYL5e3ubHcUb0wH-JOf3ZbtZvlck2rTdh-kU8AvwXDQS3zNePQlFFqdIum7PjUiGFF1RVCAMw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000091280 -1 [chunked] false false map[] 0xc00056aa00 0xc0003f1550} +2022/02/28 11:33:20 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDAwLCJpYXQiOjE2NDYwMjgyMDAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiME56aGYyU252TTFWQjBKMldmeDdZQjJMIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tB8wfRESuP6CPYke2CAFs46yQpr0MIa57zcxBQO32b65PBX-q50u74I0ykOTb2T-dzYA6977qAjX0LLgBVhNjhC7oXBmL_GZnke4eqofKUs19hq5T2Ooli_QUY57kWzxB-j11alA_OVfK9vBr-QP0MrgPROOuj4ZiZPLFE1YmGUkaV1QLiZS2jiysFTD847j5JPDhNHERyr11-jZciDWP9q0FckvPBhF47o2eNCU_5EiVwmFayGOWfXRW_fpR-3wy2ENPXW_SxFdgsYL5e3ubHcUb0wH-JOf3ZbtZvlck2rTdh-kU8AvwXDQS3zNePQlFFqdIum7PjUiGFF1RVCAMw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDAwLCJpYXQiOjE2NDYwMjgyMDAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiME56aGYyU252TTFWQjBKMldmeDdZQjJMIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tB8wfRESuP6CPYke2CAFs46yQpr0MIa57zcxBQO32b65PBX-q50u74I0ykOTb2T-dzYA6977qAjX0LLgBVhNjhC7oXBmL_GZnke4eqofKUs19hq5T2Ooli_QUY57kWzxB-j11alA_OVfK9vBr-QP0MrgPROOuj4ZiZPLFE1YmGUkaV1QLiZS2jiysFTD847j5JPDhNHERyr11-jZciDWP9q0FckvPBhF47o2eNCU_5EiVwmFayGOWfXRW_fpR-3wy2ENPXW_SxFdgsYL5e3ubHcUb0wH-JOf3ZbtZvlck2rTdh-kU8AvwXDQS3zNePQlFFqdIum7PjUiGFF1RVCAMw"} +2022/02/28 11:33:20 [DEBUG] Exit from do method +2022/02/28 11:33:20 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:33:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:33:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:33:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000612e80 5563 [] false false map[] 0xc00056a900 0xc0003f1550} +2022/02/28 11:33:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:33:20 [DEBUG] Exit from do method +2022/02/28 11:33:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:33:20 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:20 [DEBUG] New state was assigned lineage "b79eb022-4261-789a-0f53-bd6f05cc85ba" +2022/02/28 11:33:20 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:33:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:20 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:20 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:33:20 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:33:20 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:33:20 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:33:20 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:33:20 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:33:20 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:20 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_dzvjg" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_dzvjg" + schema_id: "" => "" + template_name: "" => "acctest_v4nn7" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_dzvjg" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_v4nn7" + template_name: "" => "acctest_v4nn7" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_dzvjg" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_dzvjg" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_v4nn7" + vrf_name: "" => "acctest_dzvjg" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_dzvjg" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_dzvjg" + schema_id: "" => "" + template_name: "" => "acctest_v4nn7" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_dzvjg" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_dzvjg" + schema_id: "" => "" + template: "" => "acctest_v4nn7" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:33:20 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:33:20 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:33:20 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:33:20 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:33:20 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:33:20 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:33:20 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:33:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:33:20 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:33:20 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:33:20 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:33:20 [DEBUG] Schema: Beginning Creation +2022/02/28 11:33:20 [DEBUG] : Beginning Create +2022/02/28 11:33:20 HTTP request POST mso/api/v1/schemas +2022/02/28 11:33:20 [DEBUG] Begin Injection +2022/02/28 11:33:20 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:33:20 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:33:20 [DEBUG] Begin Injection +2022/02/28 11:33:20 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDAwLCJpYXQiOjE2NDYwMjgyMDAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiME56aGYyU252TTFWQjBKMldmeDdZQjJMIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tB8wfRESuP6CPYke2CAFs46yQpr0MIa57zcxBQO32b65PBX-q50u74I0ykOTb2T-dzYA6977qAjX0LLgBVhNjhC7oXBmL_GZnke4eqofKUs19hq5T2Ooli_QUY57kWzxB-j11alA_OVfK9vBr-QP0MrgPROOuj4ZiZPLFE1YmGUkaV1QLiZS2jiysFTD847j5JPDhNHERyr11-jZciDWP9q0FckvPBhF47o2eNCU_5EiVwmFayGOWfXRW_fpR-3wy2ENPXW_SxFdgsYL5e3ubHcUb0wH-JOf3ZbtZvlck2rTdh-kU8AvwXDQS3zNePQlFFqdIum7PjUiGFF1RVCAMw] Content-Type:[application/json]] {{"displayName":"acctest_v4nn7","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_v4nn7","externalEpgs":[],"filters":[],"name":"acctest_v4nn7","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x12b7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:33:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:33:20 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:33:20 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDAwLCJpYXQiOjE2NDYwMjgyMDAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiME56aGYyU252TTFWQjBKMldmeDdZQjJMIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tB8wfRESuP6CPYke2CAFs46yQpr0MIa57zcxBQO32b65PBX-q50u74I0ykOTb2T-dzYA6977qAjX0LLgBVhNjhC7oXBmL_GZnke4eqofKUs19hq5T2Ooli_QUY57kWzxB-j11alA_OVfK9vBr-QP0MrgPROOuj4ZiZPLFE1YmGUkaV1QLiZS2jiysFTD847j5JPDhNHERyr11-jZciDWP9q0FckvPBhF47o2eNCU_5EiVwmFayGOWfXRW_fpR-3wy2ENPXW_SxFdgsYL5e3ubHcUb0wH-JOf3ZbtZvlck2rTdh-kU8AvwXDQS3zNePQlFFqdIum7PjUiGFF1RVCAMw] Content-Type:[application/json]] {{"desc":"","name":"acctest_dzvjg","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x12b7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:33:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:33:21 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:33:21 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c65a91d0000f9624fb9f5] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050c600 400 [] false false map[] 0xc000d2c200 0xc0003f1550} +2022/02/28 11:33:21 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:33:21 [DEBUG] Exit from do method +2022/02/28 11:33:21 [DEBUG] 621c65a91d0000f9624fb9f5: Schema Creation finished successfully +2022/02/28 11:33:21 [DEBUG] 621c65a91d0000f9624fb9f5: Beginning Read +2022/02/28 11:33:21 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:21 [DEBUG] Begin Injection +2022/02/28 11:33:21 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:21 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:33:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bcb480 160 [] false false map[] 0xc000dde300 0xc0003f1550} +2022/02/28 11:33:21 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c65a91b00005809fd0c2f","name":"acctest_dzvjg","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:33:21 [DEBUG] Exit from do method +2022/02/28 11:33:21 [DEBUG] 621c65a91b00005809fd0c2f: Creation finished successfully +2022/02/28 11:33:21 [DEBUG] 621c65a91b00005809fd0c2f: Beginning Read +2022/02/28 11:33:21 id: 621c65a91b00005809fd0c2f +2022/02/28 11:33:21 HTTP request GET mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:21 [DEBUG] Begin Injection +2022/02/28 11:33:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090b80 400 [] false false map[] 0xc000374300 0xc000d4a580} +2022/02/28 11:33:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:33:22 [DEBUG] Exit from do method +2022/02/28 11:33:22 [DEBUG] 621c65a91d0000f9624fb9f5: Read finished successfully +2022/02/28 11:33:22 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:33:22 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:33:22 HTTP request PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:22 [DEBUG] Begin Injection +2022/02/28 11:33:22 HTTP request after injection PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bcb640 160 [] false false map[] 0xc000d2c500 0xc0003f1550} +2022/02/28 11:33:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f {"id":"621c65a91b00005809fd0c2f","name":"acctest_dzvjg","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:33:22 [DEBUG] Exit from do method +2022/02/28 11:33:22 [DEBUG] 621c65a91b00005809fd0c2f: Read finished successfully +2022/02/28 11:33:22 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ddef00 0xc000d4a580} +2022/02/28 11:33:22 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:22 [DEBUG] acctest_dzvjg: Creation finished successfully +2022/02/28 11:33:22 [DEBUG] acctest_dzvjg: Beginning Read +2022/02/28 11:33:22 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:22 [DEBUG] Begin Injection +2022/02/28 11:33:22 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000613700 768 [] false false map[] 0xc000374700 0xc0001366e0} +2022/02/28 11:33:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:33:22 [DEBUG] Exit from do method +2022/02/28 11:33:22 currentvrfname acctest_dzvjg +2022/02/28 11:33:22 found correct vrfname +2022/02/28 11:33:22 [DEBUG] acctest_dzvjg: Read finished successfully +2022/02/28 11:33:22 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:33:22 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:33:22 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:33:22 HTTP request PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:22 [DEBUG] Begin Injection +2022/02/28 11:33:22 HTTP request after injection PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:23 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ddfa00 0xc0001366e0} +2022/02/28 11:33:23 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:23 [DEBUG] : Beginning Read +2022/02/28 11:33:23 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:23 [DEBUG] Begin Injection +2022/02/28 11:33:23 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007bee40 1277 [] false false map[] 0xc000374900 0xc0001366e0} +2022/02/28 11:33:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:33:23 [DEBUG] Exit from do method +2022/02/28 11:33:23 [DEBUG] acctest_dzvjg: Read finished successfully +2022/02/28 11:33:23 [DEBUG] : Beginning Read +2022/02/28 11:33:23 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:23 [DEBUG] Begin Injection +2022/02/28 11:33:23 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:23 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:33:23 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:33:23 HTTP request PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:23 [DEBUG] Begin Injection +2022/02/28 11:33:23 HTTP request after injection PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006acfc0 1277 [] false false map[] 0xc000375200 0xc0001366e0} +2022/02/28 11:33:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:33:23 [DEBUG] Exit from do method +2022/02/28 11:33:23 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 11:33:23 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 11:33:23 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000374200 0xc0003f1550} +2022/02/28 11:33:23 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:23 [DEBUG] Creation Complete +2022/02/28 11:33:23 [DEBUG] : Beginning Read +2022/02/28 11:33:23 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:23 [DEBUG] Begin Injection +2022/02/28 11:33:23 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00123e040 1362 [] false false map[] 0xc000d32800 0xc0003f1550} +2022/02/28 11:33:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","dhcpLabel":{"name":"acctest_dzvjg","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_dzvjg","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:33:24 [DEBUG] Exit from do method +2022/02/28 11:33:24 [DEBUG] /schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg: Read finished successfully +2022/02/28 11:33:24 [DEBUG] New state was assigned lineage "836f2e95-c1dd-aeae-f53f-365f6117f0bd" +2022/02/28 11:33:24 [WARN] Test: Executing destroy step +2022/02/28 11:33:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:33:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:24 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:33:24 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:24 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:33:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:33:24 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:24 [DEBUG] : Beginning Read +2022/02/28 11:33:24 HTTP request GET mso/api/v1/tenants +2022/02/28 11:33:24 [DEBUG] Begin Injection +2022/02/28 11:33:24 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:33:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:33:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:33:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b0440 5563 [] false false map[] 0xc000d2c200 0xc0003f1550} +2022/02/28 11:33:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:33:24 [DEBUG] Exit from do method +2022/02/28 11:33:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:33:24 [DEBUG] 621c65a91b00005809fd0c2f: Beginning Read +2022/02/28 11:33:24 id: 621c65a91b00005809fd0c2f +2022/02/28 11:33:24 HTTP request GET mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:24 [DEBUG] Begin Injection +2022/02/28 11:33:24 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:24 [DEBUG] 621c65a91d0000f9624fb9f5: Beginning Read +2022/02/28 11:33:24 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:24 [DEBUG] Begin Injection +2022/02/28 11:33:24 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001274700 1362 [] false false map[] 0xc000d32400 0xc0001366e0} +2022/02/28 11:33:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","dhcpLabel":{"name":"acctest_dzvjg","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_dzvjg","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:33:24 [DEBUG] Exit from do method +2022/02/28 11:33:24 [DEBUG] 621c65a91d0000f9624fb9f5: Read finished successfully +2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:33:24 [DEBUG] acctest_dzvjg: Beginning Read +2022/02/28 11:33:24 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:24 [DEBUG] Begin Injection +2022/02/28 11:33:24 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050d100 160 [] false false map[] 0xc000d2c600 0xc0003f1550} +2022/02/28 11:33:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f {"id":"621c65a91b00005809fd0c2f","name":"acctest_dzvjg","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:33:24 [DEBUG] Exit from do method +2022/02/28 11:33:24 [DEBUG] 621c65a91b00005809fd0c2f: Read finished successfully +2022/02/28 11:33:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ddc0 1362 [] false false map[] 0xc000bfad00 0xc0001366e0} +2022/02/28 11:33:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","dhcpLabel":{"name":"acctest_dzvjg","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_dzvjg","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:33:25 [DEBUG] Exit from do method +2022/02/28 11:33:25 currentvrfname acctest_dzvjg +2022/02/28 11:33:25 found correct vrfname +2022/02/28 11:33:25 [DEBUG] acctest_dzvjg: Read finished successfully +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:33:25 [DEBUG] acctest_dzvjg: Beginning Read +2022/02/28 11:33:25 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 [DEBUG] Begin Injection +2022/02/28 11:33:25 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00123ea80 1362 [] false false map[] 0xc000374800 0xc0001366e0} +2022/02/28 11:33:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","dhcpLabel":{"name":"acctest_dzvjg","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_dzvjg","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:33:25 [DEBUG] Exit from do method +2022/02/28 11:33:25 [DEBUG] acctest_dzvjg: Read finished successfully +2022/02/28 11:33:25 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:33:25 [DEBUG] /schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg: Beginning Read +2022/02/28 11:33:25 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 [DEBUG] Begin Injection +2022/02/28 11:33:25 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 [DEBUG] : Beginning Read +2022/02/28 11:33:25 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 [DEBUG] Begin Injection +2022/02/28 11:33:25 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001275f00 1362 [] false false map[] 0xc000584300 0xc0003f1550} +2022/02/28 11:33:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","dhcpLabel":{"name":"acctest_dzvjg","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_dzvjg","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:33:25 [DEBUG] Exit from do method +2022/02/28 11:33:25 [DEBUG] /schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg: Read finished successfully +2022/02/28 11:33:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bcba40 1362 [] false false map[] 0xc000374a00 0xc0001366e0} +2022/02/28 11:33:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","dhcpLabel":{"name":"acctest_dzvjg","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_dzvjg","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:33:25 [DEBUG] Exit from do method +2022/02/28 11:33:25 [DEBUG] /schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg: Read finished successfully +2022/02/28 11:33:25 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:25 [DEBUG] New state was assigned lineage "09f36312-50f9-7906-30ac-c4e75df32fad" +2022/02/28 11:33:25 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:33:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (destroy) +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:33:25 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_dzvjg" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg" => "" + name: "acctest_dzvjg" => "" + schema_id: "621c65a91d0000f9624fb9f5" => "" + template_name: "acctest_v4nn7" => "" + version: "0" => "" +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c65a91b00005809fd0c2f" => "" + name: "acctest_dzvjg" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c65a91d0000f9624fb9f5" => "" + name: "acctest_v4nn7" => "" + template_name: "acctest_v4nn7" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_dzvjg" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_dzvjg" => "" + id: "acctest_dzvjg" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_dzvjg" => "" + schema_id: "621c65a91d0000f9624fb9f5" => "" + template_name: "acctest_v4nn7" => "" + vrf_name: "acctest_dzvjg" => "" + vrf_schema_id: "621c65a91d0000f9624fb9f5" => "" + vrf_template_name: "acctest_v4nn7" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_dzvjg" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg" => "" + name: "acctest_dzvjg" => "" + schema_id: "621c65a91d0000f9624fb9f5" => "" + template_name: "acctest_v4nn7" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_dzvjg" => "" + id: "acctest_dzvjg" => "" + layer3_multicast: "false" => "" + name: "acctest_dzvjg" => "" + schema_id: "621c65a91d0000f9624fb9f5" => "" + template: "acctest_v4nn7" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg + provider = provider.mso + bd_name = acctest_dzvjg + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_dzvjg + schema_id = 621c65a91d0000f9624fb9f5 + template_name = acctest_v4nn7 + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c65a91b00005809fd0c2f + provider = provider.mso + description = + name = acctest_dzvjg + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c65a91d0000f9624fb9f5 + provider = provider.mso + name = acctest_v4nn7 + template_name = acctest_v4nn7 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_dzvjg + provider = provider.mso + dhcp_policy.name = acctest_dzvjg + dhcp_policy.version = 0 + display_name = acctest_dzvjg + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_dzvjg + schema_id = 621c65a91d0000f9624fb9f5 + template_name = acctest_v4nn7 + vrf_name = acctest_dzvjg + vrf_schema_id = 621c65a91d0000f9624fb9f5 + vrf_template_name = acctest_v4nn7 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg + provider = provider.mso + bd_name = acctest_dzvjg + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_dzvjg + schema_id = 621c65a91d0000f9624fb9f5 + template_name = acctest_v4nn7 + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_dzvjg + provider = provider.mso + display_name = acctest_dzvjg + layer3_multicast = false + name = acctest_dzvjg + schema_id = 621c65a91d0000f9624fb9f5 + template = acctest_v4nn7 + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:33:25 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:33:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:33:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:33:25 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:33:25 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:33:25 [DEBUG] Template BD: Beginning Update +2022/02/28 11:33:25 HTTP request PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:25 [DEBUG] Begin Injection +2022/02/28 11:33:25 HTTP request after injection PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000bfa900 0xc0001366e0} +2022/02/28 11:33:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:33:26 [DEBUG] 621c65a91b00005809fd0c2f: Beginning Read +2022/02/28 11:33:26 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:26 [DEBUG] Begin Injection +2022/02/28 11:33:26 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:26 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:33:26 [DEBUG] Template BD: Beginning Update +2022/02/28 11:33:26 HTTP request PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 [DEBUG] Begin Injection +2022/02/28 11:33:26 HTTP request after injection PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d33600 0xc0001366e0} +2022/02/28 11:33:26 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f +2022/02/28 11:33:26 [DEBUG] : Read finished successfully +2022/02/28 11:33:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000375000 0xc0003f1550} +2022/02/28 11:33:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:33:26 [DEBUG] acctest_dzvjg: Beginning Destroy +2022/02/28 11:33:26 HTTP request PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 [DEBUG] Begin Injection +2022/02/28 11:33:26 HTTP request after injection PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000374700 0xc0003f1550} +2022/02/28 11:33:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false +2022/02/28 11:33:26 [DEBUG] acctest_dzvjg: Destroy finished successfully +2022/02/28 11:33:26 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:33:26 [DEBUG] 621c65a91d0000f9624fb9f5: Beginning Destroy +2022/02/28 11:33:26 HTTP request DELETE mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:26 [DEBUG] Begin Injection +2022/02/28 11:33:26 HTTP request after injection DELETE mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:27 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d32600 0xc0003f1550} +2022/02/28 11:33:27 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:27 [DEBUG] 621c65a91d0000f9624fb9f5: Destroy finished successfully +2022/02/28 11:33:27 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:27 [DEBUG] New state was assigned lineage "8c526da3-be1c-61d1-ba32-fa5fa121f509" +2022/02/28 11:33:27 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:27 [DEBUG] Begin Injection +2022/02/28 11:33:27 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:27 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:27 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00123ee80 39 [] false false map[] 0xc000bfa800 0xc0003f1550} +2022/02/28 11:33:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"code":404,"message":"Item not found"} +2022/02/28 11:33:27 [DEBUG] Exit from do method +2022/02/28 11:33:27 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:27 [DEBUG] Begin Injection +2022/02/28 11:33:27 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 +2022/02/28 11:33:27 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:27 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bcad00 39 [] false false map[] 0xc000374900 0xc0003f1550} +2022/02/28 11:33:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"code":404,"message":"Item not found"} +2022/02/28 11:33:27 [DEBUG] Exit from do method +2022/02/28 11:33:27 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:33:27 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:33:27 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:33:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:33:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:33:27 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:33:27 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:33:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:27 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:33:27 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:33:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:27 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:33:27 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:33:27 [DEBUG] : Beginning Read +2022/02/28 11:33:27 HTTP request GET mso/api/v1/tenants +2022/02/28 11:33:27 [DEBUG] Begin Injection +2022/02/28 11:33:27 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:33:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:33:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:33:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00123e040 5563 [] false false map[] 0xc000bfab00 0xc0003f1550} +2022/02/28 11:33:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:33:28 [DEBUG] Exit from do method +2022/02/28 11:33:28 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:33:28 [DEBUG] provider has no plugin.Client +2022/02/28 11:33:28 [DEBUG] New state was assigned lineage "91600c7f-f885-51f9-fa25-b2e3d35ad808" +2022/02/28 11:33:28 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:33:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:33:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:33:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:33:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:33:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:33:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:33:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:33:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:33:28 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:34:09 [DEBUG] Test: Executing step 0 +2022/02/28 11:34:09 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:34:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:34:09 [DEBUG] Test: Executing step 1 +2022/02/28 11:34:09 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:34:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:34:09 [DEBUG] Test: Executing step 2 +2022/02/28 11:34:09 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:34:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:34:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:34:09 [DEBUG] Test: Executing step 3 +2022/02/28 11:34:09 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:34:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:34:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:34:09 [DEBUG] Test: Executing step 4 +2022/02/28 11:34:09 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:34:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:34:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:34:09 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:09 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:34:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:09 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:34:09 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:34:09 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:09 [DEBUG] : Beginning Read +2022/02/28 11:34:09 HTTP request GET mso/api/v1/tenants +2022/02/28 11:34:09 [DEBUG] Begin Injection +2022/02/28 11:34:09 HTTP request POST /login +2022/02/28 11:34:09 HTTP request after injection POST /login +2022/02/28 11:34:09 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:34:11 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:34:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:11 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDUxLCJpYXQiOjE2NDYwMjgyNTEsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZ011VXBBSHlVS2xUdkZKbz1mTTMzQ2RkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gUV5jeBAO-dZvR_95GJkfq0rkpG5X-vi1Fr6lLDpOvUHPEVcBNLOHk0oaUf-BQzmQJ-IMc6Pv9Bz52LWZYd7NtdWmTqUNhLd0PCceyzmYqERJnIKyFEGG4MHtShYWhj7OrPBkoF0eYcIp3eFlNJONTDjp7GYixMa3GM9x0ghp2AVIwfFfoldkji0Wf1HgWx9s4tzEZIh7z-KC3sU4REWt6aifF5f-HTXxh7sDRzKwJxzjaSu6Vp10BXysN9ulillJelcT-XTKL8_CPqSrRjeSuiIX9Rr5Dt-OavOLtfMdBRaB-SxzrZXTCGiBEAMDXM5S4-Z0WxFjGfEInTMCl7e4A; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00004c5c0 -1 [chunked] false false map[] 0xc000bc0c00 0xc000b58000} +2022/02/28 11:34:11 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDUxLCJpYXQiOjE2NDYwMjgyNTEsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZ011VXBBSHlVS2xUdkZKbz1mTTMzQ2RkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gUV5jeBAO-dZvR_95GJkfq0rkpG5X-vi1Fr6lLDpOvUHPEVcBNLOHk0oaUf-BQzmQJ-IMc6Pv9Bz52LWZYd7NtdWmTqUNhLd0PCceyzmYqERJnIKyFEGG4MHtShYWhj7OrPBkoF0eYcIp3eFlNJONTDjp7GYixMa3GM9x0ghp2AVIwfFfoldkji0Wf1HgWx9s4tzEZIh7z-KC3sU4REWt6aifF5f-HTXxh7sDRzKwJxzjaSu6Vp10BXysN9ulillJelcT-XTKL8_CPqSrRjeSuiIX9Rr5Dt-OavOLtfMdBRaB-SxzrZXTCGiBEAMDXM5S4-Z0WxFjGfEInTMCl7e4A","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDUxLCJpYXQiOjE2NDYwMjgyNTEsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZ011VXBBSHlVS2xUdkZKbz1mTTMzQ2RkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gUV5jeBAO-dZvR_95GJkfq0rkpG5X-vi1Fr6lLDpOvUHPEVcBNLOHk0oaUf-BQzmQJ-IMc6Pv9Bz52LWZYd7NtdWmTqUNhLd0PCceyzmYqERJnIKyFEGG4MHtShYWhj7OrPBkoF0eYcIp3eFlNJONTDjp7GYixMa3GM9x0ghp2AVIwfFfoldkji0Wf1HgWx9s4tzEZIh7z-KC3sU4REWt6aifF5f-HTXxh7sDRzKwJxzjaSu6Vp10BXysN9ulillJelcT-XTKL8_CPqSrRjeSuiIX9Rr5Dt-OavOLtfMdBRaB-SxzrZXTCGiBEAMDXM5S4-Z0WxFjGfEInTMCl7e4A"} +2022/02/28 11:34:11 [DEBUG] Exit from do method +2022/02/28 11:34:11 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:34:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:34:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:34:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000514040 5563 [] false false map[] 0xc000bc0b00 0xc000b58000} +2022/02/28 11:34:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:34:11 [DEBUG] Exit from do method +2022/02/28 11:34:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:34:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:11 [DEBUG] New state was assigned lineage "d396769d-dbae-be6e-d565-aeb2b08b2bfb" +2022/02/28 11:34:11 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:34:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:11 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:11 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:34:11 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:34:11 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:34:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:34:11 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:34:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:34:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:11 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_iuj2a" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_iuj2a" + schema_id: "" => "" + template_name: "" => "acctest_0jztx" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_iuj2a" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_0jztx" + template_name: "" => "acctest_0jztx" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_iuj2a" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_iuj2a" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_0jztx" + vrf_name: "" => "acctest_iuj2a" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_iuj2a" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_iuj2a" + schema_id: "" => "" + template_name: "" => "acctest_0jztx" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_iuj2a" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_iuj2a" + schema_id: "" => "" + template: "" => "acctest_0jztx" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:34:11 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:34:11 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:34:11 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:34:11 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:34:11 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:34:11 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:34:11 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:34:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:34:11 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:34:11 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:34:11 [DEBUG] Schema: Beginning Creation +2022/02/28 11:34:11 HTTP request POST mso/api/v1/schemas +2022/02/28 11:34:11 [DEBUG] Begin Injection +2022/02/28 11:34:11 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:34:11 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDUxLCJpYXQiOjE2NDYwMjgyNTEsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZ011VXBBSHlVS2xUdkZKbz1mTTMzQ2RkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gUV5jeBAO-dZvR_95GJkfq0rkpG5X-vi1Fr6lLDpOvUHPEVcBNLOHk0oaUf-BQzmQJ-IMc6Pv9Bz52LWZYd7NtdWmTqUNhLd0PCceyzmYqERJnIKyFEGG4MHtShYWhj7OrPBkoF0eYcIp3eFlNJONTDjp7GYixMa3GM9x0ghp2AVIwfFfoldkji0Wf1HgWx9s4tzEZIh7z-KC3sU4REWt6aifF5f-HTXxh7sDRzKwJxzjaSu6Vp10BXysN9ulillJelcT-XTKL8_CPqSrRjeSuiIX9Rr5Dt-OavOLtfMdBRaB-SxzrZXTCGiBEAMDXM5S4-Z0WxFjGfEInTMCl7e4A] Content-Type:[application/json]] {{"displayName":"acctest_0jztx","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_0jztx","externalEpgs":[],"filters":[],"name":"acctest_0jztx","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x4a7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} +2022/02/28 11:34:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:34:11 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:34:11 [DEBUG] : Beginning Create +2022/02/28 11:34:11 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:34:11 [DEBUG] Begin Injection +2022/02/28 11:34:11 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:34:12 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDUxLCJpYXQiOjE2NDYwMjgyNTEsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZ011VXBBSHlVS2xUdkZKbz1mTTMzQ2RkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gUV5jeBAO-dZvR_95GJkfq0rkpG5X-vi1Fr6lLDpOvUHPEVcBNLOHk0oaUf-BQzmQJ-IMc6Pv9Bz52LWZYd7NtdWmTqUNhLd0PCceyzmYqERJnIKyFEGG4MHtShYWhj7OrPBkoF0eYcIp3eFlNJONTDjp7GYixMa3GM9x0ghp2AVIwfFfoldkji0Wf1HgWx9s4tzEZIh7z-KC3sU4REWt6aifF5f-HTXxh7sDRzKwJxzjaSu6Vp10BXysN9ulillJelcT-XTKL8_CPqSrRjeSuiIX9Rr5Dt-OavOLtfMdBRaB-SxzrZXTCGiBEAMDXM5S4-Z0WxFjGfEInTMCl7e4A] Content-Type:[application/json]] {{"desc":"","name":"acctest_iuj2a","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x4a7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} +2022/02/28 11:34:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:34:12 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:34:12 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c65dc1d0000fa624fb9fd] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e7280 400 [] false false map[] 0xc0000a6700 0xc000b58000} +2022/02/28 11:34:12 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:34:12 [DEBUG] Exit from do method +2022/02/28 11:34:12 [DEBUG] 621c65dc1d0000fa624fb9fd: Schema Creation finished successfully +2022/02/28 11:34:12 [DEBUG] 621c65dc1d0000fa624fb9fd: Beginning Read +2022/02/28 11:34:12 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:12 [DEBUG] Begin Injection +2022/02/28 11:34:12 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:12 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:34:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e74c0 160 [] false false map[] 0xc0007ea500 0xc000b58000} +2022/02/28 11:34:12 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c65dc1b00007109fd0c30","name":"acctest_iuj2a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:34:12 [DEBUG] Exit from do method +2022/02/28 11:34:12 [DEBUG] 621c65dc1b00007109fd0c30: Creation finished successfully +2022/02/28 11:34:12 [DEBUG] 621c65dc1b00007109fd0c30: Beginning Read +2022/02/28 11:34:12 id: 621c65dc1b00007109fd0c30 +2022/02/28 11:34:12 HTTP request GET mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:12 [DEBUG] Begin Injection +2022/02/28 11:34:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e7700 400 [] false false map[] 0xc0007eab00 0xc000b58000} +2022/02/28 11:34:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:34:13 [DEBUG] Exit from do method +2022/02/28 11:34:13 [DEBUG] 621c65dc1d0000fa624fb9fd: Read finished successfully +2022/02/28 11:34:13 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:34:13 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:34:13 HTTP request PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:13 [DEBUG] Begin Injection +2022/02/28 11:34:13 HTTP request after injection PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007fda00 160 [] false false map[] 0xc0007ead00 0xc000536dc0} +2022/02/28 11:34:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 {"id":"621c65dc1b00007109fd0c30","name":"acctest_iuj2a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:34:13 [DEBUG] Exit from do method +2022/02/28 11:34:13 [DEBUG] 621c65dc1b00007109fd0c30: Read finished successfully +2022/02/28 11:34:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000518300 0xc000b58000} +2022/02/28 11:34:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:13 [DEBUG] acctest_iuj2a: Creation finished successfully +2022/02/28 11:34:13 [DEBUG] acctest_iuj2a: Beginning Read +2022/02/28 11:34:13 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:13 [DEBUG] Begin Injection +2022/02/28 11:34:13 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000df200 768 [] false false map[] 0xc000518500 0xc000e8b1e0} +2022/02/28 11:34:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:34:13 [DEBUG] Exit from do method +2022/02/28 11:34:13 currentvrfname acctest_iuj2a +2022/02/28 11:34:13 found correct vrfname +2022/02/28 11:34:13 [DEBUG] acctest_iuj2a: Read finished successfully +2022/02/28 11:34:13 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:34:13 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:34:13 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:34:13 HTTP request PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:13 [DEBUG] Begin Injection +2022/02/28 11:34:13 HTTP request after injection PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:14 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a7700 0xc00040bce0} +2022/02/28 11:34:14 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:14 [DEBUG] : Beginning Read +2022/02/28 11:34:14 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:14 [DEBUG] Begin Injection +2022/02/28 11:34:14 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000514040 1277 [] false false map[] 0xc0007fa800 0xc00040bce0} +2022/02/28 11:34:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:34:14 [DEBUG] Exit from do method +2022/02/28 11:34:14 [DEBUG] acctest_iuj2a: Read finished successfully +2022/02/28 11:34:14 [DEBUG] : Beginning Read +2022/02/28 11:34:14 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:14 [DEBUG] Begin Injection +2022/02/28 11:34:14 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:14 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:34:14 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:34:14 HTTP request PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:14 [DEBUG] Begin Injection +2022/02/28 11:34:14 HTTP request after injection PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000848b40 1277 [] false false map[] 0xc000bc0300 0xc00040bce0} +2022/02/28 11:34:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:34:14 [DEBUG] Exit from do method +2022/02/28 11:34:14 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 11:34:14 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 11:34:14 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000518200 0xc000536dc0} +2022/02/28 11:34:14 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:14 [DEBUG] Creation Complete +2022/02/28 11:34:14 [DEBUG] : Beginning Read +2022/02/28 11:34:14 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:14 [DEBUG] Begin Injection +2022/02/28 11:34:14 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000848d40 1362 [] false false map[] 0xc0000a6400 0xc000536dc0} +2022/02/28 11:34:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","dhcpLabel":{"name":"acctest_iuj2a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_iuj2a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:34:15 [DEBUG] Exit from do method +2022/02/28 11:34:15 [DEBUG] /schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a: Read finished successfully +2022/02/28 11:34:15 [DEBUG] New state was assigned lineage "6b4b5d76-db35-21e3-b4d7-8ab6693ae6a7" +2022/02/28 11:34:15 [WARN] Test: Executing destroy step +2022/02/28 11:34:15 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:34:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:34:15 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:34:15 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:15 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:34:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:34:15 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:15 [DEBUG] : Beginning Read +2022/02/28 11:34:15 HTTP request GET mso/api/v1/tenants +2022/02/28 11:34:15 [DEBUG] Begin Injection +2022/02/28 11:34:15 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:34:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:34:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:34:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005158c0 5563 [] false false map[] 0xc000518400 0xc000536dc0} +2022/02/28 11:34:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:34:15 [DEBUG] Exit from do method +2022/02/28 11:34:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:34:15 [DEBUG] 621c65dc1d0000fa624fb9fd: Beginning Read +2022/02/28 11:34:15 [DEBUG] 621c65dc1b00007109fd0c30: Beginning Read +2022/02/28 11:34:15 id: 621c65dc1b00007109fd0c30 +2022/02/28 11:34:15 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:15 [DEBUG] Begin Injection +2022/02/28 11:34:15 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:15 [DEBUG] Begin Injection +2022/02/28 11:34:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d28840 1362 [] false false map[] 0xc0000a6c00 0xc000536dc0} +2022/02/28 11:34:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","dhcpLabel":{"name":"acctest_iuj2a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_iuj2a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:34:15 [DEBUG] Exit from do method +2022/02/28 11:34:15 [DEBUG] 621c65dc1d0000fa624fb9fd: Read finished successfully +2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:34:15 [DEBUG] acctest_iuj2a: Beginning Read +2022/02/28 11:34:15 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:15 [DEBUG] Begin Injection +2022/02/28 11:34:15 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000deec0 160 [] false false map[] 0xc000518800 0xc00040bce0} +2022/02/28 11:34:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 {"id":"621c65dc1b00007109fd0c30","name":"acctest_iuj2a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:34:15 [DEBUG] Exit from do method +2022/02/28 11:34:15 [DEBUG] 621c65dc1b00007109fd0c30: Read finished successfully +2022/02/28 11:34:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00014bcc0 1362 [] false false map[] 0xc000bc0800 0xc000536dc0} +2022/02/28 11:34:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","dhcpLabel":{"name":"acctest_iuj2a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_iuj2a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:34:16 [DEBUG] Exit from do method +2022/02/28 11:34:16 currentvrfname acctest_iuj2a +2022/02/28 11:34:16 found correct vrfname +2022/02/28 11:34:16 [DEBUG] acctest_iuj2a: Read finished successfully +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:34:16 [DEBUG] acctest_iuj2a: Beginning Read +2022/02/28 11:34:16 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 [DEBUG] Begin Injection +2022/02/28 11:34:16 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000218b40 1362 [] false false map[] 0xc0007fa500 0xc000536dc0} +2022/02/28 11:34:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","dhcpLabel":{"name":"acctest_iuj2a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_iuj2a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:34:16 [DEBUG] Exit from do method +2022/02/28 11:34:16 [DEBUG] acctest_iuj2a: Read finished successfully +2022/02/28 11:34:16 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:34:16 [DEBUG] /schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a: Beginning Read +2022/02/28 11:34:16 [DEBUG] : Beginning Read +2022/02/28 11:34:16 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 [DEBUG] Begin Injection +2022/02/28 11:34:16 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 [DEBUG] Begin Injection +2022/02/28 11:34:16 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004d9800 1362 [] false false map[] 0xc0007fa600 0xc00040bce0} +2022/02/28 11:34:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","dhcpLabel":{"name":"acctest_iuj2a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_iuj2a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:34:16 [DEBUG] Exit from do method +2022/02/28 11:34:16 [DEBUG] /schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a: Read finished successfully +2022/02/28 11:34:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d29340 1362 [] false false map[] 0xc0000a7100 0xc000536dc0} +2022/02/28 11:34:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","dhcpLabel":{"name":"acctest_iuj2a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_iuj2a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:34:16 [DEBUG] Exit from do method +2022/02/28 11:34:16 [DEBUG] /schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a: Read finished successfully +2022/02/28 11:34:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:16 [DEBUG] New state was assigned lineage "6864205d-cd8e-0226-6b83-c1d3473930ab" +2022/02/28 11:34:16 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:34:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:16 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:34:16 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_iuj2a" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a" => "" + name: "acctest_iuj2a" => "" + schema_id: "621c65dc1d0000fa624fb9fd" => "" + template_name: "acctest_0jztx" => "" + version: "0" => "" +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c65dc1b00007109fd0c30" => "" + name: "acctest_iuj2a" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c65dc1d0000fa624fb9fd" => "" + name: "acctest_0jztx" => "" + template_name: "acctest_0jztx" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_iuj2a" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_iuj2a" => "" + id: "acctest_iuj2a" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_iuj2a" => "" + schema_id: "621c65dc1d0000fa624fb9fd" => "" + template_name: "acctest_0jztx" => "" + vrf_name: "acctest_iuj2a" => "" + vrf_schema_id: "621c65dc1d0000fa624fb9fd" => "" + vrf_template_name: "acctest_0jztx" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_iuj2a" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a" => "" + name: "acctest_iuj2a" => "" + schema_id: "621c65dc1d0000fa624fb9fd" => "" + template_name: "acctest_0jztx" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_iuj2a" => "" + id: "acctest_iuj2a" => "" + layer3_multicast: "false" => "" + name: "acctest_iuj2a" => "" + schema_id: "621c65dc1d0000fa624fb9fd" => "" + template: "acctest_0jztx" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a + provider = provider.mso + bd_name = acctest_iuj2a + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_iuj2a + schema_id = 621c65dc1d0000fa624fb9fd + template_name = acctest_0jztx + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c65dc1b00007109fd0c30 + provider = provider.mso + description = + name = acctest_iuj2a + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c65dc1d0000fa624fb9fd + provider = provider.mso + name = acctest_0jztx + template_name = acctest_0jztx + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_iuj2a + provider = provider.mso + dhcp_policy.name = acctest_iuj2a + dhcp_policy.version = 0 + display_name = acctest_iuj2a + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_iuj2a + schema_id = 621c65dc1d0000fa624fb9fd + template_name = acctest_0jztx + vrf_name = acctest_iuj2a + vrf_schema_id = 621c65dc1d0000fa624fb9fd + vrf_template_name = acctest_0jztx + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a + provider = provider.mso + bd_name = acctest_iuj2a + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_iuj2a + schema_id = 621c65dc1d0000fa624fb9fd + template_name = acctest_0jztx + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_iuj2a + provider = provider.mso + display_name = acctest_iuj2a + layer3_multicast = false + name = acctest_iuj2a + schema_id = 621c65dc1d0000fa624fb9fd + template = acctest_0jztx + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:34:16 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:34:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:34:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:34:16 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:34:16 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:34:16 [DEBUG] Template BD: Beginning Update +2022/02/28 11:34:16 HTTP request PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:16 [DEBUG] Begin Injection +2022/02/28 11:34:16 HTTP request after injection PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0007ea800 0xc000536dc0} +2022/02/28 11:34:17 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:34:17 [DEBUG] 621c65dc1b00007109fd0c30: Beginning Read +2022/02/28 11:34:17 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:17 [DEBUG] Begin Injection +2022/02/28 11:34:17 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:17 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:34:17 [DEBUG] Template BD: Beginning Update +2022/02/28 11:34:17 HTTP request PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 [DEBUG] Begin Injection +2022/02/28 11:34:17 HTTP request after injection PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000dca000 0xc00040bce0} +2022/02/28 11:34:17 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:34:17 [DEBUG] acctest_iuj2a: Beginning Destroy +2022/02/28 11:34:17 HTTP request PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 [DEBUG] Begin Injection +2022/02/28 11:34:17 HTTP request after injection PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a6e00 0xc00040bce0} +2022/02/28 11:34:17 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false +2022/02/28 11:34:17 [DEBUG] acctest_iuj2a: Destroy finished successfully +2022/02/28 11:34:17 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:34:17 [DEBUG] 621c65dc1d0000fa624fb9fd: Beginning Destroy +2022/02/28 11:34:17 HTTP request DELETE mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:17 [DEBUG] Begin Injection +2022/02/28 11:34:17 HTTP request after injection DELETE mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:17 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000bc1600 0xc000536dc0} +2022/02/28 11:34:17 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 +2022/02/28 11:34:17 [DEBUG] : Read finished successfully +2022/02/28 11:34:18 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:18 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000518800 0xc00040bce0} +2022/02/28 11:34:18 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:18 [DEBUG] 621c65dc1d0000fa624fb9fd: Destroy finished successfully +2022/02/28 11:34:18 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:18 [DEBUG] New state was assigned lineage "b62279e9-b215-e9d8-adc6-fdc0fb9bd280" +2022/02/28 11:34:18 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:18 [DEBUG] Begin Injection +2022/02/28 11:34:18 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:18 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:18 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f174c0 39 [] false false map[] 0xc000bc0200 0xc00040bce0} +2022/02/28 11:34:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"code":404,"message":"Item not found"} +2022/02/28 11:34:18 [DEBUG] Exit from do method +2022/02/28 11:34:18 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:18 [DEBUG] Begin Injection +2022/02/28 11:34:18 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd +2022/02/28 11:34:18 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:18 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009126c0 39 [] false false map[] 0xc0000a7000 0xc00040bce0} +2022/02/28 11:34:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"code":404,"message":"Item not found"} +2022/02/28 11:34:18 [DEBUG] Exit from do method +2022/02/28 11:34:18 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:34:18 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:34:18 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:34:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:34:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:34:18 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:34:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:34:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:18 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:34:18 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:34:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:18 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:34:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:34:18 [DEBUG] : Beginning Read +2022/02/28 11:34:18 HTTP request GET mso/api/v1/tenants +2022/02/28 11:34:18 [DEBUG] Begin Injection +2022/02/28 11:34:18 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:34:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:34:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:34:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dc1780 5563 [] false false map[] 0xc0000a6c00 0xc00040bce0} +2022/02/28 11:34:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:34:19 [DEBUG] Exit from do method +2022/02/28 11:34:19 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:34:19 [DEBUG] provider has no plugin.Client +2022/02/28 11:34:19 [DEBUG] New state was assigned lineage "7d6d00b4-61f0-91db-8aa7-8c8d9fee1eb3" +2022/02/28 11:34:19 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:34:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:34:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:34:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:34:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:34:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:34:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:34:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:34:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:34:19 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:40:31 [DEBUG] Test: Executing step 0 +2022/02/28 11:40:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:40:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:31 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:40:31 [DEBUG] Test: Executing step 1 +2022/02/28 11:40:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:40:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:40:31 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:40:31 [DEBUG] Test: Executing step 2 +2022/02/28 11:40:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:40:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:40:31 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:40:31 [DEBUG] Test: Executing step 3 +2022/02/28 11:40:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:40:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:40:31 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:40:31 [DEBUG] Test: Executing step 4 +2022/02/28 11:40:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:40:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:31 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:40:31 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:31 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:40:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:31 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:40:31 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:31 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:31 [DEBUG] : Beginning Read +2022/02/28 11:40:31 HTTP request GET mso/api/v1/tenants +2022/02/28 11:40:31 [DEBUG] Begin Injection +2022/02/28 11:40:31 HTTP request POST /login +2022/02/28 11:40:31 HTTP request after injection POST /login +2022/02/28 11:40:31 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:40:33 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:40:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:33 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5ODMyLCJpYXQiOjE2NDYwMjg2MzIsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSHFYYzBnc29OZ20wZ1lDRnlrTzhNUGtiIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.nyN1zDNdDtuphi3BsDqIqTGEe8596kAlNwFdP2NwsjvnB2MqFarl0l4S5hDtPHLyYrYJK2lEbMovrOj8yNpceURiqERD45WeQvzMdva5C0UaK9qUwOZAALK9TQYtzYdj--X1bzKR1JYxNiTZziPw7hCdxWKm73U0mv6LopWgGKFjMI7FI1KdWAuZQrckqn5BBrqJ3EAym17cDNJ5CELRbUwORj_PUR20hexXix9l1yeY1ZIDlLWEgrlBKiFFvMdVmO9sC0sIWztERaoBfrKqa1YTz6F2E4E-BlpNMVBl7ZAZ2wI1Uof97FCrkYjSryyAjURpd9aLlGCaIEfDfWHetA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0009b44c0 -1 [chunked] false false map[] 0xc00017f400 0xc000074000} +2022/02/28 11:40:33 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5ODMyLCJpYXQiOjE2NDYwMjg2MzIsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSHFYYzBnc29OZ20wZ1lDRnlrTzhNUGtiIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.nyN1zDNdDtuphi3BsDqIqTGEe8596kAlNwFdP2NwsjvnB2MqFarl0l4S5hDtPHLyYrYJK2lEbMovrOj8yNpceURiqERD45WeQvzMdva5C0UaK9qUwOZAALK9TQYtzYdj--X1bzKR1JYxNiTZziPw7hCdxWKm73U0mv6LopWgGKFjMI7FI1KdWAuZQrckqn5BBrqJ3EAym17cDNJ5CELRbUwORj_PUR20hexXix9l1yeY1ZIDlLWEgrlBKiFFvMdVmO9sC0sIWztERaoBfrKqa1YTz6F2E4E-BlpNMVBl7ZAZ2wI1Uof97FCrkYjSryyAjURpd9aLlGCaIEfDfWHetA","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5ODMyLCJpYXQiOjE2NDYwMjg2MzIsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSHFYYzBnc29OZ20wZ1lDRnlrTzhNUGtiIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.nyN1zDNdDtuphi3BsDqIqTGEe8596kAlNwFdP2NwsjvnB2MqFarl0l4S5hDtPHLyYrYJK2lEbMovrOj8yNpceURiqERD45WeQvzMdva5C0UaK9qUwOZAALK9TQYtzYdj--X1bzKR1JYxNiTZziPw7hCdxWKm73U0mv6LopWgGKFjMI7FI1KdWAuZQrckqn5BBrqJ3EAym17cDNJ5CELRbUwORj_PUR20hexXix9l1yeY1ZIDlLWEgrlBKiFFvMdVmO9sC0sIWztERaoBfrKqa1YTz6F2E4E-BlpNMVBl7ZAZ2wI1Uof97FCrkYjSryyAjURpd9aLlGCaIEfDfWHetA"} +2022/02/28 11:40:33 [DEBUG] Exit from do method +2022/02/28 11:40:33 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:40:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:40:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:40:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce1c0 5563 [] false false map[] 0xc00017f300 0xc000074000} +2022/02/28 11:40:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:40:33 [DEBUG] Exit from do method +2022/02/28 11:40:33 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:40:33 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:33 [DEBUG] New state was assigned lineage "a4e5752d-8289-c9f5-7596-8fbb9894f191" +2022/02/28 11:40:33 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:40:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:40:33 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:33 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:40:33 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:40:33 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:40:33 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:40:33 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:33 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:33 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:33 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_1l41q" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_1l41q" + schema_id: "" => "" + template_name: "" => "acctest_npsvz" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_1l41q" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_npsvz" + template_name: "" => "acctest_npsvz" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_1l41q" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_1l41q" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_npsvz" + vrf_name: "" => "acctest_1l41q" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_1l41q" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_1l41q" + schema_id: "" => "" + template_name: "" => "acctest_npsvz" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_1l41q" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_1l41q" + schema_id: "" => "" + template: "" => "acctest_npsvz" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:40:33 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:40:33 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:40:33 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:40:33 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:40:33 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:40:33 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:40:33 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:40:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:40:33 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:40:33 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:40:33 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:40:33 [DEBUG] Schema: Beginning Creation +2022/02/28 11:40:33 [DEBUG] : Beginning Create +2022/02/28 11:40:33 HTTP request POST mso/api/v1/schemas +2022/02/28 11:40:33 [DEBUG] Begin Injection +2022/02/28 11:40:33 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:40:33 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5ODMyLCJpYXQiOjE2NDYwMjg2MzIsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSHFYYzBnc29OZ20wZ1lDRnlrTzhNUGtiIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.nyN1zDNdDtuphi3BsDqIqTGEe8596kAlNwFdP2NwsjvnB2MqFarl0l4S5hDtPHLyYrYJK2lEbMovrOj8yNpceURiqERD45WeQvzMdva5C0UaK9qUwOZAALK9TQYtzYdj--X1bzKR1JYxNiTZziPw7hCdxWKm73U0mv6LopWgGKFjMI7FI1KdWAuZQrckqn5BBrqJ3EAym17cDNJ5CELRbUwORj_PUR20hexXix9l1yeY1ZIDlLWEgrlBKiFFvMdVmO9sC0sIWztERaoBfrKqa1YTz6F2E4E-BlpNMVBl7ZAZ2wI1Uof97FCrkYjSryyAjURpd9aLlGCaIEfDfWHetA] Content-Type:[application/json]] {{"displayName":"acctest_npsvz","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_npsvz","externalEpgs":[],"filters":[],"name":"acctest_npsvz","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xa37ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:40:33 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:40:33 [DEBUG] Begin Injection +2022/02/28 11:40:33 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:40:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:40:33 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5ODMyLCJpYXQiOjE2NDYwMjg2MzIsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSHFYYzBnc29OZ20wZ1lDRnlrTzhNUGtiIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.nyN1zDNdDtuphi3BsDqIqTGEe8596kAlNwFdP2NwsjvnB2MqFarl0l4S5hDtPHLyYrYJK2lEbMovrOj8yNpceURiqERD45WeQvzMdva5C0UaK9qUwOZAALK9TQYtzYdj--X1bzKR1JYxNiTZziPw7hCdxWKm73U0mv6LopWgGKFjMI7FI1KdWAuZQrckqn5BBrqJ3EAym17cDNJ5CELRbUwORj_PUR20hexXix9l1yeY1ZIDlLWEgrlBKiFFvMdVmO9sC0sIWztERaoBfrKqa1YTz6F2E4E-BlpNMVBl7ZAZ2wI1Uof97FCrkYjSryyAjURpd9aLlGCaIEfDfWHetA] Content-Type:[application/json]] {{"desc":"","name":"acctest_1l41q","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa37ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:40:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:40:34 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:40:34 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c67591d000048634fba0e] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000328180 400 [] false false map[] 0xc00099e300 0xc000074000} +2022/02/28 11:40:34 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:40:34 [DEBUG] Exit from do method +2022/02/28 11:40:34 [DEBUG] 621c67591d000048634fba0e: Schema Creation finished successfully +2022/02/28 11:40:34 [DEBUG] 621c67591d000048634fba0e: Beginning Read +2022/02/28 11:40:34 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:34 [DEBUG] Begin Injection +2022/02/28 11:40:34 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:34 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:40:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000310380 160 [] false false map[] 0xc000c68600 0xc000074000} +2022/02/28 11:40:34 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c675a1b0000c309fd0c33","name":"acctest_1l41q","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:40:34 [DEBUG] Exit from do method +2022/02/28 11:40:34 [DEBUG] 621c675a1b0000c309fd0c33: Creation finished successfully +2022/02/28 11:40:34 [DEBUG] 621c675a1b0000c309fd0c33: Beginning Read +2022/02/28 11:40:34 id: 621c675a1b0000c309fd0c33 +2022/02/28 11:40:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:34 [DEBUG] Begin Injection +2022/02/28 11:40:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce100 160 [] false false map[] 0xc00099e400 0xc000074000} +2022/02/28 11:40:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 {"id":"621c675a1b0000c309fd0c33","name":"acctest_1l41q","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:40:34 [DEBUG] Exit from do method +2022/02/28 11:40:34 [DEBUG] 621c675a1b0000c309fd0c33: Read finished successfully +2022/02/28 11:40:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce5c0 400 [] false false map[] 0xc0005b5400 0xc0000f40b0} +2022/02/28 11:40:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:40:34 [DEBUG] Exit from do method +2022/02/28 11:40:34 [DEBUG] 621c67591d000048634fba0e: Read finished successfully +2022/02/28 11:40:34 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:40:34 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:40:34 HTTP request PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:34 [DEBUG] Begin Injection +2022/02/28 11:40:34 HTTP request after injection PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:35 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005b4900 0xc0000f40b0} +2022/02/28 11:40:35 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:35 [DEBUG] acctest_1l41q: Creation finished successfully +2022/02/28 11:40:35 [DEBUG] acctest_1l41q: Beginning Read +2022/02/28 11:40:35 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:35 [DEBUG] Begin Injection +2022/02/28 11:40:35 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000328340 768 [] false false map[] 0xc0005b4b00 0xc0000749a0} +2022/02/28 11:40:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:40:35 [DEBUG] Exit from do method +2022/02/28 11:40:35 currentvrfname acctest_1l41q +2022/02/28 11:40:35 found correct vrfname +2022/02/28 11:40:35 [DEBUG] acctest_1l41q: Read finished successfully +2022/02/28 11:40:35 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:40:35 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:40:35 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:40:35 HTTP request PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:35 [DEBUG] Begin Injection +2022/02/28 11:40:35 HTTP request after injection PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:35 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005b4d00 0xc0000749a0} +2022/02/28 11:40:35 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:35 [DEBUG] : Beginning Read +2022/02/28 11:40:35 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:35 [DEBUG] Begin Injection +2022/02/28 11:40:35 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007ddb00 1277 [] false false map[] 0xc00017e700 0xc0000749a0} +2022/02/28 11:40:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:40:36 [DEBUG] Exit from do method +2022/02/28 11:40:36 [DEBUG] acctest_1l41q: Read finished successfully +2022/02/28 11:40:36 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:40:36 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:40:36 HTTP request PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:36 [DEBUG] Begin Injection +2022/02/28 11:40:36 HTTP request after injection PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:36 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:36 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017ec00 0xc0000749a0} +2022/02/28 11:40:36 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:36 [DEBUG] Creation Complete +2022/02/28 11:40:36 [DEBUG] : Beginning Read +2022/02/28 11:40:36 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:36 [DEBUG] Begin Injection +2022/02/28 11:40:36 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a140 1362 [] false false map[] 0xc00099e100 0xc0000749a0} +2022/02/28 11:40:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:36 [DEBUG] Exit from do method +2022/02/28 11:40:36 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Read finished successfully +2022/02/28 11:40:36 [DEBUG] : Beginning Read +2022/02/28 11:40:36 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:36 [DEBUG] Begin Injection +2022/02/28 11:40:36 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003115c0 1362 [] false false map[] 0xc00099ee00 0xc0000749a0} +2022/02/28 11:40:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:37 [DEBUG] Exit from do method +2022/02/28 11:40:37 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Read finished successfully +2022/02/28 11:40:37 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:37 [DEBUG] New state was assigned lineage "5ac8d1bc-35a1-f2a6-a21b-1949d9008eac" +2022/02/28 11:40:37 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 [DEBUG] Begin Injection +2022/02/28 11:40:37 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a5300 1362 [] false false map[] 0xc00099ef00 0xc0000749a0} +2022/02/28 11:40:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:37 [DEBUG] Exit from do method +2022/02/28 11:40:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:40:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:40:37 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:37 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:40:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:37 [DEBUG] : Beginning Read +2022/02/28 11:40:37 HTTP request GET mso/api/v1/tenants +2022/02/28 11:40:37 [DEBUG] Begin Injection +2022/02/28 11:40:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:40:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:40:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:40:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a46c0 5563 [] false false map[] 0xc000a6e100 0xc0000749a0} +2022/02/28 11:40:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:40:37 [DEBUG] Exit from do method +2022/02/28 11:40:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:40:37 [DEBUG] 621c67591d000048634fba0e: Beginning Read +2022/02/28 11:40:37 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 [DEBUG] Begin Injection +2022/02/28 11:40:37 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 [DEBUG] 621c675a1b0000c309fd0c33: Beginning Read +2022/02/28 11:40:37 id: 621c675a1b0000c309fd0c33 +2022/02/28 11:40:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:37 [DEBUG] Begin Injection +2022/02/28 11:40:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a0c0 1362 [] false false map[] 0xc000cce500 0xc0000749a0} +2022/02/28 11:40:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:37 [DEBUG] Exit from do method +2022/02/28 11:40:37 [DEBUG] 621c67591d000048634fba0e: Read finished successfully +2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:40:37 [DEBUG] acctest_1l41q: Beginning Read +2022/02/28 11:40:37 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 [DEBUG] Begin Injection +2022/02/28 11:40:37 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a180 160 [] false false map[] 0xc000a6e100 0xc000074000} +2022/02/28 11:40:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 {"id":"621c675a1b0000c309fd0c33","name":"acctest_1l41q","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:40:37 [DEBUG] Exit from do method +2022/02/28 11:40:37 [DEBUG] 621c675a1b0000c309fd0c33: Read finished successfully +2022/02/28 11:40:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000311640 1362 [] false false map[] 0xc000c68400 0xc0000749a0} +2022/02/28 11:40:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:38 [DEBUG] Exit from do method +2022/02/28 11:40:38 currentvrfname acctest_1l41q +2022/02/28 11:40:38 found correct vrfname +2022/02/28 11:40:38 [DEBUG] acctest_1l41q: Read finished successfully +2022/02/28 11:40:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:40:38 [DEBUG] acctest_1l41q: Beginning Read +2022/02/28 11:40:38 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:38 [DEBUG] Begin Injection +2022/02/28 11:40:38 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000373700 1362 [] false false map[] 0xc000c68900 0xc0000749a0} +2022/02/28 11:40:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:38 [DEBUG] Exit from do method +2022/02/28 11:40:38 [DEBUG] acctest_1l41q: Read finished successfully +2022/02/28 11:40:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:38 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Beginning Read +2022/02/28 11:40:38 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:38 [DEBUG] Begin Injection +2022/02/28 11:40:38 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcef00 1362 [] false false map[] 0xc000c69100 0xc0000749a0} +2022/02/28 11:40:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:38 [DEBUG] Exit from do method +2022/02/28 11:40:38 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Read finished successfully +2022/02/28 11:40:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:38 [DEBUG] : Beginning Read +2022/02/28 11:40:38 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:38 [DEBUG] Begin Injection +2022/02/28 11:40:38 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074b200 1362 [] false false map[] 0xc000c69400 0xc0000749a0} +2022/02/28 11:40:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:39 [DEBUG] Exit from do method +2022/02/28 11:40:39 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Read finished successfully +2022/02/28 11:40:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:39 [DEBUG] New state was assigned lineage "4174ce6f-b654-0eeb-defb-4ca042826360" +2022/02/28 11:40:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:40:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:39 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:39 [WARN] Test: Executing destroy step +2022/02/28 11:40:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:40:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:39 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:40:39 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:40:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:40:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:39 [DEBUG] : Beginning Read +2022/02/28 11:40:39 HTTP request GET mso/api/v1/tenants +2022/02/28 11:40:39 [DEBUG] Begin Injection +2022/02/28 11:40:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:40:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:40:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:40:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000372c00 5563 [] false false map[] 0xc00017e300 0xc0000749a0} +2022/02/28 11:40:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:40:39 [DEBUG] Exit from do method +2022/02/28 11:40:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:40:39 [DEBUG] 621c67591d000048634fba0e: Beginning Read +2022/02/28 11:40:39 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:39 [DEBUG] Begin Injection +2022/02/28 11:40:39 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:39 [DEBUG] 621c675a1b0000c309fd0c33: Beginning Read +2022/02/28 11:40:39 id: 621c675a1b0000c309fd0c33 +2022/02/28 11:40:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:39 [DEBUG] Begin Injection +2022/02/28 11:40:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcf700 1362 [] false false map[] 0xc00099e500 0xc0000749a0} +2022/02/28 11:40:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:39 [DEBUG] Exit from do method +2022/02/28 11:40:39 [DEBUG] 621c67591d000048634fba0e: Read finished successfully +2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:40:39 [DEBUG] acctest_1l41q: Beginning Read +2022/02/28 11:40:39 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:39 [DEBUG] Begin Injection +2022/02/28 11:40:39 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007dc3c0 160 [] false false map[] 0xc000a6e900 0xc000074000} +2022/02/28 11:40:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 {"id":"621c675a1b0000c309fd0c33","name":"acctest_1l41q","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:40:39 [DEBUG] Exit from do method +2022/02/28 11:40:39 [DEBUG] 621c675a1b0000c309fd0c33: Read finished successfully +2022/02/28 11:40:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074af00 1362 [] false false map[] 0xc000d82900 0xc0000749a0} +2022/02/28 11:40:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:40 [DEBUG] Exit from do method +2022/02/28 11:40:40 currentvrfname acctest_1l41q +2022/02/28 11:40:40 found correct vrfname +2022/02/28 11:40:40 [DEBUG] acctest_1l41q: Read finished successfully +2022/02/28 11:40:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:40:40 [DEBUG] acctest_1l41q: Beginning Read +2022/02/28 11:40:40 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:40 [DEBUG] Begin Injection +2022/02/28 11:40:40 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a4040 1362 [] false false map[] 0xc00099eb00 0xc0000749a0} +2022/02/28 11:40:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:40 [DEBUG] Exit from do method +2022/02/28 11:40:40 [DEBUG] acctest_1l41q: Read finished successfully +2022/02/28 11:40:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:40 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Beginning Read +2022/02/28 11:40:40 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:40 [DEBUG] Begin Injection +2022/02/28 11:40:40 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090f80 1362 [] false false map[] 0xc000d82a00 0xc0000749a0} +2022/02/28 11:40:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:40 [DEBUG] Exit from do method +2022/02/28 11:40:40 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Read finished successfully +2022/02/28 11:40:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:40 [DEBUG] : Beginning Read +2022/02/28 11:40:40 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:40 [DEBUG] Begin Injection +2022/02/28 11:40:40 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a140 1362 [] false false map[] 0xc000d82f00 0xc0000749a0} +2022/02/28 11:40:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:40:41 [DEBUG] Exit from do method +2022/02/28 11:40:41 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Read finished successfully +2022/02/28 11:40:41 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:41 [DEBUG] New state was assigned lineage "a9db49b9-3cbd-8691-62df-b0b8e0a09068" +2022/02/28 11:40:41 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:40:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:40:41 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:40:41 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_1l41q" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q" => "" + name: "acctest_1l41q" => "" + schema_id: "621c67591d000048634fba0e" => "" + template_name: "acctest_npsvz" => "" + version: "0" => "" +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c675a1b0000c309fd0c33" => "" + name: "acctest_1l41q" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c67591d000048634fba0e" => "" + name: "acctest_npsvz" => "" + template_name: "acctest_npsvz" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_1l41q" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_1l41q" => "" + id: "acctest_1l41q" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_1l41q" => "" + schema_id: "621c67591d000048634fba0e" => "" + template_name: "acctest_npsvz" => "" + vrf_name: "acctest_1l41q" => "" + vrf_schema_id: "621c67591d000048634fba0e" => "" + vrf_template_name: "acctest_npsvz" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_1l41q" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q" => "" + name: "acctest_1l41q" => "" + schema_id: "621c67591d000048634fba0e" => "" + template_name: "acctest_npsvz" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_1l41q" => "" + id: "acctest_1l41q" => "" + layer3_multicast: "false" => "" + name: "acctest_1l41q" => "" + schema_id: "621c67591d000048634fba0e" => "" + template: "acctest_npsvz" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q + provider = provider.mso + bd_name = acctest_1l41q + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_1l41q + schema_id = 621c67591d000048634fba0e + template_name = acctest_npsvz + version = 0 + + Dependencies: + mso_schema_template_bd_dhcp_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c675a1b0000c309fd0c33 + provider = provider.mso + description = + name = acctest_1l41q + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c67591d000048634fba0e + provider = provider.mso + name = acctest_npsvz + template_name = acctest_npsvz + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_1l41q + provider = provider.mso + dhcp_policy.name = acctest_1l41q + dhcp_policy.version = 0 + display_name = acctest_1l41q + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_1l41q + schema_id = 621c67591d000048634fba0e + template_name = acctest_npsvz + vrf_name = acctest_1l41q + vrf_schema_id = 621c67591d000048634fba0e + vrf_template_name = acctest_npsvz + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q + provider = provider.mso + bd_name = acctest_1l41q + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_1l41q + schema_id = 621c67591d000048634fba0e + template_name = acctest_npsvz + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_1l41q + provider = provider.mso + display_name = acctest_1l41q + layer3_multicast = false + name = acctest_1l41q + schema_id = 621c67591d000048634fba0e + template = acctest_npsvz + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 11:40:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:40:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:40:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:40:41 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:40:41 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 11:40:41 [DEBUG] Template BD: Beginning Update +2022/02/28 11:40:41 HTTP request PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:41 [DEBUG] Begin Injection +2022/02/28 11:40:41 HTTP request after injection PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:41 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017eb00 0xc0000749a0} +2022/02/28 11:40:41 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 11:40:41 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 11:40:41 [DEBUG] 621c675a1b0000c309fd0c33: Beginning Read +2022/02/28 11:40:41 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:41 [DEBUG] Begin Injection +2022/02/28 11:40:41 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:41 [DEBUG] Template BD: Beginning Update +2022/02/28 11:40:41 HTTP request PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:41 [DEBUG] Begin Injection +2022/02/28 11:40:41 HTTP request after injection PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:41 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d82f00 0xc0000749a0} +2022/02/28 11:40:41 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 +2022/02/28 11:40:41 [DEBUG] : Read finished successfully +2022/02/28 11:40:41 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001b4200 0xc000074000} +2022/02/28 11:40:41 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:41 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 11:40:41 [DEBUG] acctest_1l41q: Beginning Destroy +2022/02/28 11:40:41 HTTP request PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:41 [DEBUG] Begin Injection +2022/02/28 11:40:41 HTTP request after injection PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d83200 0xc000074000} +2022/02/28 11:40:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false +2022/02/28 11:40:42 [DEBUG] acctest_1l41q: Destroy finished successfully +2022/02/28 11:40:42 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 11:40:42 [DEBUG] 621c67591d000048634fba0e: Beginning Destroy +2022/02/28 11:40:42 HTTP request DELETE mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:42 [DEBUG] Begin Injection +2022/02/28 11:40:42 HTTP request after injection DELETE mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:42 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0001b4c00 0xc000074000} +2022/02/28 11:40:42 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:42 [DEBUG] 621c67591d000048634fba0e: Destroy finished successfully +2022/02/28 11:40:42 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:42 [DEBUG] New state was assigned lineage "4ced18f8-0cd2-058a-d1bf-3005f31fa728" +2022/02/28 11:40:42 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:42 [DEBUG] Begin Injection +2022/02/28 11:40:42 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:42 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:42 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000372700 39 [] false false map[] 0xc000d83500 0xc000074000} +2022/02/28 11:40:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"code":404,"message":"Item not found"} +2022/02/28 11:40:42 [DEBUG] Exit from do method +2022/02/28 11:40:42 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:42 [DEBUG] Begin Injection +2022/02/28 11:40:42 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e +2022/02/28 11:40:43 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:42 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a040 39 [] false false map[] 0xc00099e100 0xc000074000} +2022/02/28 11:40:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"code":404,"message":"Item not found"} +2022/02/28 11:40:43 [DEBUG] Exit from do method +2022/02/28 11:40:43 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:40:43 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:40:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:40:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:40:43 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:40:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:40:43 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:40:43 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:43 [DEBUG] : Beginning Read +2022/02/28 11:40:43 HTTP request GET mso/api/v1/tenants +2022/02/28 11:40:43 [DEBUG] Begin Injection +2022/02/28 11:40:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:40:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:40:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:40:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000310100 5563 [] false false map[] 0xc00099ef00 0xc000074000} +2022/02/28 11:40:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:40:43 [DEBUG] Exit from do method +2022/02/28 11:40:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:40:43 [DEBUG] provider has no plugin.Client +2022/02/28 11:40:43 [DEBUG] New state was assigned lineage "886aa9e5-4ef6-add0-1b36-4ca548110985" +2022/02/28 11:40:43 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:40:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:40:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:40:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:40:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:40:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:40:43 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:50:01 [DEBUG] Test: Executing step 0 +2022/02/28 11:50:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:50:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:01 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:50:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:50:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:50:01 [DEBUG] Test: Executing step 1 +2022/02/28 11:50:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:50:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:01 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:50:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:50:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:50:01 [DEBUG] Test: Executing step 2 +2022/02/28 11:50:01 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:50:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:01 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:50:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:50:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:50:01 [DEBUG] Test: Executing step 3 +2022/02/28 11:50:02 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:02 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:50:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:02 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:50:02 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:50:02 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:50:02 [DEBUG] Test: Executing step 4 +2022/02/28 11:50:02 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:02 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:50:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:02 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:50:02 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:02 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:50:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:02 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:50:02 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:02 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:02 [DEBUG] : Beginning Read +2022/02/28 11:50:02 HTTP request GET mso/api/v1/tenants +2022/02/28 11:50:02 [DEBUG] Begin Injection +2022/02/28 11:50:02 HTTP request POST /login +2022/02/28 11:50:02 HTTP request after injection POST /login +2022/02/28 11:50:02 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:50:03 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:50:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:03 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00004dcc0 -1 [chunked] false false map[] 0xc000968400 0xc0000d66e0} +2022/02/28 11:50:03 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw"} +2022/02/28 11:50:03 [DEBUG] Exit from do method +2022/02/28 11:50:03 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:50:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:50:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:50:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009943c0 5563 [] false false map[] 0xc000968300 0xc0000d66e0} +2022/02/28 11:50:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:50:03 [DEBUG] Exit from do method +2022/02/28 11:50:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:50:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:03 [DEBUG] New state was assigned lineage "7b927cc4-b926-4d69-fc79-7db9d77a99db" +2022/02/28 11:50:03 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:50:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:03 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:03 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:50:03 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:50:03 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:50:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:50:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:03 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:03 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_7siqy" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_7siqy" + schema_id: "" => "" + template_name: "" => "acctest_har8n" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_7siqy" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_har8n" + template_name: "" => "acctest_har8n" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_7siqy" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_7siqy" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_har8n" + vrf_name: "" => "acctest_7siqy" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_7siqy" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_7siqy" + schema_id: "" => "" + template_name: "" => "acctest_har8n" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_7siqy" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_7siqy" + schema_id: "" => "" + template: "" => "acctest_har8n" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:50:03 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:50:03 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:50:03 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:50:03 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:50:03 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:03 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:03 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:50:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:50:03 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:50:03 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:50:03 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:50:03 [DEBUG] Schema: Beginning Creation +2022/02/28 11:50:03 HTTP request POST mso/api/v1/schemas +2022/02/28 11:50:03 [DEBUG] Begin Injection +2022/02/28 11:50:03 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:50:03 [DEBUG] : Beginning Create +2022/02/28 11:50:03 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw] Content-Type:[application/json]] {{"displayName":"acctest_har8n","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_har8n","externalEpgs":[],"filters":[],"name":"acctest_har8n","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xab7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:50:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:50:03 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:50:03 [DEBUG] Begin Injection +2022/02/28 11:50:03 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:50:03 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw] Content-Type:[application/json]] {{"desc":"","name":"acctest_7siqy","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xab7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:50:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:50:04 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:50:04 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c69931d0000aa634fba16] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b52900 400 [] false false map[] 0xc00017e900 0xc0000d66e0} +2022/02/28 11:50:04 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:50:04 [DEBUG] Exit from do method +2022/02/28 11:50:04 [DEBUG] 621c69931d0000aa634fba16: Schema Creation finished successfully +2022/02/28 11:50:04 [DEBUG] 621c69931d0000aa634fba16: Beginning Read +2022/02/28 11:50:04 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:04 [DEBUG] Begin Injection +2022/02/28 11:50:04 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:04 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:50:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fa0500 160 [] false false map[] 0xc000b54300 0xc0000d66e0} +2022/02/28 11:50:04 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c69941b0000380afd0c34","name":"acctest_7siqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:50:04 [DEBUG] Exit from do method +2022/02/28 11:50:04 [DEBUG] 621c69941b0000380afd0c34: Creation finished successfully +2022/02/28 11:50:04 [DEBUG] 621c69941b0000380afd0c34: Beginning Read +2022/02/28 11:50:04 id: 621c69941b0000380afd0c34 +2022/02/28 11:50:04 HTTP request GET mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 +2022/02/28 11:50:04 [DEBUG] Begin Injection +2022/02/28 11:50:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 +2022/02/28 11:50:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 +2022/02/28 11:50:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000686a80 400 [] false false map[] 0xc000b54700 0xc0001a0370} +2022/02/28 11:50:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:50:05 [DEBUG] Exit from do method +2022/02/28 11:50:05 [DEBUG] 621c69931d0000aa634fba16: Read finished successfully +2022/02/28 11:50:05 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:50:05 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:50:05 HTTP request PATCH mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:05 [DEBUG] Begin Injection +2022/02/28 11:50:05 HTTP request after injection PATCH mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 +2022/02/28 11:50:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000595f80 160 [] false false map[] 0xc000b54900 0xc0000d66e0} +2022/02/28 11:50:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 {"id":"621c69941b0000380afd0c34","name":"acctest_7siqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:50:05 [DEBUG] Exit from do method +2022/02/28 11:50:05 [DEBUG] 621c69941b0000380afd0c34: Read finished successfully +2022/02/28 11:50:05 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:20:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000b54e00 0xc0001a0370} +2022/02/28 11:50:05 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:05 [DEBUG] acctest_7siqy: Creation finished successfully +2022/02/28 11:50:05 [DEBUG] acctest_7siqy: Beginning Read +2022/02/28 11:50:05 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:05 [DEBUG] Begin Injection +2022/02/28 11:50:05 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006860c0 768 [] false false map[] 0xc0000b6100 0xc0000d6000} +2022/02/28 11:50:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:50:05 [DEBUG] Exit from do method +2022/02/28 11:50:05 currentvrfname acctest_7siqy +2022/02/28 11:50:05 found correct vrfname +2022/02/28 11:50:05 [DEBUG] acctest_7siqy: Read finished successfully +2022/02/28 11:50:05 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:50:05 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:50:05 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:50:05 HTTP request PATCH mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:05 [DEBUG] Begin Injection +2022/02/28 11:50:05 HTTP request after injection PATCH mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:05 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:20:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000968c00 0xc0000d6000} +2022/02/28 11:50:05 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:05 [DEBUG] : Beginning Read +2022/02/28 11:50:05 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:05 [DEBUG] Begin Injection +2022/02/28 11:50:05 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073f180 1277 [] false false map[] 0xc0000b6900 0xc0000d6000} +2022/02/28 11:50:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:50:06 [DEBUG] Exit from do method +2022/02/28 11:50:06 [DEBUG] acctest_7siqy: Read finished successfully +2022/02/28 11:50:06 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:50:06 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:50:06 HTTP request PATCH mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:06 [DEBUG] Begin Injection +2022/02/28 11:50:06 HTTP request after injection PATCH mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:06 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:20:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000969600 0xc0000d6000} +2022/02/28 11:50:06 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false +2022/02/28 11:50:06 [DEBUG] Creation Complete +2022/02/28 11:50:06 [DEBUG] : Beginning Read +2022/02/28 11:50:06 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:06 [DEBUG] Begin Injection +2022/02/28 11:50:06 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b52300 1362 [] false false map[] 0xc0006d8000 0xc0000d6000} +2022/02/28 11:50:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:06 [DEBUG] Exit from do method +2022/02/28 11:50:06 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Read finished successfully +2022/02/28 11:50:06 [DEBUG] : Beginning Read +2022/02/28 11:50:06 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:06 [DEBUG] Begin Injection +2022/02/28 11:50:06 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6300 1362 [] false false map[] 0xc0006d8700 0xc0000d6000} +2022/02/28 11:50:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:07 [DEBUG] Exit from do method +2022/02/28 11:50:07 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Read finished successfully +2022/02/28 11:50:07 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:07 [DEBUG] New state was assigned lineage "7d0d9ff1-03f7-dbc6-9eb4-e5f13f220a10" +2022/02/28 11:50:07 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:07 [DEBUG] Begin Injection +2022/02/28 11:50:07 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6080 1362 [] false false map[] 0xc0000b6100 0xc0000d6000} +2022/02/28 11:50:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:07 [DEBUG] Exit from do method +2022/02/28 11:50:07 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:50:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:50:07 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:07 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:07 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:50:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:07 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:07 [DEBUG] : Beginning Read +2022/02/28 11:50:07 HTTP request GET mso/api/v1/tenants +2022/02/28 11:50:07 [DEBUG] Begin Injection +2022/02/28 11:50:07 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:50:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:50:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:50:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000686680 5563 [] false false map[] 0xc000692200 0xc0000d6000} +2022/02/28 11:50:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:50:07 [DEBUG] Exit from do method +2022/02/28 11:50:07 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:50:07 [DEBUG] 621c69931d0000aa634fba16: Beginning Read +2022/02/28 11:50:07 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:07 [DEBUG] Begin Injection +2022/02/28 11:50:07 [DEBUG] 621c69941b0000380afd0c34: Beginning Read +2022/02/28 11:50:07 id: 621c69941b0000380afd0c34 +2022/02/28 11:50:07 HTTP request GET mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 +2022/02/28 11:50:07 [DEBUG] Begin Injection +2022/02/28 11:50:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 +2022/02/28 11:50:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 +2022/02/28 11:50:07 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b52040 1362 [] false false map[] 0xc0006d8700 0xc0000d66e0} +2022/02/28 11:50:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:08 [DEBUG] Exit from do method +2022/02/28 11:50:08 [DEBUG] 621c69931d0000aa634fba16: Read finished successfully +2022/02/28 11:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:50:08 [DEBUG] acctest_7siqy: Beginning Read +2022/02/28 11:50:08 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:08 [DEBUG] Begin Injection +2022/02/28 11:50:08 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 +2022/02/28 11:50:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b52580 160 [] false false map[] 0xc0000b6e00 0xc0000d6000} +2022/02/28 11:50:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 {"id":"621c69941b0000380afd0c34","name":"acctest_7siqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:50:08 [DEBUG] Exit from do method +2022/02/28 11:50:08 [DEBUG] 621c69941b0000380afd0c34: Read finished successfully +2022/02/28 11:50:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090740 1362 [] false false map[] 0xc0008a2100 0xc0000d66e0} +2022/02/28 11:50:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:08 [DEBUG] Exit from do method +2022/02/28 11:50:08 currentvrfname acctest_7siqy +2022/02/28 11:50:08 found correct vrfname +2022/02/28 11:50:08 [DEBUG] acctest_7siqy: Read finished successfully +2022/02/28 11:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:50:08 [DEBUG] acctest_7siqy: Beginning Read +2022/02/28 11:50:08 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:08 [DEBUG] Begin Injection +2022/02/28 11:50:08 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090c40 1362 [] false false map[] 0xc000692f00 0xc0000d66e0} +2022/02/28 11:50:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:08 [DEBUG] Exit from do method +2022/02/28 11:50:08 [DEBUG] acctest_7siqy: Read finished successfully +2022/02/28 11:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:08 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Beginning Read +2022/02/28 11:50:08 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:08 [DEBUG] Begin Injection +2022/02/28 11:50:08 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b530c0 1362 [] false false map[] 0xc000968600 0xc0000d66e0} +2022/02/28 11:50:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:09 [DEBUG] Exit from do method +2022/02/28 11:50:09 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Read finished successfully +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:09 [DEBUG] : Beginning Read +2022/02/28 11:50:09 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:09 [DEBUG] Begin Injection +2022/02/28 11:50:09 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000aebbc0 1362 [] false false map[] 0xc0008a2700 0xc0000d66e0} +2022/02/28 11:50:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:09 [DEBUG] Exit from do method +2022/02/28 11:50:09 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Read finished successfully +2022/02/28 11:50:09 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:09 [DEBUG] New state was assigned lineage "b75b1e40-3cfd-e83d-f51f-6233f04c759a" +2022/02/28 11:50:09 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:50:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:09 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:09 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:09 [DEBUG] Test: Executing step 5 +2022/02/28 11:50:09 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:50:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:50:09 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:09 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:50:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:50:09 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:09 [DEBUG] : Beginning Read +2022/02/28 11:50:09 HTTP request GET mso/api/v1/tenants +2022/02/28 11:50:09 [DEBUG] Begin Injection +2022/02/28 11:50:09 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:50:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:50:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:50:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b52100 5563 [] false false map[] 0xc0008a2100 0xc0000d66e0} +2022/02/28 11:50:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:50:09 [DEBUG] Exit from do method +2022/02/28 11:50:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:50:09 [DEBUG] 621c69941b0000380afd0c34: Beginning Read +2022/02/28 11:50:09 id: 621c69941b0000380afd0c34 +2022/02/28 11:50:09 [DEBUG] 621c69931d0000aa634fba16: Beginning Read +2022/02/28 11:50:09 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:09 [DEBUG] Begin Injection +2022/02/28 11:50:09 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:09 HTTP request GET mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 +2022/02/28 11:50:09 [DEBUG] Begin Injection +2022/02/28 11:50:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 +2022/02/28 11:50:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 +2022/02/28 11:50:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006820c0 1362 [] false false map[] 0xc000969100 0xc0000d66e0} +2022/02/28 11:50:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:10 [DEBUG] Exit from do method +2022/02/28 11:50:10 [DEBUG] 621c69931d0000aa634fba16: Read finished successfully +2022/02/28 11:50:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:50:10 [DEBUG] acctest_7siqy: Beginning Read +2022/02/28 11:50:10 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:10 [DEBUG] Begin Injection +2022/02/28 11:50:10 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 +2022/02/28 11:50:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b53a40 160 [] false false map[] 0xc0006d8600 0xc0000d6000} +2022/02/28 11:50:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 {"id":"621c69941b0000380afd0c34","name":"acctest_7siqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:50:10 [DEBUG] Exit from do method +2022/02/28 11:50:10 [DEBUG] 621c69941b0000380afd0c34: Read finished successfully +2022/02/28 11:50:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000970100 1362 [] false false map[] 0xc000969600 0xc0000d66e0} +2022/02/28 11:50:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:10 [DEBUG] Exit from do method +2022/02/28 11:50:10 currentvrfname acctest_7siqy +2022/02/28 11:50:10 found correct vrfname +2022/02/28 11:50:10 [DEBUG] acctest_7siqy: Read finished successfully +2022/02/28 11:50:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:50:10 [DEBUG] acctest_7siqy: Beginning Read +2022/02/28 11:50:10 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:10 [DEBUG] Begin Injection +2022/02/28 11:50:10 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b8100 1362 [] false false map[] 0xc000b0c100 0xc0000d66e0} +2022/02/28 11:50:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:10 [DEBUG] Exit from do method +2022/02/28 11:50:10 [DEBUG] acctest_7siqy: Read finished successfully +2022/02/28 11:50:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:10 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Beginning Read +2022/02/28 11:50:10 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:10 [DEBUG] Begin Injection +2022/02/28 11:50:10 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000594080 1362 [] false false map[] 0xc0008a2400 0xc0000d66e0} +2022/02/28 11:50:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:11 [DEBUG] Exit from do method +2022/02/28 11:50:11 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Read finished successfully +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:11 [DEBUG] : Beginning Read +2022/02/28 11:50:11 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:11 [DEBUG] Begin Injection +2022/02/28 11:50:11 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 +2022/02/28 11:50:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b53580 1362 [] false false map[] 0xc0008a2600 0xc0000d66e0} +2022/02/28 11:50:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:50:11 [DEBUG] Exit from do method +2022/02/28 11:50:11 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 11:50:11 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 11:50:11 [DEBUG] New state was assigned lineage "60fb44f3-e9bc-334c-0bf1-667012610353" +2022/02/28 11:50:11 [DEBUG] Test: Executing step 6 +2022/02/28 11:50:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:11 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:50:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:11 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:50:11 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "jlkdm" is not expected here. +2022/02/28 11:50:11 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "jlkdm" is not expected here. +2022/02/28 11:50:11 [DEBUG] Test: Executing step 7 +2022/02/28 11:50:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:11 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:50:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:11 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:50:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:11 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:50:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:11 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:50:11 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:11 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:11 [DEBUG] : Beginning Read +2022/02/28 11:50:11 HTTP request GET mso/api/v1/tenants +2022/02/28 11:50:11 [DEBUG] Begin Injection +2022/02/28 11:50:11 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:50:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:50:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:50:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000485140 5563 [] false false map[] 0xc0008a3a00 0xc0000d66e0} +2022/02/28 11:50:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:50:11 [DEBUG] Exit from do method +2022/02/28 11:50:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:50:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:11 [DEBUG] New state was assigned lineage "102f1550-69b4-6658-e738-13dda63377a9" +2022/02/28 11:50:11 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:50:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:11 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:11 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:50:11 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:50:11 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:50:12 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:50:12 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:12 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:12 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:12 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_7siqy" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_7siqy" + schema_id: "" => "" + template_name: "" => "acctest_har8n" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_7siqy" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_har8n" + template_name: "" => "acctest_har8n" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_7siqy" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_7siqy" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_har8n" + vrf_name: "" => "acctest_7siqy" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_7siqy" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_7siqy" + schema_id: "" => "" + template_name: "" => "acctest_har8n" + version: "" => "2" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_7siqy" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_7siqy" + schema_id: "" => "" + template: "" => "acctest_har8n" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:50:12 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:50:12 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:50:12 [DEBUG] Schema: Beginning Creation +2022/02/28 11:50:12 HTTP request POST mso/api/v1/schemas +2022/02/28 11:50:12 [DEBUG] Begin Injection +2022/02/28 11:50:12 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:50:12 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw] Content-Type:[application/json]] {{"displayName":"acctest_har8n","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_har8n","externalEpgs":[],"filters":[],"name":"acctest_har8n","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xab7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:50:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:50:12 [DEBUG] : Beginning Create +2022/02/28 11:50:12 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:50:12 [DEBUG] Begin Injection +2022/02/28 11:50:12 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:50:12 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw] Content-Type:[application/json]] {{"desc":"","name":"acctest_7siqy","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xab7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:50:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:50:12 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:50:12 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[122] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:12 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000484140 122 [] false false map[] 0xc0008a3900 0xc0000d66e0} +2022/02/28 11:50:12 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"code":140,"message":"Duplicate Resource: displayName","info":{"displayName":["Schema: 'acctest_har8n' already exists"]}} +2022/02/28 11:50:12 [DEBUG] Exit from do method +2022/02/28 11:50:12 [DEBUG] mso_schema.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_har8n' already exists"]} +2022/02/28 11:50:12 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_har8n' already exists"]} +2022/02/28 11:50:12 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_har8n' already exists"]} +2022/02/28 11:50:12 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:50:12 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[108] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:12 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004842c0 108 [] false false map[] 0xc0000b6600 0xc0000d6000} +2022/02/28 11:50:12 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":140,"message":"Duplicate Resource: name","info":{"name":["Policy: 'acctest_7siqy' already exists"]}} +2022/02/28 11:50:12 [DEBUG] Exit from do method +2022/02/28 11:50:12 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: name"{"name":["Policy: 'acctest_7siqy' already exists"]} +2022/02/28 11:50:12 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_7siqy' already exists"]} +2022/02/28 11:50:12 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_7siqy' already exists"]} +2022/02/28 11:50:12 [DEBUG] New state was assigned lineage "f6af6fb4-9ef5-968f-854e-f238755c66d2" +2022/02/28 11:50:12 [WARN] Test: Executing destroy step +2022/02/28 11:50:12 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:50:12 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:12 [DEBUG] : Beginning Read +2022/02/28 11:50:12 HTTP request GET mso/api/v1/tenants +2022/02/28 11:50:12 [DEBUG] Begin Injection +2022/02/28 11:50:12 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:50:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:50:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:50:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000686140 5563 [] false false map[] 0xc001231400 0xc0000d6000} +2022/02/28 11:50:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:50:12 [DEBUG] Exit from do method +2022/02/28 11:50:12 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:12 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:12 [DEBUG] New state was assigned lineage "ce8cee6d-6c38-6cdf-1f9c-f2eb64e22a9c" +2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:50:12 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:50:12 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:12 [DEBUG] New state was assigned lineage "eae4d62a-f7bb-f20e-16ab-2fd76c406a56" +2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:50:12 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:12 [DEBUG] : Beginning Read +2022/02/28 11:50:12 HTTP request GET mso/api/v1/tenants +2022/02/28 11:50:12 [DEBUG] Begin Injection +2022/02/28 11:50:12 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:50:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:50:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:50:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000484800 5563 [] false false map[] 0xc0000b6700 0xc0000d6000} +2022/02/28 11:50:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:50:13 [DEBUG] Exit from do method +2022/02/28 11:50:13 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:50:13 [DEBUG] provider has no plugin.Client +2022/02/28 11:50:13 [DEBUG] New state was assigned lineage "9a76075c-3489-7a9a-2642-d6d18f3eb9be" +2022/02/28 11:50:13 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:50:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:50:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:50:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:50:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:50:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:50:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:50:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:50:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:50:13 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:54:03 [DEBUG] Test: Executing step 0 +2022/02/28 11:54:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:54:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:54:03 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:54:03 [DEBUG] Test: Executing step 1 +2022/02/28 11:54:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:54:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:03 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:54:03 [DEBUG] Test: Executing step 2 +2022/02/28 11:54:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:54:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:03 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:54:03 [DEBUG] Test: Executing step 3 +2022/02/28 11:54:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:54:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:54:03 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:54:03 [DEBUG] Test: Executing step 4 +2022/02/28 11:54:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:54:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:03 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:54:03 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:03 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:54:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:03 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:54:03 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:03 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:54:03 [DEBUG] : Beginning Read +2022/02/28 11:54:03 HTTP request GET mso/api/v1/tenants +2022/02/28 11:54:03 [DEBUG] Begin Injection +2022/02/28 11:54:03 HTTP request POST /login +2022/02/28 11:54:03 HTTP request after injection POST /login +2022/02/28 11:54:03 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:54:04 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:54:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:04 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNjQ0LCJpYXQiOjE2NDYwMjk0NDQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZUFSbTBLSVRTYmprTElPazg2OFRHWW5EIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tmpClaBGRvYHIE8Z-pp9O0TeC35V1SseN8kkU3LMGS7SAKpCEADFj7jxpI3kxS4qSj-5ukgY7Kp4xsSNzGoaKokz4BDfC5Cam11ETlWPH7D748V1_gMysm9Ruco_7GaOStrUIutAYKR91FDNcoFUS9juWp28-Pwf9BWjAmWGMdbcdXHmlnW5ZL4ovCsxVSjjYbpmAdBIT_vJy4A93hSH-2Hw4ceh1e9iT6awQtvkGowZYFZFCx3hOHEKB8-nal5xxsOSDbqXRTWzQIp2kyonAq9j-FpTalKa74kXFl7y7SalKRNMBWhqYIBZQBM7LTk3Ubloy57BgiqFPm_3U_SolQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc001080180 -1 [chunked] false false map[] 0xc000128200 0xc000706000} +2022/02/28 11:54:04 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNjQ0LCJpYXQiOjE2NDYwMjk0NDQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZUFSbTBLSVRTYmprTElPazg2OFRHWW5EIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tmpClaBGRvYHIE8Z-pp9O0TeC35V1SseN8kkU3LMGS7SAKpCEADFj7jxpI3kxS4qSj-5ukgY7Kp4xsSNzGoaKokz4BDfC5Cam11ETlWPH7D748V1_gMysm9Ruco_7GaOStrUIutAYKR91FDNcoFUS9juWp28-Pwf9BWjAmWGMdbcdXHmlnW5ZL4ovCsxVSjjYbpmAdBIT_vJy4A93hSH-2Hw4ceh1e9iT6awQtvkGowZYFZFCx3hOHEKB8-nal5xxsOSDbqXRTWzQIp2kyonAq9j-FpTalKa74kXFl7y7SalKRNMBWhqYIBZQBM7LTk3Ubloy57BgiqFPm_3U_SolQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNjQ0LCJpYXQiOjE2NDYwMjk0NDQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZUFSbTBLSVRTYmprTElPazg2OFRHWW5EIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tmpClaBGRvYHIE8Z-pp9O0TeC35V1SseN8kkU3LMGS7SAKpCEADFj7jxpI3kxS4qSj-5ukgY7Kp4xsSNzGoaKokz4BDfC5Cam11ETlWPH7D748V1_gMysm9Ruco_7GaOStrUIutAYKR91FDNcoFUS9juWp28-Pwf9BWjAmWGMdbcdXHmlnW5ZL4ovCsxVSjjYbpmAdBIT_vJy4A93hSH-2Hw4ceh1e9iT6awQtvkGowZYFZFCx3hOHEKB8-nal5xxsOSDbqXRTWzQIp2kyonAq9j-FpTalKa74kXFl7y7SalKRNMBWhqYIBZQBM7LTk3Ubloy57BgiqFPm_3U_SolQ"} +2022/02/28 11:54:04 [DEBUG] Exit from do method +2022/02/28 11:54:04 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:54:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:54:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:54:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001080380 5563 [] false false map[] 0xc000128100 0xc000706000} +2022/02/28 11:54:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:54:05 [DEBUG] Exit from do method +2022/02/28 11:54:05 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:54:05 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:05 [DEBUG] New state was assigned lineage "145ab5df-6e99-d3a7-bfec-a35463d3997c" +2022/02/28 11:54:05 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:54:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:05 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:05 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:54:05 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:54:05 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:54:05 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:54:05 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:54:05 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:54:05 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:05 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_83brs" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_83brs" + schema_id: "" => "" + template_name: "" => "acctest_0sfyl" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_83brs" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_0sfyl" + template_name: "" => "acctest_0sfyl" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_83brs" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_83brs" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_0sfyl" + vrf_name: "" => "acctest_83brs" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_83brs" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_83brs" + schema_id: "" => "" + template_name: "" => "acctest_0sfyl" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_83brs" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_83brs" + schema_id: "" => "" + template: "" => "acctest_0sfyl" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:54:05 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:54:05 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:54:05 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:54:05 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:54:05 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:54:05 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:54:05 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:54:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:54:05 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:54:05 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:54:05 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:54:05 [DEBUG] Schema: Beginning Creation +2022/02/28 11:54:05 [DEBUG] : Beginning Create +2022/02/28 11:54:05 HTTP request POST mso/api/v1/schemas +2022/02/28 11:54:05 [DEBUG] Begin Injection +2022/02/28 11:54:05 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:54:05 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNjQ0LCJpYXQiOjE2NDYwMjk0NDQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZUFSbTBLSVRTYmprTElPazg2OFRHWW5EIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tmpClaBGRvYHIE8Z-pp9O0TeC35V1SseN8kkU3LMGS7SAKpCEADFj7jxpI3kxS4qSj-5ukgY7Kp4xsSNzGoaKokz4BDfC5Cam11ETlWPH7D748V1_gMysm9Ruco_7GaOStrUIutAYKR91FDNcoFUS9juWp28-Pwf9BWjAmWGMdbcdXHmlnW5ZL4ovCsxVSjjYbpmAdBIT_vJy4A93hSH-2Hw4ceh1e9iT6awQtvkGowZYFZFCx3hOHEKB8-nal5xxsOSDbqXRTWzQIp2kyonAq9j-FpTalKa74kXFl7y7SalKRNMBWhqYIBZQBM7LTk3Ubloy57BgiqFPm_3U_SolQ] Content-Type:[application/json]] {{"displayName":"acctest_0sfyl","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_0sfyl","externalEpgs":[],"filters":[],"name":"acctest_0sfyl","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x10b7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:54:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:54:05 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:54:05 [DEBUG] Begin Injection +2022/02/28 11:54:05 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:54:05 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNjQ0LCJpYXQiOjE2NDYwMjk0NDQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZUFSbTBLSVRTYmprTElPazg2OFRHWW5EIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tmpClaBGRvYHIE8Z-pp9O0TeC35V1SseN8kkU3LMGS7SAKpCEADFj7jxpI3kxS4qSj-5ukgY7Kp4xsSNzGoaKokz4BDfC5Cam11ETlWPH7D748V1_gMysm9Ruco_7GaOStrUIutAYKR91FDNcoFUS9juWp28-Pwf9BWjAmWGMdbcdXHmlnW5ZL4ovCsxVSjjYbpmAdBIT_vJy4A93hSH-2Hw4ceh1e9iT6awQtvkGowZYFZFCx3hOHEKB8-nal5xxsOSDbqXRTWzQIp2kyonAq9j-FpTalKa74kXFl7y7SalKRNMBWhqYIBZQBM7LTk3Ubloy57BgiqFPm_3U_SolQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_83brs","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x10b7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:54:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:54:05 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:54:05 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6a851d0000d1634fba1b] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00082e240 400 [] false false map[] 0xc00009aa00 0xc000706000} +2022/02/28 11:54:05 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:54:05 [DEBUG] Exit from do method +2022/02/28 11:54:05 [DEBUG] 621c6a851d0000d1634fba1b: Schema Creation finished successfully +2022/02/28 11:54:05 [DEBUG] 621c6a851d0000d1634fba1b: Beginning Read +2022/02/28 11:54:05 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:05 [DEBUG] Begin Injection +2022/02/28 11:54:05 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:05 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:54:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000789180 160 [] false false map[] 0xc0005d0d00 0xc000706000} +2022/02/28 11:54:05 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6a851b0000650afd0c35","name":"acctest_83brs","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:54:05 [DEBUG] Exit from do method +2022/02/28 11:54:05 [DEBUG] 621c6a851b0000650afd0c35: Creation finished successfully +2022/02/28 11:54:05 [DEBUG] 621c6a851b0000650afd0c35: Beginning Read +2022/02/28 11:54:05 id: 621c6a851b0000650afd0c35 +2022/02/28 11:54:05 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 +2022/02/28 11:54:05 [DEBUG] Begin Injection +2022/02/28 11:54:05 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 +2022/02/28 11:54:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 +2022/02/28 11:54:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00082e580 400 [] false false map[] 0xc00009ad00 0xc000706000} +2022/02/28 11:54:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:54:06 [DEBUG] Exit from do method +2022/02/28 11:54:06 [DEBUG] 621c6a851d0000d1634fba1b: Read finished successfully +2022/02/28 11:54:06 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:54:06 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:54:06 HTTP request PATCH mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:06 [DEBUG] Begin Injection +2022/02/28 11:54:06 HTTP request after injection PATCH mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 +2022/02/28 11:54:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d8ac80 160 [] false false map[] 0xc0005d1000 0xc0001fa370} +2022/02/28 11:54:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 {"id":"621c6a851b0000650afd0c35","name":"acctest_83brs","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:54:06 [DEBUG] Exit from do method +2022/02/28 11:54:06 [DEBUG] 621c6a851b0000650afd0c35: Read finished successfully +2022/02/28 11:54:06 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:24:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005d1600 0xc000706000} +2022/02/28 11:54:06 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:06 [DEBUG] acctest_83brs: Creation finished successfully +2022/02/28 11:54:06 [DEBUG] acctest_83brs: Beginning Read +2022/02/28 11:54:06 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:06 [DEBUG] Begin Injection +2022/02/28 11:54:06 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d8b1c0 768 [] false false map[] 0xc0010e8200 0xc0005fc000} +2022/02/28 11:54:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:54:06 [DEBUG] Exit from do method +2022/02/28 11:54:06 currentvrfname acctest_83brs +2022/02/28 11:54:06 found correct vrfname +2022/02/28 11:54:06 [DEBUG] acctest_83brs: Read finished successfully +2022/02/28 11:54:06 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:54:06 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:54:06 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:54:06 HTTP request PATCH mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:06 [DEBUG] Begin Injection +2022/02/28 11:54:06 HTTP request after injection PATCH mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:07 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:24:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00085a200 0xc0001fa840} +2022/02/28 11:54:07 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:07 [DEBUG] : Beginning Read +2022/02/28 11:54:07 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:07 [DEBUG] Begin Injection +2022/02/28 11:54:07 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ee8c0 1277 [] false false map[] 0xc00009b400 0xc0001fa840} +2022/02/28 11:54:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:54:07 [DEBUG] Exit from do method +2022/02/28 11:54:07 [DEBUG] acctest_83brs: Read finished successfully +2022/02/28 11:54:07 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:54:07 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:54:07 HTTP request PATCH mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:07 [DEBUG] Begin Injection +2022/02/28 11:54:07 HTTP request after injection PATCH mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:07 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:24:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0010e8200 0xc0001fa840} +2022/02/28 11:54:07 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false +2022/02/28 11:54:07 [DEBUG] Creation Complete +2022/02/28 11:54:07 [DEBUG] : Beginning Read +2022/02/28 11:54:07 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:07 [DEBUG] Begin Injection +2022/02/28 11:54:07 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000626040 1362 [] false false map[] 0xc00009a100 0xc0001fa840} +2022/02/28 11:54:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:08 [DEBUG] Exit from do method +2022/02/28 11:54:08 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Read finished successfully +2022/02/28 11:54:08 [DEBUG] : Beginning Read +2022/02/28 11:54:08 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:08 [DEBUG] Begin Injection +2022/02/28 11:54:08 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049e840 1362 [] false false map[] 0xc0010e8a00 0xc0001fa840} +2022/02/28 11:54:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:08 [DEBUG] Exit from do method +2022/02/28 11:54:08 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Read finished successfully +2022/02/28 11:54:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:08 [DEBUG] New state was assigned lineage "4d97eacf-ffe7-7b8e-04b4-bbba926a7fd2" +2022/02/28 11:54:08 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:08 [DEBUG] Begin Injection +2022/02/28 11:54:08 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049f040 1362 [] false false map[] 0xc00085a000 0xc0001fa840} +2022/02/28 11:54:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:08 [DEBUG] Exit from do method +2022/02/28 11:54:08 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:54:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:08 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:54:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:08 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:54:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:54:08 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:08 [DEBUG] : Beginning Read +2022/02/28 11:54:08 HTTP request GET mso/api/v1/tenants +2022/02/28 11:54:08 [DEBUG] Begin Injection +2022/02/28 11:54:08 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:54:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:54:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:54:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049e1c0 5563 [] false false map[] 0xc00009a300 0xc0001fa840} +2022/02/28 11:54:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:54:09 [DEBUG] Exit from do method +2022/02/28 11:54:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:54:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:54:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:54:09 [DEBUG] 621c6a851d0000d1634fba1b: Beginning Read +2022/02/28 11:54:09 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:09 [DEBUG] Begin Injection +2022/02/28 11:54:09 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:09 [DEBUG] 621c6a851b0000650afd0c35: Beginning Read +2022/02/28 11:54:09 id: 621c6a851b0000650afd0c35 +2022/02/28 11:54:09 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 +2022/02/28 11:54:09 [DEBUG] Begin Injection +2022/02/28 11:54:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 +2022/02/28 11:54:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 +2022/02/28 11:54:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 +2022/02/28 11:54:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00082e480 160 [] false false map[] 0xc0005d1300 0xc0001fa840} +2022/02/28 11:54:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 {"id":"621c6a851b0000650afd0c35","name":"acctest_83brs","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:54:09 [DEBUG] Exit from do method +2022/02/28 11:54:09 [DEBUG] 621c6a851b0000650afd0c35: Read finished successfully +2022/02/28 11:54:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00082e980 1362 [] false false map[] 0xc00009a900 0xc0001fa370} +2022/02/28 11:54:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:09 [DEBUG] Exit from do method +2022/02/28 11:54:09 [DEBUG] 621c6a851d0000d1634fba1b: Read finished successfully +2022/02/28 11:54:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:54:09 [DEBUG] acctest_83brs: Beginning Read +2022/02/28 11:54:09 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:09 [DEBUG] Begin Injection +2022/02/28 11:54:09 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001080140 1362 [] false false map[] 0xc0005d1a00 0xc0001fa370} +2022/02/28 11:54:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:09 [DEBUG] Exit from do method +2022/02/28 11:54:09 currentvrfname acctest_83brs +2022/02/28 11:54:09 found correct vrfname +2022/02/28 11:54:09 [DEBUG] acctest_83brs: Read finished successfully +2022/02/28 11:54:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:54:09 [DEBUG] acctest_83brs: Beginning Read +2022/02/28 11:54:09 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:09 [DEBUG] Begin Injection +2022/02/28 11:54:09 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001081540 1362 [] false false map[] 0xc000294500 0xc0001fa370} +2022/02/28 11:54:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:10 [DEBUG] Exit from do method +2022/02/28 11:54:10 [DEBUG] acctest_83brs: Read finished successfully +2022/02/28 11:54:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:54:10 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Beginning Read +2022/02/28 11:54:10 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:10 [DEBUG] Begin Injection +2022/02/28 11:54:10 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006272c0 1362 [] false false map[] 0xc00063c600 0xc0001fa370} +2022/02/28 11:54:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:10 [DEBUG] Exit from do method +2022/02/28 11:54:10 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Read finished successfully +2022/02/28 11:54:10 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:54:10 [DEBUG] : Beginning Read +2022/02/28 11:54:10 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:10 [DEBUG] Begin Injection +2022/02/28 11:54:10 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001081680 1362 [] false false map[] 0xc00009ae00 0xc0001fa370} +2022/02/28 11:54:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:11 [DEBUG] Exit from do method +2022/02/28 11:54:11 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Read finished successfully +2022/02/28 11:54:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:11 [DEBUG] New state was assigned lineage "a88b68e3-753a-e0ef-125e-1a2f1e1fa8fb" +2022/02/28 11:54:11 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:54:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:11 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:54:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:11 [DEBUG] Test: Executing step 5 +2022/02/28 11:54:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:11 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:54:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:54:11 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:54:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:11 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:54:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:54:11 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:11 [DEBUG] : Beginning Read +2022/02/28 11:54:11 HTTP request GET mso/api/v1/tenants +2022/02/28 11:54:11 [DEBUG] Begin Injection +2022/02/28 11:54:11 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:54:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:54:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:54:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00029e240 5563 [] false false map[] 0xc000294600 0xc0001fa370} +2022/02/28 11:54:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:54:11 [DEBUG] Exit from do method +2022/02/28 11:54:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:54:11 [DEBUG] 621c6a851d0000d1634fba1b: Beginning Read +2022/02/28 11:54:11 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:11 [DEBUG] Begin Injection +2022/02/28 11:54:11 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:11 [DEBUG] 621c6a851b0000650afd0c35: Beginning Read +2022/02/28 11:54:11 id: 621c6a851b0000650afd0c35 +2022/02/28 11:54:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 +2022/02/28 11:54:11 [DEBUG] Begin Injection +2022/02/28 11:54:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 +2022/02/28 11:54:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 +2022/02/28 11:54:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 +2022/02/28 11:54:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00029fc40 160 [] false false map[] 0xc000858e00 0xc0001fa840} +2022/02/28 11:54:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 {"id":"621c6a851b0000650afd0c35","name":"acctest_83brs","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:54:11 [DEBUG] Exit from do method +2022/02/28 11:54:11 [DEBUG] 621c6a851b0000650afd0c35: Read finished successfully +2022/02/28 11:54:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006c0100 1362 [] false false map[] 0xc000294a00 0xc0001fa370} +2022/02/28 11:54:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:11 [DEBUG] Exit from do method +2022/02/28 11:54:11 [DEBUG] 621c6a851d0000d1634fba1b: Read finished successfully +2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:54:11 [DEBUG] acctest_83brs: Beginning Read +2022/02/28 11:54:11 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:11 [DEBUG] Begin Injection +2022/02/28 11:54:11 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00064f080 1362 [] false false map[] 0xc000e38400 0xc0001fa370} +2022/02/28 11:54:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:12 [DEBUG] Exit from do method +2022/02/28 11:54:12 currentvrfname acctest_83brs +2022/02/28 11:54:12 found correct vrfname +2022/02/28 11:54:12 [DEBUG] acctest_83brs: Read finished successfully +2022/02/28 11:54:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:54:12 [DEBUG] acctest_83brs: Beginning Read +2022/02/28 11:54:12 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:12 [DEBUG] Begin Injection +2022/02/28 11:54:12 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001080700 1362 [] false false map[] 0xc0005d0500 0xc0001fa370} +2022/02/28 11:54:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:12 [DEBUG] Exit from do method +2022/02/28 11:54:12 [DEBUG] acctest_83brs: Read finished successfully +2022/02/28 11:54:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:54:12 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Beginning Read +2022/02/28 11:54:12 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:12 [DEBUG] Begin Injection +2022/02/28 11:54:12 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006c0040 1362 [] false false map[] 0xc00009a100 0xc0001fa370} +2022/02/28 11:54:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:12 [DEBUG] Exit from do method +2022/02/28 11:54:12 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Read finished successfully +2022/02/28 11:54:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:54:12 [DEBUG] : Beginning Read +2022/02/28 11:54:12 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:12 [DEBUG] Begin Injection +2022/02/28 11:54:12 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b +2022/02/28 11:54:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d8a5c0 1362 [] false false map[] 0xc00080a300 0xc0001fa370} +2022/02/28 11:54:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:54:13 [DEBUG] Exit from do method +2022/02/28 11:54:13 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 11:54:13 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 11:54:13 [DEBUG] New state was assigned lineage "e22840fd-cfdb-f7d8-10f4-2e3a37037dca" +2022/02/28 11:54:13 [DEBUG] Test: Executing step 6 +2022/02/28 11:54:13 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:13 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:54:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:13 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:54:13 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "kqkiz" is not expected here. +2022/02/28 11:54:13 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "kqkiz" is not expected here. +2022/02/28 11:54:13 [DEBUG] Test: Executing step 7 +2022/02/28 11:54:13 [DEBUG] provider has no plugin.Client +2022/02/28 11:54:13 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:54:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:54:13 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:54:13 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: "dhcp_option_name": all of `dhcp_option_name,dhcp_option_version` must be specified +2022/02/28 11:54:13 [ERROR] : eval: *terraform.EvalSequence, err: "dhcp_option_name": all of `dhcp_option_name,dhcp_option_version` must be specified +2022/02/28 11:54:13 [WARN] Skipping destroy test since there is no state. +2022/02/28 11:55:06 [DEBUG] Test: Executing step 0 +2022/02/28 11:55:06 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:06 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:55:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:06 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 11:55:06 [DEBUG] Test: Executing step 1 +2022/02/28 11:55:06 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:06 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:55:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:06 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 11:55:06 [DEBUG] Test: Executing step 2 +2022/02/28 11:55:06 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:06 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:55:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:06 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 11:55:06 [DEBUG] Test: Executing step 3 +2022/02/28 11:55:06 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:06 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:55:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:55:06 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 11:55:06 [DEBUG] Test: Executing step 4 +2022/02/28 11:55:06 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:06 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:55:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:06 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:55:06 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:06 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:55:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:06 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:55:06 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:06 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:06 [DEBUG] : Beginning Read +2022/02/28 11:55:06 HTTP request GET mso/api/v1/tenants +2022/02/28 11:55:06 [DEBUG] Begin Injection +2022/02/28 11:55:06 HTTP request POST /login +2022/02/28 11:55:06 HTTP request after injection POST /login +2022/02/28 11:55:06 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 11:55:08 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 11:55:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:08 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000b2c480 -1 [chunked] false false map[] 0xc000d20200 0xc0007d4000} +2022/02/28 11:55:08 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg"} +2022/02/28 11:55:08 [DEBUG] Exit from do method +2022/02/28 11:55:08 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:55:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:55:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:55:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000998240 5563 [] false false map[] 0xc000d20100 0xc0007d4000} +2022/02/28 11:55:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:55:08 [DEBUG] Exit from do method +2022/02/28 11:55:08 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:55:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:08 [DEBUG] New state was assigned lineage "84e52b84-fda2-2761-2292-a0bedf5cdfd6" +2022/02/28 11:55:08 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:55:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:08 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:08 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:55:08 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:55:08 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:55:08 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:55:08 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:08 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:08 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:08 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_p9wer" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_p9wer" + schema_id: "" => "" + template_name: "" => "acctest_yqb2q" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_p9wer" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_yqb2q" + template_name: "" => "acctest_yqb2q" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_p9wer" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_p9wer" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_yqb2q" + vrf_name: "" => "acctest_p9wer" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_p9wer" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_p9wer" + schema_id: "" => "" + template_name: "" => "acctest_yqb2q" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_p9wer" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_p9wer" + schema_id: "" => "" + template: "" => "acctest_yqb2q" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:55:08 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:55:08 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:55:08 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:08 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:08 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:55:08 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:55:08 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:55:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state)] +2022/02/28 11:55:08 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:55:08 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:55:08 [DEBUG] Schema: Beginning Creation +2022/02/28 11:55:08 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:55:08 HTTP request POST mso/api/v1/schemas +2022/02/28 11:55:08 [DEBUG] Begin Injection +2022/02/28 11:55:08 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:55:08 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg] Content-Type:[application/json]] {{"displayName":"acctest_yqb2q","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_yqb2q","externalEpgs":[],"filters":[],"name":"acctest_yqb2q","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x957ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:55:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:55:08 [DEBUG] : Beginning Create +2022/02/28 11:55:08 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:55:08 [DEBUG] Begin Injection +2022/02/28 11:55:08 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:55:08 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg] Content-Type:[application/json]] {{"desc":"","name":"acctest_p9wer","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x957ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:55:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:55:09 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:55:09 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6ac41d0000d8634fba20] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a89280 400 [] false false map[] 0xc000d03100 0xc0007d4000} +2022/02/28 11:55:09 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:55:09 [DEBUG] Exit from do method +2022/02/28 11:55:09 [DEBUG] 621c6ac41d0000d8634fba20: Schema Creation finished successfully +2022/02/28 11:55:09 [DEBUG] 621c6ac41d0000d8634fba20: Beginning Read +2022/02/28 11:55:09 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:09 [DEBUG] Begin Injection +2022/02/28 11:55:09 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:09 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:55:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a89400 160 [] false false map[] 0xc0006bc500 0xc0007d4000} +2022/02/28 11:55:09 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6ac51b0000530afd0c36","name":"acctest_p9wer","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:55:09 [DEBUG] Exit from do method +2022/02/28 11:55:09 [DEBUG] 621c6ac51b0000530afd0c36: Creation finished successfully +2022/02/28 11:55:09 [DEBUG] 621c6ac51b0000530afd0c36: Beginning Read +2022/02/28 11:55:09 id: 621c6ac51b0000530afd0c36 +2022/02/28 11:55:09 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 +2022/02/28 11:55:09 [DEBUG] Begin Injection +2022/02/28 11:55:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 +2022/02/28 11:55:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 +2022/02/28 11:55:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007903c0 400 [] false false map[] 0xc0006bca00 0xc0006a2000} +2022/02/28 11:55:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 11:55:09 [DEBUG] Exit from do method +2022/02/28 11:55:09 [DEBUG] 621c6ac41d0000d8634fba20: Read finished successfully +2022/02/28 11:55:09 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 11:55:09 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 11:55:09 HTTP request PATCH mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:09 [DEBUG] Begin Injection +2022/02/28 11:55:09 HTTP request after injection PATCH mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 +2022/02/28 11:55:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000379940 160 [] false false map[] 0xc0006bcb00 0xc0007d4000} +2022/02/28 11:55:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 {"id":"621c6ac51b0000530afd0c36","name":"acctest_p9wer","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:55:09 [DEBUG] Exit from do method +2022/02/28 11:55:09 [DEBUG] 621c6ac51b0000530afd0c36: Read finished successfully +2022/02/28 11:55:10 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:25:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0008a7300 0xc0006a2000} +2022/02/28 11:55:10 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:10 [DEBUG] acctest_p9wer: Creation finished successfully +2022/02/28 11:55:10 [DEBUG] acctest_p9wer: Beginning Read +2022/02/28 11:55:10 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:10 [DEBUG] Begin Injection +2022/02/28 11:55:10 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000998040 768 [] false false map[] 0xc000512100 0xc0007d4630} +2022/02/28 11:55:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 11:55:10 [DEBUG] Exit from do method +2022/02/28 11:55:10 currentvrfname acctest_p9wer +2022/02/28 11:55:10 found correct vrfname +2022/02/28 11:55:10 [DEBUG] acctest_p9wer: Read finished successfully +2022/02/28 11:55:10 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 11:55:10 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 11:55:10 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:55:10 HTTP request PATCH mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:10 [DEBUG] Begin Injection +2022/02/28 11:55:10 HTTP request after injection PATCH mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:10 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:25:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0006bc300 0xc0007d4630} +2022/02/28 11:55:10 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:10 [DEBUG] : Beginning Read +2022/02/28 11:55:10 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:10 [DEBUG] Begin Injection +2022/02/28 11:55:10 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7e00 1277 [] false false map[] 0xc0008a6c00 0xc0007d4630} +2022/02/28 11:55:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 11:55:11 [DEBUG] Exit from do method +2022/02/28 11:55:11 [DEBUG] acctest_p9wer: Read finished successfully +2022/02/28 11:55:11 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 11:55:11 [DEBUG] Template BD: Beginning Creation +2022/02/28 11:55:11 HTTP request PATCH mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:11 [DEBUG] Begin Injection +2022/02/28 11:55:11 HTTP request after injection PATCH mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:11 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:11 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:25:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000610500 0xc0007d4630} +2022/02/28 11:55:11 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false +2022/02/28 11:55:11 [DEBUG] Creation Complete +2022/02/28 11:55:11 [DEBUG] : Beginning Read +2022/02/28 11:55:11 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:11 [DEBUG] Begin Injection +2022/02/28 11:55:11 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000379840 1362 [] false false map[] 0xc0006bc900 0xc0007d4630} +2022/02/28 11:55:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:11 [DEBUG] Exit from do method +2022/02/28 11:55:11 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Read finished successfully +2022/02/28 11:55:11 [DEBUG] : Beginning Read +2022/02/28 11:55:11 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:11 [DEBUG] Begin Injection +2022/02/28 11:55:11 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000303440 1362 [] false false map[] 0xc000512600 0xc0007d4630} +2022/02/28 11:55:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:11 [DEBUG] Exit from do method +2022/02/28 11:55:11 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Read finished successfully +2022/02/28 11:55:11 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:11 [DEBUG] New state was assigned lineage "44aa9980-527a-c2d5-ead9-c47dc24e95f9" +2022/02/28 11:55:11 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:11 [DEBUG] Begin Injection +2022/02/28 11:55:11 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000378980 1362 [] false false map[] 0xc000610700 0xc0007d4630} +2022/02/28 11:55:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:12 [DEBUG] Exit from do method +2022/02/28 11:55:12 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:55:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:12 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:12 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:12 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:55:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:12 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:12 [DEBUG] : Beginning Read +2022/02/28 11:55:12 HTTP request GET mso/api/v1/tenants +2022/02/28 11:55:12 [DEBUG] Begin Injection +2022/02/28 11:55:12 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:55:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:55:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:55:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004dd00 5563 [] false false map[] 0xc000bdc400 0xc0007d4630} +2022/02/28 11:55:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:55:12 [DEBUG] Exit from do method +2022/02/28 11:55:12 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:55:12 [DEBUG] 621c6ac41d0000d8634fba20: Beginning Read +2022/02/28 11:55:12 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:12 [DEBUG] Begin Injection +2022/02/28 11:55:12 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:12 [DEBUG] 621c6ac51b0000530afd0c36: Beginning Read +2022/02/28 11:55:12 id: 621c6ac51b0000530afd0c36 +2022/02/28 11:55:12 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 +2022/02/28 11:55:12 [DEBUG] Begin Injection +2022/02/28 11:55:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 +2022/02/28 11:55:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 +2022/02/28 11:55:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b2d880 1362 [] false false map[] 0xc000f28e00 0xc0007d4000} +2022/02/28 11:55:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:12 [DEBUG] Exit from do method +2022/02/28 11:55:12 [DEBUG] 621c6ac41d0000d8634fba20: Read finished successfully +2022/02/28 11:55:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 +2022/02/28 11:55:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb4900 160 [] false false map[] 0xc0006bc400 0xc0007d4630} +2022/02/28 11:55:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 {"id":"621c6ac51b0000530afd0c36","name":"acctest_p9wer","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:55:12 [DEBUG] Exit from do method +2022/02/28 11:55:12 [DEBUG] 621c6ac51b0000530afd0c36: Read finished successfully +2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:55:12 [DEBUG] acctest_p9wer: Beginning Read +2022/02/28 11:55:12 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:12 [DEBUG] Begin Injection +2022/02/28 11:55:12 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb5540 1362 [] false false map[] 0xc000512700 0xc0007d4630} +2022/02/28 11:55:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:13 [DEBUG] Exit from do method +2022/02/28 11:55:13 currentvrfname acctest_p9wer +2022/02/28 11:55:13 found correct vrfname +2022/02/28 11:55:13 [DEBUG] acctest_p9wer: Read finished successfully +2022/02/28 11:55:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:55:13 [DEBUG] acctest_p9wer: Beginning Read +2022/02/28 11:55:13 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:13 [DEBUG] Begin Injection +2022/02/28 11:55:13 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008809c0 1362 [] false false map[] 0xc000512c00 0xc0007d4630} +2022/02/28 11:55:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:13 [DEBUG] Exit from do method +2022/02/28 11:55:13 [DEBUG] acctest_p9wer: Read finished successfully +2022/02/28 11:55:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:13 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Beginning Read +2022/02/28 11:55:13 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:13 [DEBUG] Begin Injection +2022/02/28 11:55:13 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000881940 1362 [] false false map[] 0xc0008a6b00 0xc0007d4630} +2022/02/28 11:55:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:13 [DEBUG] Exit from do method +2022/02/28 11:55:13 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Read finished successfully +2022/02/28 11:55:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:13 [DEBUG] : Beginning Read +2022/02/28 11:55:13 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:13 [DEBUG] Begin Injection +2022/02/28 11:55:13 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a88940 1362 [] false false map[] 0xc000513300 0xc0007d4630} +2022/02/28 11:55:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:14 [DEBUG] Exit from do method +2022/02/28 11:55:14 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Read finished successfully +2022/02/28 11:55:14 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:14 [DEBUG] New state was assigned lineage "c7b7f17a-9688-1f20-233f-bd8261ba5d7b" +2022/02/28 11:55:14 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:55:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:55:14 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:14 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:14 [DEBUG] Test: Executing step 5 +2022/02/28 11:55:14 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:14 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:55:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:55:14 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:55:14 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:14 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:55:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:55:14 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:14 [DEBUG] : Beginning Read +2022/02/28 11:55:14 HTTP request GET mso/api/v1/tenants +2022/02/28 11:55:14 [DEBUG] Begin Injection +2022/02/28 11:55:14 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:55:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:55:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:55:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cc2000 5563 [] false false map[] 0xc0006bc600 0xc0007d4630} +2022/02/28 11:55:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:55:14 [DEBUG] Exit from do method +2022/02/28 11:55:14 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:55:14 [DEBUG] 621c6ac41d0000d8634fba20: Beginning Read +2022/02/28 11:55:14 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:14 [DEBUG] Begin Injection +2022/02/28 11:55:14 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:14 [DEBUG] 621c6ac51b0000530afd0c36: Beginning Read +2022/02/28 11:55:14 id: 621c6ac51b0000530afd0c36 +2022/02/28 11:55:14 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 +2022/02/28 11:55:14 [DEBUG] Begin Injection +2022/02/28 11:55:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 +2022/02/28 11:55:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 +2022/02/28 11:55:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000302800 1362 [] false false map[] 0xc000318c00 0xc0007d4630} +2022/02/28 11:55:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:14 [DEBUG] Exit from do method +2022/02/28 11:55:14 [DEBUG] 621c6ac41d0000d8634fba20: Read finished successfully +2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:55:14 [DEBUG] acctest_p9wer: Beginning Read +2022/02/28 11:55:14 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:14 [DEBUG] Begin Injection +2022/02/28 11:55:14 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 +2022/02/28 11:55:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009991c0 160 [] false false map[] 0xc0008a6200 0xc0007d4000} +2022/02/28 11:55:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 {"id":"621c6ac51b0000530afd0c36","name":"acctest_p9wer","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:55:14 [DEBUG] Exit from do method +2022/02/28 11:55:14 [DEBUG] 621c6ac51b0000530afd0c36: Read finished successfully +2022/02/28 11:55:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000302d40 1362 [] false false map[] 0xc000512e00 0xc0007d4630} +2022/02/28 11:55:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:15 [DEBUG] Exit from do method +2022/02/28 11:55:15 currentvrfname acctest_p9wer +2022/02/28 11:55:15 found correct vrfname +2022/02/28 11:55:15 [DEBUG] acctest_p9wer: Read finished successfully +2022/02/28 11:55:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:55:15 [DEBUG] acctest_p9wer: Beginning Read +2022/02/28 11:55:15 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:15 [DEBUG] Begin Injection +2022/02/28 11:55:15 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000880040 1362 [] false false map[] 0xc000319100 0xc0007d4630} +2022/02/28 11:55:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:15 [DEBUG] Exit from do method +2022/02/28 11:55:15 [DEBUG] acctest_p9wer: Read finished successfully +2022/02/28 11:55:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:15 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Beginning Read +2022/02/28 11:55:15 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:15 [DEBUG] Begin Injection +2022/02/28 11:55:15 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000881240 1362 [] false false map[] 0xc000318300 0xc0007d4630} +2022/02/28 11:55:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:15 [DEBUG] Exit from do method +2022/02/28 11:55:15 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Read finished successfully +2022/02/28 11:55:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:15 [DEBUG] : Beginning Read +2022/02/28 11:55:15 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:15 [DEBUG] Begin Injection +2022/02/28 11:55:15 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 +2022/02/28 11:55:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cc28c0 1362 [] false false map[] 0xc000512600 0xc0007d4630} +2022/02/28 11:55:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 11:55:16 [DEBUG] Exit from do method +2022/02/28 11:55:16 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 11:55:16 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 11:55:16 [DEBUG] New state was assigned lineage "9efced3c-4466-24ee-0ff6-408c6e36aa91" +2022/02/28 11:55:16 [DEBUG] Test: Executing step 6 +2022/02/28 11:55:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:55:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 11:55:16 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:55:16 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "ozvql" is not expected here. +2022/02/28 11:55:16 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "ozvql" is not expected here. +2022/02/28 11:55:16 [DEBUG] Test: Executing step 7 +2022/02/28 11:55:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:55:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:16 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:55:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:16 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:55:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:16 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:55:16 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:16 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:16 [DEBUG] : Beginning Read +2022/02/28 11:55:16 HTTP request GET mso/api/v1/tenants +2022/02/28 11:55:16 [DEBUG] Begin Injection +2022/02/28 11:55:16 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:55:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:55:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:55:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000790040 5563 [] false false map[] 0xc0008a6f00 0xc0007d4630} +2022/02/28 11:55:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:55:16 [DEBUG] Exit from do method +2022/02/28 11:55:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:55:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:16 [DEBUG] New state was assigned lineage "e57b2bf3-2a58-606b-c338-0209c7f930ce" +2022/02/28 11:55:16 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 11:55:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:16 [DEBUG] Starting graph walk: walkPlan +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:16 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:16 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_p9wer" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_p9wer" + schema_id: "" => "" + template_name: "" => "acctest_yqb2q" + version: "" => "" +CREATE: mso_dhcp_option_policy.test + description: "" => "" + id: "" => "" + name: "" => "acctest_wjzo4" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_p9wer" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_yqb2q" + template_name: "" => "acctest_yqb2q" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_p9wer" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_p9wer" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_yqb2q" + vrf_name: "" => "acctest_p9wer" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_p9wer" + dhcp_option_name: "" => "acctest_wjzo4" + dhcp_option_version: "" => "1" + id: "" => "" + name: "" => "acctest_p9wer" + schema_id: "" => "" + template_name: "" => "acctest_yqb2q" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_p9wer" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_p9wer" + schema_id: "" => "" + template: "" => "acctest_yqb2q" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 11:55:16 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:55:16 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 11:55:16 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:16 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:55:16 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:55:16 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:55:16 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:16 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:55:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:55:16 [DEBUG] Starting graph walk: walkApply +2022/02/28 11:55:16 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 11:55:16 [DEBUG] Schema: Beginning Creation +2022/02/28 11:55:16 HTTP request POST mso/api/v1/schemas +2022/02/28 11:55:16 [DEBUG] Begin Injection +2022/02/28 11:55:16 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 11:55:16 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg] Content-Type:[application/json]] {{"displayName":"acctest_yqb2q","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_yqb2q","externalEpgs":[],"filters":[],"name":"acctest_yqb2q","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x957ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:55:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:55:16 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change +2022/02/28 11:55:16 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 11:55:16 [DEBUG] : Beginning Create +2022/02/28 11:55:16 [DEBUG] : Beginning Create +2022/02/28 11:55:16 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 11:55:16 [DEBUG] Begin Injection +2022/02/28 11:55:16 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 11:55:16 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_wjzo4","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x957ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:55:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:55:16 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:55:16 [DEBUG] Begin Injection +2022/02/28 11:55:16 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 11:55:16 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg] Content-Type:[application/json]] {{"desc":"","name":"acctest_p9wer","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x957ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 11:55:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:55:16 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 11:55:16 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[122] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:16 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6340 122 [] false false map[] 0xc001092300 0xc0007d4630} +2022/02/28 11:55:16 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"code":140,"message":"Duplicate Resource: displayName","info":{"displayName":["Schema: 'acctest_yqb2q' already exists"]}} +2022/02/28 11:55:16 [DEBUG] Exit from do method +2022/02/28 11:55:16 [DEBUG] mso_schema.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_yqb2q' already exists"]} +2022/02/28 11:55:16 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_yqb2q' already exists"]} +2022/02/28 11:55:16 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_yqb2q' already exists"]} +2022/02/28 11:55:16 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 11:55:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a88540 161 [] false false map[] 0xc001092800 0xc0007d4000} +2022/02/28 11:55:16 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c6acc1b0000590afd0c37","name":"acctest_wjzo4","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:55:16 [DEBUG] Exit from do method +2022/02/28 11:55:16 [DEBUG] 621c6acc1b0000590afd0c37: Creation finished successfully +2022/02/28 11:55:16 [DEBUG] 621c6acc1b0000590afd0c37: Beginning Read +2022/02/28 11:55:16 id: 621c6acc1b0000590afd0c37 +2022/02/28 11:55:16 HTTP request GET mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:16 [DEBUG] Begin Injection +2022/02/28 11:55:16 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:17 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 11:55:17 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[108] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:17 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009984c0 108 [] false false map[] 0xc0008a6200 0xc0007d4630} +2022/02/28 11:55:17 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":140,"message":"Duplicate Resource: name","info":{"name":["Policy: 'acctest_p9wer' already exists"]}} +2022/02/28 11:55:17 [DEBUG] Exit from do method +2022/02/28 11:55:17 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: name"{"name":["Policy: 'acctest_p9wer' already exists"]} +2022/02/28 11:55:17 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_p9wer' already exists"]} +2022/02/28 11:55:17 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_p9wer' already exists"]} +2022/02/28 11:55:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a88780 161 [] false false map[] 0xc00109c000 0xc0007d4000} +2022/02/28 11:55:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 {"id":"621c6acc1b0000590afd0c37","name":"acctest_wjzo4","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:55:17 [DEBUG] Exit from do method +2022/02/28 11:55:17 [DEBUG] 621c6acc1b0000590afd0c37: Read finished successfully +2022/02/28 11:55:17 [DEBUG] New state was assigned lineage "d47dc467-f103-9ed6-2c58-4a9940b85f26" +2022/02/28 11:55:17 [WARN] Test: Executing destroy step +2022/02/28 11:55:17 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 11:55:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:17 [DEBUG] Starting graph walk: walkValidate +2022/02/28 11:55:17 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:17 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:55:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:17 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:17 [DEBUG] : Beginning Read +2022/02/28 11:55:17 HTTP request GET mso/api/v1/tenants +2022/02/28 11:55:17 [DEBUG] Begin Injection +2022/02/28 11:55:17 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:55:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:55:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:55:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e61c0 5563 [] false false map[] 0xc00130c100 0xc0007d4000} +2022/02/28 11:55:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:55:17 [DEBUG] Exit from do method +2022/02/28 11:55:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:55:17 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 11:55:17 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 11:55:17 [DEBUG] 621c6acc1b0000590afd0c37: Beginning Read +2022/02/28 11:55:17 id: 621c6acc1b0000590afd0c37 +2022/02/28 11:55:17 HTTP request GET mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:17 [DEBUG] Begin Injection +2022/02/28 11:55:17 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:17 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 11:55:17 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 11:55:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010ef9c0 161 [] false false map[] 0xc0008a7600 0xc0012f8c60} +2022/02/28 11:55:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 {"id":"621c6acc1b0000590afd0c37","name":"acctest_wjzo4","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 11:55:18 [DEBUG] Exit from do method +2022/02/28 11:55:18 [DEBUG] 621c6acc1b0000590afd0c37: Read finished successfully +2022/02/28 11:55:18 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:18 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:18 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:18 [DEBUG] New state was assigned lineage "9c6a2597-401b-32f4-ebc3-276fc8b84852" +2022/02/28 11:55:18 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:18 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:55:18 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_option_policy.test + description: "" => "" + id: "621c6acc1b0000590afd0c37" => "" + name: "acctest_wjzo4" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.test: + ID = 621c6acc1b0000590afd0c37 + provider = provider.mso + description = + name = acctest_wjzo4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/28 11:55:18 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_option_policy.test (prepare state) +2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 11:55:18 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 11:55:18 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change +2022/02/28 11:55:18 [DEBUG] 621c6acc1b0000590afd0c37: Beginning Read +2022/02/28 11:55:18 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:18 [DEBUG] Begin Injection +2022/02/28 11:55:18 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:18 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:18 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:25:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0006bcd00 0xc0012f8c60} +2022/02/28 11:55:18 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 +2022/02/28 11:55:18 [DEBUG] : Read finished successfully +2022/02/28 11:55:18 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:18 [DEBUG] New state was assigned lineage "6dfa990c-bc22-8759-e8ce-b2b7f0839b03" +2022/02/28 11:55:18 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:55:18 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 11:55:18 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:18 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 11:55:18 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 11:55:18 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:18 [DEBUG] : Beginning Read +2022/02/28 11:55:18 HTTP request GET mso/api/v1/tenants +2022/02/28 11:55:18 [DEBUG] Begin Injection +2022/02/28 11:55:18 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 11:55:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:55:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 11:55:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000791700 5563 [] false false map[] 0xc000d20500 0xc0012f8c60} +2022/02/28 11:55:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 11:55:18 [DEBUG] Exit from do method +2022/02/28 11:55:18 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 11:55:18 [DEBUG] provider has no plugin.Client +2022/02/28 11:55:18 [DEBUG] New state was assigned lineage "f62fad60-d005-ad15-da24-ca432fdebddc" +2022/02/28 11:55:18 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 11:55:18 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:00:41 [DEBUG] Test: Executing step 0 +2022/02/28 12:00:41 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:00:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:00:41 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:00:41 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:00:41 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:00:41 [DEBUG] Test: Executing step 1 +2022/02/28 12:00:41 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:00:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:41 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:00:41 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:00:41 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:00:41 [DEBUG] Test: Executing step 2 +2022/02/28 12:00:42 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:42 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:00:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:42 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:00:42 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:00:42 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:00:42 [DEBUG] Test: Executing step 3 +2022/02/28 12:00:42 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:42 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:00:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:42 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:00:42 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:00:42 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:00:42 [DEBUG] Test: Executing step 4 +2022/02/28 12:00:42 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:42 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:00:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:42 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:00:42 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:42 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:00:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:42 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:00:42 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:42 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:00:42 [DEBUG] : Beginning Read +2022/02/28 12:00:42 HTTP request GET mso/api/v1/tenants +2022/02/28 12:00:42 [DEBUG] Begin Injection +2022/02/28 12:00:42 HTTP request POST /login +2022/02/28 12:00:42 HTTP request after injection POST /login +2022/02/28 12:00:42 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 12:00:43 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 12:00:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:43 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMDQzLCJpYXQiOjE2NDYwMjk4NDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoienl5MTY3UHN6MGYzRGlzOEx3bGhxQVdxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tY4zHaENrsfRzp-Qf75uivO-5rdZRFaOLDKtrMbthg0idSEyjZPRFObIGCihoCQgr0vWBdEbEgyP2IuS7Lmo1zHb_5UjWoFdYwBL2qJv6YpiZOU5O9BDAcfulFVjxoe-puFny60TbrpRdwbKa3JiqANCnSWVTaBZPoPIQxt6mCT7fTg-JPRBqe-WXIIiubKnmqvG-zevWd1URYfrhQl9RnW2-xoV9J1N9lkFAFcFwmYkbGVPdmO1K4Q8yu4mStot_t2wvpD5nOMPvy7nm1aYnfsld547e6ovddTgtzhjPerU6JYxaPz5-EpkIM1_nOzWxgoYcM5hw9on8NtkgPt_zQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00004c440 -1 [chunked] false false map[] 0xc00051f400 0xc000f52000} +2022/02/28 12:00:43 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMDQzLCJpYXQiOjE2NDYwMjk4NDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoienl5MTY3UHN6MGYzRGlzOEx3bGhxQVdxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tY4zHaENrsfRzp-Qf75uivO-5rdZRFaOLDKtrMbthg0idSEyjZPRFObIGCihoCQgr0vWBdEbEgyP2IuS7Lmo1zHb_5UjWoFdYwBL2qJv6YpiZOU5O9BDAcfulFVjxoe-puFny60TbrpRdwbKa3JiqANCnSWVTaBZPoPIQxt6mCT7fTg-JPRBqe-WXIIiubKnmqvG-zevWd1URYfrhQl9RnW2-xoV9J1N9lkFAFcFwmYkbGVPdmO1K4Q8yu4mStot_t2wvpD5nOMPvy7nm1aYnfsld547e6ovddTgtzhjPerU6JYxaPz5-EpkIM1_nOzWxgoYcM5hw9on8NtkgPt_zQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMDQzLCJpYXQiOjE2NDYwMjk4NDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoienl5MTY3UHN6MGYzRGlzOEx3bGhxQVdxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tY4zHaENrsfRzp-Qf75uivO-5rdZRFaOLDKtrMbthg0idSEyjZPRFObIGCihoCQgr0vWBdEbEgyP2IuS7Lmo1zHb_5UjWoFdYwBL2qJv6YpiZOU5O9BDAcfulFVjxoe-puFny60TbrpRdwbKa3JiqANCnSWVTaBZPoPIQxt6mCT7fTg-JPRBqe-WXIIiubKnmqvG-zevWd1URYfrhQl9RnW2-xoV9J1N9lkFAFcFwmYkbGVPdmO1K4Q8yu4mStot_t2wvpD5nOMPvy7nm1aYnfsld547e6ovddTgtzhjPerU6JYxaPz5-EpkIM1_nOzWxgoYcM5hw9on8NtkgPt_zQ"} +2022/02/28 12:00:43 [DEBUG] Exit from do method +2022/02/28 12:00:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:00:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:00:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:00:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087a280 5563 [] false false map[] 0xc00051f300 0xc000f52000} +2022/02/28 12:00:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:00:44 [DEBUG] Exit from do method +2022/02/28 12:00:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:00:44 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:44 [DEBUG] New state was assigned lineage "ad216783-799e-a10c-6638-adf7f7a98166" +2022/02/28 12:00:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:00:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:00:44 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:44 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:00:44 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:00:44 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:00:44 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:00:44 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:00:44 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:00:44 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:44 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_6s9d2" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_6s9d2" + schema_id: "" => "" + template_name: "" => "acctest_llkjk" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_6s9d2" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_llkjk" + template_name: "" => "acctest_llkjk" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_6s9d2" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_6s9d2" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_llkjk" + vrf_name: "" => "acctest_6s9d2" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_6s9d2" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_6s9d2" + schema_id: "" => "" + template_name: "" => "acctest_llkjk" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_6s9d2" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_6s9d2" + schema_id: "" => "" + template: "" => "acctest_llkjk" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:00:44 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:00:44 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:00:44 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:00:44 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:00:44 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:00:44 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:00:44 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:00:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:00:44 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:00:44 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:00:44 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:00:44 [DEBUG] Schema: Beginning Creation +2022/02/28 12:00:44 [DEBUG] : Beginning Create +2022/02/28 12:00:44 HTTP request POST mso/api/v1/schemas +2022/02/28 12:00:44 [DEBUG] Begin Injection +2022/02/28 12:00:44 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:00:44 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:00:44 [DEBUG] Begin Injection +2022/02/28 12:00:44 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:00:44 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMDQzLCJpYXQiOjE2NDYwMjk4NDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoienl5MTY3UHN6MGYzRGlzOEx3bGhxQVdxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tY4zHaENrsfRzp-Qf75uivO-5rdZRFaOLDKtrMbthg0idSEyjZPRFObIGCihoCQgr0vWBdEbEgyP2IuS7Lmo1zHb_5UjWoFdYwBL2qJv6YpiZOU5O9BDAcfulFVjxoe-puFny60TbrpRdwbKa3JiqANCnSWVTaBZPoPIQxt6mCT7fTg-JPRBqe-WXIIiubKnmqvG-zevWd1URYfrhQl9RnW2-xoV9J1N9lkFAFcFwmYkbGVPdmO1K4Q8yu4mStot_t2wvpD5nOMPvy7nm1aYnfsld547e6ovddTgtzhjPerU6JYxaPz5-EpkIM1_nOzWxgoYcM5hw9on8NtkgPt_zQ] Content-Type:[application/json]] {{"displayName":"acctest_llkjk","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_llkjk","externalEpgs":[],"filters":[],"name":"acctest_llkjk","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xbf7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 12:00:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:00:44 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMDQzLCJpYXQiOjE2NDYwMjk4NDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoienl5MTY3UHN6MGYzRGlzOEx3bGhxQVdxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tY4zHaENrsfRzp-Qf75uivO-5rdZRFaOLDKtrMbthg0idSEyjZPRFObIGCihoCQgr0vWBdEbEgyP2IuS7Lmo1zHb_5UjWoFdYwBL2qJv6YpiZOU5O9BDAcfulFVjxoe-puFny60TbrpRdwbKa3JiqANCnSWVTaBZPoPIQxt6mCT7fTg-JPRBqe-WXIIiubKnmqvG-zevWd1URYfrhQl9RnW2-xoV9J1N9lkFAFcFwmYkbGVPdmO1K4Q8yu4mStot_t2wvpD5nOMPvy7nm1aYnfsld547e6ovddTgtzhjPerU6JYxaPz5-EpkIM1_nOzWxgoYcM5hw9on8NtkgPt_zQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_6s9d2","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xbf7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 12:00:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:00:44 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:00:44 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6c141d0000fe634fba25] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8aac0 400 [] false false map[] 0xc001002800 0xc000f52000} +2022/02/28 12:00:44 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:00:44 [DEBUG] Exit from do method +2022/02/28 12:00:44 [DEBUG] 621c6c141d0000fe634fba25: Schema Creation finished successfully +2022/02/28 12:00:44 [DEBUG] 621c6c141d0000fe634fba25: Beginning Read +2022/02/28 12:00:44 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:44 [DEBUG] Begin Injection +2022/02/28 12:00:44 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:45 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:00:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00100da00 160 [] false false map[] 0xc00051e900 0xc000f52000} +2022/02/28 12:00:45 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6c141b0000c60afd0c38","name":"acctest_6s9d2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:00:45 [DEBUG] Exit from do method +2022/02/28 12:00:45 [DEBUG] 621c6c141b0000c60afd0c38: Creation finished successfully +2022/02/28 12:00:45 [DEBUG] 621c6c141b0000c60afd0c38: Beginning Read +2022/02/28 12:00:45 id: 621c6c141b0000c60afd0c38 +2022/02/28 12:00:45 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 +2022/02/28 12:00:45 [DEBUG] Begin Injection +2022/02/28 12:00:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 +2022/02/28 12:00:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 +2022/02/28 12:00:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f6a100 400 [] false false map[] 0xc000bee500 0xc000f52000} +2022/02/28 12:00:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:00:45 [DEBUG] Exit from do method +2022/02/28 12:00:45 [DEBUG] 621c6c141d0000fe634fba25: Read finished successfully +2022/02/28 12:00:45 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:00:45 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:00:45 HTTP request PATCH mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:45 [DEBUG] Begin Injection +2022/02/28 12:00:45 HTTP request after injection PATCH mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 +2022/02/28 12:00:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8a5c0 160 [] false false map[] 0xc000bee700 0xc00058c580} +2022/02/28 12:00:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 {"id":"621c6c141b0000c60afd0c38","name":"acctest_6s9d2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:00:45 [DEBUG] Exit from do method +2022/02/28 12:00:45 [DEBUG] 621c6c141b0000c60afd0c38: Read finished successfully +2022/02/28 12:00:45 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:30:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000710d00 0xc000f52000} +2022/02/28 12:00:45 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:45 [DEBUG] acctest_6s9d2: Creation finished successfully +2022/02/28 12:00:45 [DEBUG] acctest_6s9d2: Beginning Read +2022/02/28 12:00:45 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:45 [DEBUG] Begin Injection +2022/02/28 12:00:45 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087a280 768 [] false false map[] 0xc001002000 0xc00058c0b0} +2022/02/28 12:00:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 12:00:46 [DEBUG] Exit from do method +2022/02/28 12:00:46 currentvrfname acctest_6s9d2 +2022/02/28 12:00:46 found correct vrfname +2022/02/28 12:00:46 [DEBUG] acctest_6s9d2: Read finished successfully +2022/02/28 12:00:46 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:00:46 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:00:46 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:00:46 HTTP request PATCH mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:46 [DEBUG] Begin Injection +2022/02/28 12:00:46 HTTP request after injection PATCH mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:46 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:30:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000beef00 0xc00058c160} +2022/02/28 12:00:46 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:46 [DEBUG] : Beginning Read +2022/02/28 12:00:46 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:46 [DEBUG] Begin Injection +2022/02/28 12:00:46 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c940 1277 [] false false map[] 0xc001002100 0xc00058c160} +2022/02/28 12:00:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:00:46 [DEBUG] Exit from do method +2022/02/28 12:00:46 [DEBUG] acctest_6s9d2: Read finished successfully +2022/02/28 12:00:46 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:00:46 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:00:46 HTTP request PATCH mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:46 [DEBUG] Begin Injection +2022/02/28 12:00:46 HTTP request after injection PATCH mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:47 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:30:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001002b00 0xc00058c160} +2022/02/28 12:00:47 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false +2022/02/28 12:00:47 [DEBUG] Creation Complete +2022/02/28 12:00:47 [DEBUG] : Beginning Read +2022/02/28 12:00:47 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:47 [DEBUG] Begin Injection +2022/02/28 12:00:47 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087a740 1362 [] false false map[] 0xc001002d00 0xc00058c160} +2022/02/28 12:00:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:47 [DEBUG] Exit from do method +2022/02/28 12:00:47 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Read finished successfully +2022/02/28 12:00:47 [DEBUG] : Beginning Read +2022/02/28 12:00:47 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:47 [DEBUG] Begin Injection +2022/02/28 12:00:47 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00066e180 1362 [] false false map[] 0xc00051e600 0xc00058c160} +2022/02/28 12:00:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:47 [DEBUG] Exit from do method +2022/02/28 12:00:47 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Read finished successfully +2022/02/28 12:00:47 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:47 [DEBUG] New state was assigned lineage "e68d5354-4ba9-a1b2-d26f-1b6032920283" +2022/02/28 12:00:47 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:47 [DEBUG] Begin Injection +2022/02/28 12:00:47 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8bac0 1362 [] false false map[] 0xc001002000 0xc00058c160} +2022/02/28 12:00:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:48 [DEBUG] Exit from do method +2022/02/28 12:00:48 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:00:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:48 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:00:48 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:48 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:00:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:48 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:48 [DEBUG] : Beginning Read +2022/02/28 12:00:48 HTTP request GET mso/api/v1/tenants +2022/02/28 12:00:48 [DEBUG] Begin Injection +2022/02/28 12:00:48 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:00:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:00:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:00:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f6b8c0 5563 [] false false map[] 0xc00051e800 0xc00058c160} +2022/02/28 12:00:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:00:48 [DEBUG] Exit from do method +2022/02/28 12:00:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:00:48 [DEBUG] 621c6c141b0000c60afd0c38: Beginning Read +2022/02/28 12:00:48 id: 621c6c141b0000c60afd0c38 +2022/02/28 12:00:48 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 +2022/02/28 12:00:48 [DEBUG] Begin Injection +2022/02/28 12:00:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 +2022/02/28 12:00:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 +2022/02/28 12:00:48 [DEBUG] 621c6c141d0000fe634fba25: Beginning Read +2022/02/28 12:00:48 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:48 [DEBUG] Begin Injection +2022/02/28 12:00:48 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00100c040 1362 [] false false map[] 0xc000710100 0xc00058c580} +2022/02/28 12:00:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:48 [DEBUG] Exit from do method +2022/02/28 12:00:48 [DEBUG] 621c6c141d0000fe634fba25: Read finished successfully +2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:00:48 [DEBUG] acctest_6s9d2: Beginning Read +2022/02/28 12:00:48 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:48 [DEBUG] Begin Injection +2022/02/28 12:00:48 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 +2022/02/28 12:00:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8a140 160 [] false false map[] 0xc00051f300 0xc00058c160} +2022/02/28 12:00:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 {"id":"621c6c141b0000c60afd0c38","name":"acctest_6s9d2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:00:48 [DEBUG] Exit from do method +2022/02/28 12:00:48 [DEBUG] 621c6c141b0000c60afd0c38: Read finished successfully +2022/02/28 12:00:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8a600 1362 [] false false map[] 0xc000bc6b00 0xc00058c580} +2022/02/28 12:00:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:49 [DEBUG] Exit from do method +2022/02/28 12:00:49 currentvrfname acctest_6s9d2 +2022/02/28 12:00:49 found correct vrfname +2022/02/28 12:00:49 [DEBUG] acctest_6s9d2: Read finished successfully +2022/02/28 12:00:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:00:49 [DEBUG] acctest_6s9d2: Beginning Read +2022/02/28 12:00:49 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:49 [DEBUG] Begin Injection +2022/02/28 12:00:49 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8aa80 1362 [] false false map[] 0xc00051f700 0xc00058c580} +2022/02/28 12:00:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:49 [DEBUG] Exit from do method +2022/02/28 12:00:49 [DEBUG] acctest_6s9d2: Read finished successfully +2022/02/28 12:00:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:00:49 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Beginning Read +2022/02/28 12:00:49 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:49 [DEBUG] Begin Injection +2022/02/28 12:00:49 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000602f40 1362 [] false false map[] 0xc0006ae500 0xc00058c580} +2022/02/28 12:00:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:49 [DEBUG] Exit from do method +2022/02/28 12:00:49 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Read finished successfully +2022/02/28 12:00:49 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:00:49 [DEBUG] : Beginning Read +2022/02/28 12:00:49 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:49 [DEBUG] Begin Injection +2022/02/28 12:00:49 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00066eac0 1362 [] false false map[] 0xc0007ac300 0xc00058c580} +2022/02/28 12:00:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:50 [DEBUG] Exit from do method +2022/02/28 12:00:50 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Read finished successfully +2022/02/28 12:00:50 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:50 [DEBUG] New state was assigned lineage "15dd13bc-0c51-7574-0bc2-2b3ae7ca0ab3" +2022/02/28 12:00:50 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:00:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:50 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:00:50 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:50 [DEBUG] Test: Executing step 5 +2022/02/28 12:00:50 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:50 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:00:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:50 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:00:50 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:50 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:00:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:50 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:50 [DEBUG] : Beginning Read +2022/02/28 12:00:50 HTTP request GET mso/api/v1/tenants +2022/02/28 12:00:50 [DEBUG] Begin Injection +2022/02/28 12:00:50 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:00:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:00:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:00:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000518400 5563 [] false false map[] 0xc00051e600 0xc00058c580} +2022/02/28 12:00:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:00:50 [DEBUG] Exit from do method +2022/02/28 12:00:50 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:00:50 [DEBUG] 621c6c141d0000fe634fba25: Beginning Read +2022/02/28 12:00:50 [DEBUG] 621c6c141b0000c60afd0c38: Beginning Read +2022/02/28 12:00:50 id: 621c6c141b0000c60afd0c38 +2022/02/28 12:00:50 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:50 [DEBUG] Begin Injection +2022/02/28 12:00:50 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 +2022/02/28 12:00:50 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:50 [DEBUG] Begin Injection +2022/02/28 12:00:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 +2022/02/28 12:00:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 +2022/02/28 12:00:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 +2022/02/28 12:00:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000518c80 160 [] false false map[] 0xc000f70300 0xc00058c160} +2022/02/28 12:00:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 {"id":"621c6c141b0000c60afd0c38","name":"acctest_6s9d2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:00:50 [DEBUG] Exit from do method +2022/02/28 12:00:50 [DEBUG] 621c6c141b0000c60afd0c38: Read finished successfully +2022/02/28 12:00:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000519080 1362 [] false false map[] 0xc00070e700 0xc00058c580} +2022/02/28 12:00:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:50 [DEBUG] Exit from do method +2022/02/28 12:00:50 [DEBUG] 621c6c141d0000fe634fba25: Read finished successfully +2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:00:50 [DEBUG] acctest_6s9d2: Beginning Read +2022/02/28 12:00:50 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:50 [DEBUG] Begin Injection +2022/02/28 12:00:50 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00066e5c0 1362 [] false false map[] 0xc000f70700 0xc00058c580} +2022/02/28 12:00:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:51 [DEBUG] Exit from do method +2022/02/28 12:00:51 currentvrfname acctest_6s9d2 +2022/02/28 12:00:51 found correct vrfname +2022/02/28 12:00:51 [DEBUG] acctest_6s9d2: Read finished successfully +2022/02/28 12:00:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:00:51 [DEBUG] acctest_6s9d2: Beginning Read +2022/02/28 12:00:51 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:51 [DEBUG] Begin Injection +2022/02/28 12:00:51 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000519f00 1362 [] false false map[] 0xc000cb8300 0xc00058c580} +2022/02/28 12:00:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:51 [DEBUG] Exit from do method +2022/02/28 12:00:51 [DEBUG] acctest_6s9d2: Read finished successfully +2022/02/28 12:00:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:00:51 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Beginning Read +2022/02/28 12:00:51 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:51 [DEBUG] Begin Injection +2022/02/28 12:00:51 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c880 1362 [] false false map[] 0xc000c7e100 0xc00058c580} +2022/02/28 12:00:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:51 [DEBUG] Exit from do method +2022/02/28 12:00:51 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Read finished successfully +2022/02/28 12:00:51 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:00:51 [DEBUG] : Beginning Read +2022/02/28 12:00:51 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:51 [DEBUG] Begin Injection +2022/02/28 12:00:51 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 +2022/02/28 12:00:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8a180 1362 [] false false map[] 0xc00051e300 0xc00058c580} +2022/02/28 12:00:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:00:52 [DEBUG] Exit from do method +2022/02/28 12:00:52 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 12:00:52 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 12:00:52 [DEBUG] New state was assigned lineage "383bb954-275c-f51c-f818-3fade6a97f20" +2022/02/28 12:00:52 [DEBUG] Test: Executing step 6 +2022/02/28 12:00:52 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:00:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:52 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:00:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "ulsvv" is not expected here. +2022/02/28 12:00:52 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "ulsvv" is not expected here. +2022/02/28 12:00:52 [DEBUG] Test: Executing step 7 +2022/02/28 12:00:52 [DEBUG] provider has no plugin.Client +2022/02/28 12:00:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:00:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:00:52 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:00:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported attribute: This object has no argument, nested block, or exported attribute named "bd_name". +2022/02/28 12:00:52 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported attribute: This object has no argument, nested block, or exported attribute named "bd_name". +2022/02/28 12:00:52 [WARN] Skipping destroy test since there is no state. +2022/02/28 12:02:17 [DEBUG] Test: Executing step 0 +2022/02/28 12:02:17 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:02:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:02:17 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:02:17 [DEBUG] Test: Executing step 1 +2022/02/28 12:02:17 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:02:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:17 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:02:17 [DEBUG] Test: Executing step 2 +2022/02/28 12:02:17 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:02:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:17 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:02:17 [DEBUG] Test: Executing step 3 +2022/02/28 12:02:17 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:02:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:02:17 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:02:17 [DEBUG] Test: Executing step 4 +2022/02/28 12:02:17 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:02:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:02:17 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:02:18 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:18 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:02:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:02:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:02:18 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:02:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:02:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:18 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:02:18 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:02:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:02:18 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:02:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:18 [DEBUG] : Beginning Read +2022/02/28 12:02:18 HTTP request GET mso/api/v1/tenants +2022/02/28 12:02:18 [DEBUG] Begin Injection +2022/02/28 12:02:18 HTTP request POST /login +2022/02/28 12:02:18 HTTP request after injection POST /login +2022/02/28 12:02:18 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 12:02:19 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 12:02:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:19 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMTM5LCJpYXQiOjE2NDYwMjk5MzksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRUx2T0JTWTRmRHdac3VWS1doc2x1UnlUIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.KcJ_awqrPbMmbvfy5WUpszpuQYJNjqJPQdaVeRAmdsJJnl4kky-Dp5gOolGpFNNHXGiQUCgLRZGYzjwPNyvHjkS-alSD-O6fJdWVpP29h3-NBrA7xfe9HNRC1FxbUtuMvShqhPazO9K6brPLZ6Ph_TKLJVl973AFfdFjKcSrf0Quc-p8Y9iJ_tPPxbNQZMCG82vXhLDTKbqoyLQAmxV4x8Q2arZuLBxSxwS0kWt06CiL_gT41PZH_6JP8r5EcGN4cv8Z7FcQixhddauG70omdpLu5SvaecibIt59IpDFHEeOU4VfI-1dfEEF_LWkwzZEIWHH9cA8RAIu4iGUm3GAZQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000e132c0 -1 [chunked] false false map[] 0xc000b90600 0xc00041f4a0} +2022/02/28 12:02:19 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMTM5LCJpYXQiOjE2NDYwMjk5MzksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRUx2T0JTWTRmRHdac3VWS1doc2x1UnlUIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.KcJ_awqrPbMmbvfy5WUpszpuQYJNjqJPQdaVeRAmdsJJnl4kky-Dp5gOolGpFNNHXGiQUCgLRZGYzjwPNyvHjkS-alSD-O6fJdWVpP29h3-NBrA7xfe9HNRC1FxbUtuMvShqhPazO9K6brPLZ6Ph_TKLJVl973AFfdFjKcSrf0Quc-p8Y9iJ_tPPxbNQZMCG82vXhLDTKbqoyLQAmxV4x8Q2arZuLBxSxwS0kWt06CiL_gT41PZH_6JP8r5EcGN4cv8Z7FcQixhddauG70omdpLu5SvaecibIt59IpDFHEeOU4VfI-1dfEEF_LWkwzZEIWHH9cA8RAIu4iGUm3GAZQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMTM5LCJpYXQiOjE2NDYwMjk5MzksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRUx2T0JTWTRmRHdac3VWS1doc2x1UnlUIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.KcJ_awqrPbMmbvfy5WUpszpuQYJNjqJPQdaVeRAmdsJJnl4kky-Dp5gOolGpFNNHXGiQUCgLRZGYzjwPNyvHjkS-alSD-O6fJdWVpP29h3-NBrA7xfe9HNRC1FxbUtuMvShqhPazO9K6brPLZ6Ph_TKLJVl973AFfdFjKcSrf0Quc-p8Y9iJ_tPPxbNQZMCG82vXhLDTKbqoyLQAmxV4x8Q2arZuLBxSxwS0kWt06CiL_gT41PZH_6JP8r5EcGN4cv8Z7FcQixhddauG70omdpLu5SvaecibIt59IpDFHEeOU4VfI-1dfEEF_LWkwzZEIWHH9cA8RAIu4iGUm3GAZQ"} +2022/02/28 12:02:19 [DEBUG] Exit from do method +2022/02/28 12:02:19 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:02:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:02:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:02:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006ea540 5563 [] false false map[] 0xc000b90500 0xc00041f4a0} +2022/02/28 12:02:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:02:19 [DEBUG] Exit from do method +2022/02/28 12:02:19 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:02:19 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:19 [DEBUG] New state was assigned lineage "ce537184-1b74-f53e-fa56-8e295d4fc3c8" +2022/02/28 12:02:19 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:02:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:19 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:19 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:02:19 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:02:19 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:02:19 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:02:19 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:02:19 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:02:19 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:19 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_djzl2" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_djzl2" + schema_id: "" => "" + template_name: "" => "acctest_yi4wl" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_djzl2" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_yi4wl" + template_name: "" => "acctest_yi4wl" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_djzl2" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_djzl2" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_yi4wl" + vrf_name: "" => "acctest_djzl2" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_djzl2" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_djzl2" + schema_id: "" => "" + template_name: "" => "acctest_yi4wl" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_djzl2" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_djzl2" + schema_id: "" => "" + template: "" => "acctest_yi4wl" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:02:19 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:02:19 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:02:19 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:02:19 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:02:19 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:02:19 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:02:19 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:02:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:19 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:02:19 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:02:19 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:02:19 [DEBUG] Schema: Beginning Creation +2022/02/28 12:02:19 [DEBUG] : Beginning Create +2022/02/28 12:02:19 HTTP request POST mso/api/v1/schemas +2022/02/28 12:02:19 [DEBUG] Begin Injection +2022/02/28 12:02:19 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:02:19 [DEBUG] Begin Injection +2022/02/28 12:02:19 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:02:19 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:02:19 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMTM5LCJpYXQiOjE2NDYwMjk5MzksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRUx2T0JTWTRmRHdac3VWS1doc2x1UnlUIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.KcJ_awqrPbMmbvfy5WUpszpuQYJNjqJPQdaVeRAmdsJJnl4kky-Dp5gOolGpFNNHXGiQUCgLRZGYzjwPNyvHjkS-alSD-O6fJdWVpP29h3-NBrA7xfe9HNRC1FxbUtuMvShqhPazO9K6brPLZ6Ph_TKLJVl973AFfdFjKcSrf0Quc-p8Y9iJ_tPPxbNQZMCG82vXhLDTKbqoyLQAmxV4x8Q2arZuLBxSxwS0kWt06CiL_gT41PZH_6JP8r5EcGN4cv8Z7FcQixhddauG70omdpLu5SvaecibIt59IpDFHEeOU4VfI-1dfEEF_LWkwzZEIWHH9cA8RAIu4iGUm3GAZQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_djzl2","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xb37ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} +2022/02/28 12:02:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:02:19 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMTM5LCJpYXQiOjE2NDYwMjk5MzksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRUx2T0JTWTRmRHdac3VWS1doc2x1UnlUIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.KcJ_awqrPbMmbvfy5WUpszpuQYJNjqJPQdaVeRAmdsJJnl4kky-Dp5gOolGpFNNHXGiQUCgLRZGYzjwPNyvHjkS-alSD-O6fJdWVpP29h3-NBrA7xfe9HNRC1FxbUtuMvShqhPazO9K6brPLZ6Ph_TKLJVl973AFfdFjKcSrf0Quc-p8Y9iJ_tPPxbNQZMCG82vXhLDTKbqoyLQAmxV4x8Q2arZuLBxSxwS0kWt06CiL_gT41PZH_6JP8r5EcGN4cv8Z7FcQixhddauG70omdpLu5SvaecibIt59IpDFHEeOU4VfI-1dfEEF_LWkwzZEIWHH9cA8RAIu4iGUm3GAZQ] Content-Type:[application/json]] {{"displayName":"acctest_yi4wl","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_yi4wl","externalEpgs":[],"filters":[],"name":"acctest_yi4wl","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xb37ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} +2022/02/28 12:02:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:02:20 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:02:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e12c40 160 [] false false map[] 0xc000e4cd00 0xc00041f4a0} +2022/02/28 12:02:20 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6c741b0000ac0afd0c39","name":"acctest_djzl2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:02:20 [DEBUG] Exit from do method +2022/02/28 12:02:20 [DEBUG] 621c6c741b0000ac0afd0c39: Creation finished successfully +2022/02/28 12:02:20 [DEBUG] 621c6c741b0000ac0afd0c39: Beginning Read +2022/02/28 12:02:20 id: 621c6c741b0000ac0afd0c39 +2022/02/28 12:02:20 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 +2022/02/28 12:02:20 [DEBUG] Begin Injection +2022/02/28 12:02:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 +2022/02/28 12:02:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 +2022/02/28 12:02:20 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:02:20 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6c741d0000f0634fba2a] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e12ec0 400 [] false false map[] 0xc000c0e800 0xc00041f4a0} +2022/02/28 12:02:20 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:02:20 [DEBUG] Exit from do method +2022/02/28 12:02:20 [DEBUG] 621c6c741d0000f0634fba2a: Schema Creation finished successfully +2022/02/28 12:02:20 [DEBUG] 621c6c741d0000f0634fba2a: Beginning Read +2022/02/28 12:02:20 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:20 [DEBUG] Begin Injection +2022/02/28 12:02:20 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 +2022/02/28 12:02:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000aa040 160 [] false false map[] 0xc000c0eb00 0xc00041fce0} +2022/02/28 12:02:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 {"id":"621c6c741b0000ac0afd0c39","name":"acctest_djzl2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:02:21 [DEBUG] Exit from do method +2022/02/28 12:02:21 [DEBUG] 621c6c741b0000ac0afd0c39: Read finished successfully +2022/02/28 12:02:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000aa480 400 [] false false map[] 0xc000540000 0xc00041f4a0} +2022/02/28 12:02:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:02:21 [DEBUG] Exit from do method +2022/02/28 12:02:21 [DEBUG] 621c6c741d0000f0634fba2a: Read finished successfully +2022/02/28 12:02:21 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:02:21 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:02:21 HTTP request PATCH mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:21 [DEBUG] Begin Injection +2022/02/28 12:02:21 HTTP request after injection PATCH mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:21 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:32:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c0e400 0xc00041f4a0} +2022/02/28 12:02:21 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:21 [DEBUG] acctest_djzl2: Creation finished successfully +2022/02/28 12:02:21 [DEBUG] acctest_djzl2: Beginning Read +2022/02/28 12:02:21 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:21 [DEBUG] Begin Injection +2022/02/28 12:02:21 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000aab00 768 [] false false map[] 0xc000dac300 0xc00041fd90} +2022/02/28 12:02:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 12:02:21 [DEBUG] Exit from do method +2022/02/28 12:02:21 currentvrfname acctest_djzl2 +2022/02/28 12:02:21 found correct vrfname +2022/02/28 12:02:21 [DEBUG] acctest_djzl2: Read finished successfully +2022/02/28 12:02:21 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:02:21 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:02:21 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:02:21 HTTP request PATCH mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:21 [DEBUG] Begin Injection +2022/02/28 12:02:21 HTTP request after injection PATCH mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:22 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:32:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000dacd00 0xc00041fd90} +2022/02/28 12:02:22 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:22 [DEBUG] : Beginning Read +2022/02/28 12:02:22 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:22 [DEBUG] Begin Injection +2022/02/28 12:02:22 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00014bfc0 1277 [] false false map[] 0xc000b90000 0xc00041fd90} +2022/02/28 12:02:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:02:22 [DEBUG] Exit from do method +2022/02/28 12:02:22 [DEBUG] acctest_djzl2: Read finished successfully +2022/02/28 12:02:22 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:02:22 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:02:22 HTTP request PATCH mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:22 [DEBUG] Begin Injection +2022/02/28 12:02:22 HTTP request after injection PATCH mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:22 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:32:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000dad300 0xc00041fd90} +2022/02/28 12:02:22 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false +2022/02/28 12:02:22 [DEBUG] Creation Complete +2022/02/28 12:02:22 [DEBUG] : Beginning Read +2022/02/28 12:02:22 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:22 [DEBUG] Begin Injection +2022/02/28 12:02:22 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000856d80 1362 [] false false map[] 0xc000dad500 0xc00041fd90} +2022/02/28 12:02:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:23 [DEBUG] Exit from do method +2022/02/28 12:02:23 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Read finished successfully +2022/02/28 12:02:23 [DEBUG] : Beginning Read +2022/02/28 12:02:23 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:23 [DEBUG] Begin Injection +2022/02/28 12:02:23 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000857300 1362 [] false false map[] 0xc0001b9100 0xc00041fd90} +2022/02/28 12:02:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:23 [DEBUG] Exit from do method +2022/02/28 12:02:23 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Read finished successfully +2022/02/28 12:02:23 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:23 [DEBUG] New state was assigned lineage "f6f33156-d202-108e-7bc1-5d12d8a1f0a3" +2022/02/28 12:02:23 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:23 [DEBUG] Begin Injection +2022/02/28 12:02:23 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000502080 1362 [] false false map[] 0xc000c0e800 0xc00041fd90} +2022/02/28 12:02:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:23 [DEBUG] Exit from do method +2022/02/28 12:02:23 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:02:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:23 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:02:23 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:23 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:02:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:23 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:23 [DEBUG] : Beginning Read +2022/02/28 12:02:23 HTTP request GET mso/api/v1/tenants +2022/02/28 12:02:23 [DEBUG] Begin Injection +2022/02/28 12:02:23 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:02:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:02:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:02:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c0c0 5563 [] false false map[] 0xc000c0ee00 0xc00041fd90} +2022/02/28 12:02:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:02:24 [DEBUG] Exit from do method +2022/02/28 12:02:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:02:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:02:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:02:24 [DEBUG] 621c6c741d0000f0634fba2a: Beginning Read +2022/02/28 12:02:24 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 [DEBUG] Begin Injection +2022/02/28 12:02:24 [DEBUG] 621c6c741b0000ac0afd0c39: Beginning Read +2022/02/28 12:02:24 id: 621c6c741b0000ac0afd0c39 +2022/02/28 12:02:24 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 +2022/02/28 12:02:24 [DEBUG] Begin Injection +2022/02/28 12:02:24 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 +2022/02/28 12:02:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 +2022/02/28 12:02:24 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000222c00 1362 [] false false map[] 0xc000c0f200 0xc00041fce0} +2022/02/28 12:02:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:24 [DEBUG] Exit from do method +2022/02/28 12:02:24 [DEBUG] 621c6c741d0000f0634fba2a: Read finished successfully +2022/02/28 12:02:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:02:24 [DEBUG] acctest_djzl2: Beginning Read +2022/02/28 12:02:24 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 [DEBUG] Begin Injection +2022/02/28 12:02:24 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 +2022/02/28 12:02:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006ea280 160 [] false false map[] 0xc000e4ce00 0xc00041fd90} +2022/02/28 12:02:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 {"id":"621c6c741b0000ac0afd0c39","name":"acctest_djzl2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:02:24 [DEBUG] Exit from do method +2022/02/28 12:02:24 [DEBUG] 621c6c741b0000ac0afd0c39: Read finished successfully +2022/02/28 12:02:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000223fc0 1362 [] false false map[] 0xc000e4d300 0xc00041fce0} +2022/02/28 12:02:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:24 [DEBUG] Exit from do method +2022/02/28 12:02:24 currentvrfname acctest_djzl2 +2022/02/28 12:02:24 found correct vrfname +2022/02/28 12:02:24 [DEBUG] acctest_djzl2: Read finished successfully +2022/02/28 12:02:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:02:24 [DEBUG] acctest_djzl2: Beginning Read +2022/02/28 12:02:24 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 [DEBUG] Begin Injection +2022/02/28 12:02:24 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000503a00 1362 [] false false map[] 0xc000e4d800 0xc00041fce0} +2022/02/28 12:02:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:24 [DEBUG] Exit from do method +2022/02/28 12:02:24 [DEBUG] acctest_djzl2: Read finished successfully +2022/02/28 12:02:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:02:24 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Beginning Read +2022/02/28 12:02:24 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 [DEBUG] Begin Injection +2022/02/28 12:02:24 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000aaf00 1362 [] false false map[] 0xc000e4dd00 0xc00041fce0} +2022/02/28 12:02:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:25 [DEBUG] Exit from do method +2022/02/28 12:02:25 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Read finished successfully +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:02:25 [DEBUG] : Beginning Read +2022/02/28 12:02:25 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:25 [DEBUG] Begin Injection +2022/02/28 12:02:25 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000219700 1362 [] false false map[] 0xc000858000 0xc00041fce0} +2022/02/28 12:02:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:25 [DEBUG] Exit from do method +2022/02/28 12:02:25 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Read finished successfully +2022/02/28 12:02:25 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:25 [DEBUG] New state was assigned lineage "74494063-61fd-3a86-caec-7fce90771c47" +2022/02/28 12:02:25 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:02:25 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:02:25 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:25 [DEBUG] Test: Executing step 5 +2022/02/28 12:02:25 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:25 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:25 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:02:25 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:25 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:25 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:25 [DEBUG] : Beginning Read +2022/02/28 12:02:25 HTTP request GET mso/api/v1/tenants +2022/02/28 12:02:25 [DEBUG] Begin Injection +2022/02/28 12:02:25 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:02:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:02:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:02:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000646a40 5563 [] false false map[] 0xc0001b8200 0xc00041fce0} +2022/02/28 12:02:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:02:25 [DEBUG] Exit from do method +2022/02/28 12:02:25 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:02:25 [DEBUG] 621c6c741d0000f0634fba2a: Beginning Read +2022/02/28 12:02:25 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:25 [DEBUG] Begin Injection +2022/02/28 12:02:25 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:25 [DEBUG] 621c6c741b0000ac0afd0c39: Beginning Read +2022/02/28 12:02:25 id: 621c6c741b0000ac0afd0c39 +2022/02/28 12:02:25 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 +2022/02/28 12:02:25 [DEBUG] Begin Injection +2022/02/28 12:02:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 +2022/02/28 12:02:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 +2022/02/28 12:02:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b2500 1362 [] false false map[] 0xc000e4c800 0xc00041fce0} +2022/02/28 12:02:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:26 [DEBUG] Exit from do method +2022/02/28 12:02:26 [DEBUG] 621c6c741d0000f0634fba2a: Read finished successfully +2022/02/28 12:02:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:02:26 [DEBUG] acctest_djzl2: Beginning Read +2022/02/28 12:02:26 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:26 [DEBUG] Begin Injection +2022/02/28 12:02:26 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 +2022/02/28 12:02:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b39c0 160 [] false false map[] 0xc0001b8500 0xc00041fd90} +2022/02/28 12:02:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 {"id":"621c6c741b0000ac0afd0c39","name":"acctest_djzl2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:02:26 [DEBUG] Exit from do method +2022/02/28 12:02:26 [DEBUG] 621c6c741b0000ac0afd0c39: Read finished successfully +2022/02/28 12:02:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a0b4c0 1362 [] false false map[] 0xc000dae500 0xc00041fce0} +2022/02/28 12:02:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:26 [DEBUG] Exit from do method +2022/02/28 12:02:26 currentvrfname acctest_djzl2 +2022/02/28 12:02:26 found correct vrfname +2022/02/28 12:02:26 [DEBUG] acctest_djzl2: Read finished successfully +2022/02/28 12:02:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:02:26 [DEBUG] acctest_djzl2: Beginning Read +2022/02/28 12:02:26 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:26 [DEBUG] Begin Injection +2022/02/28 12:02:26 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a0a040 1362 [] false false map[] 0xc0011f8500 0xc00041fce0} +2022/02/28 12:02:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:26 [DEBUG] Exit from do method +2022/02/28 12:02:26 [DEBUG] acctest_djzl2: Read finished successfully +2022/02/28 12:02:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:02:26 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Beginning Read +2022/02/28 12:02:26 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:26 [DEBUG] Begin Injection +2022/02/28 12:02:26 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b29c0 1362 [] false false map[] 0xc0001b8400 0xc00041fce0} +2022/02/28 12:02:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:27 [DEBUG] Exit from do method +2022/02/28 12:02:27 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Read finished successfully +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:02:27 [DEBUG] : Beginning Read +2022/02/28 12:02:27 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:27 [DEBUG] Begin Injection +2022/02/28 12:02:27 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a +2022/02/28 12:02:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9e200 1362 [] false false map[] 0xc0001b9000 0xc00041fce0} +2022/02/28 12:02:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:02:27 [DEBUG] Exit from do method +2022/02/28 12:02:27 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 12:02:27 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 12:02:27 [DEBUG] New state was assigned lineage "e8dbdb8c-c399-e8b2-0a4c-c293e0762d83" +2022/02/28 12:02:27 [DEBUG] Test: Executing step 6 +2022/02/28 12:02:27 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:27 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:02:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:02:27 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:02:27 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "ftnrv" is not expected here. +2022/02/28 12:02:27 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "ftnrv" is not expected here. +2022/02/28 12:02:27 [DEBUG] Test: Executing step 7 +2022/02/28 12:02:27 [DEBUG] provider has no plugin.Client +2022/02/28 12:02:27 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:02:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:02:27 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:02:27 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported attribute: This object has no argument, nested block, or exported attribute named "bd_name". +2022/02/28 12:02:27 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported attribute: This object has no argument, nested block, or exported attribute named "bd_name". +2022/02/28 12:02:27 [WARN] Skipping destroy test since there is no state. +2022/02/28 12:03:52 [DEBUG] Test: Executing step 0 +2022/02/28 12:03:52 [DEBUG] provider has no plugin.Client +2022/02/28 12:03:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:03:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:03:52 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:03:52 [DEBUG] Test: Executing step 1 +2022/02/28 12:03:52 [DEBUG] provider has no plugin.Client +2022/02/28 12:03:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:03:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:03:52 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:03:52 [DEBUG] Test: Executing step 2 +2022/02/28 12:03:52 [DEBUG] provider has no plugin.Client +2022/02/28 12:03:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:03:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:03:52 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:03:52 [DEBUG] Test: Executing step 3 +2022/02/28 12:03:52 [DEBUG] provider has no plugin.Client +2022/02/28 12:03:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:03:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:03:52 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:03:52 [DEBUG] Test: Executing step 4 +2022/02/28 12:03:53 [DEBUG] provider has no plugin.Client +2022/02/28 12:03:53 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:03:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:03:53 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:03:53 [DEBUG] provider has no plugin.Client +2022/02/28 12:03:53 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:03:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:03:53 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:03:53 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:03:53 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:53 [DEBUG] : Beginning Read +2022/02/28 12:03:53 HTTP request GET mso/api/v1/tenants +2022/02/28 12:03:53 [DEBUG] Begin Injection +2022/02/28 12:03:53 HTTP request POST /login +2022/02/28 12:03:53 HTTP request after injection POST /login +2022/02/28 12:03:53 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 12:03:54 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 12:03:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:54 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00094a080 -1 [chunked] false false map[] 0xc0000a4900 0xc000b48000} +2022/02/28 12:03:54 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ"} +2022/02/28 12:03:54 [DEBUG] Exit from do method +2022/02/28 12:03:54 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:03:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:03:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:03:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00094a3c0 5563 [] false false map[] 0xc0000a4800 0xc000b48000} +2022/02/28 12:03:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:03:54 [DEBUG] Exit from do method +2022/02/28 12:03:54 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:03:54 [DEBUG] provider has no plugin.Client +2022/02/28 12:03:54 [DEBUG] New state was assigned lineage "1994ee4b-66a6-1fa3-6580-d145f3ade344" +2022/02/28 12:03:54 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:03:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:03:54 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:54 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:03:54 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:03:54 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:03:54 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:03:54 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:03:54 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:03:54 [DEBUG] provider has no plugin.Client +2022/02/28 12:03:54 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_r7imt" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_r7imt" + schema_id: "" => "" + template_name: "" => "acctest_7003m" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_r7imt" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_7003m" + template_name: "" => "acctest_7003m" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_r7imt" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_r7imt" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_7003m" + vrf_name: "" => "acctest_r7imt" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_r7imt" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_r7imt" + schema_id: "" => "" + template_name: "" => "acctest_7003m" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_r7imt" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_r7imt" + schema_id: "" => "" + template: "" => "acctest_7003m" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:03:54 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:03:54 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:03:54 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:03:54 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:03:54 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:03:54 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:03:54 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:03:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 12:03:54 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:03:54 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:03:54 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:03:54 [DEBUG] Schema: Beginning Creation +2022/02/28 12:03:54 HTTP request POST mso/api/v1/schemas +2022/02/28 12:03:54 [DEBUG] Begin Injection +2022/02/28 12:03:54 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:03:54 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ] Content-Type:[application/json]] {{"displayName":"acctest_7003m","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_7003m","externalEpgs":[],"filters":[],"name":"acctest_7003m","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xe07ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:03:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:03:54 [DEBUG] : Beginning Create +2022/02/28 12:03:54 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:03:54 [DEBUG] Begin Injection +2022/02/28 12:03:54 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:03:54 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_r7imt","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xe07ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:03:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:03:55 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:03:55 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6cd31d000026644fba2f] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004e7340 400 [] false false map[] 0xc0007b4e00 0xc000b48000} +2022/02/28 12:03:55 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:03:55 [DEBUG] Exit from do method +2022/02/28 12:03:55 [DEBUG] 621c6cd31d000026644fba2f: Schema Creation finished successfully +2022/02/28 12:03:55 [DEBUG] 621c6cd31d000026644fba2f: Beginning Read +2022/02/28 12:03:55 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:55 [DEBUG] Begin Injection +2022/02/28 12:03:55 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:55 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:03:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004ebbc0 160 [] false false map[] 0xc0008e8300 0xc000b48000} +2022/02/28 12:03:55 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6cd31b0000f30afd0c3a","name":"acctest_r7imt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:03:55 [DEBUG] Exit from do method +2022/02/28 12:03:55 [DEBUG] 621c6cd31b0000f30afd0c3a: Creation finished successfully +2022/02/28 12:03:55 [DEBUG] 621c6cd31b0000f30afd0c3a: Beginning Read +2022/02/28 12:03:55 id: 621c6cd31b0000f30afd0c3a +2022/02/28 12:03:55 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a +2022/02/28 12:03:55 [DEBUG] Begin Injection +2022/02/28 12:03:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a +2022/02/28 12:03:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a +2022/02/28 12:03:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004e6380 400 [] false false map[] 0xc00042c700 0xc000a784d0} +2022/02/28 12:03:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:03:56 [DEBUG] Exit from do method +2022/02/28 12:03:56 [DEBUG] 621c6cd31d000026644fba2f: Read finished successfully +2022/02/28 12:03:56 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:03:56 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:03:56 HTTP request PATCH mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:56 [DEBUG] Begin Injection +2022/02/28 12:03:56 HTTP request after injection PATCH mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a +2022/02/28 12:03:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004e6980 160 [] false false map[] 0xc0000a4400 0xc000b48000} +2022/02/28 12:03:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a {"id":"621c6cd31b0000f30afd0c3a","name":"acctest_r7imt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:03:56 [DEBUG] Exit from do method +2022/02/28 12:03:56 [DEBUG] 621c6cd31b0000f30afd0c3a: Read finished successfully +2022/02/28 12:03:56 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:56 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:33:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a4e00 0xc000a784d0} +2022/02/28 12:03:56 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:56 [DEBUG] acctest_r7imt: Creation finished successfully +2022/02/28 12:03:56 [DEBUG] acctest_r7imt: Beginning Read +2022/02/28 12:03:56 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:56 [DEBUG] Begin Injection +2022/02/28 12:03:56 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a83e40 768 [] false false map[] 0xc0008e8300 0xc0001362c0} +2022/02/28 12:03:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 12:03:56 [DEBUG] Exit from do method +2022/02/28 12:03:56 currentvrfname acctest_r7imt +2022/02/28 12:03:56 found correct vrfname +2022/02/28 12:03:56 [DEBUG] acctest_r7imt: Read finished successfully +2022/02/28 12:03:56 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:03:56 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:03:56 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:03:56 HTTP request PATCH mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:56 [DEBUG] Begin Injection +2022/02/28 12:03:56 HTTP request after injection PATCH mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:57 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:33:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a5900 0xc0001362c0} +2022/02/28 12:03:57 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:57 [DEBUG] : Beginning Read +2022/02/28 12:03:57 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:57 [DEBUG] Begin Injection +2022/02/28 12:03:57 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000905c0 1277 [] false false map[] 0xc0008e8500 0xc0001362c0} +2022/02/28 12:03:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:03:57 [DEBUG] Exit from do method +2022/02/28 12:03:57 [DEBUG] acctest_r7imt: Read finished successfully +2022/02/28 12:03:57 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:03:57 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:03:57 HTTP request PATCH mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:57 [DEBUG] Begin Injection +2022/02/28 12:03:57 HTTP request after injection PATCH mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:57 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:33:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0008e8900 0xc0001362c0} +2022/02/28 12:03:57 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false +2022/02/28 12:03:57 [DEBUG] Creation Complete +2022/02/28 12:03:57 [DEBUG] : Beginning Read +2022/02/28 12:03:57 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:57 [DEBUG] Begin Injection +2022/02/28 12:03:57 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c4a140 1362 [] false false map[] 0xc0008e8b00 0xc0001362c0} +2022/02/28 12:03:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:03:58 [DEBUG] Exit from do method +2022/02/28 12:03:58 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Read finished successfully +2022/02/28 12:03:58 [DEBUG] : Beginning Read +2022/02/28 12:03:58 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:58 [DEBUG] Begin Injection +2022/02/28 12:03:58 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00094a8c0 1362 [] false false map[] 0xc00042cb00 0xc0001362c0} +2022/02/28 12:03:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:03:58 [DEBUG] Exit from do method +2022/02/28 12:03:58 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Read finished successfully +2022/02/28 12:03:58 [DEBUG] provider has no plugin.Client +2022/02/28 12:03:58 [DEBUG] New state was assigned lineage "4eb57a31-0392-1801-cdc4-924be47c4054" +2022/02/28 12:03:58 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:58 [DEBUG] Begin Injection +2022/02/28 12:03:58 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004a2040 1362 [] false false map[] 0xc0000a4200 0xc0001362c0} +2022/02/28 12:03:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:03:58 [DEBUG] Exit from do method +2022/02/28 12:03:58 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:03:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:03:58 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:03:58 [DEBUG] provider has no plugin.Client +2022/02/28 12:03:58 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:03:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:03:58 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:03:58 [DEBUG] : Beginning Read +2022/02/28 12:03:58 HTTP request GET mso/api/v1/tenants +2022/02/28 12:03:58 [DEBUG] Begin Injection +2022/02/28 12:03:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:03:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:03:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:03:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c4a300 5563 [] false false map[] 0xc000a7c700 0xc0001362c0} +2022/02/28 12:03:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:03:59 [DEBUG] Exit from do method +2022/02/28 12:03:59 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:03:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:03:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:03:59 [DEBUG] 621c6cd31d000026644fba2f: Beginning Read +2022/02/28 12:03:59 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:59 [DEBUG] Begin Injection +2022/02/28 12:03:59 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:59 [DEBUG] 621c6cd31b0000f30afd0c3a: Beginning Read +2022/02/28 12:03:59 id: 621c6cd31b0000f30afd0c3a +2022/02/28 12:03:59 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a +2022/02/28 12:03:59 [DEBUG] Begin Injection +2022/02/28 12:03:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a +2022/02/28 12:03:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a +2022/02/28 12:03:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a +2022/02/28 12:03:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c4b880 160 [] false false map[] 0xc0000a4700 0xc000b48000} +2022/02/28 12:03:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00094bf00 1362 [] false false map[] 0xc0008e8b00 0xc0001362c0} +2022/02/28 12:03:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a {"id":"621c6cd31b0000f30afd0c3a","name":"acctest_r7imt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:03:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:03:59 [DEBUG] Exit from do method +2022/02/28 12:03:59 [DEBUG] Exit from do method +2022/02/28 12:03:59 [DEBUG] 621c6cd31b0000f30afd0c3a: Read finished successfully +2022/02/28 12:03:59 [DEBUG] 621c6cd31d000026644fba2f: Read finished successfully +2022/02/28 12:03:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:03:59 [DEBUG] acctest_r7imt: Beginning Read +2022/02/28 12:03:59 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:59 [DEBUG] Begin Injection +2022/02/28 12:03:59 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e0dc0 1362 [] false false map[] 0xc000a7cd00 0xc0001362c0} +2022/02/28 12:03:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:03:59 [DEBUG] Exit from do method +2022/02/28 12:03:59 currentvrfname acctest_r7imt +2022/02/28 12:03:59 found correct vrfname +2022/02/28 12:03:59 [DEBUG] acctest_r7imt: Read finished successfully +2022/02/28 12:03:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:03:59 [DEBUG] acctest_r7imt: Beginning Read +2022/02/28 12:03:59 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:59 [DEBUG] Begin Injection +2022/02/28 12:03:59 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:03:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004eab40 1362 [] false false map[] 0xc000d56700 0xc0001362c0} +2022/02/28 12:04:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:04:00 [DEBUG] Exit from do method +2022/02/28 12:04:00 [DEBUG] acctest_r7imt: Read finished successfully +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:00 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Beginning Read +2022/02/28 12:04:00 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:00 [DEBUG] Begin Injection +2022/02/28 12:04:00 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a83cc0 1362 [] false false map[] 0xc000a7d200 0xc0001362c0} +2022/02/28 12:04:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:04:00 [DEBUG] Exit from do method +2022/02/28 12:04:00 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Read finished successfully +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:00 [DEBUG] : Beginning Read +2022/02/28 12:04:00 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:00 [DEBUG] Begin Injection +2022/02/28 12:04:00 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004eac80 1362 [] false false map[] 0xc000d56c00 0xc0001362c0} +2022/02/28 12:04:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:04:00 [DEBUG] Exit from do method +2022/02/28 12:04:00 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Read finished successfully +2022/02/28 12:04:00 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:00 [DEBUG] New state was assigned lineage "ad54231b-0f7d-9045-8907-2d2a338f891c" +2022/02/28 12:04:00 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:04:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:04:00 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:00 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:00 [DEBUG] Test: Executing step 5 +2022/02/28 12:04:00 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:00 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:04:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:00 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:04:00 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:00 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:04:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:04:00 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:00 [DEBUG] : Beginning Read +2022/02/28 12:04:00 HTTP request GET mso/api/v1/tenants +2022/02/28 12:04:00 [DEBUG] Begin Injection +2022/02/28 12:04:00 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:04:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:04:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:04:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004a2740 5563 [] false false map[] 0xc0000a4f00 0xc0001362c0} +2022/02/28 12:04:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:04:01 [DEBUG] Exit from do method +2022/02/28 12:04:01 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:04:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:04:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:04:01 [DEBUG] 621c6cd31b0000f30afd0c3a: Beginning Read +2022/02/28 12:04:01 id: 621c6cd31b0000f30afd0c3a +2022/02/28 12:04:01 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a +2022/02/28 12:04:01 [DEBUG] Begin Injection +2022/02/28 12:04:01 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a +2022/02/28 12:04:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a +2022/02/28 12:04:01 [DEBUG] 621c6cd31d000026644fba2f: Beginning Read +2022/02/28 12:04:01 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:01 [DEBUG] Begin Injection +2022/02/28 12:04:01 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c4a080 1362 [] false false map[] 0xc0005de200 0xc000b48000} +2022/02/28 12:04:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:04:01 [DEBUG] Exit from do method +2022/02/28 12:04:01 [DEBUG] 621c6cd31d000026644fba2f: Read finished successfully +2022/02/28 12:04:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:04:01 [DEBUG] acctest_r7imt: Beginning Read +2022/02/28 12:04:01 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:01 [DEBUG] Begin Injection +2022/02/28 12:04:01 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090980 1362 [] false false map[] 0xc001152900 0xc000b48000} +2022/02/28 12:04:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:04:01 [DEBUG] Exit from do method +2022/02/28 12:04:01 currentvrfname acctest_r7imt +2022/02/28 12:04:01 found correct vrfname +2022/02/28 12:04:01 [DEBUG] acctest_r7imt: Read finished successfully +2022/02/28 12:04:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:04:01 [DEBUG] acctest_r7imt: Beginning Read +2022/02/28 12:04:01 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:01 [DEBUG] Begin Injection +2022/02/28 12:04:01 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a +2022/02/28 12:04:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090180 160 [] false false map[] 0xc001152400 0xc0001362c0} +2022/02/28 12:04:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a {"id":"621c6cd31b0000f30afd0c3a","name":"acctest_r7imt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:04:01 [DEBUG] Exit from do method +2022/02/28 12:04:01 [DEBUG] 621c6cd31b0000f30afd0c3a: Read finished successfully +2022/02/28 12:04:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004e6180 1362 [] false false map[] 0xc0000a4d00 0xc000b48000} +2022/02/28 12:04:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:04:02 [DEBUG] Exit from do method +2022/02/28 12:04:02 [DEBUG] acctest_r7imt: Read finished successfully +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:02 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Beginning Read +2022/02/28 12:04:02 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:02 [DEBUG] Begin Injection +2022/02/28 12:04:02 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e1500 1362 [] false false map[] 0xc0007b4400 0xc000b48000} +2022/02/28 12:04:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:04:02 [DEBUG] Exit from do method +2022/02/28 12:04:02 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Read finished successfully +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:02 [DEBUG] : Beginning Read +2022/02/28 12:04:02 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:02 [DEBUG] Begin Injection +2022/02/28 12:04:02 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f +2022/02/28 12:04:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004e73c0 1362 [] false false map[] 0xc001152100 0xc000b48000} +2022/02/28 12:04:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:04:02 [DEBUG] Exit from do method +2022/02/28 12:04:02 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 12:04:02 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 12:04:02 [DEBUG] New state was assigned lineage "2733c6c3-63a6-ace2-cd32-822fd2607786" +2022/02/28 12:04:02 [DEBUG] Test: Executing step 6 +2022/02/28 12:04:02 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:02 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:04:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:02 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:04:02 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "ejnqg" is not expected here. +2022/02/28 12:04:02 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "ejnqg" is not expected here. +2022/02/28 12:04:02 [DEBUG] Test: Executing step 7 +2022/02/28 12:04:02 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:02 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:04:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:04:02 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:04:02 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:02 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:04:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:02 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:04:02 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:02 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:02 [DEBUG] : Beginning Read +2022/02/28 12:04:02 HTTP request GET mso/api/v1/tenants +2022/02/28 12:04:02 [DEBUG] Begin Injection +2022/02/28 12:04:02 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:04:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:04:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:04:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004ea340 5563 [] false false map[] 0xc0007b5900 0xc000b48000} +2022/02/28 12:04:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:04:03 [DEBUG] Exit from do method +2022/02/28 12:04:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:04:03 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:03 [DEBUG] New state was assigned lineage "4586db13-bf7b-fca2-0671-b8626c821a66" +2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:03 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:04:03 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:04:03 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:04:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:04:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:03 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:03 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:03 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_r7imt" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_r7imt" + schema_id: "" => "" + template_name: "" => "acctest_7003m" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_r7imt" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_7003m" + template_name: "" => "acctest_7003m" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_r7imt" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_r7imt" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_7003m" + vrf_name: "" => "acctest_r7imt" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_r7imt" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_r7imt" + schema_id: "" => "" + template_name: "" => "acctest_7003m" + version: "" => "1" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_r7imt" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_r7imt" + schema_id: "" => "" + template: "" => "acctest_7003m" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:04:03 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:04:03 [DEBUG] Schema: Beginning Creation +2022/02/28 12:04:03 HTTP request POST mso/api/v1/schemas +2022/02/28 12:04:03 [DEBUG] Begin Injection +2022/02/28 12:04:03 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:04:03 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ] Content-Type:[application/json]] {{"displayName":"acctest_7003m","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_7003m","externalEpgs":[],"filters":[],"name":"acctest_7003m","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xe07ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:04:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:04:03 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:04:03 [DEBUG] : Beginning Create +2022/02/28 12:04:03 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:04:03 [DEBUG] Begin Injection +2022/02/28 12:04:03 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:04:03 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_r7imt","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xe07ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:04:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:04:03 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:04:03 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[122] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:03 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090380 122 [] false false map[] 0xc00127c800 0xc000b48000} +2022/02/28 12:04:03 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"code":140,"message":"Duplicate Resource: displayName","info":{"displayName":["Schema: 'acctest_7003m' already exists"]}} +2022/02/28 12:04:03 [DEBUG] Exit from do method +2022/02/28 12:04:03 [DEBUG] mso_schema.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_7003m' already exists"]} +2022/02/28 12:04:03 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_7003m' already exists"]} +2022/02/28 12:04:03 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_7003m' already exists"]} +2022/02/28 12:04:03 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:04:03 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[108] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:03 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a82280 108 [] false false map[] 0xc000b78c00 0xc0001362c0} +2022/02/28 12:04:03 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":140,"message":"Duplicate Resource: name","info":{"name":["Policy: 'acctest_r7imt' already exists"]}} +2022/02/28 12:04:03 [DEBUG] Exit from do method +2022/02/28 12:04:03 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: name"{"name":["Policy: 'acctest_r7imt' already exists"]} +2022/02/28 12:04:03 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_r7imt' already exists"]} +2022/02/28 12:04:03 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_r7imt' already exists"]} +2022/02/28 12:04:03 [DEBUG] New state was assigned lineage "b257b8f5-5188-2164-9f23-0e7c4c11f34a" +2022/02/28 12:04:03 [WARN] Test: Executing destroy step +2022/02/28 12:04:03 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:04:03 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:03 [DEBUG] : Beginning Read +2022/02/28 12:04:03 HTTP request GET mso/api/v1/tenants +2022/02/28 12:04:03 [DEBUG] Begin Injection +2022/02/28 12:04:03 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:04:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:04:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:04:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e0100 5563 [] false false map[] 0xc00127da00 0xc0001362c0} +2022/02/28 12:04:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:04:03 [DEBUG] Exit from do method +2022/02/28 12:04:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:03 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:03 [DEBUG] New state was assigned lineage "1549bc3f-07ec-32fc-b44a-882f698bc2b3" +2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:04:03 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 12:04:03 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:03 [DEBUG] New state was assigned lineage "9d9aef71-cc1d-025e-290d-fbd57b9d84bc" +2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:03 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:04:03 [DEBUG] : Beginning Read +2022/02/28 12:04:03 HTTP request GET mso/api/v1/tenants +2022/02/28 12:04:03 [DEBUG] Begin Injection +2022/02/28 12:04:03 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:04:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:04:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:04:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b404c0 5563 [] false false map[] 0xc0000f3000 0xc0001362c0} +2022/02/28 12:04:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:04:04 [DEBUG] Exit from do method +2022/02/28 12:04:04 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:04:04 [DEBUG] provider has no plugin.Client +2022/02/28 12:04:04 [DEBUG] New state was assigned lineage "12edaa61-2b4e-e4b2-b514-7db30c8129fa" +2022/02/28 12:04:04 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:04:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:04:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:04:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/28 12:04:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:04:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:04:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:04:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:04:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:04:04 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:05:22 [DEBUG] Test: Executing step 0 +2022/02/28 12:05:22 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:22 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:05:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:22 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:05:22 [DEBUG] Test: Executing step 1 +2022/02/28 12:05:22 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:22 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:05:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:22 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:05:22 [DEBUG] Test: Executing step 2 +2022/02/28 12:05:22 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:22 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:05:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:22 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:05:22 [DEBUG] Test: Executing step 3 +2022/02/28 12:05:22 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:22 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:05:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:05:22 [DEBUG] Test: Executing step 4 +2022/02/28 12:05:22 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:22 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:05:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:05:22 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:05:22 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:22 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:05:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:22 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:05:22 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:22 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:22 [DEBUG] : Beginning Read +2022/02/28 12:05:22 HTTP request GET mso/api/v1/tenants +2022/02/28 12:05:22 [DEBUG] Begin Injection +2022/02/28 12:05:22 HTTP request POST /login +2022/02/28 12:05:22 HTTP request after injection POST /login +2022/02/28 12:05:22 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 12:05:24 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 12:05:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:24 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00004d800 -1 [chunked] false false map[] 0xc0000d8b00 0xc00000e000} +2022/02/28 12:05:24 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ"} +2022/02/28 12:05:24 [DEBUG] Exit from do method +2022/02/28 12:05:24 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:05:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:05:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:05:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051a180 5563 [] false false map[] 0xc0000d8a00 0xc00000e000} +2022/02/28 12:05:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:05:24 [DEBUG] Exit from do method +2022/02/28 12:05:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:05:24 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:24 [DEBUG] New state was assigned lineage "3360640b-1a15-a140-5d16-d9f822d3d5af" +2022/02/28 12:05:24 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:05:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:24 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:24 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:05:24 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:05:24 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:05:24 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:05:24 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:24 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:24 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:24 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_phtdv" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_phtdv" + schema_id: "" => "" + template_name: "" => "acctest_266fh" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_phtdv" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_266fh" + template_name: "" => "acctest_266fh" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_phtdv" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_phtdv" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_266fh" + vrf_name: "" => "acctest_phtdv" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_phtdv" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_phtdv" + schema_id: "" => "" + template_name: "" => "acctest_266fh" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_phtdv" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_phtdv" + schema_id: "" => "" + template: "" => "acctest_266fh" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:05:24 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:05:24 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:05:24 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:24 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:05:24 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:05:24 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:24 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:05:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] +2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:24 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:05:24 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:05:24 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:05:24 [DEBUG] Schema: Beginning Creation +2022/02/28 12:05:24 [DEBUG] : Beginning Create +2022/02/28 12:05:24 HTTP request POST mso/api/v1/schemas +2022/02/28 12:05:24 [DEBUG] Begin Injection +2022/02/28 12:05:24 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:05:24 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ] Content-Type:[application/json]] {{"displayName":"acctest_266fh","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_266fh","externalEpgs":[],"filters":[],"name":"acctest_266fh","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x617ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} +2022/02/28 12:05:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:05:24 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:05:24 [DEBUG] Begin Injection +2022/02/28 12:05:24 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:05:24 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_phtdv","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x617ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} +2022/02/28 12:05:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:05:25 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:05:25 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6d2c1d000019644fba34] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001034f40 400 [] false false map[] 0xc000f58200 0xc00000e000} +2022/02/28 12:05:25 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:05:25 [DEBUG] Exit from do method +2022/02/28 12:05:25 [DEBUG] 621c6d2c1d000019644fba34: Schema Creation finished successfully +2022/02/28 12:05:25 [DEBUG] 621c6d2c1d000019644fba34: Beginning Read +2022/02/28 12:05:25 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:25 [DEBUG] Begin Injection +2022/02/28 12:05:25 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:25 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:05:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000098300 160 [] false false map[] 0xc0000d8700 0xc00000e000} +2022/02/28 12:05:25 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6d2d1b0000050bfd0c3b","name":"acctest_phtdv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:05:25 [DEBUG] Exit from do method +2022/02/28 12:05:25 [DEBUG] 621c6d2d1b0000050bfd0c3b: Creation finished successfully +2022/02/28 12:05:25 [DEBUG] 621c6d2d1b0000050bfd0c3b: Beginning Read +2022/02/28 12:05:25 id: 621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:25 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:25 [DEBUG] Begin Injection +2022/02/28 12:05:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00014bd40 160 [] false false map[] 0xc000f2a600 0xc0000de9a0} +2022/02/28 12:05:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b {"id":"621c6d2d1b0000050bfd0c3b","name":"acctest_phtdv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:05:25 [DEBUG] Exit from do method +2022/02/28 12:05:25 [DEBUG] 621c6d2d1b0000050bfd0c3b: Read finished successfully +2022/02/28 12:05:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b2ce00 400 [] false false map[] 0xc0000d8a00 0xc00000e000} +2022/02/28 12:05:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:05:25 [DEBUG] Exit from do method +2022/02/28 12:05:25 [DEBUG] 621c6d2c1d000019644fba34: Read finished successfully +2022/02/28 12:05:25 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:05:25 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:05:25 HTTP request PATCH mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:25 [DEBUG] Begin Injection +2022/02/28 12:05:25 HTTP request after injection PATCH mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:35:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f2aa00 0xc00000e000} +2022/02/28 12:05:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:26 [DEBUG] acctest_phtdv: Creation finished successfully +2022/02/28 12:05:26 [DEBUG] acctest_phtdv: Beginning Read +2022/02/28 12:05:26 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:26 [DEBUG] Begin Injection +2022/02/28 12:05:26 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000992c0 768 [] false false map[] 0xc001014500 0xc0000dedc0} +2022/02/28 12:05:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 12:05:26 [DEBUG] Exit from do method +2022/02/28 12:05:26 currentvrfname acctest_phtdv +2022/02/28 12:05:26 found correct vrfname +2022/02/28 12:05:26 [DEBUG] acctest_phtdv: Read finished successfully +2022/02/28 12:05:26 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:05:26 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:05:26 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:05:26 HTTP request PATCH mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:26 [DEBUG] Begin Injection +2022/02/28 12:05:26 HTTP request after injection PATCH mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:35:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00011ac00 0xc0000dedc0} +2022/02/28 12:05:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:26 [DEBUG] : Beginning Read +2022/02/28 12:05:26 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:26 [DEBUG] Begin Injection +2022/02/28 12:05:26 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000981c0 1277 [] false false map[] 0xc000f2a000 0xc0000dedc0} +2022/02/28 12:05:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:05:27 [DEBUG] Exit from do method +2022/02/28 12:05:27 [DEBUG] acctest_phtdv: Read finished successfully +2022/02/28 12:05:27 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:05:27 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:05:27 HTTP request PATCH mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:27 [DEBUG] Begin Injection +2022/02/28 12:05:27 HTTP request after injection PATCH mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:27 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:35:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f2ab00 0xc0000dedc0} +2022/02/28 12:05:27 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false +2022/02/28 12:05:27 [DEBUG] Creation Complete +2022/02/28 12:05:27 [DEBUG] : Beginning Read +2022/02/28 12:05:27 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:27 [DEBUG] Begin Injection +2022/02/28 12:05:27 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d9000 1362 [] false false map[] 0xc00011ae00 0xc0000dedc0} +2022/02/28 12:05:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:27 [DEBUG] Exit from do method +2022/02/28 12:05:27 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Read finished successfully +2022/02/28 12:05:27 [DEBUG] : Beginning Read +2022/02/28 12:05:27 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:27 [DEBUG] Begin Injection +2022/02/28 12:05:27 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d9540 1362 [] false false map[] 0xc0000d8200 0xc0000dedc0} +2022/02/28 12:05:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:28 [DEBUG] Exit from do method +2022/02/28 12:05:28 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Read finished successfully +2022/02/28 12:05:28 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:28 [DEBUG] New state was assigned lineage "2cea565f-a273-9313-3d7e-cd4c6387f11b" +2022/02/28 12:05:28 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:28 [DEBUG] Begin Injection +2022/02/28 12:05:28 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ff6040 1362 [] false false map[] 0xc00011a100 0xc0000dedc0} +2022/02/28 12:05:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:28 [DEBUG] Exit from do method +2022/02/28 12:05:28 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:05:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:28 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:28 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:28 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:05:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:28 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:28 [DEBUG] : Beginning Read +2022/02/28 12:05:28 HTTP request GET mso/api/v1/tenants +2022/02/28 12:05:28 [DEBUG] Begin Injection +2022/02/28 12:05:28 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:05:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:05:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:05:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ff68c0 5563 [] false false map[] 0xc000078300 0xc0000dedc0} +2022/02/28 12:05:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:05:28 [DEBUG] Exit from do method +2022/02/28 12:05:28 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:05:28 [DEBUG] 621c6d2c1d000019644fba34: Beginning Read +2022/02/28 12:05:28 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:28 [DEBUG] Begin Injection +2022/02/28 12:05:28 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:28 [DEBUG] 621c6d2d1b0000050bfd0c3b: Beginning Read +2022/02/28 12:05:28 id: 621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:28 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:28 [DEBUG] Begin Injection +2022/02/28 12:05:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ff7340 1362 [] false false map[] 0xc000078800 0xc0000dedc0} +2022/02/28 12:05:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:29 [DEBUG] Exit from do method +2022/02/28 12:05:29 [DEBUG] 621c6d2c1d000019644fba34: Read finished successfully +2022/02/28 12:05:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:05:29 [DEBUG] acctest_phtdv: Beginning Read +2022/02/28 12:05:29 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:29 [DEBUG] Begin Injection +2022/02/28 12:05:29 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001071d80 160 [] false false map[] 0xc000f2aa00 0xc0000de9a0} +2022/02/28 12:05:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b {"id":"621c6d2d1b0000050bfd0c3b","name":"acctest_phtdv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:05:29 [DEBUG] Exit from do method +2022/02/28 12:05:29 [DEBUG] 621c6d2d1b0000050bfd0c3b: Read finished successfully +2022/02/28 12:05:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ff7c80 1362 [] false false map[] 0xc0000d8400 0xc0000dedc0} +2022/02/28 12:05:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:29 [DEBUG] Exit from do method +2022/02/28 12:05:29 currentvrfname acctest_phtdv +2022/02/28 12:05:29 found correct vrfname +2022/02/28 12:05:29 [DEBUG] acctest_phtdv: Read finished successfully +2022/02/28 12:05:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:05:29 [DEBUG] acctest_phtdv: Beginning Read +2022/02/28 12:05:29 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:29 [DEBUG] Begin Injection +2022/02/28 12:05:29 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001071e40 1362 [] false false map[] 0xc00011a700 0xc0000dedc0} +2022/02/28 12:05:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:29 [DEBUG] Exit from do method +2022/02/28 12:05:29 [DEBUG] acctest_phtdv: Read finished successfully +2022/02/28 12:05:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:29 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Beginning Read +2022/02/28 12:05:29 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:29 [DEBUG] Begin Injection +2022/02/28 12:05:29 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000999080 1362 [] false false map[] 0xc000f2b000 0xc0000dedc0} +2022/02/28 12:05:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:30 [DEBUG] Exit from do method +2022/02/28 12:05:30 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Read finished successfully +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:30 [DEBUG] : Beginning Read +2022/02/28 12:05:30 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:30 [DEBUG] Begin Injection +2022/02/28 12:05:30 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000589ac0 1362 [] false false map[] 0xc0000d8600 0xc0000dedc0} +2022/02/28 12:05:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:30 [DEBUG] Exit from do method +2022/02/28 12:05:30 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Read finished successfully +2022/02/28 12:05:30 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:30 [DEBUG] New state was assigned lineage "1d8eb59c-2f6f-a368-371f-7df7f981fdc4" +2022/02/28 12:05:30 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:05:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:30 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:30 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:30 [DEBUG] Test: Executing step 5 +2022/02/28 12:05:30 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:30 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:05:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:05:30 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:05:30 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:30 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:05:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:30 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:30 [DEBUG] : Beginning Read +2022/02/28 12:05:30 HTTP request GET mso/api/v1/tenants +2022/02/28 12:05:30 [DEBUG] Begin Injection +2022/02/28 12:05:30 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:05:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:05:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:05:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087c3c0 5563 [] false false map[] 0xc00011a800 0xc0000dedc0} +2022/02/28 12:05:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:05:30 [DEBUG] Exit from do method +2022/02/28 12:05:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:05:30 [DEBUG] 621c6d2c1d000019644fba34: Beginning Read +2022/02/28 12:05:30 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:30 [DEBUG] 621c6d2d1b0000050bfd0c3b: Beginning Read +2022/02/28 12:05:30 id: 621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:30 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:30 [DEBUG] Begin Injection +2022/02/28 12:05:30 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:30 [DEBUG] Begin Injection +2022/02/28 12:05:30 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b +2022/02/28 12:05:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000098840 160 [] false false map[] 0xc000f2ad00 0xc0000dedc0} +2022/02/28 12:05:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b {"id":"621c6d2d1b0000050bfd0c3b","name":"acctest_phtdv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:05:31 [DEBUG] Exit from do method +2022/02/28 12:05:31 [DEBUG] 621c6d2d1b0000050bfd0c3b: Read finished successfully +2022/02/28 12:05:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000098900 1362 [] false false map[] 0xc00011ad00 0xc0000de9a0} +2022/02/28 12:05:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:31 [DEBUG] Exit from do method +2022/02/28 12:05:31 [DEBUG] 621c6d2c1d000019644fba34: Read finished successfully +2022/02/28 12:05:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:05:31 [DEBUG] acctest_phtdv: Beginning Read +2022/02/28 12:05:31 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:31 [DEBUG] Begin Injection +2022/02/28 12:05:31 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000099cc0 1362 [] false false map[] 0xc000078600 0xc0000de9a0} +2022/02/28 12:05:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:31 [DEBUG] Exit from do method +2022/02/28 12:05:31 currentvrfname acctest_phtdv +2022/02/28 12:05:31 found correct vrfname +2022/02/28 12:05:31 [DEBUG] acctest_phtdv: Read finished successfully +2022/02/28 12:05:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:05:31 [DEBUG] acctest_phtdv: Beginning Read +2022/02/28 12:05:31 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:31 [DEBUG] Begin Injection +2022/02/28 12:05:31 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c180 1362 [] false false map[] 0xc000e3a300 0xc0000de9a0} +2022/02/28 12:05:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:31 [DEBUG] Exit from do method +2022/02/28 12:05:31 [DEBUG] acctest_phtdv: Read finished successfully +2022/02/28 12:05:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:31 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Beginning Read +2022/02/28 12:05:31 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:31 [DEBUG] Begin Injection +2022/02/28 12:05:31 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000098800 1362 [] false false map[] 0xc000078300 0xc0000de9a0} +2022/02/28 12:05:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:32 [DEBUG] Exit from do method +2022/02/28 12:05:32 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Read finished successfully +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:32 [DEBUG] : Beginning Read +2022/02/28 12:05:32 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:32 [DEBUG] Begin Injection +2022/02/28 12:05:32 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 +2022/02/28 12:05:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087c680 1362 [] false false map[] 0xc00011a600 0xc0000de9a0} +2022/02/28 12:05:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:05:32 [DEBUG] Exit from do method +2022/02/28 12:05:32 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 12:05:32 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 12:05:32 [DEBUG] New state was assigned lineage "fd892397-f09c-9be3-1b1b-4c7bbf045041" +2022/02/28 12:05:32 [DEBUG] Test: Executing step 6 +2022/02/28 12:05:32 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:05:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:32 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:05:32 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "uyeiy" is not expected here. +2022/02/28 12:05:32 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "uyeiy" is not expected here. +2022/02/28 12:05:32 [DEBUG] Test: Executing step 7 +2022/02/28 12:05:32 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:05:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:32 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:05:32 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:32 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:05:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:32 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:05:32 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:32 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:32 [DEBUG] : Beginning Read +2022/02/28 12:05:32 HTTP request GET mso/api/v1/tenants +2022/02/28 12:05:32 [DEBUG] Begin Injection +2022/02/28 12:05:32 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:05:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:05:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:05:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d80c0 5563 [] false false map[] 0xc000079200 0xc0000de9a0} +2022/02/28 12:05:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:05:32 [DEBUG] Exit from do method +2022/02/28 12:05:32 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:05:32 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:32 [DEBUG] New state was assigned lineage "5e110db2-2852-f5cf-4d1a-4886a4fbcd22" +2022/02/28 12:05:32 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:05:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:32 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:32 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:05:32 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:05:32 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:05:32 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:05:32 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:32 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:32 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:32 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_phtdv" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_phtdv" + schema_id: "" => "" + template_name: "" => "acctest_266fh" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_phtdv" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_266fh" + template_name: "" => "acctest_266fh" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_phtdv" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_phtdv" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_266fh" + vrf_name: "" => "acctest_phtdv" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_phtdv" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_phtdv" + schema_id: "" => "" + template_name: "" => "acctest_266fh" + version: "" => "1" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_phtdv" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_phtdv" + schema_id: "" => "" + template: "" => "acctest_266fh" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:05:32 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:05:32 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:05:32 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:05:32 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:05:32 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:32 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:05:32 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:05:32 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:05:32 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:05:32 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:05:32 [DEBUG] Schema: Beginning Creation +2022/02/28 12:05:32 [DEBUG] : Beginning Create +2022/02/28 12:05:32 HTTP request POST mso/api/v1/schemas +2022/02/28 12:05:32 [DEBUG] Begin Injection +2022/02/28 12:05:32 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:05:32 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:05:32 [DEBUG] Begin Injection +2022/02/28 12:05:32 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:05:32 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ] Content-Type:[application/json]] {{"displayName":"acctest_266fh","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_266fh","externalEpgs":[],"filters":[],"name":"acctest_266fh","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x617ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} +2022/02/28 12:05:32 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_phtdv","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x617ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} +2022/02/28 12:05:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:05:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:05:33 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:05:33 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[122] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:33 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c180 122 [] false false map[] 0xc000f0e500 0xc0000dedc0} +2022/02/28 12:05:33 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"code":140,"message":"Duplicate Resource: displayName","info":{"displayName":["Schema: 'acctest_266fh' already exists"]}} +2022/02/28 12:05:33 [DEBUG] Exit from do method +2022/02/28 12:05:33 [DEBUG] mso_schema.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_266fh' already exists"]} +2022/02/28 12:05:33 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_266fh' already exists"]} +2022/02/28 12:05:33 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_266fh' already exists"]} +2022/02/28 12:05:33 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:05:33 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[108] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:33 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013c4040 108 [] false false map[] 0xc000078c00 0xc0000de9a0} +2022/02/28 12:05:33 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":140,"message":"Duplicate Resource: name","info":{"name":["Policy: 'acctest_phtdv' already exists"]}} +2022/02/28 12:05:33 [DEBUG] Exit from do method +2022/02/28 12:05:33 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: name"{"name":["Policy: 'acctest_phtdv' already exists"]} +2022/02/28 12:05:33 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_phtdv' already exists"]} +2022/02/28 12:05:33 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_phtdv' already exists"]} +2022/02/28 12:05:33 [DEBUG] New state was assigned lineage "93f019e2-4d72-1c0a-116a-9ed7e5e405b7" +2022/02/28 12:05:33 [WARN] Test: Executing destroy step +2022/02/28 12:05:33 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:33 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:05:33 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:05:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:33 [DEBUG] : Beginning Read +2022/02/28 12:05:33 HTTP request GET mso/api/v1/tenants +2022/02/28 12:05:33 [DEBUG] Begin Injection +2022/02/28 12:05:33 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:05:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:05:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:05:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087c4c0 5563 [] false false map[] 0xc00011ad00 0xc0000de9a0} +2022/02/28 12:05:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:05:33 [DEBUG] Exit from do method +2022/02/28 12:05:33 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:05:33 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:05:33 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:05:33 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:05:33 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:05:33 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:33 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:33 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:33 [DEBUG] New state was assigned lineage "296d577f-19fc-7b48-c884-cb5261bddac0" +2022/02/28 12:05:33 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:33 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:05:33 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:05:33 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:05:33 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 12:05:33 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:33 [DEBUG] New state was assigned lineage "81c3cc85-0015-0f30-20ad-a12b285a7421" +2022/02/28 12:05:33 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:05:33 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:05:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:05:33 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:33 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:05:33 [DEBUG] : Beginning Read +2022/02/28 12:05:33 HTTP request GET mso/api/v1/tenants +2022/02/28 12:05:33 [DEBUG] Begin Injection +2022/02/28 12:05:33 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:05:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:05:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:05:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087c400 5563 [] false false map[] 0xc00063e200 0xc0000de9a0} +2022/02/28 12:05:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:05:34 [DEBUG] Exit from do method +2022/02/28 12:05:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:05:34 [DEBUG] provider has no plugin.Client +2022/02/28 12:05:34 [DEBUG] New state was assigned lineage "9c27750d-30b6-d0ab-cf4b-4b4f2a71669c" +2022/02/28 12:05:34 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:05:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:05:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:05:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:05:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:05:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:05:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:05:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:05:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:05:34 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:10:05 [DEBUG] Test: Executing step 0 +2022/02/28 12:10:05 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:05 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:10:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:05 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:10:05 [DEBUG] Test: Executing step 1 +2022/02/28 12:10:05 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:05 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:10:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:05 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:10:05 [DEBUG] Test: Executing step 2 +2022/02/28 12:10:05 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:05 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:10:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:05 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:10:05 [DEBUG] Test: Executing step 3 +2022/02/28 12:10:05 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:05 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:10:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:05 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:10:05 [DEBUG] Test: Executing step 4 +2022/02/28 12:10:05 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:05 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:10:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:05 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:10:05 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:05 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:10:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:05 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:10:05 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:05 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:05 [DEBUG] : Beginning Read +2022/02/28 12:10:05 HTTP request GET mso/api/v1/tenants +2022/02/28 12:10:05 [DEBUG] Begin Injection +2022/02/28 12:10:05 HTTP request POST /login +2022/02/28 12:10:05 HTTP request after injection POST /login +2022/02/28 12:10:05 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 12:10:07 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 12:10:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:06 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000374b80 -1 [chunked] false false map[] 0xc000c82800 0xc000bd40b0} +2022/02/28 12:10:07 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug"} +2022/02/28 12:10:07 [DEBUG] Exit from do method +2022/02/28 12:10:07 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:10:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:10:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:10:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000374d40 5563 [] false false map[] 0xc000c82100 0xc000bd40b0} +2022/02/28 12:10:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:10:07 [DEBUG] Exit from do method +2022/02/28 12:10:07 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:10:07 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:07 [DEBUG] New state was assigned lineage "c43c4bc0-a9d7-d1a6-8599-aabbb72e48dd" +2022/02/28 12:10:07 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:10:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:07 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:07 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:10:07 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:10:07 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:10:07 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:10:07 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:07 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:07 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:07 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_jew33" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_jew33" + schema_id: "" => "" + template_name: "" => "acctest_qexpv" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_jew33" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_qexpv" + template_name: "" => "acctest_qexpv" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_jew33" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_jew33" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_qexpv" + vrf_name: "" => "acctest_jew33" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_jew33" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_jew33" + schema_id: "" => "" + template_name: "" => "acctest_qexpv" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_jew33" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_jew33" + schema_id: "" => "" + template: "" => "acctest_qexpv" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:10:07 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:10:07 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:10:07 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:10:07 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:07 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:10:07 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:10:07 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state)] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:10:07 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:10:07 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:10:07 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:10:07 [DEBUG] : Beginning Create +2022/02/28 12:10:07 [DEBUG] Schema: Beginning Creation +2022/02/28 12:10:07 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:10:07 [DEBUG] Begin Injection +2022/02/28 12:10:07 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:10:07 HTTP request POST mso/api/v1/schemas +2022/02/28 12:10:07 [DEBUG] Begin Injection +2022/02/28 12:10:07 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug] Content-Type:[application/json]] {{"desc":"","name":"acctest_jew33","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x1297ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:10:07 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:10:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:10:07 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug] Content-Type:[application/json]] {{"displayName":"acctest_qexpv","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_qexpv","externalEpgs":[],"filters":[],"name":"acctest_qexpv","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x1297ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:10:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:10:07 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:10:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd8100 160 [] false false map[] 0xc000c82b00 0xc000bd40b0} +2022/02/28 12:10:07 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6e471b0000470bfd0c3c","name":"acctest_jew33","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:10:07 [DEBUG] Exit from do method +2022/02/28 12:10:07 [DEBUG] 621c6e471b0000470bfd0c3c: Creation finished successfully +2022/02/28 12:10:07 [DEBUG] 621c6e471b0000470bfd0c3c: Beginning Read +2022/02/28 12:10:07 id: 621c6e471b0000470bfd0c3c +2022/02/28 12:10:07 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c +2022/02/28 12:10:07 [DEBUG] Begin Injection +2022/02/28 12:10:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c +2022/02/28 12:10:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c +2022/02/28 12:10:08 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:10:08 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6e481d000065644fba3c] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd8500 400 [] false false map[] 0xc00057e500 0xc000bd40b0} +2022/02/28 12:10:08 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:10:08 [DEBUG] Exit from do method +2022/02/28 12:10:08 [DEBUG] 621c6e481d000065644fba3c: Schema Creation finished successfully +2022/02/28 12:10:08 [DEBUG] 621c6e481d000065644fba3c: Beginning Read +2022/02/28 12:10:08 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:08 [DEBUG] Begin Injection +2022/02/28 12:10:08 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c +2022/02/28 12:10:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd8640 160 [] false false map[] 0xc00017e400 0xc000b94840} +2022/02/28 12:10:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c {"id":"621c6e471b0000470bfd0c3c","name":"acctest_jew33","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:10:08 [DEBUG] Exit from do method +2022/02/28 12:10:08 [DEBUG] 621c6e471b0000470bfd0c3c: Read finished successfully +2022/02/28 12:10:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000804680 400 [] false false map[] 0xc000c82e00 0xc000bd40b0} +2022/02/28 12:10:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:10:08 [DEBUG] Exit from do method +2022/02/28 12:10:08 [DEBUG] 621c6e481d000065644fba3c: Read finished successfully +2022/02/28 12:10:08 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:10:08 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:10:08 HTTP request PATCH mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:08 [DEBUG] Begin Injection +2022/02/28 12:10:08 HTTP request after injection PATCH mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:09 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:09 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:40:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000aea00 0xc000bd40b0} +2022/02/28 12:10:09 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:09 [DEBUG] acctest_jew33: Creation finished successfully +2022/02/28 12:10:09 [DEBUG] acctest_jew33: Beginning Read +2022/02/28 12:10:09 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:09 [DEBUG] Begin Injection +2022/02/28 12:10:09 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd87c0 768 [] false false map[] 0xc0000aed00 0xc000b949a0} +2022/02/28 12:10:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 12:10:09 [DEBUG] Exit from do method +2022/02/28 12:10:09 currentvrfname acctest_jew33 +2022/02/28 12:10:09 found correct vrfname +2022/02/28 12:10:09 [DEBUG] acctest_jew33: Read finished successfully +2022/02/28 12:10:09 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:10:09 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:10:09 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:10:09 HTTP request PATCH mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:09 [DEBUG] Begin Injection +2022/02/28 12:10:09 HTTP request after injection PATCH mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:09 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:09 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:40:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00082e000 0xc000b949a0} +2022/02/28 12:10:09 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:09 [DEBUG] : Beginning Read +2022/02/28 12:10:09 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:09 [DEBUG] Begin Injection +2022/02/28 12:10:09 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6200 1277 [] false false map[] 0xc00057e000 0xc000b949a0} +2022/02/28 12:10:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:10:10 [DEBUG] Exit from do method +2022/02/28 12:10:10 [DEBUG] acctest_jew33: Read finished successfully +2022/02/28 12:10:10 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:10:10 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:10:10 HTTP request PATCH mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:10 [DEBUG] Begin Injection +2022/02/28 12:10:10 HTTP request after injection PATCH mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:10 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:40:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00057e400 0xc000b949a0} +2022/02/28 12:10:10 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false +2022/02/28 12:10:10 [DEBUG] Creation Complete +2022/02/28 12:10:10 [DEBUG] : Beginning Read +2022/02/28 12:10:10 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:10 [DEBUG] Begin Injection +2022/02/28 12:10:10 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006ccdc0 1362 [] false false map[] 0xc00017e000 0xc000b949a0} +2022/02/28 12:10:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:10 [DEBUG] Exit from do method +2022/02/28 12:10:10 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Read finished successfully +2022/02/28 12:10:10 [DEBUG] : Beginning Read +2022/02/28 12:10:10 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:10 [DEBUG] Begin Injection +2022/02/28 12:10:10 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050d8c0 1362 [] false false map[] 0xc00057e800 0xc000b949a0} +2022/02/28 12:10:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:11 [DEBUG] Exit from do method +2022/02/28 12:10:11 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Read finished successfully +2022/02/28 12:10:11 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:11 [DEBUG] New state was assigned lineage "6b6092d0-b330-ed63-adc4-ec3fbb67d218" +2022/02/28 12:10:11 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:11 [DEBUG] Begin Injection +2022/02/28 12:10:11 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000f2040 1362 [] false false map[] 0xc00057e900 0xc000b949a0} +2022/02/28 12:10:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:11 [DEBUG] Exit from do method +2022/02/28 12:10:11 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:10:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:10:11 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:11 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:11 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:10:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:11 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:11 [DEBUG] : Beginning Read +2022/02/28 12:10:11 HTTP request GET mso/api/v1/tenants +2022/02/28 12:10:11 [DEBUG] Begin Injection +2022/02/28 12:10:11 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:10:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:10:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:10:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd98c0 5563 [] false false map[] 0xc000f19900 0xc000b949a0} +2022/02/28 12:10:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:10:11 [DEBUG] Exit from do method +2022/02/28 12:10:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:10:11 [DEBUG] 621c6e471b0000470bfd0c3c: Beginning Read +2022/02/28 12:10:11 id: 621c6e471b0000470bfd0c3c +2022/02/28 12:10:11 [DEBUG] 621c6e481d000065644fba3c: Beginning Read +2022/02/28 12:10:11 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:11 [DEBUG] Begin Injection +2022/02/28 12:10:11 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c +2022/02/28 12:10:11 [DEBUG] Begin Injection +2022/02/28 12:10:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c +2022/02/28 12:10:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c +2022/02/28 12:10:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000560040 1362 [] false false map[] 0xc00057e000 0xc000b94840} +2022/02/28 12:10:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:12 [DEBUG] Exit from do method +2022/02/28 12:10:12 [DEBUG] 621c6e481d000065644fba3c: Read finished successfully +2022/02/28 12:10:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:10:12 [DEBUG] acctest_jew33: Beginning Read +2022/02/28 12:10:12 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 [DEBUG] Begin Injection +2022/02/28 12:10:12 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c +2022/02/28 12:10:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050d280 160 [] false false map[] 0xc000ec6700 0xc000b949a0} +2022/02/28 12:10:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c {"id":"621c6e471b0000470bfd0c3c","name":"acctest_jew33","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:10:12 [DEBUG] Exit from do method +2022/02/28 12:10:12 [DEBUG] 621c6e471b0000470bfd0c3c: Read finished successfully +2022/02/28 12:10:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050d740 1362 [] false false map[] 0xc00057e500 0xc000b94840} +2022/02/28 12:10:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:12 [DEBUG] Exit from do method +2022/02/28 12:10:12 currentvrfname acctest_jew33 +2022/02/28 12:10:12 found correct vrfname +2022/02/28 12:10:12 [DEBUG] acctest_jew33: Read finished successfully +2022/02/28 12:10:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:10:12 [DEBUG] acctest_jew33: Beginning Read +2022/02/28 12:10:12 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 [DEBUG] Begin Injection +2022/02/28 12:10:12 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000aaafc0 1362 [] false false map[] 0xc00057ea00 0xc000b94840} +2022/02/28 12:10:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:12 [DEBUG] Exit from do method +2022/02/28 12:10:12 [DEBUG] acctest_jew33: Read finished successfully +2022/02/28 12:10:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:12 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Beginning Read +2022/02/28 12:10:12 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 [DEBUG] Begin Injection +2022/02/28 12:10:12 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000aab8c0 1362 [] false false map[] 0xc000ec6a00 0xc000b94840} +2022/02/28 12:10:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:12 [DEBUG] Exit from do method +2022/02/28 12:10:12 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Read finished successfully +2022/02/28 12:10:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:12 [DEBUG] : Beginning Read +2022/02/28 12:10:12 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 [DEBUG] Begin Injection +2022/02/28 12:10:12 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd9ec0 1362 [] false false map[] 0xc000ec6d00 0xc000b94840} +2022/02/28 12:10:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:13 [DEBUG] Exit from do method +2022/02/28 12:10:13 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Read finished successfully +2022/02/28 12:10:13 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:13 [DEBUG] New state was assigned lineage "feef82b8-2061-f8a2-14c4-694374d7e052" +2022/02/28 12:10:13 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:10:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:13 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:13 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:13 [DEBUG] Test: Executing step 5 +2022/02/28 12:10:13 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:13 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:10:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:13 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:10:13 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:13 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:10:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:13 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:13 [DEBUG] : Beginning Read +2022/02/28 12:10:13 HTTP request GET mso/api/v1/tenants +2022/02/28 12:10:13 [DEBUG] Begin Injection +2022/02/28 12:10:13 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:10:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:10:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:10:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00079d980 5563 [] false false map[] 0xc000d22500 0xc000b94840} +2022/02/28 12:10:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:10:13 [DEBUG] Exit from do method +2022/02/28 12:10:13 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:10:13 [DEBUG] 621c6e471b0000470bfd0c3c: Beginning Read +2022/02/28 12:10:13 id: 621c6e471b0000470bfd0c3c +2022/02/28 12:10:13 [DEBUG] 621c6e481d000065644fba3c: Beginning Read +2022/02/28 12:10:13 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c +2022/02/28 12:10:13 [DEBUG] Begin Injection +2022/02/28 12:10:13 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c +2022/02/28 12:10:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c +2022/02/28 12:10:13 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:13 [DEBUG] Begin Injection +2022/02/28 12:10:13 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c +2022/02/28 12:10:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050cd00 160 [] false false map[] 0xc001238300 0xc000b94840} +2022/02/28 12:10:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c {"id":"621c6e471b0000470bfd0c3c","name":"acctest_jew33","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:10:13 [DEBUG] Exit from do method +2022/02/28 12:10:13 [DEBUG] 621c6e471b0000470bfd0c3c: Read finished successfully +2022/02/28 12:10:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000804140 1362 [] false false map[] 0xc00017f000 0xc000b949a0} +2022/02/28 12:10:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:14 [DEBUG] Exit from do method +2022/02/28 12:10:14 [DEBUG] 621c6e481d000065644fba3c: Read finished successfully +2022/02/28 12:10:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:10:14 [DEBUG] acctest_jew33: Beginning Read +2022/02/28 12:10:14 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:14 [DEBUG] Begin Injection +2022/02/28 12:10:14 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000375dc0 1362 [] false false map[] 0xc000d22c00 0xc000b949a0} +2022/02/28 12:10:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:14 [DEBUG] Exit from do method +2022/02/28 12:10:14 currentvrfname acctest_jew33 +2022/02/28 12:10:14 found correct vrfname +2022/02/28 12:10:14 [DEBUG] acctest_jew33: Read finished successfully +2022/02/28 12:10:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:10:14 [DEBUG] acctest_jew33: Beginning Read +2022/02/28 12:10:14 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:14 [DEBUG] Begin Injection +2022/02/28 12:10:14 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000804240 1362 [] false false map[] 0xc00017f300 0xc000b949a0} +2022/02/28 12:10:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:14 [DEBUG] Exit from do method +2022/02/28 12:10:14 [DEBUG] acctest_jew33: Read finished successfully +2022/02/28 12:10:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:14 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Beginning Read +2022/02/28 12:10:14 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:14 [DEBUG] Begin Injection +2022/02/28 12:10:14 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000804080 1362 [] false false map[] 0xc001260300 0xc000b949a0} +2022/02/28 12:10:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:15 [DEBUG] Exit from do method +2022/02/28 12:10:15 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Read finished successfully +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:15 [DEBUG] : Beginning Read +2022/02/28 12:10:15 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:15 [DEBUG] Begin Injection +2022/02/28 12:10:15 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c +2022/02/28 12:10:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000aaaa80 1362 [] false false map[] 0xc000420100 0xc000b949a0} +2022/02/28 12:10:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:10:15 [DEBUG] Exit from do method +2022/02/28 12:10:15 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 12:10:15 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 12:10:15 [DEBUG] New state was assigned lineage "4d87ce93-bbc9-c318-42ec-7f4cf794a824" +2022/02/28 12:10:15 [DEBUG] Test: Executing step 6 +2022/02/28 12:10:15 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:10:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:10:15 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:10:15 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "jpgie" is not expected here. +2022/02/28 12:10:15 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "jpgie" is not expected here. +2022/02/28 12:10:15 [DEBUG] Test: Executing step 7 +2022/02/28 12:10:15 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:10:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:10:15 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:10:15 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:15 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:10:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:15 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:10:15 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:15 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:15 [DEBUG] : Beginning Read +2022/02/28 12:10:15 HTTP request GET mso/api/v1/tenants +2022/02/28 12:10:15 [DEBUG] Begin Injection +2022/02/28 12:10:15 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:10:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:10:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:10:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7980 5563 [] false false map[] 0xc000d26c00 0xc000b949a0} +2022/02/28 12:10:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:10:15 [DEBUG] Exit from do method +2022/02/28 12:10:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:10:15 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:15 [DEBUG] New state was assigned lineage "f0b13fcd-03b5-4692-b88c-6e2d67078e0d" +2022/02/28 12:10:15 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:10:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:15 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:15 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:10:15 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:10:15 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:10:15 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:10:15 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:15 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:15 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:15 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_jew33" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_jew33" + schema_id: "" => "" + template_name: "" => "acctest_qexpv" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_jew33" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_qexpv" + template_name: "" => "acctest_qexpv" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_jew33" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_jew33" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_qexpv" + vrf_name: "" => "acctest_jew33" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_jew33" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_jew33" + schema_id: "" => "" + template_name: "" => "acctest_qexpv" + version: "" => "1" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_jew33" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_jew33" + schema_id: "" => "" + template: "" => "acctest_qexpv" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:10:15 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:10:15 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:10:15 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:10:15 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:15 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:10:15 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:10:15 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:15 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:10:15 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:10:15 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:10:15 [DEBUG] Schema: Beginning Creation +2022/02/28 12:10:15 [DEBUG] : Beginning Create +2022/02/28 12:10:15 HTTP request POST mso/api/v1/schemas +2022/02/28 12:10:15 [DEBUG] Begin Injection +2022/02/28 12:10:15 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:10:15 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:10:15 [DEBUG] Begin Injection +2022/02/28 12:10:15 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:10:15 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug] Content-Type:[application/json]] {{"displayName":"acctest_qexpv","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_qexpv","externalEpgs":[],"filters":[],"name":"acctest_qexpv","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x1297ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:10:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:10:15 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug] Content-Type:[application/json]] {{"desc":"","name":"acctest_jew33","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x1297ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:10:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:10:16 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:10:16 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[122] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:15 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000f20c0 122 [] false false map[] 0xc00017f500 0xc000b949a0} +2022/02/28 12:10:16 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"code":140,"message":"Duplicate Resource: displayName","info":{"displayName":["Schema: 'acctest_qexpv' already exists"]}} +2022/02/28 12:10:16 [DEBUG] Exit from do method +2022/02/28 12:10:16 [DEBUG] mso_schema.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_qexpv' already exists"]} +2022/02/28 12:10:16 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_qexpv' already exists"]} +2022/02/28 12:10:16 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_qexpv' already exists"]} +2022/02/28 12:10:16 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:10:16 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[108] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:15 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001114040 108 [] false false map[] 0xc000c9a900 0xc000b94840} +2022/02/28 12:10:16 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":140,"message":"Duplicate Resource: name","info":{"name":["Policy: 'acctest_jew33' already exists"]}} +2022/02/28 12:10:16 [DEBUG] Exit from do method +2022/02/28 12:10:16 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: name"{"name":["Policy: 'acctest_jew33' already exists"]} +2022/02/28 12:10:16 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_jew33' already exists"]} +2022/02/28 12:10:16 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_jew33' already exists"]} +2022/02/28 12:10:16 [DEBUG] New state was assigned lineage "a81f966b-1e69-aea7-3348-38115fa468f8" +2022/02/28 12:10:16 [WARN] Test: Executing destroy step +2022/02/28 12:10:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:10:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:16 [DEBUG] : Beginning Read +2022/02/28 12:10:16 HTTP request GET mso/api/v1/tenants +2022/02/28 12:10:16 [DEBUG] Begin Injection +2022/02/28 12:10:16 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:10:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:10:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:10:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d700c0 5563 [] false false map[] 0xc00017e800 0xc000b94840} +2022/02/28 12:10:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:10:16 [DEBUG] Exit from do method +2022/02/28 12:10:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:10:16 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:10:16 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:10:16 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:10:16 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:10:16 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:16 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:16 [DEBUG] New state was assigned lineage "f1a5668a-84fc-8cc0-1166-40d21702a711" +2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:10:16 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 12:10:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:16 [DEBUG] New state was assigned lineage "9c9acf6e-d4ff-9357-7288-3171ca8fa12f" +2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:10:16 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:10:16 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:16 [DEBUG] : Beginning Read +2022/02/28 12:10:16 HTTP request GET mso/api/v1/tenants +2022/02/28 12:10:16 [DEBUG] Begin Injection +2022/02/28 12:10:16 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:10:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:10:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:10:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000804ac0 5563 [] false false map[] 0xc00017e500 0xc000b94840} +2022/02/28 12:10:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:10:16 [DEBUG] Exit from do method +2022/02/28 12:10:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:10:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:10:16 [DEBUG] New state was assigned lineage "9bf978ed-6cdc-c3c8-22b8-6af2c86f7a82" +2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:17:36 [DEBUG] Test: Executing step 0 +2022/02/28 12:17:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:36 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:17:36 [DEBUG] Test: Executing step 1 +2022/02/28 12:17:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:36 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:17:36 [DEBUG] Test: Executing step 2 +2022/02/28 12:17:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:36 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:17:36 [DEBUG] Test: Executing step 3 +2022/02/28 12:17:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:17:36 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:17:36 [DEBUG] Test: Executing step 4 +2022/02/28 12:17:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:17:36 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:17:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:17:36 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:36 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:36 [DEBUG] : Beginning Read +2022/02/28 12:17:36 HTTP request GET mso/api/v1/tenants +2022/02/28 12:17:36 [DEBUG] Begin Injection +2022/02/28 12:17:36 HTTP request POST /login +2022/02/28 12:17:36 HTTP request after injection POST /login +2022/02/28 12:17:36 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 12:17:38 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 12:17:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:38 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMDU4LCJpYXQiOjE2NDYwMzA4NTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoicGRKRDRKVENKc2YySDZUS3dYcXRtPVlzIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gkv0Ewal5XfmcG5B00ldgZn0-TfLRhdxneP6GhUPoQNmvFwz6iJoY6Qmmf7PQRTH0q34t93d5G_IFlrcz3LAvTSqxSe-P93NU4C1mKm3YG5OA9I9Lbrk80dN-KE5SwvCX3IfUJy4qTlluPpKgh8Uvh9G_HyO6KMKVao6a_oyXWTpFQldF6Dw58_lKUnEzXIrSXzjm-5uoq99X-wX7-AWpREUc3tMaFMTmMM19r6GIVCIw6yLZ69hZGDCWX0GQ0X9cwH4TuQZL5LpAcqSKy8AjYjcvZNgUuTicwKHY_KwCRtRTBcdMmljsTIAxxdXKtp0ZIlczj12obrvQ_tSpFOejQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000a51f80 -1 [chunked] false false map[] 0xc000a56b00 0xc00101c000} +2022/02/28 12:17:38 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMDU4LCJpYXQiOjE2NDYwMzA4NTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoicGRKRDRKVENKc2YySDZUS3dYcXRtPVlzIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gkv0Ewal5XfmcG5B00ldgZn0-TfLRhdxneP6GhUPoQNmvFwz6iJoY6Qmmf7PQRTH0q34t93d5G_IFlrcz3LAvTSqxSe-P93NU4C1mKm3YG5OA9I9Lbrk80dN-KE5SwvCX3IfUJy4qTlluPpKgh8Uvh9G_HyO6KMKVao6a_oyXWTpFQldF6Dw58_lKUnEzXIrSXzjm-5uoq99X-wX7-AWpREUc3tMaFMTmMM19r6GIVCIw6yLZ69hZGDCWX0GQ0X9cwH4TuQZL5LpAcqSKy8AjYjcvZNgUuTicwKHY_KwCRtRTBcdMmljsTIAxxdXKtp0ZIlczj12obrvQ_tSpFOejQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMDU4LCJpYXQiOjE2NDYwMzA4NTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoicGRKRDRKVENKc2YySDZUS3dYcXRtPVlzIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gkv0Ewal5XfmcG5B00ldgZn0-TfLRhdxneP6GhUPoQNmvFwz6iJoY6Qmmf7PQRTH0q34t93d5G_IFlrcz3LAvTSqxSe-P93NU4C1mKm3YG5OA9I9Lbrk80dN-KE5SwvCX3IfUJy4qTlluPpKgh8Uvh9G_HyO6KMKVao6a_oyXWTpFQldF6Dw58_lKUnEzXIrSXzjm-5uoq99X-wX7-AWpREUc3tMaFMTmMM19r6GIVCIw6yLZ69hZGDCWX0GQ0X9cwH4TuQZL5LpAcqSKy8AjYjcvZNgUuTicwKHY_KwCRtRTBcdMmljsTIAxxdXKtp0ZIlczj12obrvQ_tSpFOejQ"} +2022/02/28 12:17:38 [DEBUG] Exit from do method +2022/02/28 12:17:38 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:17:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:17:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:17:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090880 5563 [] false false map[] 0xc000a56a00 0xc00101c000} +2022/02/28 12:17:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:17:38 [DEBUG] Exit from do method +2022/02/28 12:17:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:17:38 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:38 [DEBUG] New state was assigned lineage "1b820bb7-6cc9-c9fb-c7a5-cc109675de29" +2022/02/28 12:17:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:17:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:38 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:38 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:17:38 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:17:38 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:17:38 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:17:38 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:38 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:38 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:38 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_rvzvk_invalid" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_rvzvk" + schema_id: "" => "" + template_name: "" => "acctest_6sh3w" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_rvzvk" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_6sh3w" + template_name: "" => "acctest_6sh3w" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_rvzvk" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_rvzvk" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_6sh3w" + vrf_name: "" => "acctest_rvzvk" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_rvzvk" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_rvzvk" + schema_id: "" => "" + template_name: "" => "acctest_6sh3w" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_rvzvk" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_rvzvk" + schema_id: "" => "" + template: "" => "acctest_6sh3w" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:17:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:17:38 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:17:38 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:17:38 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:17:38 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:17:38 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:17:38 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:17:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:17:38 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:17:38 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:17:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:17:38 [DEBUG] Schema: Beginning Creation +2022/02/28 12:17:38 [DEBUG] : Beginning Create +2022/02/28 12:17:38 HTTP request POST mso/api/v1/schemas +2022/02/28 12:17:38 [DEBUG] Begin Injection +2022/02/28 12:17:38 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:17:38 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMDU4LCJpYXQiOjE2NDYwMzA4NTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoicGRKRDRKVENKc2YySDZUS3dYcXRtPVlzIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gkv0Ewal5XfmcG5B00ldgZn0-TfLRhdxneP6GhUPoQNmvFwz6iJoY6Qmmf7PQRTH0q34t93d5G_IFlrcz3LAvTSqxSe-P93NU4C1mKm3YG5OA9I9Lbrk80dN-KE5SwvCX3IfUJy4qTlluPpKgh8Uvh9G_HyO6KMKVao6a_oyXWTpFQldF6Dw58_lKUnEzXIrSXzjm-5uoq99X-wX7-AWpREUc3tMaFMTmMM19r6GIVCIw6yLZ69hZGDCWX0GQ0X9cwH4TuQZL5LpAcqSKy8AjYjcvZNgUuTicwKHY_KwCRtRTBcdMmljsTIAxxdXKtp0ZIlczj12obrvQ_tSpFOejQ] Content-Type:[application/json]] {{"displayName":"acctest_6sh3w","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_6sh3w","externalEpgs":[],"filters":[],"name":"acctest_6sh3w","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xd27ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} +2022/02/28 12:17:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:17:38 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:17:38 [DEBUG] Begin Injection +2022/02/28 12:17:38 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:17:38 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMDU4LCJpYXQiOjE2NDYwMzA4NTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoicGRKRDRKVENKc2YySDZUS3dYcXRtPVlzIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gkv0Ewal5XfmcG5B00ldgZn0-TfLRhdxneP6GhUPoQNmvFwz6iJoY6Qmmf7PQRTH0q34t93d5G_IFlrcz3LAvTSqxSe-P93NU4C1mKm3YG5OA9I9Lbrk80dN-KE5SwvCX3IfUJy4qTlluPpKgh8Uvh9G_HyO6KMKVao6a_oyXWTpFQldF6Dw58_lKUnEzXIrSXzjm-5uoq99X-wX7-AWpREUc3tMaFMTmMM19r6GIVCIw6yLZ69hZGDCWX0GQ0X9cwH4TuQZL5LpAcqSKy8AjYjcvZNgUuTicwKHY_KwCRtRTBcdMmljsTIAxxdXKtp0ZIlczj12obrvQ_tSpFOejQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_rvzvk","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xd27ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} +2022/02/28 12:17:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:17:39 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:17:39 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c700a1d0000a1644fba41] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091300 400 [] false false map[] 0xc000424a00 0xc00101c000} +2022/02/28 12:17:39 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:17:39 [DEBUG] Exit from do method +2022/02/28 12:17:39 [DEBUG] 621c700a1d0000a1644fba41: Schema Creation finished successfully +2022/02/28 12:17:39 [DEBUG] 621c700a1d0000a1644fba41: Beginning Read +2022/02/28 12:17:39 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:39 [DEBUG] Begin Injection +2022/02/28 12:17:39 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:39 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:17:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c9c0 160 [] false false map[] 0xc000952300 0xc00101c000} +2022/02/28 12:17:39 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c700b1b00009f0bfd0c3d","name":"acctest_rvzvk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:17:39 [DEBUG] Exit from do method +2022/02/28 12:17:39 [DEBUG] 621c700b1b00009f0bfd0c3d: Creation finished successfully +2022/02/28 12:17:39 [DEBUG] 621c700b1b00009f0bfd0c3d: Beginning Read +2022/02/28 12:17:39 id: 621c700b1b00009f0bfd0c3d +2022/02/28 12:17:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:39 [DEBUG] Begin Injection +2022/02/28 12:17:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048cb40 400 [] false false map[] 0xc000516700 0xc00101c000} +2022/02/28 12:17:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:17:39 [DEBUG] Exit from do method +2022/02/28 12:17:39 [DEBUG] 621c700a1d0000a1644fba41: Read finished successfully +2022/02/28 12:17:39 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:17:39 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:17:39 HTTP request PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:39 [DEBUG] Begin Injection +2022/02/28 12:17:39 HTTP request after injection PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c914c0 160 [] false false map[] 0xc000516800 0xc000a648f0} +2022/02/28 12:17:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d {"id":"621c700b1b00009f0bfd0c3d","name":"acctest_rvzvk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:17:40 [DEBUG] Exit from do method +2022/02/28 12:17:40 [DEBUG] 621c700b1b00009f0bfd0c3d: Read finished successfully +2022/02/28 12:17:40 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005f2300 0xc00101c000} +2022/02/28 12:17:40 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:40 [DEBUG] acctest_rvzvk: Creation finished successfully +2022/02/28 12:17:40 [DEBUG] acctest_rvzvk: Beginning Read +2022/02/28 12:17:40 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:40 [DEBUG] Begin Injection +2022/02/28 12:17:40 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c91980 768 [] false false map[] 0xc000516200 0xc00101c0b0} +2022/02/28 12:17:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 12:17:40 [DEBUG] Exit from do method +2022/02/28 12:17:40 currentvrfname acctest_rvzvk +2022/02/28 12:17:40 found correct vrfname +2022/02/28 12:17:40 [DEBUG] acctest_rvzvk: Read finished successfully +2022/02/28 12:17:40 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:17:40 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:17:40 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:17:40 HTTP request PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:40 [DEBUG] Begin Injection +2022/02/28 12:17:40 HTTP request after injection PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:40 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000425000 0xc00101c160} +2022/02/28 12:17:40 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:40 [DEBUG] : Beginning Read +2022/02/28 12:17:40 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:40 [DEBUG] Begin Injection +2022/02/28 12:17:40 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090940 1277 [] false false map[] 0xc0005f2500 0xc00101c160} +2022/02/28 12:17:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:17:41 [DEBUG] Exit from do method +2022/02/28 12:17:41 [DEBUG] acctest_rvzvk: Read finished successfully +2022/02/28 12:17:41 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:17:41 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:17:41 HTTP request PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:41 [DEBUG] Begin Injection +2022/02/28 12:17:41 HTTP request after injection PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:41 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a56400 0xc00101c160} +2022/02/28 12:17:41 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:41 [DEBUG] Creation Complete +2022/02/28 12:17:41 [DEBUG] : Beginning Read +2022/02/28 12:17:41 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:41 [DEBUG] Begin Injection +2022/02/28 12:17:41 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c91d00 1362 [] false false map[] 0xc000952200 0xc00101c160} +2022/02/28 12:17:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:41 [DEBUG] Exit from do method +2022/02/28 12:17:41 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully +2022/02/28 12:17:42 [DEBUG] : Beginning Read +2022/02/28 12:17:42 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:42 [DEBUG] Begin Injection +2022/02/28 12:17:42 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c040 1362 [] false false map[] 0xc000952400 0xc00101c160} +2022/02/28 12:17:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:42 [DEBUG] Exit from do method +2022/02/28 12:17:42 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 12:17:42 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 12:17:42 [DEBUG] New state was assigned lineage "958016f9-e715-e765-15fd-083aaf25989a" +2022/02/28 12:17:42 [DEBUG] Test: Executing step 5 +2022/02/28 12:17:42 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:42 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:17:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:42 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:17:42 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "eylqt" is not expected here. +2022/02/28 12:17:42 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "eylqt" is not expected here. +2022/02/28 12:17:42 [DEBUG] Test: Executing step 6 +2022/02/28 12:17:42 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:42 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:17:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:42 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:17:42 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:42 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:17:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:17:42 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:42 [DEBUG] : Beginning Read +2022/02/28 12:17:42 HTTP request GET mso/api/v1/tenants +2022/02/28 12:17:42 [DEBUG] Begin Injection +2022/02/28 12:17:42 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:17:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:17:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:17:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d1cec0 5563 [] false false map[] 0xc000e24400 0xc00101c160} +2022/02/28 12:17:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:17:42 [DEBUG] Exit from do method +2022/02/28 12:17:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:17:42 [DEBUG] 621c700a1d0000a1644fba41: Beginning Read +2022/02/28 12:17:42 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:42 [DEBUG] Begin Injection +2022/02/28 12:17:42 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:42 [DEBUG] 621c700b1b00009f0bfd0c3d: Beginning Read +2022/02/28 12:17:42 id: 621c700b1b00009f0bfd0c3d +2022/02/28 12:17:42 HTTP request GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:42 [DEBUG] Begin Injection +2022/02/28 12:17:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb0040 160 [] false false map[] 0xc0011a8c00 0xc000a648f0} +2022/02/28 12:17:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d {"id":"621c700b1b00009f0bfd0c3d","name":"acctest_rvzvk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:17:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000428340 1362 [] false false map[] 0xc000e24b00 0xc00101c160} +2022/02/28 12:17:43 [DEBUG] Exit from do method +2022/02/28 12:17:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:43 [DEBUG] Exit from do method +2022/02/28 12:17:43 [DEBUG] 621c700a1d0000a1644fba41: Read finished successfully +2022/02/28 12:17:43 [DEBUG] 621c700b1b00009f0bfd0c3d: Read finished successfully +2022/02/28 12:17:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:17:43 [DEBUG] acctest_rvzvk: Beginning Read +2022/02/28 12:17:43 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:43 [DEBUG] Begin Injection +2022/02/28 12:17:43 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000428780 1362 [] false false map[] 0xc000516200 0xc00101c160} +2022/02/28 12:17:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:43 [DEBUG] Exit from do method +2022/02/28 12:17:43 currentvrfname acctest_rvzvk +2022/02/28 12:17:43 found correct vrfname +2022/02/28 12:17:43 [DEBUG] acctest_rvzvk: Read finished successfully +2022/02/28 12:17:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:17:43 [DEBUG] acctest_rvzvk: Beginning Read +2022/02/28 12:17:43 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:43 [DEBUG] Begin Injection +2022/02/28 12:17:43 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ea4240 1362 [] false false map[] 0xc0011a8500 0xc00101c160} +2022/02/28 12:17:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:43 [DEBUG] Exit from do method +2022/02/28 12:17:43 [DEBUG] acctest_rvzvk: Read finished successfully +2022/02/28 12:17:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:43 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Beginning Read +2022/02/28 12:17:43 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:43 [DEBUG] Begin Injection +2022/02/28 12:17:43 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004297c0 1362 [] false false map[] 0xc000952400 0xc00101c160} +2022/02/28 12:17:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:44 [DEBUG] Exit from do method +2022/02/28 12:17:44 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully +2022/02/28 12:17:44 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:44 [DEBUG] : Beginning Read +2022/02/28 12:17:44 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:44 [DEBUG] Begin Injection +2022/02/28 12:17:44 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c900 1362 [] false false map[] 0xc0011a8700 0xc00101c160} +2022/02/28 12:17:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:44 [DEBUG] Exit from do method +2022/02/28 12:17:44 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully +2022/02/28 12:17:44 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:44 [DEBUG] New state was assigned lineage "01655d57-d1dd-a3ee-2cfe-ad0df7bc1a73" +2022/02/28 12:17:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:17:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:44 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:44 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:44 [WARN] Test: Step plan: DIFF: + + + +STATE: + +data.mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk + provider = provider.mso + bd_name = acctest_rvzvk + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_rvzvk + schema_id = 621c700a1d0000a1644fba41 + template_name = acctest_6sh3w + version = 0 + + Dependencies: + mso_schema_template_bd_dhcp_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c700b1b00009f0bfd0c3d + provider = provider.mso + description = + name = acctest_rvzvk + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c700a1d0000a1644fba41 + provider = provider.mso + name = acctest_6sh3w + template_name = acctest_6sh3w + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_rvzvk + provider = provider.mso + dhcp_policy.name = acctest_rvzvk + dhcp_policy.version = 0 + display_name = acctest_rvzvk + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_rvzvk + schema_id = 621c700a1d0000a1644fba41 + template_name = acctest_6sh3w + vrf_name = acctest_rvzvk + vrf_schema_id = 621c700a1d0000a1644fba41 + vrf_template_name = acctest_6sh3w + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk + provider = provider.mso + bd_name = acctest_rvzvk + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_rvzvk + schema_id = 621c700a1d0000a1644fba41 + template_name = acctest_6sh3w + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_rvzvk + provider = provider.mso + display_name = acctest_rvzvk + layer3_multicast = false + name = acctest_rvzvk + schema_id = 621c700a1d0000a1644fba41 + template = acctest_6sh3w + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:17:44 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:17:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:17:44 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:17:44 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:44 [DEBUG] New state was assigned lineage "2243b86b-9bd9-ada2-4464-65dc38948314" +2022/02/28 12:17:44 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:44 [DEBUG] Begin Injection +2022/02/28 12:17:44 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107a1c0 1362 [] false false map[] 0xc0011ee400 0xc00101c160} +2022/02/28 12:17:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:44 [DEBUG] Exit from do method +2022/02/28 12:17:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:17:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:44 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:44 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:17:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:44 [DEBUG] : Beginning Read +2022/02/28 12:17:44 HTTP request GET mso/api/v1/tenants +2022/02/28 12:17:44 [DEBUG] Begin Injection +2022/02/28 12:17:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:17:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:17:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:17:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb0040 5563 [] false false map[] 0xc000516f00 0xc00101c160} +2022/02/28 12:17:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:17:45 [DEBUG] Exit from do method +2022/02/28 12:17:45 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:17:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:17:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:17:45 [DEBUG] 621c700a1d0000a1644fba41: Beginning Read +2022/02/28 12:17:45 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:45 [DEBUG] Begin Injection +2022/02/28 12:17:45 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:45 [DEBUG] 621c700b1b00009f0bfd0c3d: Beginning Read +2022/02/28 12:17:45 id: 621c700b1b00009f0bfd0c3d +2022/02/28 12:17:45 HTTP request GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:45 [DEBUG] Begin Injection +2022/02/28 12:17:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb1c00 1362 [] false false map[] 0xc00145c600 0xc00101c160} +2022/02/28 12:17:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:45 [DEBUG] Exit from do method +2022/02/28 12:17:45 [DEBUG] 621c700a1d0000a1644fba41: Read finished successfully +2022/02/28 12:17:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:17:45 [DEBUG] acctest_rvzvk: Beginning Read +2022/02/28 12:17:45 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:45 [DEBUG] Begin Injection +2022/02/28 12:17:45 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ea4100 160 [] false false map[] 0xc000516300 0xc000a648f0} +2022/02/28 12:17:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d {"id":"621c700b1b00009f0bfd0c3d","name":"acctest_rvzvk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:17:45 [DEBUG] Exit from do method +2022/02/28 12:17:45 [DEBUG] 621c700b1b00009f0bfd0c3d: Read finished successfully +2022/02/28 12:17:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000428dc0 1362 [] false false map[] 0xc00145cb00 0xc00101c160} +2022/02/28 12:17:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:45 [DEBUG] Exit from do method +2022/02/28 12:17:45 currentvrfname acctest_rvzvk +2022/02/28 12:17:45 found correct vrfname +2022/02/28 12:17:45 [DEBUG] acctest_rvzvk: Read finished successfully +2022/02/28 12:17:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:17:45 [DEBUG] acctest_rvzvk: Beginning Read +2022/02/28 12:17:45 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:45 [DEBUG] Begin Injection +2022/02/28 12:17:45 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c200 1362 [] false false map[] 0xc000517100 0xc00101c160} +2022/02/28 12:17:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:46 [DEBUG] Exit from do method +2022/02/28 12:17:46 [DEBUG] acctest_rvzvk: Read finished successfully +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:46 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Beginning Read +2022/02/28 12:17:46 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:46 [DEBUG] Begin Injection +2022/02/28 12:17:46 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048cc00 1362 [] false false map[] 0xc000517600 0xc00101c160} +2022/02/28 12:17:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:46 [DEBUG] Exit from do method +2022/02/28 12:17:46 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:46 [DEBUG] : Beginning Read +2022/02/28 12:17:46 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:46 [DEBUG] Begin Injection +2022/02/28 12:17:46 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048dbc0 1362 [] false false map[] 0xc000d2a300 0xc00101c160} +2022/02/28 12:17:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:46 [DEBUG] Exit from do method +2022/02/28 12:17:46 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully +2022/02/28 12:17:46 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:46 [DEBUG] New state was assigned lineage "09930b12-fe00-2103-6fc8-887fb41e0f89" +2022/02/28 12:17:46 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:17:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:46 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:46 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:46 [WARN] Test: Executing destroy step +2022/02/28 12:17:46 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:46 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:17:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:46 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:17:46 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:46 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:17:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:17:46 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:46 [DEBUG] : Beginning Read +2022/02/28 12:17:46 HTTP request GET mso/api/v1/tenants +2022/02/28 12:17:46 [DEBUG] Begin Injection +2022/02/28 12:17:46 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:17:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:17:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:17:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048cb40 5563 [] false false map[] 0xc00138c300 0xc00101c160} +2022/02/28 12:17:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:17:47 [DEBUG] Exit from do method +2022/02/28 12:17:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:17:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:17:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:17:47 [DEBUG] 621c700a1d0000a1644fba41: Beginning Read +2022/02/28 12:17:47 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:47 [DEBUG] Begin Injection +2022/02/28 12:17:47 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:47 [DEBUG] 621c700b1b00009f0bfd0c3d: Beginning Read +2022/02/28 12:17:47 id: 621c700b1b00009f0bfd0c3d +2022/02/28 12:17:47 HTTP request GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:47 [DEBUG] Begin Injection +2022/02/28 12:17:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ea5640 160 [] false false map[] 0xc001538700 0xc000a648f0} +2022/02/28 12:17:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d {"id":"621c700b1b00009f0bfd0c3d","name":"acctest_rvzvk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:17:47 [DEBUG] Exit from do method +2022/02/28 12:17:47 [DEBUG] 621c700b1b00009f0bfd0c3d: Read finished successfully +2022/02/28 12:17:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048d480 1362 [] false false map[] 0xc00138c800 0xc00101c160} +2022/02/28 12:17:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:47 [DEBUG] Exit from do method +2022/02/28 12:17:47 [DEBUG] 621c700a1d0000a1644fba41: Read finished successfully +2022/02/28 12:17:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:17:47 [DEBUG] acctest_rvzvk: Beginning Read +2022/02/28 12:17:47 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:47 [DEBUG] Begin Injection +2022/02/28 12:17:47 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb0cc0 1362 [] false false map[] 0xc000860a00 0xc00101c160} +2022/02/28 12:17:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:47 [DEBUG] Exit from do method +2022/02/28 12:17:47 currentvrfname acctest_rvzvk +2022/02/28 12:17:47 found correct vrfname +2022/02/28 12:17:47 [DEBUG] acctest_rvzvk: Read finished successfully +2022/02/28 12:17:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:17:47 [DEBUG] acctest_rvzvk: Beginning Read +2022/02/28 12:17:47 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:47 [DEBUG] Begin Injection +2022/02/28 12:17:47 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c040 1362 [] false false map[] 0xc00138c900 0xc00101c160} +2022/02/28 12:17:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:48 [DEBUG] Exit from do method +2022/02/28 12:17:48 [DEBUG] acctest_rvzvk: Read finished successfully +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:48 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Beginning Read +2022/02/28 12:17:48 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:48 [DEBUG] Begin Injection +2022/02/28 12:17:48 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ea4e80 1362 [] false false map[] 0xc00138c400 0xc00101c160} +2022/02/28 12:17:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:48 [DEBUG] Exit from do method +2022/02/28 12:17:48 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:48 [DEBUG] : Beginning Read +2022/02/28 12:17:48 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:48 [DEBUG] Begin Injection +2022/02/28 12:17:48 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048cac0 1362 [] false false map[] 0xc00138ca00 0xc00101c160} +2022/02/28 12:17:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:17:48 [DEBUG] Exit from do method +2022/02/28 12:17:48 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully +2022/02/28 12:17:48 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:48 [DEBUG] New state was assigned lineage "63c7ca17-a0b2-0d85-791f-028a40f945d0" +2022/02/28 12:17:48 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:17:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:17:48 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:17:48 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_rvzvk" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk" => "" + name: "acctest_rvzvk" => "" + schema_id: "621c700a1d0000a1644fba41" => "" + template_name: "acctest_6sh3w" => "" + version: "0" => "" +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c700b1b00009f0bfd0c3d" => "" + name: "acctest_rvzvk" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c700a1d0000a1644fba41" => "" + name: "acctest_6sh3w" => "" + template_name: "acctest_6sh3w" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_rvzvk" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_rvzvk" => "" + id: "acctest_rvzvk" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_rvzvk" => "" + schema_id: "621c700a1d0000a1644fba41" => "" + template_name: "acctest_6sh3w" => "" + vrf_name: "acctest_rvzvk" => "" + vrf_schema_id: "621c700a1d0000a1644fba41" => "" + vrf_template_name: "acctest_6sh3w" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_rvzvk" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk" => "" + name: "acctest_rvzvk" => "" + schema_id: "621c700a1d0000a1644fba41" => "" + template_name: "acctest_6sh3w" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_rvzvk" => "" + id: "acctest_rvzvk" => "" + layer3_multicast: "false" => "" + name: "acctest_rvzvk" => "" + schema_id: "621c700a1d0000a1644fba41" => "" + template: "acctest_6sh3w" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk + provider = provider.mso + bd_name = acctest_rvzvk + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_rvzvk + schema_id = 621c700a1d0000a1644fba41 + template_name = acctest_6sh3w + version = 0 + + Dependencies: + mso_schema_template_bd_dhcp_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c700b1b00009f0bfd0c3d + provider = provider.mso + description = + name = acctest_rvzvk + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c700a1d0000a1644fba41 + provider = provider.mso + name = acctest_6sh3w + template_name = acctest_6sh3w + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_rvzvk + provider = provider.mso + dhcp_policy.name = acctest_rvzvk + dhcp_policy.version = 0 + display_name = acctest_rvzvk + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_rvzvk + schema_id = 621c700a1d0000a1644fba41 + template_name = acctest_6sh3w + vrf_name = acctest_rvzvk + vrf_schema_id = 621c700a1d0000a1644fba41 + vrf_template_name = acctest_6sh3w + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk + provider = provider.mso + bd_name = acctest_rvzvk + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_rvzvk + schema_id = 621c700a1d0000a1644fba41 + template_name = acctest_6sh3w + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_rvzvk + provider = provider.mso + display_name = acctest_rvzvk + layer3_multicast = false + name = acctest_rvzvk + schema_id = 621c700a1d0000a1644fba41 + template = acctest_6sh3w + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:17:48 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:17:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:17:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 12:17:48 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 12:17:48 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 12:17:48 [DEBUG] Template BD: Beginning Update +2022/02/28 12:17:48 HTTP request PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:48 [DEBUG] Begin Injection +2022/02/28 12:17:48 HTTP request after injection PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:49 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001424100 0xc00101c160} +2022/02/28 12:17:49 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:49 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 12:17:49 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 12:17:49 [DEBUG] 621c700b1b00009f0bfd0c3d: Beginning Read +2022/02/28 12:17:49 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:49 [DEBUG] Begin Injection +2022/02/28 12:17:49 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:49 [DEBUG] Template BD: Beginning Update +2022/02/28 12:17:49 HTTP request PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:49 [DEBUG] Begin Injection +2022/02/28 12:17:49 HTTP request after injection PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:49 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00100c100 0xc00101c160} +2022/02/28 12:17:49 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d +2022/02/28 12:17:49 [DEBUG] : Read finished successfully +2022/02/28 12:17:49 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001424800 0xc000a648f0} +2022/02/28 12:17:49 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:49 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 12:17:49 [DEBUG] acctest_rvzvk: Beginning Destroy +2022/02/28 12:17:49 HTTP request PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:49 [DEBUG] Begin Injection +2022/02/28 12:17:49 HTTP request after injection PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00110a700 0xc000a648f0} +2022/02/28 12:17:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false +2022/02/28 12:17:50 [DEBUG] acctest_rvzvk: Destroy finished successfully +2022/02/28 12:17:50 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 12:17:50 [DEBUG] 621c700a1d0000a1644fba41: Beginning Destroy +2022/02/28 12:17:50 HTTP request DELETE mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:50 [DEBUG] Begin Injection +2022/02/28 12:17:50 HTTP request after injection DELETE mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:50 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000952800 0xc000a648f0} +2022/02/28 12:17:50 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:50 [DEBUG] 621c700a1d0000a1644fba41: Destroy finished successfully +2022/02/28 12:17:50 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:50 [DEBUG] New state was assigned lineage "f173996c-4a24-2c51-81e4-4c7e1676ea5c" +2022/02/28 12:17:50 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:50 [DEBUG] Begin Injection +2022/02/28 12:17:50 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:50 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:50 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb0540 39 [] false false map[] 0xc001424000 0xc000a648f0} +2022/02/28 12:17:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"code":404,"message":"Item not found"} +2022/02/28 12:17:50 [DEBUG] Exit from do method +2022/02/28 12:17:50 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:50 [DEBUG] Begin Injection +2022/02/28 12:17:50 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 +2022/02/28 12:17:51 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:50 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb0680 39 [] false false map[] 0xc000952a00 0xc000a648f0} +2022/02/28 12:17:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"code":404,"message":"Item not found"} +2022/02/28 12:17:51 [DEBUG] Exit from do method +2022/02/28 12:17:51 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:17:51 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:17:51 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:17:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:17:51 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:17:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:51 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:17:51 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:51 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:17:51 [DEBUG] : Beginning Read +2022/02/28 12:17:51 HTTP request GET mso/api/v1/tenants +2022/02/28 12:17:51 [DEBUG] Begin Injection +2022/02/28 12:17:51 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:17:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:17:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:17:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ea4ec0 5563 [] false false map[] 0xc001424200 0xc000a648f0} +2022/02/28 12:17:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:17:51 [DEBUG] Exit from do method +2022/02/28 12:17:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:17:51 [DEBUG] provider has no plugin.Client +2022/02/28 12:17:51 [DEBUG] New state was assigned lineage "5203e5c8-a084-d6ca-aec6-311a64f7ebea" +2022/02/28 12:17:51 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:17:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:17:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:17:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:17:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:17:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:17:51 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:18:28 [DEBUG] Test: Executing step 0 +2022/02/28 12:18:28 [DEBUG] Test: Executing step 0 +2022/02/28 12:18:28 [DEBUG] Test: Executing step 0 +2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:18:28 [DEBUG] Test: Executing step 1 +2022/02/28 12:18:28 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:18:28 [DEBUG] Test: Executing step 1 +2022/02/28 12:18:28 [DEBUG] : Beginning Read +2022/02/28 12:18:28 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:28 [DEBUG] Begin Injection +2022/02/28 12:18:28 HTTP request POST /login +2022/02/28 12:18:28 HTTP request after injection POST /login +2022/02/28 12:18:28 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:18:28 [DEBUG] Test: Executing step 2 +2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:18:28 [DEBUG] Test: Executing step 2 +2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:18:29 [DEBUG] Test: Executing step 3 +2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:18:29 [DEBUG] Test: Executing step 3 +2022/02/28 12:18:29 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:29 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:29 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:29 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:29 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:29 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:18:29 [DEBUG] Test: Executing step 4 +2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:18:29 [DEBUG] Test: Executing step 4 +2022/02/28 12:18:29 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:29 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:29 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:29 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:29 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:29 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:29 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:29 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:29 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:29 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:29 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:29 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:29 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:29 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:29 [DEBUG] : Beginning Read +2022/02/28 12:18:29 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:29 [DEBUG] Begin Injection +2022/02/28 12:18:29 HTTP request POST /login +2022/02/28 12:18:29 HTTP request after injection POST /login +2022/02/28 12:18:29 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 12:18:29 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:29 [DEBUG] : Beginning Read +2022/02/28 12:18:29 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:29 [DEBUG] Begin Injection +2022/02/28 12:18:29 HTTP request POST /login +2022/02/28 12:18:29 HTTP request after injection POST /login +2022/02/28 12:18:29 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 12:18:30 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 12:18:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSXZrTTdxZEdrVkJQR3VBU094Uk5RN05OIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gJaufyzKJD-GmAc3CnYO3Nb-3AgPY98eBrDFln8c8F_LVzYhdXYmqPTdGzjhcYoPUlfQb-gON2B5ZiW-RXD8njYO1dSVJ-Gngad9fAzj7o3WvUa9E9panWdtaitV-_WYLaCzgFoMvd65pveRjefA-vEftbAa6VO0T8xiQmAzhPPMcihjWaPWJICrFIGU8U0MepmlwHemsTonqJQqS4qARbb9Pb8UrhLqoNDuGfm4zuj3E0kXy-dBTXykB9tdTOzAFj028Ixrma2cHSdwP_Cekw5vqUWKXVVDYOE7r_sDe0nmL38IvR6WHJGYXXyaLf9V_Ngb-TXnTl-bKTg3BWFY4w; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000ae61c0 -1 [chunked] false false map[] 0xc0002b2c00 0xc00082c160} +2022/02/28 12:18:30 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSXZrTTdxZEdrVkJQR3VBU094Uk5RN05OIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gJaufyzKJD-GmAc3CnYO3Nb-3AgPY98eBrDFln8c8F_LVzYhdXYmqPTdGzjhcYoPUlfQb-gON2B5ZiW-RXD8njYO1dSVJ-Gngad9fAzj7o3WvUa9E9panWdtaitV-_WYLaCzgFoMvd65pveRjefA-vEftbAa6VO0T8xiQmAzhPPMcihjWaPWJICrFIGU8U0MepmlwHemsTonqJQqS4qARbb9Pb8UrhLqoNDuGfm4zuj3E0kXy-dBTXykB9tdTOzAFj028Ixrma2cHSdwP_Cekw5vqUWKXVVDYOE7r_sDe0nmL38IvR6WHJGYXXyaLf9V_Ngb-TXnTl-bKTg3BWFY4w","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSXZrTTdxZEdrVkJQR3VBU094Uk5RN05OIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gJaufyzKJD-GmAc3CnYO3Nb-3AgPY98eBrDFln8c8F_LVzYhdXYmqPTdGzjhcYoPUlfQb-gON2B5ZiW-RXD8njYO1dSVJ-Gngad9fAzj7o3WvUa9E9panWdtaitV-_WYLaCzgFoMvd65pveRjefA-vEftbAa6VO0T8xiQmAzhPPMcihjWaPWJICrFIGU8U0MepmlwHemsTonqJQqS4qARbb9Pb8UrhLqoNDuGfm4zuj3E0kXy-dBTXykB9tdTOzAFj028Ixrma2cHSdwP_Cekw5vqUWKXVVDYOE7r_sDe0nmL38IvR6WHJGYXXyaLf9V_Ngb-TXnTl-bKTg3BWFY4w"} +2022/02/28 12:18:30 [DEBUG] Exit from do method +2022/02/28 12:18:30 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:30 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 12:18:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRDZlbXFhV0Qweno4Ylp4RXV0a0tIVWMxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.ryPWC_GqWUqQTF7Ni5gxDbfa9MIRGGxnHyvSRk8z5DTt25VwbInBPe5_MMb9eTUMtcDTuDnMJa6XT6nemgVz2dIgmVJmscsJ7Exz5BxYXzKFIqgwQ5lYGwBOhT0DXF4C1bisq_iz5I8YZrO8D0vS_hbztLZymZ68Tg3H6_zlbSMHizjS059kA9_3rK8ZtxzmRfRuDv7EAiiWAgOE_u560qNXiSSh21f6eiMg4mBcpU2eCtdOIOz8jBvCjLV1n5bAcnEncT4qJmC2s0Hi5H9yOuICCD_ExikYFcJK5000txTeY-6lWwXhUteHeDSKsnG5dogLKNAuZi6VvlON9pGoXg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000e9e180 -1 [chunked] false false map[] 0xc0002b3200 0xc0004f2790} +2022/02/28 12:18:30 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRDZlbXFhV0Qweno4Ylp4RXV0a0tIVWMxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.ryPWC_GqWUqQTF7Ni5gxDbfa9MIRGGxnHyvSRk8z5DTt25VwbInBPe5_MMb9eTUMtcDTuDnMJa6XT6nemgVz2dIgmVJmscsJ7Exz5BxYXzKFIqgwQ5lYGwBOhT0DXF4C1bisq_iz5I8YZrO8D0vS_hbztLZymZ68Tg3H6_zlbSMHizjS059kA9_3rK8ZtxzmRfRuDv7EAiiWAgOE_u560qNXiSSh21f6eiMg4mBcpU2eCtdOIOz8jBvCjLV1n5bAcnEncT4qJmC2s0Hi5H9yOuICCD_ExikYFcJK5000txTeY-6lWwXhUteHeDSKsnG5dogLKNAuZi6VvlON9pGoXg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRDZlbXFhV0Qweno4Ylp4RXV0a0tIVWMxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.ryPWC_GqWUqQTF7Ni5gxDbfa9MIRGGxnHyvSRk8z5DTt25VwbInBPe5_MMb9eTUMtcDTuDnMJa6XT6nemgVz2dIgmVJmscsJ7Exz5BxYXzKFIqgwQ5lYGwBOhT0DXF4C1bisq_iz5I8YZrO8D0vS_hbztLZymZ68Tg3H6_zlbSMHizjS059kA9_3rK8ZtxzmRfRuDv7EAiiWAgOE_u560qNXiSSh21f6eiMg4mBcpU2eCtdOIOz8jBvCjLV1n5bAcnEncT4qJmC2s0Hi5H9yOuICCD_ExikYFcJK5000txTeY-6lWwXhUteHeDSKsnG5dogLKNAuZi6VvlON9pGoXg"} +2022/02/28 12:18:30 [DEBUG] Exit from do method +2022/02/28 12:18:30 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:30 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 12:18:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000ae63c0 -1 [chunked] false false map[] 0xc000610300 0xc00119ebb0} +2022/02/28 12:18:30 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg"} +2022/02/28 12:18:30 [DEBUG] Exit from do method +2022/02/28 12:18:30 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9e3c0 5563 [] false false map[] 0xc0002b2b00 0xc00082c160} +2022/02/28 12:18:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:30 [DEBUG] Exit from do method +2022/02/28 12:18:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:30 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:30 [DEBUG] New state was assigned lineage "5228a97e-49cf-b746-6836-9bfb6ae3a862" +2022/02/28 12:18:30 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:30 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:30 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:30 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_hvdx3" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_9wzoj" + template_name: "" => "acctest_9wzoj" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_hvdx3" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_hvdx3" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_9wzoj" + vrf_name: "" => "acctest_hvdx3" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_hvdx3_invalid" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_hvdx3" + schema_id: "" => "" + template_name: "" => "acctest_9wzoj" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_hvdx3" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_hvdx3" + schema_id: "" => "" + template: "" => "acctest_9wzoj" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:18:30 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:18:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:18:30 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:18:30 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:18:30 [DEBUG] : Beginning Create +2022/02/28 12:18:30 [DEBUG] Schema: Beginning Creation +2022/02/28 12:18:30 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:30 [DEBUG] Begin Injection +2022/02/28 12:18:30 HTTP request POST mso/api/v1/schemas +2022/02/28 12:18:30 [DEBUG] Begin Injection +2022/02/28 12:18:30 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:18:30 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:30 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"displayName":"acctest_9wzoj","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_9wzoj","externalEpgs":[],"filters":[],"name":"acctest_9wzoj","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x10f7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:18:30 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"desc":"","name":"acctest_hvdx3","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x10f7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012b9700 5563 [] false false map[] 0xc0002b3100 0xc0004f2790} +2022/02/28 12:18:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:30 [DEBUG] Exit from do method +2022/02/28 12:18:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:30 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:30 [DEBUG] New state was assigned lineage "f3e2f244-7070-a3ef-2d28-d6c4f2f8da29" +2022/02/28 12:18:30 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:30 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:30 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:30 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_idq2c" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_pexxl" + template_name: "" => "acctest_pexxl" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_idq2c" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_idq2c" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_pexxl" + vrf_name: "" => "acctest_idq2c" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_idq2c" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_idq2c" + schema_id: "" => "" + template_name: "" => "acctest_pexxl" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_idq2c" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_idq2c" + schema_id: "" => "" + template: "" => "acctest_pexxl" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:18:30 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:18:30 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:18:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016fdc0 5563 [] false false map[] 0xc000610200 0xc00119ebb0} +2022/02/28 12:18:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:30 [DEBUG] Exit from do method +2022/02/28 12:18:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:30 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:30 [DEBUG] New state was assigned lineage "44daef64-1d18-a09e-9b44-b876c795730e" +2022/02/28 12:18:30 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:30 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:18:30 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:18:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:30 [DEBUG] : Beginning Create +2022/02/28 12:18:30 [DEBUG] Schema: Beginning Creation +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 HTTP request POST mso/api/v1/schemas +2022/02/28 12:18:30 [DEBUG] Begin Injection +2022/02/28 12:18:30 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:18:30 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"displayName":"acctest_pexxl","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_pexxl","externalEpgs":[],"filters":[],"name":"acctest_pexxl","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x10f7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:18:30 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:30 [DEBUG] Begin Injection +2022/02/28 12:18:30 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:18:30 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"desc":"","name":"acctest_idq2c","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x10f7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:30 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:30 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:30 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_c0r28_invalid" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_c0r28" + schema_id: "" => "" + template_name: "" => "acctest_9kl4z" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_c0r28" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_9kl4z" + template_name: "" => "acctest_9kl4z" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_c0r28" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_c0r28" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_9kl4z" + vrf_name: "" => "acctest_c0r28" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_c0r28" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_c0r28" + schema_id: "" => "" + template_name: "" => "acctest_9kl4z" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_c0r28" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_c0r28" + schema_id: "" => "" + template: "" => "acctest_9kl4z" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:18:30 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:30 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:18:30 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:18:30 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:18:30 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:18:30 [DEBUG] Schema: Beginning Creation +2022/02/28 12:18:30 HTTP request POST mso/api/v1/schemas +2022/02/28 12:18:30 [DEBUG] Begin Injection +2022/02/28 12:18:30 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:18:30 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"displayName":"acctest_9kl4z","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_9kl4z","externalEpgs":[],"filters":[],"name":"acctest_9kl4z","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x10f7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:18:30 [DEBUG] : Beginning Create +2022/02/28 12:18:30 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:30 [DEBUG] Begin Injection +2022/02/28 12:18:30 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:30 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"desc":"","name":"acctest_c0r28","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x10f7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:31 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014dab00 160 [] false false map[] 0xc00049f700 0xc0004f2790} +2022/02/28 12:18:31 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c703e1b00009f0bfd0c3e","name":"acctest_hvdx3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:31 [DEBUG] Exit from do method +2022/02/28 12:18:31 [DEBUG] 621c703e1b00009f0bfd0c3e: Creation finished successfully +2022/02/28 12:18:31 [DEBUG] 621c703e1b00009f0bfd0c3e: Beginning Read +2022/02/28 12:18:31 id: 621c703e1b00009f0bfd0c3e +2022/02/28 12:18:31 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:31 [DEBUG] Begin Injection +2022/02/28 12:18:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:31 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:18:31 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c703e1d0000ab644fba49] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001301d80 400 [] false false map[] 0xc000ef2700 0xc00082c160} +2022/02/28 12:18:31 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:18:31 [DEBUG] Exit from do method +2022/02/28 12:18:31 [DEBUG] 621c703e1d0000ab644fba49: Schema Creation finished successfully +2022/02/28 12:18:31 [DEBUG] 621c703e1d0000ab644fba49: Beginning Read +2022/02/28 12:18:31 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:31 [DEBUG] Begin Injection +2022/02/28 12:18:31 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:31 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:18:31 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c703e1d0000aa644fba4a] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001301f40 400 [] false false map[] 0xc00049e400 0xc00119ebb0} +2022/02/28 12:18:31 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:18:31 [DEBUG] Exit from do method +2022/02/28 12:18:31 [DEBUG] 621c703e1d0000aa644fba4a: Schema Creation finished successfully +2022/02/28 12:18:31 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read +2022/02/28 12:18:31 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:31 [DEBUG] Begin Injection +2022/02/28 12:18:31 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:31 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014dad00 160 [] false false map[] 0xc0002b2900 0xc0004f2790} +2022/02/28 12:18:31 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:31 [DEBUG] Exit from do method +2022/02/28 12:18:31 [DEBUG] 621c703f1b0000b60bfd0c3f: Creation finished successfully +2022/02/28 12:18:31 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read +2022/02/28 12:18:31 id: 621c703f1b0000b60bfd0c3f +2022/02/28 12:18:31 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:31 [DEBUG] Begin Injection +2022/02/28 12:18:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:31 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:18:31 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c703f1d0000ae644fba4d] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000497100 400 [] false false map[] 0xc00049e500 0xc00082c160} +2022/02/28 12:18:31 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:18:31 [DEBUG] Exit from do method +2022/02/28 12:18:31 [DEBUG] 621c703f1d0000ae644fba4d: Schema Creation finished successfully +2022/02/28 12:18:31 [DEBUG] 621c703f1d0000ae644fba4d: Beginning Read +2022/02/28 12:18:31 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:31 [DEBUG] Begin Injection +2022/02/28 12:18:31 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:31 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f0080 160 [] false false map[] 0xc0002b3500 0xc00119ebb0} +2022/02/28 12:18:31 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c703f1b0000b60bfd0c40","name":"acctest_c0r28","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:31 [DEBUG] Exit from do method +2022/02/28 12:18:31 [DEBUG] 621c703f1b0000b60bfd0c40: Creation finished successfully +2022/02/28 12:18:31 [DEBUG] 621c703f1b0000b60bfd0c40: Beginning Read +2022/02/28 12:18:31 id: 621c703f1b0000b60bfd0c40 +2022/02/28 12:18:31 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:31 [DEBUG] Begin Injection +2022/02/28 12:18:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014da340 160 [] false false map[] 0xc0002b3900 0xc00082c8f0} +2022/02/28 12:18:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e {"id":"621c703e1b00009f0bfd0c3e","name":"acctest_hvdx3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:31 [DEBUG] Exit from do method +2022/02/28 12:18:31 [DEBUG] 621c703e1b00009f0bfd0c3e: Read finished successfully +2022/02/28 12:18:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae6180 400 [] false false map[] 0xc00038b400 0xc0004f2790} +2022/02/28 12:18:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:18:31 [DEBUG] Exit from do method +2022/02/28 12:18:31 [DEBUG] 621c703e1d0000ab644fba49: Read finished successfully +2022/02/28 12:18:31 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:18:31 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:18:31 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:31 [DEBUG] Begin Injection +2022/02/28 12:18:31 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f0c00 400 [] false false map[] 0xc00038b600 0xc0002bc000} +2022/02/28 12:18:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:18:31 [DEBUG] Exit from do method +2022/02/28 12:18:31 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully +2022/02/28 12:18:31 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:18:31 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:18:31 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:31 [DEBUG] Begin Injection +2022/02/28 12:18:31 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012b8700 400 [] false false map[] 0xc00038b700 0xc00082ca50} +2022/02/28 12:18:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:18:31 [DEBUG] Exit from do method +2022/02/28 12:18:31 [DEBUG] 621c703f1d0000ae644fba4d: Read finished successfully +2022/02/28 12:18:31 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:18:31 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:18:31 HTTP request PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:31 [DEBUG] Begin Injection +2022/02/28 12:18:31 HTTP request after injection PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ce300 160 [] false false map[] 0xc00049e900 0xc00082c160} +2022/02/28 12:18:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:31 [DEBUG] Exit from do method +2022/02/28 12:18:31 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully +2022/02/28 12:18:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005cee00 160 [] false false map[] 0xc0002b2000 0xc00119ebb0} +2022/02/28 12:18:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 {"id":"621c703f1b0000b60bfd0c40","name":"acctest_c0r28","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:31 [DEBUG] Exit from do method +2022/02/28 12:18:31 [DEBUG] 621c703f1b0000b60bfd0c40: Read finished successfully +2022/02/28 12:18:32 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00038ac00 0xc00082c8f0} +2022/02/28 12:18:32 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:32 [DEBUG] acctest_hvdx3: Creation finished successfully +2022/02/28 12:18:32 [DEBUG] acctest_hvdx3: Beginning Read +2022/02/28 12:18:32 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:32 [DEBUG] Begin Injection +2022/02/28 12:18:32 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:32 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00038b300 0xc0002bc000} +2022/02/28 12:18:32 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:32 [DEBUG] acctest_idq2c: Creation finished successfully +2022/02/28 12:18:32 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:32 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:32 [DEBUG] Begin Injection +2022/02/28 12:18:32 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:32 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049eb00 0xc00082ca50} +2022/02/28 12:18:32 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:32 [DEBUG] acctest_c0r28: Creation finished successfully +2022/02/28 12:18:32 [DEBUG] acctest_c0r28: Beginning Read +2022/02/28 12:18:32 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:32 [DEBUG] Begin Injection +2022/02/28 12:18:32 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005cf180 768 [] false false map[] 0xc00156a100 0xc00082c160} +2022/02/28 12:18:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 12:18:32 [DEBUG] Exit from do method +2022/02/28 12:18:32 currentvrfname acctest_hvdx3 +2022/02/28 12:18:32 found correct vrfname +2022/02/28 12:18:32 [DEBUG] acctest_hvdx3: Read finished successfully +2022/02/28 12:18:32 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:18:32 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:18:32 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:18:32 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:32 [DEBUG] Begin Injection +2022/02/28 12:18:32 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000497d80 768 [] false false map[] 0xc00049f700 0xc0002bc000} +2022/02/28 12:18:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 12:18:32 [DEBUG] Exit from do method +2022/02/28 12:18:32 currentvrfname acctest_idq2c +2022/02/28 12:18:32 found correct vrfname +2022/02/28 12:18:32 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:32 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:18:32 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:18:32 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:18:32 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:32 [DEBUG] Begin Injection +2022/02/28 12:18:32 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f700 768 [] false false map[] 0xc00156a200 0xc00082ca50} +2022/02/28 12:18:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 12:18:32 [DEBUG] Exit from do method +2022/02/28 12:18:32 currentvrfname acctest_c0r28 +2022/02/28 12:18:32 found correct vrfname +2022/02/28 12:18:32 [DEBUG] acctest_c0r28: Read finished successfully +2022/02/28 12:18:32 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:18:32 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:18:32 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:18:32 HTTP request PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:32 [DEBUG] Begin Injection +2022/02/28 12:18:32 HTTP request after injection PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:32 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00038bd00 0xc0002bc790} +2022/02/28 12:18:32 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:32 [DEBUG] : Beginning Read +2022/02/28 12:18:32 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:32 [DEBUG] Begin Injection +2022/02/28 12:18:32 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:32 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00156b900 0xc0002bc000} +2022/02/28 12:18:32 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:32 [DEBUG] : Beginning Read +2022/02/28 12:18:32 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:32 [DEBUG] Begin Injection +2022/02/28 12:18:32 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:32 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000610900 0xc00082ca50} +2022/02/28 12:18:32 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:32 [DEBUG] : Beginning Read +2022/02/28 12:18:32 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:32 [DEBUG] Begin Injection +2022/02/28 12:18:32 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001301c80 1277 [] false false map[] 0xc00156bb00 0xc0002bc790} +2022/02/28 12:18:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:18:33 [DEBUG] Exit from do method +2022/02/28 12:18:33 [DEBUG] acctest_hvdx3: Read finished successfully +2022/02/28 12:18:33 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:18:33 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:18:33 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:33 [DEBUG] Begin Injection +2022/02/28 12:18:33 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84ec0 1277 [] false false map[] 0xc00156bc00 0xc00082ca50} +2022/02/28 12:18:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:18:33 [DEBUG] Exit from do method +2022/02/28 12:18:33 [DEBUG] acctest_c0r28: Read finished successfully +2022/02/28 12:18:33 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:18:33 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:18:33 HTTP request PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:33 [DEBUG] Begin Injection +2022/02/28 12:18:33 HTTP request after injection PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a8380 1277 [] false false map[] 0xc000610b00 0xc0002bc000} +2022/02/28 12:18:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:18:33 [DEBUG] Exit from do method +2022/02/28 12:18:33 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:33 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:18:33 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:18:33 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:33 [DEBUG] Begin Injection +2022/02/28 12:18:33 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:33 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:33 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[112] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc000a84080 112 [] false false map[] 0xc00049fb00 0xc0002bc790} +2022/02/28 12:18:33 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false {"code":141,"message":"Resource Not Found: Bd with name acctest_hvdx3_invalid not found in List(acctest_hvdx3)"} +2022/02/28 12:18:33 [DEBUG] Exit from do method +2022/02/28 12:18:33 [DEBUG] mso_schema_template_bd_dhcp_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Resource Not Found: Bd with name acctest_hvdx3_invalid not found in List(acctest_hvdx3)"{} +2022/02/28 12:18:33 [ERROR] : eval: *terraform.EvalApplyPost, err: "Resource Not Found: Bd with name acctest_hvdx3_invalid not found in List(acctest_hvdx3)"{} +2022/02/28 12:18:33 [ERROR] : eval: *terraform.EvalSequence, err: "Resource Not Found: Bd with name acctest_hvdx3_invalid not found in List(acctest_hvdx3)"{} +2022/02/28 12:18:33 [DEBUG] New state was assigned lineage "25f534e6-8103-0a06-2cea-8d438ab68be8" +2022/02/28 12:18:33 [DEBUG] Test: Executing step 1 +2022/02/28 12:18:33 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:33 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:33 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "yijml" is not expected here. +2022/02/28 12:18:33 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "yijml" is not expected here. +2022/02/28 12:18:33 [DEBUG] Test: Executing step 2 +2022/02/28 12:18:33 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:33 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:33 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:33 [DEBUG] : Beginning Read +2022/02/28 12:18:33 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:33 [DEBUG] Begin Injection +2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:33 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000eba500 0xc00082ca50} +2022/02/28 12:18:33 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:33 [DEBUG] Creation Complete +2022/02/28 12:18:33 [DEBUG] : Beginning Read +2022/02/28 12:18:33 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:33 [DEBUG] Begin Injection +2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:33 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00106a600 0xc0002bc000} +2022/02/28 12:18:33 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:33 [DEBUG] Creation Complete +2022/02/28 12:18:33 [DEBUG] : Beginning Read +2022/02/28 12:18:33 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:33 [DEBUG] Begin Injection +2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f0040 5563 [] false false map[] 0xc00049e500 0xc0002bc790} +2022/02/28 12:18:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:33 [DEBUG] Exit from do method +2022/02/28 12:18:33 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:33 [DEBUG] 621c703e1d0000ab644fba49: Beginning Read +2022/02/28 12:18:33 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:33 [DEBUG] Begin Injection +2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:33 [DEBUG] 621c703e1b00009f0bfd0c3e: Beginning Read +2022/02/28 12:18:33 id: 621c703e1b00009f0bfd0c3e +2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:33 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:33 [DEBUG] Begin Injection +2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f1480 1362 [] false false map[] 0xc000ef2000 0xc0002bc000} +2022/02/28 12:18:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:33 [DEBUG] Exit from do method +2022/02/28 12:18:33 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully +2022/02/28 12:18:33 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:33 [DEBUG] New state was assigned lineage "969da135-f25a-72a3-69c4-9611f6b36cdc" +2022/02/28 12:18:33 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:33 [DEBUG] Begin Injection +2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014daec0 1362 [] false false map[] 0xc00049e600 0xc00082ca50} +2022/02/28 12:18:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:33 [DEBUG] Exit from do method +2022/02/28 12:18:33 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully +2022/02/28 12:18:33 [DEBUG] : Beginning Read +2022/02/28 12:18:33 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:33 [DEBUG] Begin Injection +2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e800 1277 [] false false map[] 0xc000ef2700 0xc0002bc790} +2022/02/28 12:18:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:18:34 [DEBUG] Exit from do method +2022/02/28 12:18:34 [DEBUG] 621c703e1d0000ab644fba49: Read finished successfully +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:34 [DEBUG] acctest_hvdx3: Beginning Read +2022/02/28 12:18:34 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:34 [DEBUG] Begin Injection +2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f240 160 [] false false map[] 0xc00049ea00 0xc0002bc0b0} +2022/02/28 12:18:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e {"id":"621c703e1b00009f0bfd0c3e","name":"acctest_hvdx3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:34 [DEBUG] Exit from do method +2022/02/28 12:18:34 [DEBUG] 621c703e1b00009f0bfd0c3e: Read finished successfully +2022/02/28 12:18:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f86900 1362 [] false false map[] 0xc000ef2800 0xc0002bc000} +2022/02/28 12:18:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:34 [DEBUG] Exit from do method +2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:34 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:34 [DEBUG] : Beginning Read +2022/02/28 12:18:34 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:34 [DEBUG] Begin Injection +2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043dd80 1362 [] false false map[] 0xc00049f600 0xc00082ca50} +2022/02/28 12:18:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:34 [DEBUG] Exit from do method +2022/02/28 12:18:34 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 12:18:34 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 12:18:34 [DEBUG] New state was assigned lineage "ec247f5f-6768-b8f4-499a-9a8cd90e0046" +2022/02/28 12:18:34 [DEBUG] Test: Executing step 5 +2022/02/28 12:18:34 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:34 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "tmxmm" is not expected here. +2022/02/28 12:18:34 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "tmxmm" is not expected here. +2022/02/28 12:18:34 [DEBUG] Test: Executing step 6 +2022/02/28 12:18:34 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:34 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:34 [DEBUG] : Beginning Read +2022/02/28 12:18:34 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:34 [DEBUG] Begin Injection +2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f9c0 1277 [] false false map[] 0xc00156a600 0xc0002bc790} +2022/02/28 12:18:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:18:34 [DEBUG] Exit from do method +2022/02/28 12:18:34 currentvrfname acctest_hvdx3 +2022/02/28 12:18:34 found correct vrfname +2022/02/28 12:18:34 [DEBUG] acctest_hvdx3: Read finished successfully +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:34 [DEBUG] acctest_hvdx3: Beginning Read +2022/02/28 12:18:34 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:34 [DEBUG] Begin Injection +2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae6180 5563 [] false false map[] 0xc0002b2e00 0xc0002bc000} +2022/02/28 12:18:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:34 [DEBUG] Exit from do method +2022/02/28 12:18:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:34 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read +2022/02/28 12:18:34 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:34 [DEBUG] Begin Injection +2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:34 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read +2022/02/28 12:18:34 id: 621c703f1b0000b60bfd0c3f +2022/02/28 12:18:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:34 [DEBUG] Begin Injection +2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f800 5563 [] false false map[] 0xc00049ee00 0xc00082ca50} +2022/02/28 12:18:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:34 [DEBUG] Exit from do method +2022/02/28 12:18:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:34 [DEBUG] 621c703f1d0000ae644fba4d: Beginning Read +2022/02/28 12:18:34 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:34 [DEBUG] Begin Injection +2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:34 [DEBUG] 621c703f1b0000b60bfd0c40: Beginning Read +2022/02/28 12:18:34 id: 621c703f1b0000b60bfd0c40 +2022/02/28 12:18:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:34 [DEBUG] Begin Injection +2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002c4480 1277 [] false false map[] 0xc00049e500 0xc0002bc790} +2022/02/28 12:18:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:18:34 [DEBUG] Exit from do method +2022/02/28 12:18:34 [DEBUG] acctest_hvdx3: Read finished successfully +2022/02/28 12:18:34 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:34 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:34 [DEBUG] New state was assigned lineage "1d6ed222-03c2-9b0a-2e7b-a560a23a3839" +2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:34 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:34 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:34 [WARN] Test: Step plan: DIFF: + +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_hvdx3" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_hvdx3" + schema_id: "" => "621c703e1d0000ab644fba49" + template_name: "" => "acctest_9wzoj" + version: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c703e1b00009f0bfd0c3e + provider = provider.mso + description = + name = acctest_hvdx3 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c703e1d0000ab644fba49 + provider = provider.mso + name = acctest_9wzoj + template_name = acctest_9wzoj + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_hvdx3 + provider = provider.mso + display_name = acctest_hvdx3 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_hvdx3 + schema_id = 621c703e1d0000ab644fba49 + template_name = acctest_9wzoj + vrf_name = acctest_hvdx3 + vrf_schema_id = 621c703e1d0000ab644fba49 + vrf_template_name = acctest_9wzoj + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_hvdx3 + provider = provider.mso + display_name = acctest_hvdx3 + layer3_multicast = false + name = acctest_hvdx3 + schema_id = 621c703e1d0000ab644fba49 + template = acctest_9wzoj + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:18:34 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:18:34 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:18:34 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:18:34 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:34 [DEBUG] Begin Injection +2022/02/28 12:18:34 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f86180 1362 [] false false map[] 0xc00049ea00 0xc0002bc000} +2022/02/28 12:18:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:35 [DEBUG] Exit from do method +2022/02/28 12:18:35 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:35 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:35 [DEBUG] Begin Injection +2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae7b80 160 [] false false map[] 0xc0002b2000 0xc0002bc0b0} +2022/02/28 12:18:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:35 [DEBUG] Exit from do method +2022/02/28 12:18:35 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully +2022/02/28 12:18:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f867c0 1362 [] false false map[] 0xc001c72700 0xc00082ca50} +2022/02/28 12:18:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:35 [DEBUG] Exit from do method +2022/02/28 12:18:35 [DEBUG] 621c703f1d0000ae644fba4d: Read finished successfully +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:35 [DEBUG] acctest_c0r28: Beginning Read +2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:35 [DEBUG] Begin Injection +2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107fcc0 160 [] false false map[] 0xc00106b200 0xc0002bc790} +2022/02/28 12:18:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 {"id":"621c703f1b0000b60bfd0c40","name":"acctest_c0r28","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:35 [DEBUG] Exit from do method +2022/02/28 12:18:35 [DEBUG] 621c703f1b0000b60bfd0c40: Read finished successfully +2022/02/28 12:18:35 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049e400 0xc0002bc000} +2022/02/28 12:18:35 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:35 [DEBUG] Creation Complete +2022/02/28 12:18:35 [DEBUG] : Beginning Read +2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:35 [DEBUG] Begin Injection +2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d061c0 1362 [] false false map[] 0xc0015a4500 0xc00082ca50} +2022/02/28 12:18:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:35 [DEBUG] Exit from do method +2022/02/28 12:18:35 currentvrfname acctest_c0r28 +2022/02/28 12:18:35 found correct vrfname +2022/02/28 12:18:35 [DEBUG] acctest_c0r28: Read finished successfully +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:35 [DEBUG] acctest_c0r28: Beginning Read +2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:35 [DEBUG] Begin Injection +2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f87b80 1362 [] false false map[] 0xc00156aa00 0xc0002bc0b0} +2022/02/28 12:18:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:35 [DEBUG] Exit from do method +2022/02/28 12:18:35 currentvrfname acctest_idq2c +2022/02/28 12:18:35 found correct vrfname +2022/02/28 12:18:35 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:35 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:35 [DEBUG] Begin Injection +2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002c5980 1362 [] false false map[] 0xc000ef2200 0xc0002bc000} +2022/02/28 12:18:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:35 [DEBUG] Exit from do method +2022/02/28 12:18:35 [DEBUG] /schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3: Read finished successfully +2022/02/28 12:18:35 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:35 [DEBUG] New state was assigned lineage "59bc3750-932e-6ad0-e4d6-408ac1bd81e2" +2022/02/28 12:18:35 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:35 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:35 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:35 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:35 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:35 [DEBUG] : Beginning Read +2022/02/28 12:18:35 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:35 [DEBUG] Begin Injection +2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ce380 1362 [] false false map[] 0xc00049ee00 0xc00082ca50} +2022/02/28 12:18:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:35 [DEBUG] Exit from do method +2022/02/28 12:18:35 [DEBUG] acctest_c0r28: Read finished successfully +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:35 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Beginning Read +2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:35 [DEBUG] Begin Injection +2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005cf140 1362 [] false false map[] 0xc00049f900 0xc0002bc0b0} +2022/02/28 12:18:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:35 [DEBUG] Exit from do method +2022/02/28 12:18:35 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:35 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Read +2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:35 [DEBUG] Begin Injection +2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae60c0 1362 [] false false map[] 0xc0015a4600 0xc00082ca50} +2022/02/28 12:18:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:36 [DEBUG] Exit from do method +2022/02/28 12:18:36 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully +2022/02/28 12:18:36 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] : Beginning Read +2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:36 [DEBUG] Begin Injection +2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae6180 5563 [] false false map[] 0xc0015a4300 0xc0002bc580} +2022/02/28 12:18:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:36 [DEBUG] Exit from do method +2022/02/28 12:18:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:36 [DEBUG] 621c703e1d0000ab644fba49: Beginning Read +2022/02/28 12:18:36 [DEBUG] 621c703e1b00009f0bfd0c3e: Beginning Read +2022/02/28 12:18:36 id: 621c703e1b00009f0bfd0c3e +2022/02/28 12:18:36 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:36 [DEBUG] Begin Injection +2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 [DEBUG] Begin Injection +2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae7680 1362 [] false false map[] 0xc00106b200 0xc0002bc0b0} +2022/02/28 12:18:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:36 [DEBUG] Exit from do method +2022/02/28 12:18:36 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully +2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:36 [DEBUG] New state was assigned lineage "0b54dc26-e837-6134-61a2-c5b925a05f8b" +2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:36 [DEBUG] Test: Executing step 5 +2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:36 [DEBUG] : Beginning Read +2022/02/28 12:18:36 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:36 [DEBUG] Begin Injection +2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f86280 1362 [] false false map[] 0xc00049e200 0xc0000be2c0} +2022/02/28 12:18:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:36 [DEBUG] Exit from do method +2022/02/28 12:18:36 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully +2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:36 [DEBUG] New state was assigned lineage "22b58536-58f7-7574-3e60-59858019b57c" +2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:36 [WARN] Test: Step plan: DIFF: + + + +STATE: + +data.mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28 + provider = provider.mso + bd_name = acctest_c0r28 + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_c0r28 + schema_id = 621c703f1d0000ae644fba4d + template_name = acctest_9kl4z + version = 0 + + Dependencies: + mso_schema_template_bd_dhcp_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c703f1b0000b60bfd0c40 + provider = provider.mso + description = + name = acctest_c0r28 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c703f1d0000ae644fba4d + provider = provider.mso + name = acctest_9kl4z + template_name = acctest_9kl4z + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_c0r28 + provider = provider.mso + dhcp_policy.name = acctest_c0r28 + dhcp_policy.version = 0 + display_name = acctest_c0r28 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_c0r28 + schema_id = 621c703f1d0000ae644fba4d + template_name = acctest_9kl4z + vrf_name = acctest_c0r28 + vrf_schema_id = 621c703f1d0000ae644fba4d + vrf_template_name = acctest_9kl4z + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28 + provider = provider.mso + bd_name = acctest_c0r28 + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_c0r28 + schema_id = 621c703f1d0000ae644fba4d + template_name = acctest_9kl4z + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_c0r28 + provider = provider.mso + display_name = acctest_c0r28 + layer3_multicast = false + name = acctest_c0r28 + schema_id = 621c703f1d0000ae644fba4d + template = acctest_9kl4z + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:18:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007730c0 160 [] false false map[] 0xc00106b900 0xc0002bc580} +2022/02/28 12:18:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e {"id":"621c703e1b00009f0bfd0c3e","name":"acctest_hvdx3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:36 [DEBUG] Exit from do method +2022/02/28 12:18:36 [DEBUG] 621c703e1b00009f0bfd0c3e: Read finished successfully +2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:36 [DEBUG] New state was assigned lineage "972162f9-644f-79d1-23a3-41cd07f8bde7" +2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:36 [DEBUG] Begin Injection +2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043c280 1362 [] false false map[] 0xc00049e800 0xc0002bc790} +2022/02/28 12:18:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:36 [DEBUG] Exit from do method +2022/02/28 12:18:36 [DEBUG] 621c703e1d0000ab644fba49: Read finished successfully +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:36 [DEBUG] acctest_hvdx3: Beginning Read +2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 [DEBUG] Begin Injection +2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f87c80 5563 [] false false map[] 0xc0002b2200 0xc0002bc0b0} +2022/02/28 12:18:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:36 [DEBUG] Exit from do method +2022/02/28 12:18:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:36 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read +2022/02/28 12:18:36 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read +2022/02/28 12:18:36 id: 621c703f1b0000b60bfd0c3f +2022/02/28 12:18:36 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:36 [DEBUG] Begin Injection +2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:36 [DEBUG] Begin Injection +2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f0fc0 1362 [] false false map[] 0xc001580300 0xc0002bc790} +2022/02/28 12:18:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:36 [DEBUG] Exit from do method +2022/02/28 12:18:36 currentvrfname acctest_hvdx3 +2022/02/28 12:18:36 found correct vrfname +2022/02/28 12:18:36 [DEBUG] acctest_hvdx3: Read finished successfully +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:36 [DEBUG] acctest_hvdx3: Beginning Read +2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 [DEBUG] Begin Injection +2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f1a00 1362 [] false false map[] 0xc001580000 0xc0002bc580} +2022/02/28 12:18:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:36 [DEBUG] Exit from do method +2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:36 [DEBUG] : Beginning Read +2022/02/28 12:18:36 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:36 [DEBUG] Begin Injection +2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f140 160 [] false false map[] 0xc001580800 0xc0000be2c0} +2022/02/28 12:18:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:36 [DEBUG] Exit from do method +2022/02/28 12:18:36 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully +2022/02/28 12:18:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001524440 1362 [] false false map[] 0xc00106b100 0xc0002bc0b0} +2022/02/28 12:18:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:36 [DEBUG] Exit from do method +2022/02/28 12:18:36 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:36 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:36 [DEBUG] Begin Injection +2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015252c0 1362 [] false false map[] 0xc00156a500 0xc0002bc790} +2022/02/28 12:18:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:36 [DEBUG] Exit from do method +2022/02/28 12:18:36 [DEBUG] acctest_hvdx3: Read finished successfully +2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:36 [DEBUG] /schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3: Beginning Read +2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 [DEBUG] Begin Injection +2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84400 5563 [] false false map[] 0xc00102a400 0xc0002bc580} +2022/02/28 12:18:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:37 [DEBUG] Exit from do method +2022/02/28 12:18:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:37 [DEBUG] 621c703f1d0000ae644fba4d: Beginning Read +2022/02/28 12:18:37 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:37 [DEBUG] Begin Injection +2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:37 [DEBUG] 621c703f1b0000b60bfd0c40: Beginning Read +2022/02/28 12:18:37 id: 621c703f1b0000b60bfd0c40 +2022/02/28 12:18:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:37 [DEBUG] Begin Injection +2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85080 1362 [] false false map[] 0xc00102aa00 0xc0002bc0b0} +2022/02/28 12:18:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:37 [DEBUG] Exit from do method +2022/02/28 12:18:37 currentvrfname acctest_idq2c +2022/02/28 12:18:37 found correct vrfname +2022/02/28 12:18:37 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:37 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:37 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:37 [DEBUG] Begin Injection +2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85b00 1362 [] false false map[] 0xc00102af00 0xc0002bc790} +2022/02/28 12:18:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:37 [DEBUG] Exit from do method +2022/02/28 12:18:37 [DEBUG] /schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3: Read finished successfully +2022/02/28 12:18:37 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:37 [DEBUG] New state was assigned lineage "14dad5d6-62a5-7f4e-ef16-000b9efdb6ad" +2022/02/28 12:18:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:37 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:37 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:37 [WARN] Test: Executing destroy step +2022/02/28 12:18:37 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:37 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:37 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:37 [DEBUG] : Beginning Read +2022/02/28 12:18:37 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:37 [DEBUG] Begin Injection +2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014da100 160 [] false false map[] 0xc00049e500 0xc0000be2c0} +2022/02/28 12:18:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 {"id":"621c703f1b0000b60bfd0c40","name":"acctest_c0r28","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:37 [DEBUG] Exit from do method +2022/02/28 12:18:37 [DEBUG] 621c703f1b0000b60bfd0c40: Read finished successfully +2022/02/28 12:18:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014da1c0 1362 [] false false map[] 0xc000ef2f00 0xc0002bc580} +2022/02/28 12:18:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:37 [DEBUG] Exit from do method +2022/02/28 12:18:37 [DEBUG] 621c703f1d0000ae644fba4d: Read finished successfully +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:37 [DEBUG] acctest_c0r28: Beginning Read +2022/02/28 12:18:37 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:37 [DEBUG] Begin Injection +2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002c5140 1362 [] false false map[] 0xc00102b400 0xc0002bc0b0} +2022/02/28 12:18:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:37 [DEBUG] Exit from do method +2022/02/28 12:18:37 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:37 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Read +2022/02/28 12:18:37 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:37 [DEBUG] Begin Injection +2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001592a40 1362 [] false false map[] 0xc0002b2100 0xc0002bc580} +2022/02/28 12:18:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:37 [DEBUG] Exit from do method +2022/02/28 12:18:37 currentvrfname acctest_c0r28 +2022/02/28 12:18:37 found correct vrfname +2022/02/28 12:18:37 [DEBUG] acctest_c0r28: Read finished successfully +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:37 [DEBUG] acctest_c0r28: Beginning Read +2022/02/28 12:18:37 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:37 [DEBUG] Begin Injection +2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001593080 5563 [] false false map[] 0xc000ef2000 0xc0002bc790} +2022/02/28 12:18:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:37 [DEBUG] Exit from do method +2022/02/28 12:18:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:37 [DEBUG] 621c703e1d0000ab644fba49: Beginning Read +2022/02/28 12:18:37 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:37 [DEBUG] Begin Injection +2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:37 [DEBUG] 621c703e1b00009f0bfd0c3e: Beginning Read +2022/02/28 12:18:37 id: 621c703e1b00009f0bfd0c3e +2022/02/28 12:18:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:37 [DEBUG] Begin Injection +2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9eac0 1362 [] false false map[] 0xc001580400 0xc0002bc0b0} +2022/02/28 12:18:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:37 [DEBUG] Exit from do method +2022/02/28 12:18:37 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully +2022/02/28 12:18:37 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:37 [DEBUG] New state was assigned lineage "b16c1e0b-65f6-9b7b-1f20-908afa5a9752" +2022/02/28 12:18:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:37 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:37 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:37 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:37 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.test + description: "" => "" + id: "" => "" + name: "" => "acctest_m3wcy" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +UPDATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_idq2c" => "acctest_idq2c" + dhcp_option_name: "" => "acctest_m3wcy" + dhcp_option_version: "0" => "1" + id: "/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c" => "/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c" + name: "acctest_idq2c" => "acctest_idq2c" + schema_id: "621c703e1d0000aa644fba4a" => "621c703e1d0000aa644fba4a" + template_name: "acctest_pexxl" => "acctest_pexxl" + version: "0" => "1" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c703f1b0000b60bfd0c3f + provider = provider.mso + description = + name = acctest_idq2c + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c703e1d0000aa644fba4a + provider = provider.mso + name = acctest_pexxl + template_name = acctest_pexxl + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_idq2c + provider = provider.mso + dhcp_policy.name = acctest_idq2c + dhcp_policy.version = 0 + display_name = acctest_idq2c + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_idq2c + schema_id = 621c703e1d0000aa644fba4a + template_name = acctest_pexxl + vrf_name = acctest_idq2c + vrf_schema_id = 621c703e1d0000aa644fba4a + vrf_template_name = acctest_pexxl + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c + provider = provider.mso + bd_name = acctest_idq2c + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_idq2c + schema_id = 621c703e1d0000aa644fba4a + template_name = acctest_pexxl + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_idq2c + provider = provider.mso + display_name = acctest_idq2c + layer3_multicast = false + name = acctest_idq2c + schema_id = 621c703e1d0000aa644fba4a + template = acctest_pexxl + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:18:37 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:18:37 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 12:18:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:18:37 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:18:37 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change +2022/02/28 12:18:37 [DEBUG] : Beginning Create +2022/02/28 12:18:37 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 12:18:37 [DEBUG] Begin Injection +2022/02/28 12:18:37 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 12:18:37 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_m3wcy","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x10f7ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 12:18:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d06240 1362 [] false false map[] 0xc000ef3200 0xc0002bc580} +2022/02/28 12:18:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:38 [DEBUG] Exit from do method +2022/02/28 12:18:38 [DEBUG] acctest_c0r28: Read finished successfully +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:38 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Beginning Read +2022/02/28 12:18:38 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:38 [DEBUG] Begin Injection +2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d07600 1362 [] false false map[] 0xc000ef3900 0xc0002bc790} +2022/02/28 12:18:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:38 [DEBUG] Exit from do method +2022/02/28 12:18:38 [DEBUG] 621c703e1d0000ab644fba49: Read finished successfully +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:38 [DEBUG] acctest_hvdx3: Beginning Read +2022/02/28 12:18:38 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:38 [DEBUG] Begin Injection +2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043d680 160 [] false false map[] 0xc001580600 0xc0000be2c0} +2022/02/28 12:18:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e {"id":"621c703e1b00009f0bfd0c3e","name":"acctest_hvdx3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:38 [DEBUG] Exit from do method +2022/02/28 12:18:38 [DEBUG] 621c703e1b00009f0bfd0c3e: Read finished successfully +2022/02/28 12:18:38 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d07b40 161 [] false false map[] 0xc00106b200 0xc0002bc0b0} +2022/02/28 12:18:38 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c70451b0000b80bfd0c41","name":"acctest_m3wcy","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:38 [DEBUG] Exit from do method +2022/02/28 12:18:38 [DEBUG] 621c70451b0000b80bfd0c41: Creation finished successfully +2022/02/28 12:18:38 [DEBUG] 621c70451b0000b80bfd0c41: Beginning Read +2022/02/28 12:18:38 id: 621c70451b0000b80bfd0c41 +2022/02/28 12:18:38 HTTP request GET mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:38 [DEBUG] Begin Injection +2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001592840 1362 [] false false map[] 0xc00049e400 0xc0002bc580} +2022/02/28 12:18:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:38 [DEBUG] Exit from do method +2022/02/28 12:18:38 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:38 [DEBUG] : Beginning Read +2022/02/28 12:18:38 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:38 [DEBUG] Begin Injection +2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d07d80 1362 [] false false map[] 0xc001580200 0xc0002bc790} +2022/02/28 12:18:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:38 [DEBUG] Exit from do method +2022/02/28 12:18:38 currentvrfname acctest_hvdx3 +2022/02/28 12:18:38 found correct vrfname +2022/02/28 12:18:38 [DEBUG] acctest_hvdx3: Read finished successfully +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:38 [DEBUG] acctest_hvdx3: Beginning Read +2022/02/28 12:18:38 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:38 [DEBUG] Begin Injection +2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014db7c0 161 [] false false map[] 0xc00049e500 0xc0002bc0b0} +2022/02/28 12:18:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 {"id":"621c70451b0000b80bfd0c41","name":"acctest_m3wcy","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:38 [DEBUG] Exit from do method +2022/02/28 12:18:38 [DEBUG] 621c70451b0000b80bfd0c41: Read finished successfully +2022/02/28 12:18:38 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change +2022/02/28 12:18:38 [DEBUG] Template BD: Beginning Update +2022/02/28 12:18:38 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:38 [DEBUG] Begin Injection +2022/02/28 12:18:38 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9ef80 1362 [] false false map[] 0xc001580800 0xc0002bc580} +2022/02/28 12:18:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:38 [DEBUG] Exit from do method +2022/02/28 12:18:38 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully +2022/02/28 12:18:38 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:38 [DEBUG] New state was assigned lineage "cf317a6b-8cea-ea0c-7b11-ce72776c6dac" +2022/02/28 12:18:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:38 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:38 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:38 [WARN] Test: Executing destroy step +2022/02/28 12:18:38 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:38 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016fa80 1362 [] false false map[] 0xc0002b2800 0xc0002bc790} +2022/02/28 12:18:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:38 [DEBUG] Exit from do method +2022/02/28 12:18:38 [DEBUG] acctest_hvdx3: Read finished successfully +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:38 [DEBUG] /schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3: Beginning Read +2022/02/28 12:18:38 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:38 [DEBUG] Begin Injection +2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:38 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:38 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:38 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:38 [DEBUG] : Beginning Read +2022/02/28 12:18:38 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:38 [DEBUG] Begin Injection +2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:38 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00102a300 0xc0002bc0b0} +2022/02/28 12:18:38 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:38 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Read +2022/02/28 12:18:38 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:38 [DEBUG] Begin Injection +2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f87340 1362 [] false false map[] 0xc00106a100 0xc0002bc580} +2022/02/28 12:18:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:39 [DEBUG] Exit from do method +2022/02/28 12:18:39 [DEBUG] /schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3: Read finished successfully +2022/02/28 12:18:39 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:39 [DEBUG] New state was assigned lineage "ac975afe-9982-fc7b-1841-6616d4a2f46f" +2022/02/28 12:18:39 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:18:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:18:39 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c703e1b00009f0bfd0c3e" => "" + name: "acctest_hvdx3" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c703e1d0000ab644fba49" => "" + name: "acctest_9wzoj" => "" + template_name: "acctest_9wzoj" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_hvdx3" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_hvdx3" => "" + id: "acctest_hvdx3" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_hvdx3" => "" + schema_id: "621c703e1d0000ab644fba49" => "" + template_name: "acctest_9wzoj" => "" + vrf_name: "acctest_hvdx3" => "" + vrf_schema_id: "621c703e1d0000ab644fba49" => "" + vrf_template_name: "acctest_9wzoj" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_hvdx3" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3" => "" + name: "acctest_hvdx3" => "" + schema_id: "621c703e1d0000ab644fba49" => "" + template_name: "acctest_9wzoj" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_hvdx3" => "" + id: "acctest_hvdx3" => "" + layer3_multicast: "false" => "" + name: "acctest_hvdx3" => "" + schema_id: "621c703e1d0000ab644fba49" => "" + template: "acctest_9wzoj" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c703e1b00009f0bfd0c3e + provider = provider.mso + description = + name = acctest_hvdx3 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c703e1d0000ab644fba49 + provider = provider.mso + name = acctest_9wzoj + template_name = acctest_9wzoj + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_hvdx3 + provider = provider.mso + dhcp_policy.name = acctest_hvdx3 + dhcp_policy.version = 0 + display_name = acctest_hvdx3 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_hvdx3 + schema_id = 621c703e1d0000ab644fba49 + template_name = acctest_9wzoj + vrf_name = acctest_hvdx3 + vrf_schema_id = 621c703e1d0000ab644fba49 + vrf_template_name = acctest_9wzoj + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3 + provider = provider.mso + bd_name = acctest_hvdx3 + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_hvdx3 + schema_id = 621c703e1d0000ab644fba49 + template_name = acctest_9wzoj + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_hvdx3 + provider = provider.mso + display_name = acctest_hvdx3 + layer3_multicast = false + name = acctest_hvdx3 + schema_id = 621c703e1d0000ab644fba49 + template = acctest_9wzoj + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:18:39 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:18:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:18:39 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:18:39 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 12:18:39 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 12:18:39 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 12:18:39 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:18:39 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 12:18:39 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 12:18:39 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 12:18:39 [DEBUG] Template BD: Beginning Update +2022/02/28 12:18:39 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:39 [DEBUG] Begin Injection +2022/02/28 12:18:39 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014db600 5563 [] false false map[] 0xc001580400 0xc0000be2c0} +2022/02/28 12:18:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:39 [DEBUG] Exit from do method +2022/02/28 12:18:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:39 [DEBUG] 621c703f1d0000ae644fba4d: Beginning Read +2022/02/28 12:18:39 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:39 [DEBUG] Begin Injection +2022/02/28 12:18:39 [DEBUG] 621c703f1b0000b60bfd0c40: Beginning Read +2022/02/28 12:18:39 id: 621c703f1b0000b60bfd0c40 +2022/02/28 12:18:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:39 [DEBUG] Begin Injection +2022/02/28 12:18:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:39 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d06040 1472 [] false false map[] 0xc001580500 0xc0002bc0b0} +2022/02/28 12:18:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:18:39 [DEBUG] Exit from do method +2022/02/28 12:18:39 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully +2022/02/28 12:18:39 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:39 [DEBUG] New state was assigned lineage "019a79e5-9687-7af8-c2f8-c1815e200c21" +2022/02/28 12:18:39 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:39 [DEBUG] Begin Injection +2022/02/28 12:18:39 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:39 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00106ad00 0xc0002bc580} +2022/02/28 12:18:39 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:39 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 12:18:39 [DEBUG] 621c703e1b00009f0bfd0c3e: Beginning Read +2022/02/28 12:18:39 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:39 [DEBUG] Begin Injection +2022/02/28 12:18:39 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:39 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 12:18:39 [DEBUG] Template BD: Beginning Update +2022/02/28 12:18:39 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:39 [DEBUG] Begin Injection +2022/02/28 12:18:39 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f0940 160 [] false false map[] 0xc00049ed00 0xc0000be2c0} +2022/02/28 12:18:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 {"id":"621c703f1b0000b60bfd0c40","name":"acctest_c0r28","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:39 [DEBUG] Exit from do method +2022/02/28 12:18:39 [DEBUG] 621c703f1b0000b60bfd0c40: Read finished successfully +2022/02/28 12:18:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005cfd80 1362 [] false false map[] 0xc00106b000 0xc0002bc0b0} +2022/02/28 12:18:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:39 [DEBUG] Exit from do method +2022/02/28 12:18:39 [DEBUG] 621c703f1d0000ae644fba4d: Read finished successfully +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:39 [DEBUG] acctest_c0r28: Beginning Read +2022/02/28 12:18:39 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:39 [DEBUG] Begin Injection +2022/02/28 12:18:39 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f0100 1472 [] false false map[] 0xc0002b2100 0xc0002bc580} +2022/02/28 12:18:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:18:39 [DEBUG] Exit from do method +2022/02/28 12:18:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:39 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:39 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:39 [DEBUG] : Beginning Read +2022/02/28 12:18:39 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:39 [DEBUG] Begin Injection +2022/02/28 12:18:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:39 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0014d4400 0xc0000be2c0} +2022/02/28 12:18:39 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e +2022/02/28 12:18:39 [DEBUG] : Read finished successfully +2022/02/28 12:18:39 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049f200 0xc0002bc0b0} +2022/02/28 12:18:39 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:39 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 12:18:39 [DEBUG] acctest_hvdx3: Beginning Destroy +2022/02/28 12:18:39 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:39 [DEBUG] Begin Injection +2022/02/28 12:18:39 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016e4c0 1362 [] false false map[] 0xc0002b2600 0xc0002bc580} +2022/02/28 12:18:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:40 [DEBUG] Exit from do method +2022/02/28 12:18:40 currentvrfname acctest_c0r28 +2022/02/28 12:18:40 found correct vrfname +2022/02/28 12:18:40 [DEBUG] acctest_c0r28: Read finished successfully +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:40 [DEBUG] acctest_c0r28: Beginning Read +2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 [DEBUG] Begin Injection +2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a8440 5563 [] false false map[] 0xc0014d4f00 0xc0000be2c0} +2022/02/28 12:18:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:40 [DEBUG] Exit from do method +2022/02/28 12:18:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 12:18:40 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read +2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:40 [DEBUG] Begin Injection +2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:40 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read +2022/02/28 12:18:40 id: 621c703f1b0000b60bfd0c3f +2022/02/28 12:18:40 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:40 [DEBUG] Begin Injection +2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:40 [DEBUG] 621c70451b0000b80bfd0c41: Beginning Read +2022/02/28 12:18:40 id: 621c70451b0000b80bfd0c41 +2022/02/28 12:18:40 HTTP request GET mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:40 [DEBUG] Begin Injection +2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:40 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001dc4500 0xc0002bc0b0} +2022/02/28 12:18:40 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false +2022/02/28 12:18:40 [DEBUG] acctest_hvdx3: Destroy finished successfully +2022/02/28 12:18:40 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 12:18:40 [DEBUG] 621c703e1d0000ab644fba49: Beginning Destroy +2022/02/28 12:18:40 HTTP request DELETE mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:40 [DEBUG] Begin Injection +2022/02/28 12:18:40 HTTP request after injection DELETE mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e780 1362 [] false false map[] 0xc001dc4000 0xc001286fd0} +2022/02/28 12:18:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:40 [DEBUG] Exit from do method +2022/02/28 12:18:40 [DEBUG] acctest_c0r28: Read finished successfully +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:40 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Beginning Read +2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 [DEBUG] Begin Injection +2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043c9c0 1472 [] false false map[] 0xc001dc4800 0xc0000be2c0} +2022/02/28 12:18:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:18:40 [DEBUG] Exit from do method +2022/02/28 12:18:40 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:40 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:40 [DEBUG] Begin Injection +2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014dbac0 160 [] false false map[] 0xc0002b2400 0xc001db0580} +2022/02/28 12:18:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:40 [DEBUG] Exit from do method +2022/02/28 12:18:40 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully +2022/02/28 12:18:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043d280 161 [] false false map[] 0xc0014d4600 0xc0002bc0b0} +2022/02/28 12:18:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 {"id":"621c70451b0000b80bfd0c41","name":"acctest_m3wcy","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:40 [DEBUG] Exit from do method +2022/02/28 12:18:40 [DEBUG] 621c70451b0000b80bfd0c41: Read finished successfully +2022/02/28 12:18:40 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001dc4b00 0xc0014780b0} +2022/02/28 12:18:40 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:40 [DEBUG] 621c703e1d0000ab644fba49: Destroy finished successfully +2022/02/28 12:18:40 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:40 [DEBUG] New state was assigned lineage "0511ac6c-c5ab-8b5d-8bea-4e059cb1bbc1" +2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:40 [DEBUG] Begin Injection +2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043d5c0 1362 [] false false map[] 0xc001dc5000 0xc001478160} +2022/02/28 12:18:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:40 [DEBUG] Exit from do method +2022/02/28 12:18:40 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:40 [DEBUG] : Beginning Read +2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 [DEBUG] Begin Injection +2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e980 1472 [] false false map[] 0xc001dc5500 0xc0000be2c0} +2022/02/28 12:18:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:18:40 [DEBUG] Exit from do method +2022/02/28 12:18:40 currentvrfname acctest_idq2c +2022/02/28 12:18:40 found correct vrfname +2022/02/28 12:18:40 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:40 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:40 [DEBUG] Begin Injection +2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 +2022/02/28 12:18:40 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f340 39 [] false false map[] 0xc001dc5700 0xc001db0580} +2022/02/28 12:18:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"code":404,"message":"Item not found"} +2022/02/28 12:18:40 [DEBUG] Exit from do method +2022/02/28 12:18:40 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:18:40 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:18:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:40 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:40 [DEBUG] : Beginning Read +2022/02/28 12:18:40 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:40 [DEBUG] Begin Injection +2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f1140 1362 [] false false map[] 0xc00049ef00 0xc001478160} +2022/02/28 12:18:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:18:40 [DEBUG] Exit from do method +2022/02/28 12:18:40 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully +2022/02/28 12:18:40 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:40 [DEBUG] New state was assigned lineage "89ca72a1-cdaa-5274-cb9a-05fc8abf8c40" +2022/02/28 12:18:40 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:18:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:18:40 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_c0r28" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28" => "" + name: "acctest_c0r28" => "" + schema_id: "621c703f1d0000ae644fba4d" => "" + template_name: "acctest_9kl4z" => "" + version: "0" => "" +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c703f1b0000b60bfd0c40" => "" + name: "acctest_c0r28" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c703f1d0000ae644fba4d" => "" + name: "acctest_9kl4z" => "" + template_name: "acctest_9kl4z" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_c0r28" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_c0r28" => "" + id: "acctest_c0r28" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_c0r28" => "" + schema_id: "621c703f1d0000ae644fba4d" => "" + template_name: "acctest_9kl4z" => "" + vrf_name: "acctest_c0r28" => "" + vrf_schema_id: "621c703f1d0000ae644fba4d" => "" + vrf_template_name: "acctest_9kl4z" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_c0r28" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28" => "" + name: "acctest_c0r28" => "" + schema_id: "621c703f1d0000ae644fba4d" => "" + template_name: "acctest_9kl4z" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_c0r28" => "" + id: "acctest_c0r28" => "" + layer3_multicast: "false" => "" + name: "acctest_c0r28" => "" + schema_id: "621c703f1d0000ae644fba4d" => "" + template: "acctest_9kl4z" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28 + provider = provider.mso + bd_name = acctest_c0r28 + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_c0r28 + schema_id = 621c703f1d0000ae644fba4d + template_name = acctest_9kl4z + version = 0 + + Dependencies: + mso_schema_template_bd_dhcp_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c703f1b0000b60bfd0c40 + provider = provider.mso + description = + name = acctest_c0r28 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c703f1d0000ae644fba4d + provider = provider.mso + name = acctest_9kl4z + template_name = acctest_9kl4z + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_c0r28 + provider = provider.mso + dhcp_policy.name = acctest_c0r28 + dhcp_policy.version = 0 + display_name = acctest_c0r28 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_c0r28 + schema_id = 621c703f1d0000ae644fba4d + template_name = acctest_9kl4z + vrf_name = acctest_c0r28 + vrf_schema_id = 621c703f1d0000ae644fba4d + vrf_template_name = acctest_9kl4z + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28 + provider = provider.mso + bd_name = acctest_c0r28 + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_c0r28 + schema_id = 621c703f1d0000ae644fba4d + template_name = acctest_9kl4z + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_c0r28 + provider = provider.mso + display_name = acctest_c0r28 + layer3_multicast = false + name = acctest_c0r28 + schema_id = 621c703f1d0000ae644fba4d + template = acctest_9kl4z + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:18:40 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:18:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:18:40 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 12:18:40 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 12:18:40 [DEBUG] Template BD: Beginning Update +2022/02/28 12:18:40 HTTP request PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:40 [DEBUG] Begin Injection +2022/02/28 12:18:40 HTTP request after injection PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043c240 1472 [] false false map[] 0xc002820500 0xc0000be2c0} +2022/02/28 12:18:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:18:41 [DEBUG] Exit from do method +2022/02/28 12:18:41 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:41 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Read +2022/02/28 12:18:41 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:41 [DEBUG] Begin Injection +2022/02/28 12:18:41 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d07600 5563 [] false false map[] 0xc001dc5900 0xc001db0580} +2022/02/28 12:18:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:41 [DEBUG] Exit from do method +2022/02/28 12:18:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:41 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:41 [DEBUG] New state was assigned lineage "1191bf6a-fc7f-605b-2ace-d5b5348f96dc" +2022/02/28 12:18:41 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:18:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:41 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:18:41 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049ff00 0xc001287290} +2022/02/28 12:18:41 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 12:18:41 [DEBUG] 621c703f1b0000b60bfd0c40: Beginning Read +2022/02/28 12:18:41 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:41 [DEBUG] Begin Injection +2022/02/28 12:18:41 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:41 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 12:18:41 [DEBUG] Template BD: Beginning Update +2022/02/28 12:18:41 HTTP request PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 [DEBUG] Begin Injection +2022/02/28 12:18:41 HTTP request after injection PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001300f40 1472 [] false false map[] 0xc0014d4f00 0xc0004f26e0} +2022/02/28 12:18:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:18:41 [DEBUG] Exit from do method +2022/02/28 12:18:41 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully +2022/02/28 12:18:41 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:41 [DEBUG] New state was assigned lineage "93864b49-070c-fdf0-433b-673c4dfd0b7b" +2022/02/28 12:18:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:41 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:41 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:41 [DEBUG] Test: Executing step 6 +2022/02/28 12:18:41 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c\")" references: [] +2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:41 [DEBUG] Starting graph walk: walkImport +2022/02/28 12:18:41 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Import +2022/02/28 12:18:41 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:41 [DEBUG] Begin Injection +2022/02/28 12:18:41 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:41 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001581400 0xc001db0580} +2022/02/28 12:18:41 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 +2022/02/28 12:18:41 [DEBUG] : Read finished successfully +2022/02/28 12:18:41 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc002820b00 0xc0019ac8f0} +2022/02/28 12:18:41 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 12:18:41 [DEBUG] acctest_c0r28: Beginning Destroy +2022/02/28 12:18:41 HTTP request PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 [DEBUG] Begin Injection +2022/02/28 12:18:41 HTTP request after injection PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae7140 1472 [] false false map[] 0xc002820400 0xc0004f26e0} +2022/02/28 12:18:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:18:41 [DEBUG] Exit from do method +2022/02/28 12:18:41 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Import finished successfully +2022/02/28 12:18:41 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Read +2022/02/28 12:18:41 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:41 [DEBUG] Begin Injection +2022/02/28 12:18:41 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:41 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ef2500 0xc0019ac8f0} +2022/02/28 12:18:41 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false +2022/02/28 12:18:41 [DEBUG] acctest_c0r28: Destroy finished successfully +2022/02/28 12:18:41 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 12:18:41 [DEBUG] 621c703f1d0000ae644fba4d: Beginning Destroy +2022/02/28 12:18:41 HTTP request DELETE mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:41 [DEBUG] Begin Injection +2022/02/28 12:18:41 HTTP request after injection DELETE mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a87c0 1472 [] false false map[] 0xc000ef2900 0xc0004f26e0} +2022/02/28 12:18:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:18:42 [DEBUG] Exit from do method +2022/02/28 12:18:42 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully +2022/02/28 12:18:42 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:42 [DEBUG] New state was assigned lineage "73a3f52d-16e6-5199-14c2-324b6b6751c5" +2022/02/28 12:18:42 [DEBUG] Test: Executing step 7 +2022/02/28 12:18:42 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:42 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:42 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:42 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:42 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config +2022/02/28 12:18:42 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config +2022/02/28 12:18:42 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:42 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:42 [DEBUG] : Beginning Read +2022/02/28 12:18:42 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:42 [DEBUG] Begin Injection +2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:42 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000ef3700 0xc0019ac8f0} +2022/02/28 12:18:42 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:42 [DEBUG] 621c703f1d0000ae644fba4d: Destroy finished successfully +2022/02/28 12:18:42 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:42 [DEBUG] New state was assigned lineage "9f746b89-348c-7d5f-7b48-81062a6d1863" +2022/02/28 12:18:42 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:42 [DEBUG] Begin Injection +2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002c4fc0 5563 [] false false map[] 0xc00106b500 0xc0004f26e0} +2022/02/28 12:18:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:42 [DEBUG] Exit from do method +2022/02/28 12:18:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:42 [DEBUG] 621c70451b0000b80bfd0c41: Beginning Read +2022/02/28 12:18:42 id: 621c70451b0000b80bfd0c41 +2022/02/28 12:18:42 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read +2022/02/28 12:18:42 HTTP request GET mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:42 [DEBUG] Begin Injection +2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:42 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:42 [DEBUG] Begin Injection +2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:42 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read +2022/02/28 12:18:42 id: 621c703f1b0000b60bfd0c3f +2022/02/28 12:18:42 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:42 [DEBUG] Begin Injection +2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:42 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9f340 39 [] false false map[] 0xc001580000 0xc0019ac8f0} +2022/02/28 12:18:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"code":404,"message":"Item not found"} +2022/02/28 12:18:42 [DEBUG] Exit from do method +2022/02/28 12:18:42 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:42 [DEBUG] Begin Injection +2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9f680 1472 [] false false map[] 0xc001580500 0xc001db0580} +2022/02/28 12:18:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:18:42 [DEBUG] Exit from do method +2022/02/28 12:18:42 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully +2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:42 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:42 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:42 [DEBUG] Begin Injection +2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84c00 161 [] false false map[] 0xc00049e800 0xc0004f26e0} +2022/02/28 12:18:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 {"id":"621c70451b0000b80bfd0c41","name":"acctest_m3wcy","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:42 [DEBUG] Exit from do method +2022/02/28 12:18:42 [DEBUG] 621c70451b0000b80bfd0c41: Read finished successfully +2022/02/28 12:18:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85180 160 [] false false map[] 0xc00049ea00 0xc0019ac8f0} +2022/02/28 12:18:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:42 [DEBUG] Exit from do method +2022/02/28 12:18:42 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully +2022/02/28 12:18:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d +2022/02/28 12:18:43 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e0c0 39 [] false false map[] 0xc0002b2c00 0xc001db0580} +2022/02/28 12:18:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"code":404,"message":"Item not found"} +2022/02/28 12:18:43 [DEBUG] Exit from do method +2022/02/28 12:18:43 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:18:43 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:18:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:43 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:43 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:43 [DEBUG] : Beginning Read +2022/02/28 12:18:43 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:43 [DEBUG] Begin Injection +2022/02/28 12:18:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d060c0 1472 [] false false map[] 0xc001580900 0xc0004f26e0} +2022/02/28 12:18:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:18:43 [DEBUG] Exit from do method +2022/02/28 12:18:43 currentvrfname acctest_idq2c +2022/02/28 12:18:43 found correct vrfname +2022/02/28 12:18:43 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:43 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:43 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:43 [DEBUG] Begin Injection +2022/02/28 12:18:43 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d06b80 1472 [] false false map[] 0xc0002b2500 0xc0004f26e0} +2022/02/28 12:18:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:18:43 [DEBUG] Exit from do method +2022/02/28 12:18:43 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:43 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Read +2022/02/28 12:18:43 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:43 [DEBUG] Begin Injection +2022/02/28 12:18:43 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85040 5563 [] false false map[] 0xc00106b900 0xc001db0580} +2022/02/28 12:18:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:43 [DEBUG] Exit from do method +2022/02/28 12:18:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:43 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:43 [DEBUG] New state was assigned lineage "07bab9ed-0e85-4ebb-b758-ca7607fdbea8" +2022/02/28 12:18:43 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:18:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:43 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:18:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016ed00 1472 [] false false map[] 0xc000dee400 0xc00101a840} +2022/02/28 12:18:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:18:43 [DEBUG] Exit from do method +2022/02/28 12:18:43 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully +2022/02/28 12:18:43 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:43 [DEBUG] New state was assigned lineage "b61d2fad-db29-da51-faeb-a6fb1fb17f69" +2022/02/28 12:18:43 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:43 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:43 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:43 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.test + description: "" => "" + id: "621c70451b0000b80bfd0c41" => "" + name: "acctest_m3wcy" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_idq2c" => "" + dhcp_option_name: "acctest_m3wcy" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c" => "" + name: "acctest_idq2c" => "" + schema_id: "621c703e1d0000aa644fba4a" => "" + template_name: "acctest_pexxl" => "" + version: "1" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.test: + ID = 621c70451b0000b80bfd0c41 + provider = provider.mso + description = + name = acctest_m3wcy + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c703f1b0000b60bfd0c3f + provider = provider.mso + description = + name = acctest_idq2c + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c703e1d0000aa644fba4a + provider = provider.mso + name = acctest_pexxl + template_name = acctest_pexxl + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_idq2c + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_m3wcy + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_idq2c + dhcp_policy.version = 1 + display_name = acctest_idq2c + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_idq2c + schema_id = 621c703e1d0000aa644fba4a + template_name = acctest_pexxl + vrf_name = acctest_idq2c + vrf_schema_id = 621c703e1d0000aa644fba4a + vrf_template_name = acctest_pexxl + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c + provider = provider.mso + bd_name = acctest_idq2c + dhcp_option_name = acctest_m3wcy + dhcp_option_version = 1 + name = acctest_idq2c + schema_id = 621c703e1d0000aa644fba4a + template_name = acctest_pexxl + version = 1 + + Dependencies: + mso_dhcp_option_policy.test + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_idq2c + provider = provider.mso + display_name = acctest_idq2c + layer3_multicast = false + name = acctest_idq2c + schema_id = 621c703e1d0000aa644fba4a + template = acctest_pexxl + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:18:43 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:18:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 12:18:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 12:18:43 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 12:18:43 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 12:18:43 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 12:18:43 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 12:18:43 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:18:43 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:18:43 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 12:18:43 [DEBUG] Template BD: Beginning Update +2022/02/28 12:18:43 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:43 [DEBUG] Begin Injection +2022/02/28 12:18:43 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:44 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000bab300 0xc001db0580} +2022/02/28 12:18:44 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:44 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change +2022/02/28 12:18:44 [DEBUG] 621c70451b0000b80bfd0c41: Beginning Read +2022/02/28 12:18:44 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:44 [DEBUG] Begin Injection +2022/02/28 12:18:44 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:44 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001580200 0xc001db0580} +2022/02/28 12:18:44 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 +2022/02/28 12:18:44 [DEBUG] : Read finished successfully +2022/02/28 12:18:44 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:44 [DEBUG] New state was assigned lineage "3ae289c2-b595-0839-98aa-e8c272adc849" +2022/02/28 12:18:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:44 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:44 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:44 [DEBUG] : Beginning Read +2022/02/28 12:18:44 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:44 [DEBUG] Begin Injection +2022/02/28 12:18:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014da280 5563 [] false false map[] 0xc000baa200 0xc001db0580} +2022/02/28 12:18:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:44 [DEBUG] Exit from do method +2022/02/28 12:18:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:44 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read +2022/02/28 12:18:44 id: 621c703f1b0000b60bfd0c3f +2022/02/28 12:18:44 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:44 [DEBUG] Begin Injection +2022/02/28 12:18:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:44 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read +2022/02/28 12:18:44 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:44 [DEBUG] Begin Injection +2022/02/28 12:18:44 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000497000 160 [] false false map[] 0xc000276500 0xc001db0580} +2022/02/28 12:18:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:45 [DEBUG] Exit from do method +2022/02/28 12:18:45 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully +2022/02/28 12:18:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f86640 1277 [] false false map[] 0xc000baa900 0xc0019ac8f0} +2022/02/28 12:18:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 12:18:45 [DEBUG] Exit from do method +2022/02/28 12:18:45 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:45 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:45 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:45 [DEBUG] Begin Injection +2022/02/28 12:18:45 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001300b00 1277 [] false false map[] 0xc000276900 0xc0019ac8f0} +2022/02/28 12:18:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 12:18:45 [DEBUG] Exit from do method +2022/02/28 12:18:45 currentvrfname acctest_idq2c +2022/02/28 12:18:45 found correct vrfname +2022/02/28 12:18:45 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:45 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:45 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:45 [DEBUG] Begin Injection +2022/02/28 12:18:45 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043db40 1277 [] false false map[] 0xc000baaf00 0xc0019ac8f0} +2022/02/28 12:18:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 12:18:45 [DEBUG] Exit from do method +2022/02/28 12:18:45 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:45 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:45 [DEBUG] New state was assigned lineage "f9cf8e6b-7f73-7e54-f886-7c90f04128ae" +2022/02/28 12:18:45 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:45 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:45 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:45 [DEBUG] Test: Executing step 8 +2022/02/28 12:18:45 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:45 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:45 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:45 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:45 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:45 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:45 [DEBUG] : Beginning Read +2022/02/28 12:18:45 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:45 [DEBUG] Begin Injection +2022/02/28 12:18:45 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000497300 5563 [] false false map[] 0xc0010a5500 0xc0019ac8f0} +2022/02/28 12:18:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:46 [DEBUG] Exit from do method +2022/02/28 12:18:46 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:46 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read +2022/02/28 12:18:46 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:46 [DEBUG] Begin Injection +2022/02/28 12:18:46 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:46 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read +2022/02/28 12:18:46 id: 621c703f1b0000b60bfd0c3f +2022/02/28 12:18:46 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:46 [DEBUG] Begin Injection +2022/02/28 12:18:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000810200 160 [] false false map[] 0xc000f80f00 0xc001db0580} +2022/02/28 12:18:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:46 [DEBUG] Exit from do method +2022/02/28 12:18:46 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully +2022/02/28 12:18:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000810340 1277 [] false false map[] 0xc001058600 0xc0019ac8f0} +2022/02/28 12:18:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 12:18:46 [DEBUG] Exit from do method +2022/02/28 12:18:46 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully +2022/02/28 12:18:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:46 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:46 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:46 [DEBUG] Begin Injection +2022/02/28 12:18:46 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f86040 1277 [] false false map[] 0xc001058300 0xc0019ac8f0} +2022/02/28 12:18:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 12:18:46 [DEBUG] Exit from do method +2022/02/28 12:18:46 currentvrfname acctest_idq2c +2022/02/28 12:18:46 found correct vrfname +2022/02/28 12:18:46 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:46 [DEBUG] acctest_idq2c: Beginning Read +2022/02/28 12:18:46 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:46 [DEBUG] Begin Injection +2022/02/28 12:18:46 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000497a40 1277 [] false false map[] 0xc000f80400 0xc0019ac8f0} +2022/02/28 12:18:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 12:18:47 [DEBUG] Exit from do method +2022/02/28 12:18:47 [DEBUG] acctest_idq2c: Read finished successfully +2022/02/28 12:18:47 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:47 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:47 [DEBUG] New state was assigned lineage "859046d6-2217-53ad-4eff-09eff5f79b47" +2022/02/28 12:18:47 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:47 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:47 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:47 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:47 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c703f1b0000b60bfd0c3f" => "" + name: "acctest_idq2c" => "acctest_30vko" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "acctest_idq2c" => "acctest_30vko" (forces new resource) + id: "acctest_idq2c" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_idq2c" => "acctest_30vko" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c703e1d0000aa644fba4a" => "621c703e1d0000aa644fba4a" + template_name: "acctest_pexxl" => "acctest_pexxl" + vrf_name: "acctest_idq2c" => "acctest_30vko" + vrf_schema_id: "621c703e1d0000aa644fba4a" => "" + vrf_template_name: "acctest_pexxl" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_30vko" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_30vko" + schema_id: "" => "621c703e1d0000aa644fba4a" + template_name: "" => "acctest_pexxl" + version: "" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_idq2c" => "acctest_30vko" + id: "acctest_idq2c" => "" + layer3_multicast: "false" => "" + name: "acctest_idq2c" => "acctest_30vko" (forces new resource) + schema_id: "621c703e1d0000aa644fba4a" => "621c703e1d0000aa644fba4a" + template: "acctest_pexxl" => "acctest_pexxl" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c703f1b0000b60bfd0c3f + provider = provider.mso + description = + name = acctest_idq2c + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c703e1d0000aa644fba4a + provider = provider.mso + name = acctest_pexxl + template_name = acctest_pexxl + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_idq2c + provider = provider.mso + display_name = acctest_idq2c + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_idq2c + schema_id = 621c703e1d0000aa644fba4a + template_name = acctest_pexxl + vrf_name = acctest_idq2c + vrf_schema_id = 621c703e1d0000aa644fba4a + vrf_template_name = acctest_pexxl + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_idq2c + provider = provider.mso + display_name = acctest_idq2c + layer3_multicast = false + name = acctest_idq2c + schema_id = 621c703e1d0000aa644fba4a + template = acctest_pexxl + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:18:47 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:18:47 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:47 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:18:47 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 12:18:47 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read +2022/02/28 12:18:47 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:47 [DEBUG] Begin Injection +2022/02/28 12:18:47 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:47 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 12:18:47 [DEBUG] Template BD: Beginning Update +2022/02/28 12:18:47 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 [DEBUG] Begin Injection +2022/02/28 12:18:47 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001585400 0xc001db0580} +2022/02/28 12:18:47 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 12:18:47 [DEBUG] acctest_idq2c: Beginning Destroy +2022/02/28 12:18:47 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 [DEBUG] Begin Injection +2022/02/28 12:18:47 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc002444d00 0xc0019ac8f0} +2022/02/28 12:18:47 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f +2022/02/28 12:18:47 [DEBUG] : Read finished successfully +2022/02/28 12:18:47 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:18:47 [DEBUG] : Beginning Create +2022/02/28 12:18:47 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:47 [DEBUG] Begin Injection +2022/02/28 12:18:47 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:47 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"desc":"","name":"acctest_30vko","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x10f7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} +2022/02/28 12:18:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:47 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001585800 0xc001db0580} +2022/02/28 12:18:47 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 [DEBUG] acctest_idq2c: Destroy finished successfully +2022/02/28 12:18:47 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:18:47 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:18:47 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 [DEBUG] Begin Injection +2022/02/28 12:18:47 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:47 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:18:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014db740 160 [] false false map[] 0xc002445400 0xc0019ac8f0} +2022/02/28 12:18:47 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c704f1b0000b80bfd0c42","name":"acctest_30vko","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:47 [DEBUG] Exit from do method +2022/02/28 12:18:47 [DEBUG] 621c704f1b0000b80bfd0c42: Creation finished successfully +2022/02/28 12:18:47 [DEBUG] 621c704f1b0000b80bfd0c42: Beginning Read +2022/02/28 12:18:47 id: 621c704f1b0000b80bfd0c42 +2022/02/28 12:18:47 HTTP request GET mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:47 [DEBUG] Begin Injection +2022/02/28 12:18:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001593700 160 [] false false map[] 0xc001585a00 0xc0019ac8f0} +2022/02/28 12:18:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 {"id":"621c704f1b0000b80bfd0c42","name":"acctest_30vko","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:48 [DEBUG] Exit from do method +2022/02/28 12:18:48 [DEBUG] 621c704f1b0000b80bfd0c42: Read finished successfully +2022/02/28 12:18:48 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:48 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0011f0000 0xc001db0580} +2022/02/28 12:18:48 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:48 [DEBUG] acctest_30vko: Creation finished successfully +2022/02/28 12:18:48 [DEBUG] acctest_30vko: Beginning Read +2022/02/28 12:18:48 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:48 [DEBUG] Begin Injection +2022/02/28 12:18:48 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e340 768 [] false false map[] 0xc000388000 0xc001db0580} +2022/02/28 12:18:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 12:18:48 [DEBUG] Exit from do method +2022/02/28 12:18:48 currentvrfname acctest_30vko +2022/02/28 12:18:48 found correct vrfname +2022/02/28 12:18:48 [DEBUG] acctest_30vko: Read finished successfully +2022/02/28 12:18:48 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:18:48 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:18:48 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:18:48 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:48 [DEBUG] Begin Injection +2022/02/28 12:18:48 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:49 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001584a00 0xc001db0580} +2022/02/28 12:18:49 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:49 [DEBUG] : Beginning Read +2022/02/28 12:18:49 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:49 [DEBUG] Begin Injection +2022/02/28 12:18:49 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107ea40 1278 [] false false map[] 0xc001584c00 0xc001db0580} +2022/02/28 12:18:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 12:18:49 [DEBUG] Exit from do method +2022/02/28 12:18:49 [DEBUG] acctest_30vko: Read finished successfully +2022/02/28 12:18:49 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:18:49 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:18:49 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:49 [DEBUG] Begin Injection +2022/02/28 12:18:49 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:49 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049e700 0xc001db0580} +2022/02/28 12:18:49 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:49 [DEBUG] Creation Complete +2022/02/28 12:18:49 [DEBUG] : Beginning Read +2022/02/28 12:18:49 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:49 [DEBUG] Begin Injection +2022/02/28 12:18:49 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f1d40 1363 [] false false map[] 0xc002444000 0xc001db0580} +2022/02/28 12:18:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:18:50 [DEBUG] Exit from do method +2022/02/28 12:18:50 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko: Read finished successfully +2022/02/28 12:18:50 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:50 [DEBUG] New state was assigned lineage "ab0f35a8-d946-f3f8-822a-c23d6fc74bc9" +2022/02/28 12:18:50 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:50 [DEBUG] Begin Injection +2022/02/28 12:18:50 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001592600 1363 [] false false map[] 0xc002444100 0xc001db0580} +2022/02/28 12:18:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:18:50 [DEBUG] Exit from do method +2022/02/28 12:18:50 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:18:50 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:50 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:50 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:50 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:50 [DEBUG] : Beginning Read +2022/02/28 12:18:50 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:50 [DEBUG] Begin Injection +2022/02/28 12:18:50 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a8180 5563 [] false false map[] 0xc00049ec00 0xc001db0580} +2022/02/28 12:18:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:51 [DEBUG] Exit from do method +2022/02/28 12:18:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:51 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read +2022/02/28 12:18:51 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:51 [DEBUG] Begin Injection +2022/02/28 12:18:51 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:51 [DEBUG] 621c704f1b0000b80bfd0c42: Beginning Read +2022/02/28 12:18:51 id: 621c704f1b0000b80bfd0c42 +2022/02/28 12:18:51 HTTP request GET mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:51 [DEBUG] Begin Injection +2022/02/28 12:18:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016ec40 160 [] false false map[] 0xc00049e500 0xc0019ac8f0} +2022/02/28 12:18:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 {"id":"621c704f1b0000b80bfd0c42","name":"acctest_30vko","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:51 [DEBUG] Exit from do method +2022/02/28 12:18:51 [DEBUG] 621c704f1b0000b80bfd0c42: Read finished successfully +2022/02/28 12:18:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016ed00 1363 [] false false map[] 0xc000dba300 0xc001db0580} +2022/02/28 12:18:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:18:51 [DEBUG] Exit from do method +2022/02/28 12:18:51 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully +2022/02/28 12:18:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:51 [DEBUG] acctest_30vko: Beginning Read +2022/02/28 12:18:51 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:51 [DEBUG] Begin Injection +2022/02/28 12:18:51 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000811ac0 1363 [] false false map[] 0xc0009a4600 0xc001db0580} +2022/02/28 12:18:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:18:51 [DEBUG] Exit from do method +2022/02/28 12:18:51 currentvrfname acctest_30vko +2022/02/28 12:18:51 found correct vrfname +2022/02/28 12:18:51 [DEBUG] acctest_30vko: Read finished successfully +2022/02/28 12:18:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:51 [DEBUG] acctest_30vko: Beginning Read +2022/02/28 12:18:51 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:51 [DEBUG] Begin Injection +2022/02/28 12:18:51 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004973c0 1363 [] false false map[] 0xc000dba900 0xc001db0580} +2022/02/28 12:18:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:18:52 [DEBUG] Exit from do method +2022/02/28 12:18:52 [DEBUG] acctest_30vko: Read finished successfully +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:52 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko: Beginning Read +2022/02/28 12:18:52 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:52 [DEBUG] Begin Injection +2022/02/28 12:18:52 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9f600 1363 [] false false map[] 0xc000980400 0xc001db0580} +2022/02/28 12:18:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:18:52 [DEBUG] Exit from do method +2022/02/28 12:18:52 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko: Read finished successfully +2022/02/28 12:18:52 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:52 [DEBUG] New state was assigned lineage "31c80de8-bb2f-748d-3337-ed655028e437" +2022/02/28 12:18:52 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:18:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:52 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:52 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:52 [WARN] Test: Executing destroy step +2022/02/28 12:18:52 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:18:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:18:52 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:18:52 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:52 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:18:52 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:52 [DEBUG] : Beginning Read +2022/02/28 12:18:52 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:52 [DEBUG] Begin Injection +2022/02/28 12:18:52 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e240 5563 [] false false map[] 0xc00049ec00 0xc001db0580} +2022/02/28 12:18:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:52 [DEBUG] Exit from do method +2022/02/28 12:18:52 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:18:52 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read +2022/02/28 12:18:52 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:52 [DEBUG] Begin Injection +2022/02/28 12:18:52 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:52 [DEBUG] 621c704f1b0000b80bfd0c42: Beginning Read +2022/02/28 12:18:52 id: 621c704f1b0000b80bfd0c42 +2022/02/28 12:18:52 HTTP request GET mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:52 [DEBUG] Begin Injection +2022/02/28 12:18:52 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f87980 1363 [] false false map[] 0xc000c94300 0xc001db0580} +2022/02/28 12:18:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:18:53 [DEBUG] Exit from do method +2022/02/28 12:18:53 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully +2022/02/28 12:18:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:18:53 [DEBUG] acctest_30vko: Beginning Read +2022/02/28 12:18:53 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:53 [DEBUG] Begin Injection +2022/02/28 12:18:53 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f9c0 160 [] false false map[] 0xc00049ef00 0xc0019ac8f0} +2022/02/28 12:18:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 {"id":"621c704f1b0000b80bfd0c42","name":"acctest_30vko","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:18:53 [DEBUG] Exit from do method +2022/02/28 12:18:53 [DEBUG] 621c704f1b0000b80bfd0c42: Read finished successfully +2022/02/28 12:18:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000496a40 1363 [] false false map[] 0xc0000a8700 0xc001db0580} +2022/02/28 12:18:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:18:53 [DEBUG] Exit from do method +2022/02/28 12:18:53 currentvrfname acctest_30vko +2022/02/28 12:18:53 found correct vrfname +2022/02/28 12:18:53 [DEBUG] acctest_30vko: Read finished successfully +2022/02/28 12:18:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:18:53 [DEBUG] acctest_30vko: Beginning Read +2022/02/28 12:18:53 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:53 [DEBUG] Begin Injection +2022/02/28 12:18:53 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008102c0 1363 [] false false map[] 0xc000b4a400 0xc001db0580} +2022/02/28 12:18:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:18:53 [DEBUG] Exit from do method +2022/02/28 12:18:53 [DEBUG] acctest_30vko: Read finished successfully +2022/02/28 12:18:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:18:53 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko: Beginning Read +2022/02/28 12:18:53 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:53 [DEBUG] Begin Injection +2022/02/28 12:18:53 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000496d00 1363 [] false false map[] 0xc000b4a900 0xc001db0580} +2022/02/28 12:18:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:18:54 [DEBUG] Exit from do method +2022/02/28 12:18:54 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko: Read finished successfully +2022/02/28 12:18:54 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:54 [DEBUG] New state was assigned lineage "636a5aa2-0da5-510d-485b-0f79dc72d1ab" +2022/02/28 12:18:54 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:18:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:18:54 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:18:54 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c704f1b0000b80bfd0c42" => "" + name: "acctest_30vko" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c703e1d0000aa644fba4a" => "" + name: "acctest_pexxl" => "" + template_name: "acctest_pexxl" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_30vko" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_30vko" => "" + id: "acctest_30vko" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_30vko" => "" + schema_id: "621c703e1d0000aa644fba4a" => "" + template_name: "acctest_pexxl" => "" + vrf_name: "acctest_30vko" => "" + vrf_schema_id: "621c703e1d0000aa644fba4a" => "" + vrf_template_name: "acctest_pexxl" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_30vko" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko" => "" + name: "acctest_30vko" => "" + schema_id: "621c703e1d0000aa644fba4a" => "" + template_name: "acctest_pexxl" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_30vko" => "" + id: "acctest_30vko" => "" + layer3_multicast: "false" => "" + name: "acctest_30vko" => "" + schema_id: "621c703e1d0000aa644fba4a" => "" + template: "acctest_pexxl" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c704f1b0000b80bfd0c42 + provider = provider.mso + description = + name = acctest_30vko + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c703e1d0000aa644fba4a + provider = provider.mso + name = acctest_pexxl + template_name = acctest_pexxl + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_30vko + provider = provider.mso + dhcp_policy.name = acctest_30vko + dhcp_policy.version = 0 + display_name = acctest_30vko + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_30vko + schema_id = 621c703e1d0000aa644fba4a + template_name = acctest_pexxl + vrf_name = acctest_30vko + vrf_schema_id = 621c703e1d0000aa644fba4a + vrf_template_name = acctest_pexxl + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko + provider = provider.mso + bd_name = acctest_30vko + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_30vko + schema_id = 621c703e1d0000aa644fba4a + template_name = acctest_pexxl + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_30vko + provider = provider.mso + display_name = acctest_30vko + layer3_multicast = false + name = acctest_30vko + schema_id = 621c703e1d0000aa644fba4a + template = acctest_pexxl + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:18:54 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:18:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (destroy) +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:18:54 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:18:54 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:18:54 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 12:18:54 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 12:18:54 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 12:18:54 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 12:18:54 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 12:18:54 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 12:18:54 [DEBUG] Template BD: Beginning Update +2022/02/28 12:18:54 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:54 [DEBUG] Begin Injection +2022/02/28 12:18:54 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:54 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:54 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049e500 0xc001db0580} +2022/02/28 12:18:54 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:54 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 12:18:54 [DEBUG] 621c704f1b0000b80bfd0c42: Beginning Read +2022/02/28 12:18:54 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:54 [DEBUG] Begin Injection +2022/02/28 12:18:54 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:54 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 12:18:54 [DEBUG] Template BD: Beginning Update +2022/02/28 12:18:54 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:54 [DEBUG] Begin Injection +2022/02/28 12:18:54 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:54 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:54 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000b4a800 0xc001db0580} +2022/02/28 12:18:54 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 +2022/02/28 12:18:54 [DEBUG] : Read finished successfully +2022/02/28 12:18:54 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:54 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000eb6100 0xc0019ac8f0} +2022/02/28 12:18:54 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:54 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 12:18:54 [DEBUG] acctest_30vko: Beginning Destroy +2022/02/28 12:18:54 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:54 [DEBUG] Begin Injection +2022/02/28 12:18:54 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:55 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:55 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000b4bc00 0xc0019ac8f0} +2022/02/28 12:18:55 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false +2022/02/28 12:18:55 [DEBUG] acctest_30vko: Destroy finished successfully +2022/02/28 12:18:55 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 12:18:55 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Destroy +2022/02/28 12:18:55 HTTP request DELETE mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:55 [DEBUG] Begin Injection +2022/02/28 12:18:55 HTTP request after injection DELETE mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:55 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:55 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000578600 0xc0019ac8f0} +2022/02/28 12:18:55 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:55 [DEBUG] 621c703e1d0000aa644fba4a: Destroy finished successfully +2022/02/28 12:18:55 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:55 [DEBUG] New state was assigned lineage "0e5b0b5e-560b-f635-0d47-257c0ce69ca5" +2022/02/28 12:18:55 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:55 [DEBUG] Begin Injection +2022/02/28 12:18:55 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a +2022/02/28 12:18:55 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:55 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772c80 39 [] false false map[] 0xc000b4be00 0xc0019ac8f0} +2022/02/28 12:18:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"code":404,"message":"Item not found"} +2022/02/28 12:18:55 [DEBUG] Exit from do method +2022/02/28 12:18:55 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:18:55 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:18:55 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:18:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:18:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:55 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:18:55 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:18:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:55 [DEBUG] : Beginning Read +2022/02/28 12:18:55 HTTP request GET mso/api/v1/tenants +2022/02/28 12:18:55 [DEBUG] Begin Injection +2022/02/28 12:18:55 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:18:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:18:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d06a40 5563 [] false false map[] 0xc00049e400 0xc0019ac8f0} +2022/02/28 12:18:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:18:56 [DEBUG] Exit from do method +2022/02/28 12:18:56 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:18:56 [DEBUG] provider has no plugin.Client +2022/02/28 12:18:56 [DEBUG] New state was assigned lineage "9cc7476d-ea4e-4a11-50a2-232a26700321" +2022/02/28 12:18:56 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:18:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:18:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:18:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:18:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:18:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:18:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:18:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:18:56 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:19:09 [DEBUG] Test: Executing step 0 +2022/02/28 12:19:09 [DEBUG] Test: Executing step 0 +2022/02/28 12:19:09 [DEBUG] Test: Executing step 0 +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:19:09 [DEBUG] Test: Executing step 1 +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. +2022/02/28 12:19:09 [DEBUG] Test: Executing step 1 +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:09 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] : Beginning Read +2022/02/28 12:19:09 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:09 [DEBUG] Begin Injection +2022/02/28 12:19:09 HTTP request POST /login +2022/02/28 12:19:09 HTTP request after injection POST /login +2022/02/28 12:19:09 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:19:09 [DEBUG] Test: Executing step 2 +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. +2022/02/28 12:19:09 [DEBUG] Test: Executing step 2 +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:19:09 [DEBUG] Test: Executing step 3 +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. +2022/02/28 12:19:09 [DEBUG] Test: Executing step 3 +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:19:09 [DEBUG] Test: Executing step 4 +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/28 12:19:09 [DEBUG] Test: Executing step 4 +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:09 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:09 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:09 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:09 [DEBUG] : Beginning Read +2022/02/28 12:19:09 [DEBUG] : Beginning Read +2022/02/28 12:19:09 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:09 [DEBUG] Begin Injection +2022/02/28 12:19:09 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:09 [DEBUG] Begin Injection +2022/02/28 12:19:09 HTTP request POST /login +2022/02/28 12:19:09 HTTP request POST /login +2022/02/28 12:19:09 HTTP request after injection POST /login +2022/02/28 12:19:09 HTTP request after injection POST /login +2022/02/28 12:19:09 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 12:19:09 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/28 12:19:10 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 12:19:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:10 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ3o4Rll4SFJoMWRpandXQ01CSFdkNTdlIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Vs1QjljvAYPycXt6It6BvLSKNeFrk3wyEWSUOO_0-K3499wihtIr0vpNP35e2kMQw6Q20vlrK50H-4jDufHRDzw7Fc7LxsgvemRl6AUNcC_-oLzqsxOZFaNfvgjPvh926oBimrjQHyWQwfrMMc-ktljJEXzhhhAD7W1jPkJ9hXheDiP0IKP2m--yDnLLT2hsBCScv0NBaaHqkSu2yyIrSi1eTV8FF7zRMK_b-7DTYT4_xWV9zWfhPi385ZhgSqNahIFmeh5jDGbRS7lNLt9WXd3-NXWs7wYgrq1LjATjor-_XaSioveq4W0mNxrtuEQ-jmWLOUpMPcaejwASNaatyA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00057a740 -1 [chunked] false false map[] 0xc000076600 0xc0004e6000} +2022/02/28 12:19:10 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ3o4Rll4SFJoMWRpandXQ01CSFdkNTdlIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Vs1QjljvAYPycXt6It6BvLSKNeFrk3wyEWSUOO_0-K3499wihtIr0vpNP35e2kMQw6Q20vlrK50H-4jDufHRDzw7Fc7LxsgvemRl6AUNcC_-oLzqsxOZFaNfvgjPvh926oBimrjQHyWQwfrMMc-ktljJEXzhhhAD7W1jPkJ9hXheDiP0IKP2m--yDnLLT2hsBCScv0NBaaHqkSu2yyIrSi1eTV8FF7zRMK_b-7DTYT4_xWV9zWfhPi385ZhgSqNahIFmeh5jDGbRS7lNLt9WXd3-NXWs7wYgrq1LjATjor-_XaSioveq4W0mNxrtuEQ-jmWLOUpMPcaejwASNaatyA","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ3o4Rll4SFJoMWRpandXQ01CSFdkNTdlIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Vs1QjljvAYPycXt6It6BvLSKNeFrk3wyEWSUOO_0-K3499wihtIr0vpNP35e2kMQw6Q20vlrK50H-4jDufHRDzw7Fc7LxsgvemRl6AUNcC_-oLzqsxOZFaNfvgjPvh926oBimrjQHyWQwfrMMc-ktljJEXzhhhAD7W1jPkJ9hXheDiP0IKP2m--yDnLLT2hsBCScv0NBaaHqkSu2yyIrSi1eTV8FF7zRMK_b-7DTYT4_xWV9zWfhPi385ZhgSqNahIFmeh5jDGbRS7lNLt9WXd3-NXWs7wYgrq1LjATjor-_XaSioveq4W0mNxrtuEQ-jmWLOUpMPcaejwASNaatyA"} +2022/02/28 12:19:10 [DEBUG] Exit from do method +2022/02/28 12:19:10 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:10 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 12:19:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:10 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSDdqYmhzVFZPajFiSDFlRkJ1dHNOaDVXIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.hqRGb3DlKe13YwsOV8unRAzV40tVKl7qimGJAQ6su8cEEJT0krZnBFwD4hTEMELyqV1W3dzZliJMSJYjoAxCPLQEYCCgxd1JzS5cKxovS75pI-DB61pjVpsUNtIxP-zq8BR1A_jqZ5VA2EtJuo5iUoEN0OLTPSLpB5m248SrpCsm6VffDGL1f5Y-WrElzxhJNbQ_5sHDyYZS5YQ-RbPhNAr5jgYRdOiscU63mU5jbw8C179TK_5OH8POHqhVfG5i2KFFJ1iedXL70gwF4IA6Qwocghi7nxLvBZVzDpktDs9blvrkeezkmiTJNQp3bS2H3tcmsZp9SXVzH8w9AztlVA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0005e6680 -1 [chunked] false false map[] 0xc000954200 0xc000d9a000} +2022/02/28 12:19:10 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSDdqYmhzVFZPajFiSDFlRkJ1dHNOaDVXIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.hqRGb3DlKe13YwsOV8unRAzV40tVKl7qimGJAQ6su8cEEJT0krZnBFwD4hTEMELyqV1W3dzZliJMSJYjoAxCPLQEYCCgxd1JzS5cKxovS75pI-DB61pjVpsUNtIxP-zq8BR1A_jqZ5VA2EtJuo5iUoEN0OLTPSLpB5m248SrpCsm6VffDGL1f5Y-WrElzxhJNbQ_5sHDyYZS5YQ-RbPhNAr5jgYRdOiscU63mU5jbw8C179TK_5OH8POHqhVfG5i2KFFJ1iedXL70gwF4IA6Qwocghi7nxLvBZVzDpktDs9blvrkeezkmiTJNQp3bS2H3tcmsZp9SXVzH8w9AztlVA","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSDdqYmhzVFZPajFiSDFlRkJ1dHNOaDVXIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.hqRGb3DlKe13YwsOV8unRAzV40tVKl7qimGJAQ6su8cEEJT0krZnBFwD4hTEMELyqV1W3dzZliJMSJYjoAxCPLQEYCCgxd1JzS5cKxovS75pI-DB61pjVpsUNtIxP-zq8BR1A_jqZ5VA2EtJuo5iUoEN0OLTPSLpB5m248SrpCsm6VffDGL1f5Y-WrElzxhJNbQ_5sHDyYZS5YQ-RbPhNAr5jgYRdOiscU63mU5jbw8C179TK_5OH8POHqhVfG5i2KFFJ1iedXL70gwF4IA6Qwocghi7nxLvBZVzDpktDs9blvrkeezkmiTJNQp3bS2H3tcmsZp9SXVzH8w9AztlVA"} +2022/02/28 12:19:10 [DEBUG] Exit from do method +2022/02/28 12:19:10 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:10 +HTTP Request: POST https://173.36.219.31/login +2022/02/28 12:19:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:10 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00057a940 -1 [chunked] false false map[] 0xc001120d00 0xc0005b4000} +2022/02/28 12:19:10 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A"} +2022/02/28 12:19:10 [DEBUG] Exit from do method +2022/02/28 12:19:10 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e6ac0 5563 [] false false map[] 0xc000076500 0xc0004e6000} +2022/02/28 12:19:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:11 [DEBUG] Exit from do method +2022/02/28 12:19:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:11 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:11 [DEBUG] New state was assigned lineage "ba9facc0-a812-37ca-111f-f6338abdee08" +2022/02/28 12:19:11 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:11 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8180 5563 [] false false map[] 0xc000954100 0xc000d9a000} +2022/02/28 12:19:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:11 [DEBUG] Exit from do method +2022/02/28 12:19:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:11 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:11 [DEBUG] New state was assigned lineage "7417fa38-92e9-b11b-f095-691574728ce5" +2022/02/28 12:19:11 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:19:11 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:11 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:11 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_m9myr_invalid" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_m9myr" + schema_id: "" => "" + template_name: "" => "acctest_ud1gn" + version: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_m9myr" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_ud1gn" + template_name: "" => "acctest_ud1gn" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_m9myr" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_m9myr" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_ud1gn" + vrf_name: "" => "acctest_m9myr" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_m9myr" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_m9myr" + schema_id: "" => "" + template_name: "" => "acctest_ud1gn" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_m9myr" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_m9myr" + schema_id: "" => "" + template: "" => "acctest_ud1gn" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:19:11 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:19:11 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:11 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:11 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_bwj42" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_vlyjs" + template_name: "" => "acctest_vlyjs" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_bwj42" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_bwj42" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_vlyjs" + vrf_name: "" => "acctest_bwj42" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_bwj42_invalid" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_bwj42" + schema_id: "" => "" + template_name: "" => "acctest_vlyjs" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_bwj42" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_bwj42" + schema_id: "" => "" + template: "" => "acctest_vlyjs" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:19:11 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:11 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:19:11 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:19:11 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:19:11 [DEBUG] Schema: Beginning Creation +2022/02/28 12:19:11 [DEBUG] : Beginning Create +2022/02/28 12:19:11 HTTP request POST mso/api/v1/schemas +2022/02/28 12:19:11 [DEBUG] Begin Injection +2022/02/28 12:19:11 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:19:11 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:11 [DEBUG] Begin Injection +2022/02/28 12:19:11 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"displayName":"acctest_ud1gn","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_ud1gn","externalEpgs":[],"filters":[],"name":"acctest_ud1gn","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x9d7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:19:11 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:11 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"desc":"","name":"acctest_m9myr","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9d7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:11 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:19:11 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:19:11 [DEBUG] Schema: Beginning Creation +2022/02/28 12:19:11 HTTP request POST mso/api/v1/schemas +2022/02/28 12:19:11 [DEBUG] Begin Injection +2022/02/28 12:19:11 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:19:11 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"displayName":"acctest_vlyjs","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_vlyjs","externalEpgs":[],"filters":[],"name":"acctest_vlyjs","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x9d7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:19:11 [DEBUG] : Beginning Create +2022/02/28 12:19:11 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:11 [DEBUG] Begin Injection +2022/02/28 12:19:11 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:11 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"desc":"","name":"acctest_bwj42","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9d7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004dd40 5563 [] false false map[] 0xc001120c00 0xc0005b4000} +2022/02/28 12:19:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:11 [DEBUG] Exit from do method +2022/02/28 12:19:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:11 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:11 [DEBUG] New state was assigned lineage "8d495b28-2c2c-0e57-7c3b-d8603cebbcbc" +2022/02/28 12:19:11 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:11 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:11 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:11 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_tm86m" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_qnr4i" + template_name: "" => "acctest_qnr4i" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "" => "acctest_tm86m" + id: "" => "" + intersite_bum_traffic: "" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_tm86m" + optimize_wan_bandwidth: "" => "" + schema_id: "" => "" + template_name: "" => "acctest_qnr4i" + vrf_name: "" => "acctest_tm86m" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_tm86m" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_tm86m" + schema_id: "" => "" + template_name: "" => "acctest_qnr4i" + version: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_tm86m" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_tm86m" + schema_id: "" => "" + template: "" => "acctest_qnr4i" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/28 12:19:11 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test +2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state)] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:19:11 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:19:11 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:19:11 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/28 12:19:11 [DEBUG] Schema: Beginning Creation +2022/02/28 12:19:11 [DEBUG] : Beginning Create +2022/02/28 12:19:11 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:11 HTTP request POST mso/api/v1/schemas +2022/02/28 12:19:11 [DEBUG] Begin Injection +2022/02/28 12:19:11 HTTP request after injection POST mso/api/v1/schemas +2022/02/28 12:19:11 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"displayName":"acctest_qnr4i","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_qnr4i","externalEpgs":[],"filters":[],"name":"acctest_qnr4i","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x9d7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 12:19:11 [DEBUG] Begin Injection +2022/02/28 12:19:11 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:11 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"desc":"","name":"acctest_tm86m","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9d7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:19:11 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009fa6c0 160 [] false false map[] 0xc000076700 0xc0004e6000} +2022/02/28 12:19:11 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c70671b00009f0bfd0c43","name":"acctest_m9myr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:11 [DEBUG] Exit from do method +2022/02/28 12:19:11 [DEBUG] 621c70671b00009f0bfd0c43: Creation finished successfully +2022/02/28 12:19:11 [DEBUG] 621c70671b00009f0bfd0c43: Beginning Read +2022/02/28 12:19:11 id: 621c70671b00009f0bfd0c43 +2022/02/28 12:19:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:11 [DEBUG] Begin Injection +2022/02/28 12:19:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:11 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:19:11 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c70671d0000aa644fba68] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b96040 400 [] false false map[] 0xc001608200 0xc000d9a000} +2022/02/28 12:19:11 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:19:11 [DEBUG] Exit from do method +2022/02/28 12:19:11 [DEBUG] 621c70671d0000aa644fba68: Schema Creation finished successfully +2022/02/28 12:19:11 [DEBUG] 621c70671d0000aa644fba68: Beginning Read +2022/02/28 12:19:11 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:11 [DEBUG] Begin Injection +2022/02/28 12:19:11 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:11 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:19:11 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c70671d0000b6644fba69] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000471000 400 [] false false map[] 0xc00015a900 0xc0005b4000} +2022/02/28 12:19:11 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:19:11 [DEBUG] Exit from do method +2022/02/28 12:19:11 [DEBUG] 621c70671d0000b6644fba69: Schema Creation finished successfully +2022/02/28 12:19:11 [DEBUG] 621c70671d0000b6644fba69: Beginning Read +2022/02/28 12:19:11 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:11 [DEBUG] Begin Injection +2022/02/28 12:19:11 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:11 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000242d40 160 [] false false map[] 0xc001a0a200 0xc0004e6000} +2022/02/28 12:19:11 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c70671b0000c10bfd0c44","name":"acctest_bwj42","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:11 [DEBUG] Exit from do method +2022/02/28 12:19:11 [DEBUG] 621c70671b0000c10bfd0c44: Creation finished successfully +2022/02/28 12:19:11 [DEBUG] 621c70671b0000c10bfd0c44: Beginning Read +2022/02/28 12:19:11 id: 621c70671b0000c10bfd0c44 +2022/02/28 12:19:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:11 [DEBUG] Begin Injection +2022/02/28 12:19:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:12 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000242ec0 160 [] false false map[] 0xc001608400 0xc000d9a000} +2022/02/28 12:19:12 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:12 [DEBUG] Exit from do method +2022/02/28 12:19:12 [DEBUG] 621c70671b0000b50bfd0c45: Creation finished successfully +2022/02/28 12:19:12 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read +2022/02/28 12:19:12 id: 621c70671b0000b50bfd0c45 +2022/02/28 12:19:12 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:12 [DEBUG] Begin Injection +2022/02/28 12:19:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:12 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/28 12:19:12 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c70671d000097644fba6c] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000243140 400 [] false false map[] 0xc00152a300 0xc0005b4000} +2022/02/28 12:19:12 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:19:12 [DEBUG] Exit from do method +2022/02/28 12:19:12 [DEBUG] 621c70671d000097644fba6c: Schema Creation finished successfully +2022/02/28 12:19:12 [DEBUG] 621c70671d000097644fba6c: Beginning Read +2022/02/28 12:19:12 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:12 [DEBUG] Begin Injection +2022/02/28 12:19:12 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000471700 160 [] false false map[] 0xc001120100 0xc000e0a0b0} +2022/02/28 12:19:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 {"id":"621c70671b00009f0bfd0c43","name":"acctest_m9myr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:12 [DEBUG] Exit from do method +2022/02/28 12:19:12 [DEBUG] 621c70671b00009f0bfd0c43: Read finished successfully +2022/02/28 12:19:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000243340 400 [] false false map[] 0xc001a0a100 0xc00164e160} +2022/02/28 12:19:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:19:12 [DEBUG] Exit from do method +2022/02/28 12:19:12 [DEBUG] 621c70671d0000aa644fba68: Read finished successfully +2022/02/28 12:19:12 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:19:12 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:19:12 HTTP request PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:12 [DEBUG] Begin Injection +2022/02/28 12:19:12 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002434c0 400 [] false false map[] 0xc00057c800 0xc0019786e0} +2022/02/28 12:19:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:19:12 [DEBUG] Exit from do method +2022/02/28 12:19:12 [DEBUG] 621c70671d0000b6644fba69: Read finished successfully +2022/02/28 12:19:12 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:19:12 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:19:12 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:12 [DEBUG] Begin Injection +2022/02/28 12:19:12 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b50040 160 [] false false map[] 0xc00152a700 0xc0004e6000} +2022/02/28 12:19:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 {"id":"621c70671b0000c10bfd0c44","name":"acctest_bwj42","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:12 [DEBUG] Exit from do method +2022/02/28 12:19:12 [DEBUG] 621c70671b0000c10bfd0c44: Read finished successfully +2022/02/28 12:19:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b96040 160 [] false false map[] 0xc00152a800 0xc000d9a000} +2022/02/28 12:19:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:12 [DEBUG] Exit from do method +2022/02/28 12:19:12 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully +2022/02/28 12:19:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e6100 400 [] false false map[] 0xc00152aa00 0xc0005b4000} +2022/02/28 12:19:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/28 12:19:12 [DEBUG] Exit from do method +2022/02/28 12:19:12 [DEBUG] 621c70671d000097644fba6c: Read finished successfully +2022/02/28 12:19:12 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:19:12 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:19:12 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:12 [DEBUG] Begin Injection +2022/02/28 12:19:12 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:12 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:12 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001609100 0xc000e0a0b0} +2022/02/28 12:19:12 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:12 [DEBUG] acctest_m9myr: Creation finished successfully +2022/02/28 12:19:12 [DEBUG] acctest_m9myr: Beginning Read +2022/02/28 12:19:12 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:12 [DEBUG] Begin Injection +2022/02/28 12:19:12 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:12 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:12 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001120700 0xc0019786e0} +2022/02/28 12:19:12 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:12 [DEBUG] acctest_bwj42: Creation finished successfully +2022/02/28 12:19:12 [DEBUG] acctest_bwj42: Beginning Read +2022/02/28 12:19:12 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:12 [DEBUG] Begin Injection +2022/02/28 12:19:12 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:12 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:12 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001120f00 0xc0004e6000} +2022/02/28 12:19:12 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:12 [DEBUG] acctest_tm86m: Creation finished successfully +2022/02/28 12:19:12 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:12 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:12 [DEBUG] Begin Injection +2022/02/28 12:19:12 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b96700 768 [] false false map[] 0xc001121100 0xc0019780b0} +2022/02/28 12:19:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 12:19:12 [DEBUG] Exit from do method +2022/02/28 12:19:12 currentvrfname acctest_m9myr +2022/02/28 12:19:12 found correct vrfname +2022/02/28 12:19:12 [DEBUG] acctest_m9myr: Read finished successfully +2022/02/28 12:19:12 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:19:12 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:19:12 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:19:12 HTTP request PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:12 [DEBUG] Begin Injection +2022/02/28 12:19:12 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000471d40 768 [] false false map[] 0xc00057c000 0xc0019786e0} +2022/02/28 12:19:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 12:19:12 [DEBUG] Exit from do method +2022/02/28 12:19:12 currentvrfname acctest_bwj42 +2022/02/28 12:19:12 found correct vrfname +2022/02/28 12:19:12 [DEBUG] acctest_bwj42: Read finished successfully +2022/02/28 12:19:12 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:19:12 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:19:12 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:19:12 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:12 [DEBUG] Begin Injection +2022/02/28 12:19:12 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e6180 768 [] false false map[] 0xc001121200 0xc0004e6000} +2022/02/28 12:19:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/28 12:19:13 [DEBUG] Exit from do method +2022/02/28 12:19:13 currentvrfname acctest_tm86m +2022/02/28 12:19:13 found correct vrfname +2022/02/28 12:19:13 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:13 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:19:13 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:19:13 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:19:13 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:13 [DEBUG] Begin Injection +2022/02/28 12:19:13 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00057ce00 0xc0019780b0} +2022/02/28 12:19:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:13 [DEBUG] : Beginning Read +2022/02/28 12:19:13 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:13 [DEBUG] Begin Injection +2022/02/28 12:19:13 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00057d500 0xc0019786e0} +2022/02/28 12:19:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:13 [DEBUG] : Beginning Read +2022/02/28 12:19:13 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:13 [DEBUG] Begin Injection +2022/02/28 12:19:13 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001608b00 0xc0004e6000} +2022/02/28 12:19:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:13 [DEBUG] : Beginning Read +2022/02/28 12:19:13 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:13 [DEBUG] Begin Injection +2022/02/28 12:19:13 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009fb300 1277 [] false false map[] 0xc00057d700 0xc0019780b0} +2022/02/28 12:19:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:19:13 [DEBUG] Exit from do method +2022/02/28 12:19:13 [DEBUG] acctest_m9myr: Read finished successfully +2022/02/28 12:19:13 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:19:13 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:19:13 HTTP request PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:13 [DEBUG] Begin Injection +2022/02/28 12:19:13 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057a6c0 1277 [] false false map[] 0xc001608d00 0xc0019786e0} +2022/02/28 12:19:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:19:13 [DEBUG] Exit from do method +2022/02/28 12:19:13 [DEBUG] acctest_bwj42: Read finished successfully +2022/02/28 12:19:13 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:19:13 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:19:13 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:13 [DEBUG] Begin Injection +2022/02/28 12:19:13 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000243340 1277 [] false false map[] 0xc001121800 0xc0004e6000} +2022/02/28 12:19:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:19:13 [DEBUG] Exit from do method +2022/02/28 12:19:13 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:13 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:19:13 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:19:13 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:13 [DEBUG] Begin Injection +2022/02/28 12:19:13 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00152a300 0xc0019780b0} +2022/02/28 12:19:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:13 [DEBUG] Creation Complete +2022/02/28 12:19:13 [DEBUG] : Beginning Read +2022/02/28 12:19:13 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:13 [DEBUG] Begin Injection +2022/02/28 12:19:13 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:13 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[112] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc00128ea00 112 [] false false map[] 0xc00152b100 0xc0019786e0} +2022/02/28 12:19:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false {"code":141,"message":"Resource Not Found: Bd with name acctest_bwj42_invalid not found in List(acctest_bwj42)"} +2022/02/28 12:19:13 [DEBUG] Exit from do method +2022/02/28 12:19:13 [DEBUG] mso_schema_template_bd_dhcp_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Resource Not Found: Bd with name acctest_bwj42_invalid not found in List(acctest_bwj42)"{} +2022/02/28 12:19:13 [ERROR] : eval: *terraform.EvalApplyPost, err: "Resource Not Found: Bd with name acctest_bwj42_invalid not found in List(acctest_bwj42)"{} +2022/02/28 12:19:13 [ERROR] : eval: *terraform.EvalSequence, err: "Resource Not Found: Bd with name acctest_bwj42_invalid not found in List(acctest_bwj42)"{} +2022/02/28 12:19:13 [DEBUG] New state was assigned lineage "683bdac8-4cb6-241a-f27f-54086838630c" +2022/02/28 12:19:13 [DEBUG] Test: Executing step 1 +2022/02/28 12:19:13 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:13 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:19:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:13 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:13 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "oclwa" is not expected here. +2022/02/28 12:19:13 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "oclwa" is not expected here. +2022/02/28 12:19:13 [DEBUG] Test: Executing step 2 +2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:14 [DEBUG] : Beginning Read +2022/02/28 12:19:14 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:14 [DEBUG] Begin Injection +2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:14 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001121b00 0xc0004e6000} +2022/02/28 12:19:14 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:14 [DEBUG] Creation Complete +2022/02/28 12:19:14 [DEBUG] : Beginning Read +2022/02/28 12:19:14 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:14 [DEBUG] Begin Injection +2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00163bb80 1362 [] false false map[] 0xc00152b300 0xc0019780b0} +2022/02/28 12:19:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:14 [DEBUG] Exit from do method +2022/02/28 12:19:14 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully +2022/02/28 12:19:14 [DEBUG] : Beginning Read +2022/02/28 12:19:14 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:14 [DEBUG] Begin Injection +2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c080 5563 [] false false map[] 0xc00015a200 0xc0019786e0} +2022/02/28 12:19:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:14 [DEBUG] Exit from do method +2022/02/28 12:19:14 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:14 [DEBUG] 621c70671d0000b6644fba69: Beginning Read +2022/02/28 12:19:14 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:14 [DEBUG] Begin Injection +2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:14 [DEBUG] 621c70671b0000c10bfd0c44: Beginning Read +2022/02/28 12:19:14 id: 621c70671b0000c10bfd0c44 +2022/02/28 12:19:14 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:14 [DEBUG] Begin Injection +2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000471200 1362 [] false false map[] 0xc00057c600 0xc0004e6000} +2022/02/28 12:19:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:14 [DEBUG] Exit from do method +2022/02/28 12:19:14 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully +2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:14 [DEBUG] New state was assigned lineage "090bc9d7-bbb4-ae5f-eded-a97dcfd693a2" +2022/02/28 12:19:14 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:14 [DEBUG] Begin Injection +2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85b40 1362 [] false false map[] 0xc00152b700 0xc0019780b0} +2022/02/28 12:19:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:14 [DEBUG] Exit from do method +2022/02/28 12:19:14 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found +2022/02/28 12:19:14 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found +2022/02/28 12:19:14 [DEBUG] New state was assigned lineage "d0d3b445-df6f-683a-0deb-82e48a762b89" +2022/02/28 12:19:14 [DEBUG] Test: Executing step 5 +2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:14 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "kjbvg" is not expected here. +2022/02/28 12:19:14 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "kjbvg" is not expected here. +2022/02/28 12:19:14 [DEBUG] Test: Executing step 6 +2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:14 [DEBUG] : Beginning Read +2022/02/28 12:19:14 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:14 [DEBUG] Begin Injection +2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00163adc0 1277 [] false false map[] 0xc00015af00 0xc0019786e0} +2022/02/28 12:19:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:19:14 [DEBUG] Exit from do method +2022/02/28 12:19:14 [DEBUG] 621c70671d0000b6644fba69: Read finished successfully +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:14 [DEBUG] acctest_bwj42: Beginning Read +2022/02/28 12:19:14 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:14 [DEBUG] Begin Injection +2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00163be00 160 [] false false map[] 0xc001a0a000 0xc000baa370} +2022/02/28 12:19:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 {"id":"621c70671b0000c10bfd0c44","name":"acctest_bwj42","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:14 [DEBUG] Exit from do method +2022/02/28 12:19:14 [DEBUG] 621c70671b0000c10bfd0c44: Read finished successfully +2022/02/28 12:19:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009fb200 1362 [] false false map[] 0xc001a0a100 0xc0004e6000} +2022/02/28 12:19:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:14 [DEBUG] Exit from do method +2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:14 [DEBUG] : Beginning Read +2022/02/28 12:19:14 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:14 [DEBUG] Begin Injection +2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000471200 5563 [] false false map[] 0xc001a0ae00 0xc0019780b0} +2022/02/28 12:19:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:14 [DEBUG] Exit from do method +2022/02/28 12:19:14 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:14 [DEBUG] 621c70671d0000aa644fba68: Beginning Read +2022/02/28 12:19:14 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:14 [DEBUG] Begin Injection +2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:14 [DEBUG] 621c70671b00009f0bfd0c43: Beginning Read +2022/02/28 12:19:14 id: 621c70671b00009f0bfd0c43 +2022/02/28 12:19:14 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:14 [DEBUG] Begin Injection +2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009fba00 1277 [] false false map[] 0xc00057c600 0xc0019786e0} +2022/02/28 12:19:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:19:15 [DEBUG] Exit from do method +2022/02/28 12:19:15 currentvrfname acctest_bwj42 +2022/02/28 12:19:15 found correct vrfname +2022/02/28 12:19:15 [DEBUG] acctest_bwj42: Read finished successfully +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:15 [DEBUG] acctest_bwj42: Beginning Read +2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:15 [DEBUG] Begin Injection +2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8e40 5563 [] false false map[] 0xc001a0a300 0xc0004e6000} +2022/02/28 12:19:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:15 [DEBUG] Exit from do method +2022/02/28 12:19:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:15 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read +2022/02/28 12:19:15 id: 621c70671b0000b50bfd0c45 +2022/02/28 12:19:15 [DEBUG] 621c70671d000097644fba6c: Beginning Read +2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:15 [DEBUG] Begin Injection +2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:15 [DEBUG] Begin Injection +2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001c6fc0 1362 [] false false map[] 0xc001a0aa00 0xc0019780b0} +2022/02/28 12:19:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:15 [DEBUG] Exit from do method +2022/02/28 12:19:15 [DEBUG] 621c70671d0000aa644fba68: Read finished successfully +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:15 [DEBUG] acctest_m9myr: Beginning Read +2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:15 [DEBUG] Begin Injection +2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001aba700 160 [] false false map[] 0xc001121400 0xc000baa370} +2022/02/28 12:19:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 {"id":"621c70671b00009f0bfd0c43","name":"acctest_m9myr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:15 [DEBUG] Exit from do method +2022/02/28 12:19:15 [DEBUG] 621c70671b00009f0bfd0c43: Read finished successfully +2022/02/28 12:19:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091e80 1277 [] false false map[] 0xc001a0b000 0xc0019786e0} +2022/02/28 12:19:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/28 12:19:15 [DEBUG] Exit from do method +2022/02/28 12:19:15 [DEBUG] acctest_bwj42: Read finished successfully +2022/02/28 12:19:15 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:15 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:15 [DEBUG] New state was assigned lineage "67fe49e5-4d59-3f51-2cac-fa78605e1e74" +2022/02/28 12:19:15 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:15 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:15 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:15 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:15 [WARN] Test: Step plan: DIFF: + +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_bwj42" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_bwj42" + schema_id: "" => "621c70671d0000b6644fba69" + template_name: "" => "acctest_vlyjs" + version: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c70671b0000c10bfd0c44 + provider = provider.mso + description = + name = acctest_bwj42 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c70671d0000b6644fba69 + provider = provider.mso + name = acctest_vlyjs + template_name = acctest_vlyjs + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_bwj42 + provider = provider.mso + display_name = acctest_bwj42 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_bwj42 + schema_id = 621c70671d0000b6644fba69 + template_name = acctest_vlyjs + vrf_name = acctest_bwj42 + vrf_schema_id = 621c70671d0000b6644fba69 + vrf_template_name = acctest_vlyjs + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_bwj42 + provider = provider.mso + display_name = acctest_bwj42 + layer3_multicast = false + name = acctest_bwj42 + schema_id = 621c70671d0000b6644fba69 + template = acctest_vlyjs + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:19:15 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:19:15 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state)] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:19:15 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:19:15 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:19:15 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:19:15 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:15 [DEBUG] Begin Injection +2022/02/28 12:19:15 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00063e0c0 1362 [] false false map[] 0xc001a0b400 0xc0004e6000} +2022/02/28 12:19:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:15 [DEBUG] Exit from do method +2022/02/28 12:19:15 [DEBUG] 621c70671d000097644fba6c: Read finished successfully +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:15 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:15 [DEBUG] Begin Injection +2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128f580 160 [] false false map[] 0xc000076400 0xc0019780b0} +2022/02/28 12:19:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:15 [DEBUG] Exit from do method +2022/02/28 12:19:15 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully +2022/02/28 12:19:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128f740 1362 [] false false map[] 0xc000076900 0xc000baa370} +2022/02/28 12:19:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:15 [DEBUG] Exit from do method +2022/02/28 12:19:15 currentvrfname acctest_m9myr +2022/02/28 12:19:15 found correct vrfname +2022/02/28 12:19:15 [DEBUG] acctest_m9myr: Read finished successfully +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:15 [DEBUG] acctest_m9myr: Beginning Read +2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:15 [DEBUG] Begin Injection +2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:15 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:15 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001120f00 0xc0019786e0} +2022/02/28 12:19:15 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:15 [DEBUG] Creation Complete +2022/02/28 12:19:15 [DEBUG] : Beginning Read +2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:15 [DEBUG] Begin Injection +2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85b00 1362 [] false false map[] 0xc000955200 0xc0004e6000} +2022/02/28 12:19:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:15 [DEBUG] Exit from do method +2022/02/28 12:19:15 currentvrfname acctest_tm86m +2022/02/28 12:19:15 found correct vrfname +2022/02/28 12:19:15 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:15 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:15 [DEBUG] Begin Injection +2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b500c0 1362 [] false false map[] 0xc000955900 0xc000baa370} +2022/02/28 12:19:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:16 [DEBUG] Exit from do method +2022/02/28 12:19:16 [DEBUG] acctest_m9myr: Read finished successfully +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Beginning Read +2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 [DEBUG] Begin Injection +2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b50940 1362 [] false false map[] 0xc00152be00 0xc0019786e0} +2022/02/28 12:19:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:16 [DEBUG] Exit from do method +2022/02/28 12:19:16 [DEBUG] /schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42: Read finished successfully +2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:16 [DEBUG] New state was assigned lineage "b50b967e-6f41-5c8f-b95e-9cef459253a0" +2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] : Beginning Read +2022/02/28 12:19:16 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:16 [DEBUG] Begin Injection +2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8040 1362 [] false false map[] 0xc00015a900 0xc0004e6000} +2022/02/28 12:19:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:16 [DEBUG] Exit from do method +2022/02/28 12:19:16 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Read +2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:16 [DEBUG] Begin Injection +2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009faec0 1362 [] false false map[] 0xc001120300 0xc0019784d0} +2022/02/28 12:19:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:16 [DEBUG] Exit from do method +2022/02/28 12:19:16 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully +2022/02/28 12:19:16 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] : Beginning Read +2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 [DEBUG] Begin Injection +2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001c62c0 5563 [] false false map[] 0xc000076400 0xc0019786e0} +2022/02/28 12:19:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:16 [DEBUG] Exit from do method +2022/02/28 12:19:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] 621c70671d0000b6644fba69: Beginning Read +2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:16 [DEBUG] Begin Injection +2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:16 [DEBUG] 621c70671b0000c10bfd0c44: Beginning Read +2022/02/28 12:19:16 id: 621c70671b0000c10bfd0c44 +2022/02/28 12:19:16 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:16 [DEBUG] Begin Injection +2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002428c0 1362 [] false false map[] 0xc001a0a400 0xc0004e6000} +2022/02/28 12:19:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:16 [DEBUG] Exit from do method +2022/02/28 12:19:16 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully +2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:16 [DEBUG] New state was assigned lineage "ad269190-9508-541a-ebfe-e6ebe6cf709d" +2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:16 [DEBUG] Test: Executing step 5 +2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] : Beginning Read +2022/02/28 12:19:16 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:16 [DEBUG] Begin Injection +2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069c2c0 1362 [] false false map[] 0xc001a0a700 0xc0004e6210} +2022/02/28 12:19:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:16 [DEBUG] Exit from do method +2022/02/28 12:19:16 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully +2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:16 [DEBUG] New state was assigned lineage "1b62bc20-3d42-83a5-f28b-b455e41eb4ca" +2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:16 [WARN] Test: Step plan: DIFF: + + + +STATE: + +data.mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr + provider = provider.mso + bd_name = acctest_m9myr + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_m9myr + schema_id = 621c70671d0000aa644fba68 + template_name = acctest_ud1gn + version = 0 + + Dependencies: + mso_schema_template_bd_dhcp_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c70671b00009f0bfd0c43 + provider = provider.mso + description = + name = acctest_m9myr + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c70671d0000aa644fba68 + provider = provider.mso + name = acctest_ud1gn + template_name = acctest_ud1gn + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_m9myr + provider = provider.mso + dhcp_policy.name = acctest_m9myr + dhcp_policy.version = 0 + display_name = acctest_m9myr + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_m9myr + schema_id = 621c70671d0000aa644fba68 + template_name = acctest_ud1gn + vrf_name = acctest_m9myr + vrf_schema_id = 621c70671d0000aa644fba68 + vrf_template_name = acctest_ud1gn + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr + provider = provider.mso + bd_name = acctest_m9myr + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_m9myr + schema_id = 621c70671d0000aa644fba68 + template_name = acctest_ud1gn + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_m9myr + provider = provider.mso + display_name = acctest_m9myr + layer3_multicast = false + name = acctest_m9myr + schema_id = 621c70671d0000aa644fba68 + template = acctest_ud1gn + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:16 [DEBUG] New state was assigned lineage "1a1e71a9-4644-3e29-e466-bd132114dcd6" +2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 [DEBUG] Begin Injection +2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001aba480 160 [] false false map[] 0xc001c5e700 0xc0019780b0} +2022/02/28 12:19:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 {"id":"621c70671b0000c10bfd0c44","name":"acctest_bwj42","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:16 [DEBUG] Exit from do method +2022/02/28 12:19:16 [DEBUG] 621c70671b0000c10bfd0c44: Read finished successfully +2022/02/28 12:19:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091e80 1362 [] false false map[] 0xc00057c100 0xc0019786e0} +2022/02/28 12:19:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:16 [DEBUG] Exit from do method +2022/02/28 12:19:16 [DEBUG] 621c70671d0000b6644fba69: Read finished successfully +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:16 [DEBUG] acctest_bwj42: Beginning Read +2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:16 [DEBUG] Begin Injection +2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001abb5c0 5563 [] false false map[] 0xc001a0a000 0xc0004e6000} +2022/02/28 12:19:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:16 [DEBUG] Exit from do method +2022/02/28 12:19:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:16 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] 621c70671d000097644fba6c: Beginning Read +2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:16 [DEBUG] Begin Injection +2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:16 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read +2022/02/28 12:19:16 id: 621c70671b0000b50bfd0c45 +2022/02/28 12:19:16 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:16 [DEBUG] Begin Injection +2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00141eb40 1362 [] false false map[] 0xc001120300 0xc0004e6210} +2022/02/28 12:19:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:16 [DEBUG] Exit from do method +2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:16 [DEBUG] : Beginning Read +2022/02/28 12:19:16 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:16 [DEBUG] Begin Injection +2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000242040 1362 [] false false map[] 0xc00015a900 0xc0019786e0} +2022/02/28 12:19:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:17 [DEBUG] Exit from do method +2022/02/28 12:19:17 currentvrfname acctest_bwj42 +2022/02/28 12:19:17 found correct vrfname +2022/02/28 12:19:17 [DEBUG] acctest_bwj42: Read finished successfully +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:17 [DEBUG] acctest_bwj42: Beginning Read +2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:17 [DEBUG] Begin Injection +2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000242f80 160 [] false false map[] 0xc001c5e300 0xc0019780b0} +2022/02/28 12:19:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:17 [DEBUG] Exit from do method +2022/02/28 12:19:17 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully +2022/02/28 12:19:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e6180 1362 [] false false map[] 0xc00152a400 0xc0004e6000} +2022/02/28 12:19:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:17 [DEBUG] Exit from do method +2022/02/28 12:19:17 [DEBUG] 621c70671d000097644fba6c: Read finished successfully +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:17 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:17 [DEBUG] Begin Injection +2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009fb280 5563 [] false false map[] 0xc000954c00 0xc0004e6210} +2022/02/28 12:19:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:17 [DEBUG] Exit from do method +2022/02/28 12:19:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:17 [DEBUG] 621c70671d0000aa644fba68: Beginning Read +2022/02/28 12:19:17 [DEBUG] 621c70671b00009f0bfd0c43: Beginning Read +2022/02/28 12:19:17 id: 621c70671b00009f0bfd0c43 +2022/02/28 12:19:17 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:17 [DEBUG] Begin Injection +2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:17 [DEBUG] Begin Injection +2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84780 1362 [] false false map[] 0xc001c5e600 0xc0019786e0} +2022/02/28 12:19:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:17 [DEBUG] Exit from do method +2022/02/28 12:19:17 [DEBUG] acctest_bwj42: Read finished successfully +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:17 [DEBUG] /schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42: Beginning Read +2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:17 [DEBUG] Begin Injection +2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000470cc0 1362 [] false false map[] 0xc001c5e800 0xc0004e6000} +2022/02/28 12:19:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:17 [DEBUG] Exit from do method +2022/02/28 12:19:17 currentvrfname acctest_tm86m +2022/02/28 12:19:17 found correct vrfname +2022/02/28 12:19:17 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:17 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:17 [DEBUG] Begin Injection +2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00141f6c0 160 [] false false map[] 0xc001120300 0xc0019780b0} +2022/02/28 12:19:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 {"id":"621c70671b00009f0bfd0c43","name":"acctest_m9myr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:17 [DEBUG] Exit from do method +2022/02/28 12:19:17 [DEBUG] 621c70671b00009f0bfd0c43: Read finished successfully +2022/02/28 12:19:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069c940 1362 [] false false map[] 0xc00015a200 0xc0004e6210} +2022/02/28 12:19:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:17 [DEBUG] Exit from do method +2022/02/28 12:19:17 [DEBUG] 621c70671d0000aa644fba68: Read finished successfully +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:17 [DEBUG] acctest_m9myr: Beginning Read +2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:17 [DEBUG] Begin Injection +2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069cec0 1362 [] false false map[] 0xc00015aa00 0xc0019786e0} +2022/02/28 12:19:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:17 [DEBUG] Exit from do method +2022/02/28 12:19:17 [DEBUG] /schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42: Read finished successfully +2022/02/28 12:19:17 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:17 [DEBUG] New state was assigned lineage "7d4ceb35-42c7-b2aa-6126-caa90638e14d" +2022/02/28 12:19:17 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:17 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:17 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:17 [WARN] Test: Executing destroy step +2022/02/28 12:19:17 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:17 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:17 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:17 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:17 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:17 [DEBUG] : Beginning Read +2022/02/28 12:19:17 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:17 [DEBUG] Begin Injection +2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e7a80 1362 [] false false map[] 0xc001c5ee00 0xc0004e6000} +2022/02/28 12:19:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:17 [DEBUG] Exit from do method +2022/02/28 12:19:17 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:17 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Read +2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:17 [DEBUG] Begin Injection +2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84080 1362 [] false false map[] 0xc00015af00 0xc0004e6210} +2022/02/28 12:19:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:17 [DEBUG] Exit from do method +2022/02/28 12:19:17 currentvrfname acctest_m9myr +2022/02/28 12:19:17 found correct vrfname +2022/02/28 12:19:17 [DEBUG] acctest_m9myr: Read finished successfully +2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:17 [DEBUG] acctest_m9myr: Beginning Read +2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:17 [DEBUG] Begin Injection +2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85440 1362 [] false false map[] 0xc001c5eb00 0xc0004e6000} +2022/02/28 12:19:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:18 [DEBUG] Exit from do method +2022/02/28 12:19:18 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully +2022/02/28 12:19:18 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:18 [DEBUG] New state was assigned lineage "1525513e-df3f-622b-c688-99ebd68a68c3" +2022/02/28 12:19:18 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:18 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:18 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009fa500 5563 [] false false map[] 0xc001c5e600 0xc0019786e0} +2022/02/28 12:19:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:18 [DEBUG] Exit from do method +2022/02/28 12:19:18 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:18 [DEBUG] 621c70671d0000b6644fba69: Beginning Read +2022/02/28 12:19:18 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:18 [DEBUG] Begin Injection +2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:18 [DEBUG] 621c70671b0000c10bfd0c44: Beginning Read +2022/02/28 12:19:18 id: 621c70671b0000c10bfd0c44 +2022/02/28 12:19:18 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:18 [DEBUG] Begin Injection +2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:18 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:18 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_option_policy.test + description: "" => "" + id: "" => "" + name: "" => "acctest_yhum2" + option.#: "" => "0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +UPDATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_tm86m" => "acctest_tm86m" + dhcp_option_name: "" => "acctest_yhum2" + dhcp_option_version: "0" => "1" + id: "/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m" => "/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m" + name: "acctest_tm86m" => "acctest_tm86m" + schema_id: "621c70671d000097644fba6c" => "621c70671d000097644fba6c" + template_name: "acctest_qnr4i" => "acctest_qnr4i" + version: "0" => "1" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c70671b0000b50bfd0c45 + provider = provider.mso + description = + name = acctest_tm86m + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c70671d000097644fba6c + provider = provider.mso + name = acctest_qnr4i + template_name = acctest_qnr4i + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_tm86m + provider = provider.mso + dhcp_policy.name = acctest_tm86m + dhcp_policy.version = 0 + display_name = acctest_tm86m + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_tm86m + schema_id = 621c70671d000097644fba6c + template_name = acctest_qnr4i + vrf_name = acctest_tm86m + vrf_schema_id = 621c70671d000097644fba6c + vrf_template_name = acctest_qnr4i + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m + provider = provider.mso + bd_name = acctest_tm86m + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_tm86m + schema_id = 621c70671d000097644fba6c + template_name = acctest_qnr4i + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_tm86m + provider = provider.mso + display_name = acctest_tm86m + layer3_multicast = false + name = acctest_tm86m + schema_id = 621c70671d000097644fba6c + template = acctest_qnr4i + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:19:18 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:19:18 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test +2022/02/28 12:19:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:19:18 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:19:18 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change +2022/02/28 12:19:18 [DEBUG] : Beginning Create +2022/02/28 12:19:18 HTTP request POST mso/api/v1/policies/dhcp/option +2022/02/28 12:19:18 [DEBUG] Begin Injection +2022/02/28 12:19:18 HTTP request after injection POST mso/api/v1/policies/dhcp/option +2022/02/28 12:19:18 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_yhum2","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9d7ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 12:19:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0019e60c0 1362 [] false false map[] 0xc00015a100 0xc0004e6210} +2022/02/28 12:19:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:18 [DEBUG] Exit from do method +2022/02/28 12:19:18 [DEBUG] acctest_m9myr: Read finished successfully +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:18 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Beginning Read +2022/02/28 12:19:18 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:18 [DEBUG] Begin Injection +2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00208c900 160 [] false false map[] 0xc0016b8500 0xc0019780b0} +2022/02/28 12:19:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 {"id":"621c70671b0000c10bfd0c44","name":"acctest_bwj42","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:18 [DEBUG] Exit from do method +2022/02/28 12:19:18 [DEBUG] 621c70671b0000c10bfd0c44: Read finished successfully +2022/02/28 12:19:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0019e7840 1362 [] false false map[] 0xc00015ba00 0xc0004e6000} +2022/02/28 12:19:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:18 [DEBUG] Exit from do method +2022/02/28 12:19:18 [DEBUG] 621c70671d0000b6644fba69: Read finished successfully +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:18 [DEBUG] acctest_bwj42: Beginning Read +2022/02/28 12:19:18 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:18 [DEBUG] Begin Injection +2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:18 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option +2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199e240 161 [] false false map[] 0xc001ad0700 0xc0004e6210} +2022/02/28 12:19:18 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c706e1b00009f0bfd0c46","name":"acctest_yhum2","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:18 [DEBUG] Exit from do method +2022/02/28 12:19:18 [DEBUG] 621c706e1b00009f0bfd0c46: Creation finished successfully +2022/02/28 12:19:18 [DEBUG] 621c706e1b00009f0bfd0c46: Beginning Read +2022/02/28 12:19:18 id: 621c706e1b00009f0bfd0c46 +2022/02/28 12:19:18 HTTP request GET mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:18 [DEBUG] Begin Injection +2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b96180 1362 [] false false map[] 0xc0016b8700 0xc0019780b0} +2022/02/28 12:19:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:18 [DEBUG] Exit from do method +2022/02/28 12:19:18 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:18 [DEBUG] : Beginning Read +2022/02/28 12:19:18 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:18 [DEBUG] Begin Injection +2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0019e7dc0 1362 [] false false map[] 0xc001ad0b00 0xc0004e6000} +2022/02/28 12:19:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:18 [DEBUG] Exit from do method +2022/02/28 12:19:18 currentvrfname acctest_bwj42 +2022/02/28 12:19:18 found correct vrfname +2022/02/28 12:19:18 [DEBUG] acctest_bwj42: Read finished successfully +2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:18 [DEBUG] acctest_bwj42: Beginning Read +2022/02/28 12:19:18 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:18 [DEBUG] Begin Injection +2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b50600 161 [] false false map[] 0xc00152a600 0xc0004e6210} +2022/02/28 12:19:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 {"id":"621c706e1b00009f0bfd0c46","name":"acctest_yhum2","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:18 [DEBUG] Exit from do method +2022/02/28 12:19:18 [DEBUG] 621c706e1b00009f0bfd0c46: Read finished successfully +2022/02/28 12:19:18 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change +2022/02/28 12:19:18 [DEBUG] Template BD: Beginning Update +2022/02/28 12:19:18 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:18 [DEBUG] Begin Injection +2022/02/28 12:19:18 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00208d9c0 1362 [] false false map[] 0xc00152ac00 0xc0019780b0} +2022/02/28 12:19:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:19 [DEBUG] Exit from do method +2022/02/28 12:19:19 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully +2022/02/28 12:19:19 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:19 [DEBUG] New state was assigned lineage "dd4a103e-6977-70cb-e0ee-7b436218606d" +2022/02/28 12:19:19 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:19 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:19 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:19 [WARN] Test: Executing destroy step +2022/02/28 12:19:19 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:19 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:19 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:19 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:19 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:19 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:19 [DEBUG] : Beginning Read +2022/02/28 12:19:19 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:19 [DEBUG] Begin Injection +2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e63c0 1362 [] false false map[] 0xc001fec400 0xc0004e6000} +2022/02/28 12:19:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:19 [DEBUG] Exit from do method +2022/02/28 12:19:19 [DEBUG] acctest_bwj42: Read finished successfully +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:19 [DEBUG] /schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42: Beginning Read +2022/02/28 12:19:19 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:19 [DEBUG] Begin Injection +2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:19 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00057d600 0xc0004e6210} +2022/02/28 12:19:19 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:19 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Read +2022/02/28 12:19:19 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:19 [DEBUG] Begin Injection +2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e6fc0 1362 [] false false map[] 0xc00057d100 0xc0004e6000} +2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c9f40 5563 [] false false map[] 0xc001fec800 0xc0019780b0} +2022/02/28 12:19:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:19 [DEBUG] Exit from do method +2022/02/28 12:19:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:19 [DEBUG] /schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42: Read finished successfully +2022/02/28 12:19:19 [DEBUG] Exit from do method +2022/02/28 12:19:19 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:19 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:19 [DEBUG] New state was assigned lineage "2c08dbab-12bf-c884-984b-43fb7776643c" +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:19 [DEBUG] 621c70671d0000aa644fba68: Beginning Read +2022/02/28 12:19:19 [DEBUG] 621c70671b00009f0bfd0c43: Beginning Read +2022/02/28 12:19:19 id: 621c70671b00009f0bfd0c43 +2022/02/28 12:19:19 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:19 [DEBUG] Begin Injection +2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:19 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:19:19 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:19 [DEBUG] Begin Injection +2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:19:19 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:19:19 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c70671b0000c10bfd0c44" => "" + name: "acctest_bwj42" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c70671d0000b6644fba69" => "" + name: "acctest_vlyjs" => "" + template_name: "acctest_vlyjs" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_bwj42" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_bwj42" => "" + id: "acctest_bwj42" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_bwj42" => "" + schema_id: "621c70671d0000b6644fba69" => "" + template_name: "acctest_vlyjs" => "" + vrf_name: "acctest_bwj42" => "" + vrf_schema_id: "621c70671d0000b6644fba69" => "" + vrf_template_name: "acctest_vlyjs" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_bwj42" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42" => "" + name: "acctest_bwj42" => "" + schema_id: "621c70671d0000b6644fba69" => "" + template_name: "acctest_vlyjs" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_bwj42" => "" + id: "acctest_bwj42" => "" + layer3_multicast: "false" => "" + name: "acctest_bwj42" => "" + schema_id: "621c70671d0000b6644fba69" => "" + template: "acctest_vlyjs" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c70671b0000c10bfd0c44 + provider = provider.mso + description = + name = acctest_bwj42 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c70671d0000b6644fba69 + provider = provider.mso + name = acctest_vlyjs + template_name = acctest_vlyjs + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_bwj42 + provider = provider.mso + dhcp_policy.name = acctest_bwj42 + dhcp_policy.version = 0 + display_name = acctest_bwj42 + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_bwj42 + schema_id = 621c70671d0000b6644fba69 + template_name = acctest_vlyjs + vrf_name = acctest_bwj42 + vrf_schema_id = 621c70671d0000b6644fba69 + vrf_template_name = acctest_vlyjs + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42 + provider = provider.mso + bd_name = acctest_bwj42 + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_bwj42 + schema_id = 621c70671d0000b6644fba69 + template_name = acctest_vlyjs + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_bwj42 + provider = provider.mso + display_name = acctest_bwj42 + layer3_multicast = false + name = acctest_bwj42 + schema_id = 621c70671d0000b6644fba69 + template = acctest_vlyjs + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:19:19 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (destroy) +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:19 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 12:19:19 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 12:19:19 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 12:19:19 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:19:19 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:19:19 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 12:19:19 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 12:19:19 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 12:19:19 [DEBUG] Template BD: Beginning Update +2022/02/28 12:19:19 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:19 [DEBUG] Begin Injection +2022/02/28 12:19:19 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001fe6980 1472 [] false false map[] 0xc001feca00 0xc002430a50} +2022/02/28 12:19:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:19:19 [DEBUG] Exit from do method +2022/02/28 12:19:19 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully +2022/02/28 12:19:19 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:19 [DEBUG] New state was assigned lineage "019756c7-2953-40e9-8e0f-fb3efd0c3cbd" +2022/02/28 12:19:19 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:19 [DEBUG] Begin Injection +2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001aa5200 160 [] false false map[] 0xc00015b900 0xc0004e6000} +2022/02/28 12:19:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 {"id":"621c70671b00009f0bfd0c43","name":"acctest_m9myr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:19 [DEBUG] Exit from do method +2022/02/28 12:19:19 [DEBUG] 621c70671b00009f0bfd0c43: Read finished successfully +2022/02/28 12:19:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b96fc0 1362 [] false false map[] 0xc00057da00 0xc0004e6dc0} +2022/02/28 12:19:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:19 [DEBUG] Exit from do method +2022/02/28 12:19:19 [DEBUG] 621c70671d0000aa644fba68: Read finished successfully +2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:19 [DEBUG] acctest_m9myr: Beginning Read +2022/02/28 12:19:19 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:19 [DEBUG] Begin Injection +2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:19 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00057d200 0xc002430a50} +2022/02/28 12:19:19 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:19 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 12:19:19 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 12:19:19 [DEBUG] 621c70671b0000c10bfd0c44: Beginning Read +2022/02/28 12:19:19 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:19 [DEBUG] Begin Injection +2022/02/28 12:19:19 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:19 [DEBUG] Template BD: Beginning Update +2022/02/28 12:19:19 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:19 [DEBUG] Begin Injection +2022/02/28 12:19:19 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b507c0 1472 [] false false map[] 0xc001fecc00 0xc0004e6000} +2022/02/28 12:19:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:19:20 [DEBUG] Exit from do method +2022/02/28 12:19:20 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:20 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:20 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:20 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:20 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:20 [DEBUG] : Beginning Read +2022/02/28 12:19:20 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:20 [DEBUG] Begin Injection +2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001fe7580 1362 [] false false map[] 0xc00015a500 0xc0004e6dc0} +2022/02/28 12:19:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:20 [DEBUG] Exit from do method +2022/02/28 12:19:20 currentvrfname acctest_m9myr +2022/02/28 12:19:20 found correct vrfname +2022/02/28 12:19:20 [DEBUG] acctest_m9myr: Read finished successfully +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:20 [DEBUG] acctest_m9myr: Beginning Read +2022/02/28 12:19:20 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:20 [DEBUG] Begin Injection +2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:20 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000077500 0xc002430a50} +2022/02/28 12:19:20 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 +2022/02/28 12:19:20 [DEBUG] : Read finished successfully +2022/02/28 12:19:20 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001ad1700 0xc0004e6000} +2022/02/28 12:19:20 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:20 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 12:19:20 [DEBUG] acctest_bwj42: Beginning Destroy +2022/02/28 12:19:20 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:20 [DEBUG] Begin Injection +2022/02/28 12:19:20 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0017f2040 5563 [] false false map[] 0xc001c45600 0xc0004e6dc0} +2022/02/28 12:19:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:20 [DEBUG] Exit from do method +2022/02/28 12:19:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 12:19:20 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read +2022/02/28 12:19:20 id: 621c70671b0000b50bfd0c45 +2022/02/28 12:19:20 [DEBUG] 621c70671d000097644fba6c: Beginning Read +2022/02/28 12:19:20 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:20 [DEBUG] Begin Injection +2022/02/28 12:19:20 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:20 [DEBUG] Begin Injection +2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:20 [DEBUG] 621c706e1b00009f0bfd0c46: Beginning Read +2022/02/28 12:19:20 id: 621c706e1b00009f0bfd0c46 +2022/02/28 12:19:20 HTTP request GET mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:20 [DEBUG] Begin Injection +2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e7480 1362 [] false false map[] 0xc00015ba00 0xc0004e6210} +2022/02/28 12:19:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:20 [DEBUG] Exit from do method +2022/02/28 12:19:20 [DEBUG] acctest_m9myr: Read finished successfully +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:20 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Beginning Read +2022/02/28 12:19:20 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:20 [DEBUG] Begin Injection +2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:20 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000076800 0xc0004e6000} +2022/02/28 12:19:20 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false +2022/02/28 12:19:20 [DEBUG] acctest_bwj42: Destroy finished successfully +2022/02/28 12:19:20 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 12:19:20 [DEBUG] 621c70671d0000b6644fba69: Beginning Destroy +2022/02/28 12:19:20 HTTP request DELETE mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:20 [DEBUG] Begin Injection +2022/02/28 12:19:20 HTTP request after injection DELETE mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069cc00 160 [] false false map[] 0xc00152ac00 0xc002430a50} +2022/02/28 12:19:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:20 [DEBUG] Exit from do method +2022/02/28 12:19:20 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully +2022/02/28 12:19:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199ee80 1472 [] false false map[] 0xc001c44500 0xc0004e6dc0} +2022/02/28 12:19:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:19:20 [DEBUG] Exit from do method +2022/02/28 12:19:20 [DEBUG] 621c70671d000097644fba6c: Read finished successfully +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:20 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:20 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:20 [DEBUG] Begin Injection +2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199fa00 161 [] false false map[] 0xc00152ad00 0xc002430790} +2022/02/28 12:19:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 {"id":"621c706e1b00009f0bfd0c46","name":"acctest_yhum2","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:20 [DEBUG] Exit from do method +2022/02/28 12:19:20 [DEBUG] 621c706e1b00009f0bfd0c46: Read finished successfully +2022/02/28 12:19:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199fa80 1362 [] false false map[] 0xc000076f00 0xc0004e6210} +2022/02/28 12:19:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:20 [DEBUG] Exit from do method +2022/02/28 12:19:20 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully +2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:20 [DEBUG] : Beginning Read +2022/02/28 12:19:20 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:20 [DEBUG] Begin Injection +2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:21 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000077800 0xc0004e6000} +2022/02/28 12:19:21 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:21 [DEBUG] 621c70671d0000b6644fba69: Destroy finished successfully +2022/02/28 12:19:21 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:21 [DEBUG] New state was assigned lineage "fb3c79a7-4855-ed05-5588-2fe406efacc5" +2022/02/28 12:19:21 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:21 [DEBUG] Begin Injection +2022/02/28 12:19:21 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128ed40 1472 [] false false map[] 0xc00057d000 0xc0004e6dc0} +2022/02/28 12:19:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:19:21 [DEBUG] Exit from do method +2022/02/28 12:19:21 currentvrfname acctest_tm86m +2022/02/28 12:19:21 found correct vrfname +2022/02/28 12:19:21 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:21 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:21 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:21 [DEBUG] Begin Injection +2022/02/28 12:19:21 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128f740 1362 [] false false map[] 0xc001c44c00 0xc002430d10} +2022/02/28 12:19:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/28 12:19:21 [DEBUG] Exit from do method +2022/02/28 12:19:21 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully +2022/02/28 12:19:21 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:21 [DEBUG] New state was assigned lineage "42b4b6e0-e410-6da0-ea5b-cb70fafee187" +2022/02/28 12:19:21 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:19:21 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_m9myr" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr" => "" + name: "acctest_m9myr" => "" + schema_id: "621c70671d0000aa644fba68" => "" + template_name: "acctest_ud1gn" => "" + version: "0" => "" +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c70671b00009f0bfd0c43" => "" + name: "acctest_m9myr" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c70671d0000aa644fba68" => "" + name: "acctest_ud1gn" => "" + template_name: "acctest_ud1gn" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_m9myr" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_m9myr" => "" + id: "acctest_m9myr" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_m9myr" => "" + schema_id: "621c70671d0000aa644fba68" => "" + template_name: "acctest_ud1gn" => "" + vrf_name: "acctest_m9myr" => "" + vrf_schema_id: "621c70671d0000aa644fba68" => "" + vrf_template_name: "acctest_ud1gn" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_m9myr" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr" => "" + name: "acctest_m9myr" => "" + schema_id: "621c70671d0000aa644fba68" => "" + template_name: "acctest_ud1gn" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_m9myr" => "" + id: "acctest_m9myr" => "" + layer3_multicast: "false" => "" + name: "acctest_m9myr" => "" + schema_id: "621c70671d0000aa644fba68" => "" + template: "acctest_ud1gn" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr + provider = provider.mso + bd_name = acctest_m9myr + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_m9myr + schema_id = 621c70671d0000aa644fba68 + template_name = acctest_ud1gn + version = 0 + + Dependencies: + mso_schema_template_bd_dhcp_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c70671b00009f0bfd0c43 + provider = provider.mso + description = + name = acctest_m9myr + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c70671d0000aa644fba68 + provider = provider.mso + name = acctest_ud1gn + template_name = acctest_ud1gn + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_m9myr + provider = provider.mso + dhcp_policy.name = acctest_m9myr + dhcp_policy.version = 0 + display_name = acctest_m9myr + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_m9myr + schema_id = 621c70671d0000aa644fba68 + template_name = acctest_ud1gn + vrf_name = acctest_m9myr + vrf_schema_id = 621c70671d0000aa644fba68 + vrf_template_name = acctest_ud1gn + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr + provider = provider.mso + bd_name = acctest_m9myr + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_m9myr + schema_id = 621c70671d0000aa644fba68 + template_name = acctest_ud1gn + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_m9myr + provider = provider.mso + display_name = acctest_m9myr + layer3_multicast = false + name = acctest_m9myr + schema_id = 621c70671d0000aa644fba68 + template = acctest_ud1gn + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:19:21 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (destroy) +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 12:19:21 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 12:19:21 [DEBUG] Template BD: Beginning Update +2022/02/28 12:19:21 HTTP request PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:21 [DEBUG] Begin Injection +2022/02/28 12:19:21 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 +2022/02/28 12:19:21 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e7d00 39 [] false false map[] 0xc001c44e00 0xc0004e66e0} +2022/02/28 12:19:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"code":404,"message":"Item not found"} +2022/02/28 12:19:21 [DEBUG] Exit from do method +2022/02/28 12:19:21 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:19:21 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:21 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:21 [DEBUG] : Beginning Read +2022/02/28 12:19:21 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:21 [DEBUG] Begin Injection +2022/02/28 12:19:21 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128e900 1472 [] false false map[] 0xc00057d400 0xc0004e6dc0} +2022/02/28 12:19:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:19:21 [DEBUG] Exit from do method +2022/02/28 12:19:21 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:21 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Read +2022/02/28 12:19:21 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:21 [DEBUG] Begin Injection +2022/02/28 12:19:21 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:21 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00015bc00 0xc002430d10} +2022/02/28 12:19:21 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:21 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 12:19:21 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 12:19:21 [DEBUG] 621c70671b00009f0bfd0c43: Beginning Read +2022/02/28 12:19:21 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:21 [DEBUG] Begin Injection +2022/02/28 12:19:21 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:21 [DEBUG] Template BD: Beginning Update +2022/02/28 12:19:21 HTTP request PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:21 [DEBUG] Begin Injection +2022/02/28 12:19:21 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128ea40 5563 [] false false map[] 0xc00015bf00 0xc0010409a0} +2022/02/28 12:19:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:21 [DEBUG] Exit from do method +2022/02/28 12:19:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:21 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:21 [DEBUG] New state was assigned lineage "e24a09ad-ae63-285e-87d7-333259f92c37" +2022/02/28 12:19:21 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:19:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00208c040 1472 [] false false map[] 0xc000076500 0xc0004e6dc0} +2022/02/28 12:19:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:19:21 [DEBUG] Exit from do method +2022/02/28 12:19:21 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully +2022/02/28 12:19:21 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:21 [DEBUG] New state was assigned lineage "d5688da0-be62-172b-148f-ed35ef9c0c56" +2022/02/28 12:19:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:21 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:21 [DEBUG] Test: Executing step 6 +2022/02/28 12:19:21 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m\")" references: [] +2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkImport +2022/02/28 12:19:21 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Import +2022/02/28 12:19:21 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:21 [DEBUG] Begin Injection +2022/02/28 12:19:21 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:21 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00057d500 0xc002430d10} +2022/02/28 12:19:21 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 +2022/02/28 12:19:21 [DEBUG] : Read finished successfully +2022/02/28 12:19:21 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001ad0600 0xc002430a50} +2022/02/28 12:19:21 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:21 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 12:19:21 [DEBUG] acctest_m9myr: Beginning Destroy +2022/02/28 12:19:21 HTTP request PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:21 [DEBUG] Begin Injection +2022/02/28 12:19:21 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001a1700 1472 [] false false map[] 0xc001ad0900 0xc0004e6dc0} +2022/02/28 12:19:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:19:22 [DEBUG] Exit from do method +2022/02/28 12:19:22 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Import finished successfully +2022/02/28 12:19:22 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Read +2022/02/28 12:19:22 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:22 [DEBUG] Begin Injection +2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:22 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001ad1000 0xc002430d10} +2022/02/28 12:19:22 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false +2022/02/28 12:19:22 [DEBUG] acctest_m9myr: Destroy finished successfully +2022/02/28 12:19:22 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 12:19:22 [DEBUG] 621c70671d0000aa644fba68: Beginning Destroy +2022/02/28 12:19:22 HTTP request DELETE mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:22 [DEBUG] Begin Injection +2022/02/28 12:19:22 HTTP request after injection DELETE mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b50740 1472 [] false false map[] 0xc00015a200 0xc0004e6dc0} +2022/02/28 12:19:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:19:22 [DEBUG] Exit from do method +2022/02/28 12:19:22 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully +2022/02/28 12:19:22 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:22 [DEBUG] New state was assigned lineage "672c1064-10c2-466e-26b1-e0838af9fa02" +2022/02/28 12:19:22 [DEBUG] Test: Executing step 7 +2022/02/28 12:19:22 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:22 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:22 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:22 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:22 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config +2022/02/28 12:19:22 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config +2022/02/28 12:19:22 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:22 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:22 [DEBUG] : Beginning Read +2022/02/28 12:19:22 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:22 [DEBUG] Begin Injection +2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:22 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00152a300 0xc002430d10} +2022/02/28 12:19:22 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:22 [DEBUG] 621c70671d0000aa644fba68: Destroy finished successfully +2022/02/28 12:19:22 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:22 [DEBUG] New state was assigned lineage "a31a0d7e-8812-6fa9-8eb6-20d96f039d2a" +2022/02/28 12:19:22 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:22 [DEBUG] Begin Injection +2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b51e80 5563 [] false false map[] 0xc001c45800 0xc0004e6dc0} +2022/02/28 12:19:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:22 [DEBUG] Exit from do method +2022/02/28 12:19:22 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:22 [DEBUG] 621c706e1b00009f0bfd0c46: Beginning Read +2022/02/28 12:19:22 id: 621c706e1b00009f0bfd0c46 +2022/02/28 12:19:22 [DEBUG] 621c70671d000097644fba6c: Beginning Read +2022/02/28 12:19:22 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:22 HTTP request GET mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:22 [DEBUG] Begin Injection +2022/02/28 12:19:22 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read +2022/02/28 12:19:22 id: 621c70671b0000b50bfd0c45 +2022/02/28 12:19:22 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:22 [DEBUG] Begin Injection +2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:22 [DEBUG] Begin Injection +2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:22 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199f880 39 [] false false map[] 0xc00015a200 0xc002430d10} +2022/02/28 12:19:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"code":404,"message":"Item not found"} +2022/02/28 12:19:22 [DEBUG] Exit from do method +2022/02/28 12:19:22 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:22 [DEBUG] Begin Injection +2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84a80 160 [] false false map[] 0xc000076b00 0xc0004e6dc0} +2022/02/28 12:19:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:23 [DEBUG] Exit from do method +2022/02/28 12:19:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199fa80 161 [] false false map[] 0xc001ad1a00 0xc0010409a0} +2022/02/28 12:19:23 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully +2022/02/28 12:19:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 {"id":"621c706e1b00009f0bfd0c46","name":"acctest_yhum2","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:23 [DEBUG] Exit from do method +2022/02/28 12:19:23 [DEBUG] 621c706e1b00009f0bfd0c46: Read finished successfully +2022/02/28 12:19:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001abb080 1472 [] false false map[] 0xc00057c600 0xc002430d10} +2022/02/28 12:19:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:19:23 [DEBUG] Exit from do method +2022/02/28 12:19:23 [DEBUG] 621c70671d000097644fba6c: Read finished successfully +2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:23 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:23 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:23 [DEBUG] Begin Injection +2022/02/28 12:19:23 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 +2022/02/28 12:19:23 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:23 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199e100 39 [] false false map[] 0xc001ad1b00 0xc0004e6dc0} +2022/02/28 12:19:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"code":404,"message":"Item not found"} +2022/02/28 12:19:23 [DEBUG] Exit from do method +2022/02/28 12:19:23 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:19:23 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:19:23 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:23 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:23 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:23 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:23 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:23 [DEBUG] : Beginning Read +2022/02/28 12:19:23 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:23 [DEBUG] Begin Injection +2022/02/28 12:19:23 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128e100 1472 [] false false map[] 0xc001ad1d00 0xc002430d10} +2022/02/28 12:19:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:19:23 [DEBUG] Exit from do method +2022/02/28 12:19:23 currentvrfname acctest_tm86m +2022/02/28 12:19:23 found correct vrfname +2022/02/28 12:19:23 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:23 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:23 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:23 [DEBUG] Begin Injection +2022/02/28 12:19:23 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00208c100 5563 [] false false map[] 0xc00015aa00 0xc0004e6dc0} +2022/02/28 12:19:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:23 [DEBUG] Exit from do method +2022/02/28 12:19:23 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:23 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:23 [DEBUG] New state was assigned lineage "d6d1b060-a638-da83-bbee-a33c4b4c7850" +2022/02/28 12:19:23 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:19:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:23 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:19:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00208c240 1472 [] false false map[] 0xc00152b200 0xc002430d10} +2022/02/28 12:19:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:19:23 [DEBUG] Exit from do method +2022/02/28 12:19:23 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:23 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Read +2022/02/28 12:19:23 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:23 [DEBUG] Begin Injection +2022/02/28 12:19:23 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b51980 1472 [] false false map[] 0xc000076500 0xc000e0af20} +2022/02/28 12:19:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/28 12:19:24 [DEBUG] Exit from do method +2022/02/28 12:19:24 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully +2022/02/28 12:19:24 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:24 [DEBUG] New state was assigned lineage "e2030765-9c49-5b74-9cbe-e423847f1be8" +2022/02/28 12:19:24 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:24 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:24 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:24 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_option_policy.test + description: "" => "" + id: "621c706e1b00009f0bfd0c46" => "" + name: "acctest_yhum2" => "" + option.#: "0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_tm86m" => "" + dhcp_option_name: "acctest_yhum2" => "" + dhcp_option_version: "1" => "" + id: "/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m" => "" + name: "acctest_tm86m" => "" + schema_id: "621c70671d000097644fba6c" => "" + template_name: "acctest_qnr4i" => "" + version: "1" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_option_policy.test: + ID = 621c706e1b00009f0bfd0c46 + provider = provider.mso + description = + name = acctest_yhum2 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test: + ID = 621c70671b0000b50bfd0c45 + provider = provider.mso + description = + name = acctest_tm86m + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c70671d000097644fba6c + provider = provider.mso + name = acctest_qnr4i + template_name = acctest_qnr4i + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_tm86m + provider = provider.mso + dhcp_policy.dhcp_option_policy_name = acctest_yhum2 + dhcp_policy.dhcp_option_policy_version = 1 + dhcp_policy.name = acctest_tm86m + dhcp_policy.version = 1 + display_name = acctest_tm86m + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_tm86m + schema_id = 621c70671d000097644fba6c + template_name = acctest_qnr4i + vrf_name = acctest_tm86m + vrf_schema_id = 621c70671d000097644fba6c + vrf_template_name = acctest_qnr4i + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m + provider = provider.mso + bd_name = acctest_tm86m + dhcp_option_name = acctest_yhum2 + dhcp_option_version = 1 + name = acctest_tm86m + schema_id = 621c70671d000097644fba6c + template_name = acctest_qnr4i + version = 1 + + Dependencies: + mso_dhcp_option_policy.test + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_tm86m + provider = provider.mso + display_name = acctest_tm86m + layer3_multicast = false + name = acctest_tm86m + schema_id = 621c70671d000097644fba6c + template = acctest_qnr4i + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:19:24 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:19:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:24 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 12:19:24 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 12:19:24 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 12:19:24 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:19:24 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 12:19:24 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:19:24 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 12:19:24 [DEBUG] Template BD: Beginning Update +2022/02/28 12:19:24 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:24 [DEBUG] Begin Injection +2022/02/28 12:19:24 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:24 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:24 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000e23b00 0xc000e0af20} +2022/02/28 12:19:24 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:24 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change +2022/02/28 12:19:24 [DEBUG] 621c706e1b00009f0bfd0c46: Beginning Read +2022/02/28 12:19:24 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:24 [DEBUG] Begin Injection +2022/02/28 12:19:24 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:24 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:24 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000076700 0xc000e0af20} +2022/02/28 12:19:24 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 +2022/02/28 12:19:24 [DEBUG] : Read finished successfully +2022/02/28 12:19:24 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:24 [DEBUG] New state was assigned lineage "aa5cdf63-3dd8-a0f5-4012-1a080bc7a555" +2022/02/28 12:19:24 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:24 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:24 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:24 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:24 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:24 [DEBUG] : Beginning Read +2022/02/28 12:19:24 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:24 [DEBUG] Begin Injection +2022/02/28 12:19:24 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8140 5563 [] false false map[] 0xc000077700 0xc000e0af20} +2022/02/28 12:19:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:25 [DEBUG] Exit from do method +2022/02/28 12:19:25 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:25 [DEBUG] 621c70671d000097644fba6c: Beginning Read +2022/02/28 12:19:25 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:25 [DEBUG] Begin Injection +2022/02/28 12:19:25 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:25 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read +2022/02/28 12:19:25 id: 621c70671b0000b50bfd0c45 +2022/02/28 12:19:25 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:25 [DEBUG] Begin Injection +2022/02/28 12:19:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069d0c0 160 [] false false map[] 0xc0011cc100 0xc0010409a0} +2022/02/28 12:19:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:25 [DEBUG] Exit from do method +2022/02/28 12:19:25 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully +2022/02/28 12:19:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84340 1277 [] false false map[] 0xc001d14500 0xc000e0af20} +2022/02/28 12:19:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 12:19:25 [DEBUG] Exit from do method +2022/02/28 12:19:25 [DEBUG] 621c70671d000097644fba6c: Read finished successfully +2022/02/28 12:19:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:25 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:25 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:25 [DEBUG] Begin Injection +2022/02/28 12:19:25 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b51080 1277 [] false false map[] 0xc00152a500 0xc000e0af20} +2022/02/28 12:19:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 12:19:25 [DEBUG] Exit from do method +2022/02/28 12:19:25 currentvrfname acctest_tm86m +2022/02/28 12:19:25 found correct vrfname +2022/02/28 12:19:25 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:25 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:25 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:25 [DEBUG] Begin Injection +2022/02/28 12:19:25 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e66c0 1277 [] false false map[] 0xc00015ab00 0xc000e0af20} +2022/02/28 12:19:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 12:19:26 [DEBUG] Exit from do method +2022/02/28 12:19:26 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:26 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:26 [DEBUG] New state was assigned lineage "a55be48c-a97a-6080-f632-37079d00bba9" +2022/02/28 12:19:26 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:26 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:26 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:26 [DEBUG] Test: Executing step 8 +2022/02/28 12:19:26 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:26 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:26 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:26 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:26 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:26 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:26 [DEBUG] : Beginning Read +2022/02/28 12:19:26 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:26 [DEBUG] Begin Injection +2022/02/28 12:19:26 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00141e4c0 5563 [] false false map[] 0xc000e23200 0xc000e0af20} +2022/02/28 12:19:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:26 [DEBUG] Exit from do method +2022/02/28 12:19:26 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:26 [DEBUG] 621c70671d000097644fba6c: Beginning Read +2022/02/28 12:19:26 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:26 [DEBUG] Begin Injection +2022/02/28 12:19:26 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:26 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read +2022/02/28 12:19:26 id: 621c70671b0000b50bfd0c45 +2022/02/28 12:19:26 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:26 [DEBUG] Begin Injection +2022/02/28 12:19:26 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001abb2c0 160 [] false false map[] 0xc000076700 0xc0010409a0} +2022/02/28 12:19:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:26 [DEBUG] Exit from do method +2022/02/28 12:19:26 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully +2022/02/28 12:19:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001abb380 1277 [] false false map[] 0xc00152a700 0xc000e0af20} +2022/02/28 12:19:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 12:19:27 [DEBUG] Exit from do method +2022/02/28 12:19:27 [DEBUG] 621c70671d000097644fba6c: Read finished successfully +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:27 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:27 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:27 [DEBUG] Begin Injection +2022/02/28 12:19:27 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001aba0c0 1277 [] false false map[] 0xc000076c00 0xc000e0af20} +2022/02/28 12:19:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 12:19:27 [DEBUG] Exit from do method +2022/02/28 12:19:27 currentvrfname acctest_tm86m +2022/02/28 12:19:27 found correct vrfname +2022/02/28 12:19:27 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:27 [DEBUG] acctest_tm86m: Beginning Read +2022/02/28 12:19:27 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:27 [DEBUG] Begin Injection +2022/02/28 12:19:27 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199e100 1277 [] false false map[] 0xc000076400 0xc000e0af20} +2022/02/28 12:19:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/28 12:19:27 [DEBUG] Exit from do method +2022/02/28 12:19:27 [DEBUG] acctest_tm86m: Read finished successfully +2022/02/28 12:19:27 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:27 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:27 [DEBUG] New state was assigned lineage "2f59dbb9-8ffd-e1f7-bed7-533e92ac992e" +2022/02/28 12:19:27 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:27 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:27 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:27 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:27 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "621c70671b0000b50bfd0c45" => "" + name: "acctest_tm86m" => "acctest_w2vzq" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY/CREATE: mso_schema_template_bd.test + dhcp_policy: "" => "" + display_name: "acctest_tm86m" => "acctest_w2vzq" (forces new resource) + id: "acctest_tm86m" => "" + intersite_bum_traffic: "false" => "" + layer2_stretch: "" => "" + layer2_unknown_unicast: "flood" => "" + layer3_multicast: "" => "" + name: "acctest_tm86m" => "acctest_w2vzq" (forces new resource) + optimize_wan_bandwidth: "" => "" + schema_id: "621c70671d000097644fba6c" => "621c70671d000097644fba6c" + template_name: "acctest_qnr4i" => "acctest_qnr4i" + vrf_name: "acctest_tm86m" => "acctest_w2vzq" + vrf_schema_id: "621c70671d000097644fba6c" => "" + vrf_template_name: "acctest_qnr4i" => "" +CREATE: mso_schema_template_bd_dhcp_policy.test + bd_name: "" => "acctest_w2vzq" + dhcp_option_name: "" => "" + dhcp_option_version: "" => "" + id: "" => "" + name: "" => "acctest_w2vzq" + schema_id: "" => "621c70671d000097644fba6c" + template_name: "" => "acctest_qnr4i" + version: "" => "" +DESTROY/CREATE: mso_schema_template_vrf.test + display_name: "acctest_tm86m" => "acctest_w2vzq" + id: "acctest_tm86m" => "" + layer3_multicast: "false" => "" + name: "acctest_tm86m" => "acctest_w2vzq" (forces new resource) + schema_id: "621c70671d000097644fba6c" => "621c70671d000097644fba6c" + template: "acctest_qnr4i" => "acctest_qnr4i" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c70671b0000b50bfd0c45 + provider = provider.mso + description = + name = acctest_tm86m + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c70671d000097644fba6c + provider = provider.mso + name = acctest_qnr4i + template_name = acctest_qnr4i + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_tm86m + provider = provider.mso + display_name = acctest_tm86m + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_tm86m + schema_id = 621c70671d000097644fba6c + template_name = acctest_qnr4i + vrf_name = acctest_tm86m + vrf_schema_id = 621c70671d000097644fba6c + vrf_template_name = acctest_qnr4i + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_tm86m + provider = provider.mso + display_name = acctest_tm86m + layer3_multicast = false + name = acctest_tm86m + schema_id = 621c70671d000097644fba6c + template = acctest_qnr4i + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:19:27 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:19:27 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:19:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:27 [DEBUG] Starting graph walk: walkApply +2022/02/28 12:19:27 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 12:19:27 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 12:19:27 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read +2022/02/28 12:19:27 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:27 [DEBUG] Begin Injection +2022/02/28 12:19:27 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:27 [DEBUG] Template BD: Beginning Update +2022/02/28 12:19:27 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:27 [DEBUG] Begin Injection +2022/02/28 12:19:27 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000076300 0xc0010409a0} +2022/02/28 12:19:28 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 12:19:28 [DEBUG] acctest_tm86m: Beginning Destroy +2022/02/28 12:19:28 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 [DEBUG] Begin Injection +2022/02/28 12:19:28 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001416500 0xc000e0af20} +2022/02/28 12:19:28 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 +2022/02/28 12:19:28 [DEBUG] : Read finished successfully +2022/02/28 12:19:28 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/28 12:19:28 [DEBUG] : Beginning Create +2022/02/28 12:19:28 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:28 [DEBUG] Begin Injection +2022/02/28 12:19:28 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:28 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"desc":"","name":"acctest_w2vzq","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9d7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} +2022/02/28 12:19:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:28 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00152a600 0xc0010409a0} +2022/02/28 12:19:28 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 [DEBUG] acctest_tm86m: Destroy finished successfully +2022/02/28 12:19:28 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/28 12:19:28 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/28 12:19:28 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 [DEBUG] Begin Injection +2022/02/28 12:19:28 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/28 12:19:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00141e000 160 [] false false map[] 0xc00152ac00 0xc000e0af20} +2022/02/28 12:19:28 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c70781b0000bf0bfd0c47","name":"acctest_w2vzq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:28 [DEBUG] Exit from do method +2022/02/28 12:19:28 [DEBUG] 621c70781b0000bf0bfd0c47: Creation finished successfully +2022/02/28 12:19:28 [DEBUG] 621c70781b0000bf0bfd0c47: Beginning Read +2022/02/28 12:19:28 id: 621c70781b0000bf0bfd0c47 +2022/02/28 12:19:28 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:28 [DEBUG] Begin Injection +2022/02/28 12:19:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:28 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000077900 0xc0010409a0} +2022/02/28 12:19:28 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 [DEBUG] acctest_w2vzq: Creation finished successfully +2022/02/28 12:19:28 [DEBUG] acctest_w2vzq: Beginning Read +2022/02/28 12:19:28 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:28 [DEBUG] Begin Injection +2022/02/28 12:19:28 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057bbc0 160 [] false false map[] 0xc00152af00 0xc000e0af20} +2022/02/28 12:19:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 {"id":"621c70781b0000bf0bfd0c47","name":"acctest_w2vzq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:28 [DEBUG] Exit from do method +2022/02/28 12:19:28 [DEBUG] 621c70781b0000bf0bfd0c47: Read finished successfully +2022/02/28 12:19:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8240 768 [] false false map[] 0xc00152b000 0xc0010409a0} +2022/02/28 12:19:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} +2022/02/28 12:19:28 [DEBUG] Exit from do method +2022/02/28 12:19:28 currentvrfname acctest_w2vzq +2022/02/28 12:19:28 found correct vrfname +2022/02/28 12:19:28 [DEBUG] acctest_w2vzq: Read finished successfully +2022/02/28 12:19:28 [DEBUG] mso_schema_template_bd.test: applying the planned Create change +2022/02/28 12:19:28 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys +2022/02/28 12:19:28 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:19:28 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 [DEBUG] Begin Injection +2022/02/28 12:19:28 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:29 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:29 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc002090700 0xc0010409a0} +2022/02/28 12:19:29 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:29 [DEBUG] : Beginning Read +2022/02/28 12:19:29 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:29 [DEBUG] Begin Injection +2022/02/28 12:19:29 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b50040 1278 [] false false map[] 0xc0014bc000 0xc0010409a0} +2022/02/28 12:19:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} +2022/02/28 12:19:29 [DEBUG] Exit from do method +2022/02/28 12:19:29 [DEBUG] acctest_w2vzq: Read finished successfully +2022/02/28 12:19:29 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change +2022/02/28 12:19:29 [DEBUG] Template BD: Beginning Creation +2022/02/28 12:19:29 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:29 [DEBUG] Begin Injection +2022/02/28 12:19:29 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:29 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:29 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000076100 0xc0010409a0} +2022/02/28 12:19:29 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:29 [DEBUG] Creation Complete +2022/02/28 12:19:29 [DEBUG] : Beginning Read +2022/02/28 12:19:29 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:29 [DEBUG] Begin Injection +2022/02/28 12:19:29 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8940 1363 [] false false map[] 0xc000076300 0xc0010409a0} +2022/02/28 12:19:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:19:30 [DEBUG] Exit from do method +2022/02/28 12:19:30 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq: Read finished successfully +2022/02/28 12:19:30 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:30 [DEBUG] New state was assigned lineage "69073756-8b35-046c-a43f-0d42b23cca62" +2022/02/28 12:19:30 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:30 [DEBUG] Begin Injection +2022/02/28 12:19:30 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128e380 1363 [] false false map[] 0xc0014bc200 0xc0010409a0} +2022/02/28 12:19:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:19:30 [DEBUG] Exit from do method +2022/02/28 12:19:30 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:30 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:30 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:30 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:30 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:30 [DEBUG] : Beginning Read +2022/02/28 12:19:30 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:30 [DEBUG] Begin Injection +2022/02/28 12:19:30 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069d180 5563 [] false false map[] 0xc002090200 0xc0010409a0} +2022/02/28 12:19:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:30 [DEBUG] Exit from do method +2022/02/28 12:19:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:30 [DEBUG] 621c70781b0000bf0bfd0c47: Beginning Read +2022/02/28 12:19:30 id: 621c70781b0000bf0bfd0c47 +2022/02/28 12:19:30 [DEBUG] 621c70671d000097644fba6c: Beginning Read +2022/02/28 12:19:30 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:30 [DEBUG] Begin Injection +2022/02/28 12:19:30 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:30 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:30 [DEBUG] Begin Injection +2022/02/28 12:19:30 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000242640 160 [] false false map[] 0xc0014bc300 0xc000e0af20} +2022/02/28 12:19:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 {"id":"621c70781b0000bf0bfd0c47","name":"acctest_w2vzq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:31 [DEBUG] Exit from do method +2022/02/28 12:19:31 [DEBUG] 621c70781b0000bf0bfd0c47: Read finished successfully +2022/02/28 12:19:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012acb80 1363 [] false false map[] 0xc00152b500 0xc0010409a0} +2022/02/28 12:19:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:19:31 [DEBUG] Exit from do method +2022/02/28 12:19:31 [DEBUG] 621c70671d000097644fba6c: Read finished successfully +2022/02/28 12:19:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:31 [DEBUG] acctest_w2vzq: Beginning Read +2022/02/28 12:19:31 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:31 [DEBUG] Begin Injection +2022/02/28 12:19:31 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057a740 1363 [] false false map[] 0xc002090600 0xc0010409a0} +2022/02/28 12:19:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:19:31 [DEBUG] Exit from do method +2022/02/28 12:19:31 currentvrfname acctest_w2vzq +2022/02/28 12:19:31 found correct vrfname +2022/02/28 12:19:31 [DEBUG] acctest_w2vzq: Read finished successfully +2022/02/28 12:19:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:31 [DEBUG] acctest_w2vzq: Beginning Read +2022/02/28 12:19:31 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:31 [DEBUG] Begin Injection +2022/02/28 12:19:31 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002420c0 1363 [] false false map[] 0xc002090800 0xc0010409a0} +2022/02/28 12:19:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:19:31 [DEBUG] Exit from do method +2022/02/28 12:19:31 [DEBUG] acctest_w2vzq: Read finished successfully +2022/02/28 12:19:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:31 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq: Beginning Read +2022/02/28 12:19:31 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:31 [DEBUG] Begin Injection +2022/02/28 12:19:31 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012ac680 1363 [] false false map[] 0xc000076600 0xc0010409a0} +2022/02/28 12:19:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:19:32 [DEBUG] Exit from do method +2022/02/28 12:19:32 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq: Read finished successfully +2022/02/28 12:19:32 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:32 [DEBUG] New state was assigned lineage "6ff35969-847c-2476-54ef-a3277cf2f006" +2022/02/28 12:19:32 [INFO] terraform: building graph: GraphTypePlan +2022/02/28 12:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:32 [DEBUG] Starting graph walk: walkPlan +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:32 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:32 [WARN] Test: Executing destroy step +2022/02/28 12:19:32 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/28 12:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:32 [DEBUG] Starting graph walk: walkValidate +2022/02/28 12:19:32 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:32 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] +2022/02/28 12:19:32 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:32 [DEBUG] : Beginning Read +2022/02/28 12:19:32 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:32 [DEBUG] Begin Injection +2022/02/28 12:19:32 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199e080 5563 [] false false map[] 0xc0016bed00 0xc0010409a0} +2022/02/28 12:19:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:32 [DEBUG] Exit from do method +2022/02/28 12:19:32 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/28 12:19:32 [DEBUG] 621c70781b0000bf0bfd0c47: Beginning Read +2022/02/28 12:19:32 [DEBUG] 621c70671d000097644fba6c: Beginning Read +2022/02/28 12:19:32 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:32 [DEBUG] Begin Injection +2022/02/28 12:19:32 id: 621c70781b0000bf0bfd0c47 +2022/02/28 12:19:32 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:32 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:32 [DEBUG] Begin Injection +2022/02/28 12:19:32 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001aba080 1363 [] false false map[] 0xc000900a00 0xc0010409a0} +2022/02/28 12:19:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:19:32 [DEBUG] Exit from do method +2022/02/28 12:19:32 [DEBUG] 621c70671d000097644fba6c: Read finished successfully +2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/28 12:19:32 [DEBUG] acctest_w2vzq: Beginning Read +2022/02/28 12:19:32 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:32 [DEBUG] Begin Injection +2022/02/28 12:19:32 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009faf80 160 [] false false map[] 0xc00152a600 0xc000e0af20} +2022/02/28 12:19:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 {"id":"621c70781b0000bf0bfd0c47","name":"acctest_w2vzq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/28 12:19:32 [DEBUG] Exit from do method +2022/02/28 12:19:32 [DEBUG] 621c70781b0000bf0bfd0c47: Read finished successfully +2022/02/28 12:19:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057aec0 1363 [] false false map[] 0xc000900d00 0xc0010409a0} +2022/02/28 12:19:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:19:33 [DEBUG] Exit from do method +2022/02/28 12:19:33 currentvrfname acctest_w2vzq +2022/02/28 12:19:33 found correct vrfname +2022/02/28 12:19:33 [DEBUG] acctest_w2vzq: Read finished successfully +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] +2022/02/28 12:19:33 [DEBUG] acctest_w2vzq: Beginning Read +2022/02/28 12:19:33 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:33 [DEBUG] Begin Injection +2022/02/28 12:19:33 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00141e200 1363 [] false false map[] 0xc00152a900 0xc0010409a0} +2022/02/28 12:19:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:19:33 [DEBUG] Exit from do method +2022/02/28 12:19:33 [DEBUG] acctest_w2vzq: Read finished successfully +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] +2022/02/28 12:19:33 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq: Beginning Read +2022/02/28 12:19:33 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:33 [DEBUG] Begin Injection +2022/02/28 12:19:33 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e7c80 1363 [] false false map[] 0xc0021f8400 0xc0010409a0} +2022/02/28 12:19:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} +2022/02/28 12:19:33 [DEBUG] Exit from do method +2022/02/28 12:19:33 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq: Read finished successfully +2022/02/28 12:19:33 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:33 [DEBUG] New state was assigned lineage "ededc79e-a70b-e163-cd03-56781891698a" +2022/02/28 12:19:33 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:19:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:19:33 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:19:33 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621c70781b0000bf0bfd0c47" => "" + name: "acctest_w2vzq" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621c70671d000097644fba6c" => "" + name: "acctest_qnr4i" => "" + template_name: "acctest_qnr4i" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_bd.test + dhcp_policy.name: "acctest_w2vzq" => "" + dhcp_policy.version: "0" => "" + display_name: "acctest_w2vzq" => "" + id: "acctest_w2vzq" => "" + intersite_bum_traffic: "false" => "" + layer2_unknown_unicast: "flood" => "" + name: "acctest_w2vzq" => "" + schema_id: "621c70671d000097644fba6c" => "" + template_name: "acctest_qnr4i" => "" + vrf_name: "acctest_w2vzq" => "" + vrf_schema_id: "621c70671d000097644fba6c" => "" + vrf_template_name: "acctest_qnr4i" => "" +DESTROY: mso_schema_template_bd_dhcp_policy.test + bd_name: "acctest_w2vzq" => "" + dhcp_option_name: "" => "" + dhcp_option_version: "0" => "" + id: "/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq" => "" + name: "acctest_w2vzq" => "" + schema_id: "621c70671d000097644fba6c" => "" + template_name: "acctest_qnr4i" => "" + version: "0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_w2vzq" => "" + id: "acctest_w2vzq" => "" + layer3_multicast: "false" => "" + name: "acctest_w2vzq" => "" + schema_id: "621c70671d000097644fba6c" => "" + template: "acctest_qnr4i" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621c70781b0000bf0bfd0c47 + provider = provider.mso + description = + name = acctest_w2vzq + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621c70671d000097644fba6c + provider = provider.mso + name = acctest_qnr4i + template_name = acctest_qnr4i + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_bd.test: + ID = acctest_w2vzq + provider = provider.mso + dhcp_policy.name = acctest_w2vzq + dhcp_policy.version = 0 + display_name = acctest_w2vzq + intersite_bum_traffic = false + layer2_unknown_unicast = flood + name = acctest_w2vzq + schema_id = 621c70671d000097644fba6c + template_name = acctest_qnr4i + vrf_name = acctest_w2vzq + vrf_schema_id = 621c70671d000097644fba6c + vrf_template_name = acctest_qnr4i + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_bd_dhcp_policy.test: + ID = /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq + provider = provider.mso + bd_name = acctest_w2vzq + dhcp_option_name = + dhcp_option_version = 0 + name = acctest_w2vzq + schema_id = 621c70671d000097644fba6c + template_name = acctest_qnr4i + version = 0 + + Dependencies: + mso_dhcp_relay_policy.test + mso_schema.test + mso_schema_template_bd.test +mso_schema_template_vrf.test: + ID = acctest_w2vzq + provider = provider.mso + display_name = acctest_w2vzq + layer3_multicast = false + name = acctest_w2vzq + schema_id = 621c70671d000097644fba6c + template = acctest_qnr4i + vzany = false + + Dependencies: + mso_schema.test +2022/02/28 12:19:33 [INFO] terraform: building graph: GraphTypeApply +2022/02/28 12:19:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] +2022/02/28 12:19:33 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/28 12:19:33 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) +2022/02/28 12:19:33 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) +2022/02/28 12:19:33 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) +2022/02/28 12:19:33 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) +2022/02/28 12:19:33 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/28 12:19:33 [DEBUG] Starting graph walk: walkDestroy +2022/02/28 12:19:33 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change +2022/02/28 12:19:33 [DEBUG] Template BD: Beginning Update +2022/02/28 12:19:33 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:33 [DEBUG] Begin Injection +2022/02/28 12:19:33 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004aee00 0xc0010409a0} +2022/02/28 12:19:34 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/28 12:19:34 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change +2022/02/28 12:19:34 [DEBUG] 621c70781b0000bf0bfd0c47: Beginning Read +2022/02/28 12:19:34 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:34 [DEBUG] Begin Injection +2022/02/28 12:19:34 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:34 [DEBUG] Template BD: Beginning Update +2022/02/28 12:19:34 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 [DEBUG] Begin Injection +2022/02/28 12:19:34 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001c30000 0xc000e0af20} +2022/02/28 12:19:34 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/28 12:19:34 [DEBUG] acctest_w2vzq: Beginning Destroy +2022/02/28 12:19:34 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 [DEBUG] Begin Injection +2022/02/28 12:19:34 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0012fb100 0xc0010409a0} +2022/02/28 12:19:34 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 +2022/02/28 12:19:34 [DEBUG] : Read finished successfully +2022/02/28 12:19:34 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004af800 0xc000e0af20} +2022/02/28 12:19:34 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false +2022/02/28 12:19:34 [DEBUG] acctest_w2vzq: Destroy finished successfully +2022/02/28 12:19:34 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/28 12:19:34 [DEBUG] 621c70671d000097644fba6c: Beginning Destroy +2022/02/28 12:19:34 HTTP request DELETE mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:34 [DEBUG] Begin Injection +2022/02/28 12:19:34 HTTP request after injection DELETE mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:35 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0004afc00 0xc000e0af20} +2022/02/28 12:19:35 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:35 [DEBUG] 621c70671d000097644fba6c: Destroy finished successfully +2022/02/28 12:19:35 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:35 [DEBUG] New state was assigned lineage "6206b367-d933-2034-f579-69747f69e03a" +2022/02/28 12:19:35 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:35 [DEBUG] Begin Injection +2022/02/28 12:19:35 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c +2022/02/28 12:19:35 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:35 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00063e480 39 [] false false map[] 0xc000076500 0xc000e0af20} +2022/02/28 12:19:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"code":404,"message":"Item not found"} +2022/02/28 12:19:35 [DEBUG] Exit from do method +2022/02/28 12:19:35 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:19:35 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/28 12:19:35 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/28 12:19:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/28 12:19:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:35 [DEBUG] Starting graph walk: walkRefresh +2022/02/28 12:19:35 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/28 12:19:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:35 [DEBUG] : Beginning Read +2022/02/28 12:19:35 HTTP request GET mso/api/v1/tenants +2022/02/28 12:19:35 [DEBUG] Begin Injection +2022/02/28 12:19:35 HTTP request after injection GET mso/api/v1/tenants +2022/02/28 12:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/28 12:19:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8280 5563 [] false false map[] 0xc000076f00 0xc000e0af20} +2022/02/28 12:19:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} +2022/02/28 12:19:35 [DEBUG] Exit from do method +2022/02/28 12:19:35 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/28 12:19:35 [DEBUG] provider has no plugin.Client +2022/02/28 12:19:35 [DEBUG] New state was assigned lineage "6921556c-b950-c857-29a7-3f429c0ebb61" +2022/02/28 12:19:35 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/28 12:19:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/28 12:19:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/28 12:19:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/28 12:19:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/28 12:19:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/28 12:19:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/28 12:19:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/28 12:19:35 [DEBUG] Starting graph walk: walkPlanDestroy diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/client/client_service.go b/vendor/github.com/ciscoecosystem/mso-go-client/client/client_service.go index eaeb1eca..a47cf585 100644 --- a/vendor/github.com/ciscoecosystem/mso-go-client/client/client_service.go +++ b/vendor/github.com/ciscoecosystem/mso-go-client/client/client_service.go @@ -3,6 +3,7 @@ package client import ( "errors" "fmt" + "log" "net/url" "github.com/ciscoecosystem/mso-go-client/container" @@ -63,7 +64,7 @@ func (c *Client) Save(endpoint string, obj models.Model) (*container.Container, if err != nil { return nil, err } - + log.Println("Request: ", req) cont, _, err := c.Do(req) if err != nil { return nil, err @@ -117,7 +118,6 @@ func (c *Client) PatchbyID(endpoint string, objList ...models.Model) (*container return nil, err } contJs.ArrayAppend(jsonPayload.Data()) - } // URL encoding diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/client/dhcp_option_policy_service.go b/vendor/github.com/ciscoecosystem/mso-go-client/client/dhcp_option_policy_service.go new file mode 100644 index 00000000..43a37e79 --- /dev/null +++ b/vendor/github.com/ciscoecosystem/mso-go-client/client/dhcp_option_policy_service.go @@ -0,0 +1,60 @@ +package client + +import ( + "fmt" + + "github.com/ciscoecosystem/mso-go-client/container" + "github.com/ciscoecosystem/mso-go-client/models" +) + +func (client *Client) GetDHCPOptionPolicyID(name string) (string, error) { + path := "api/v1/policies/dhcp/option" + cont, err := client.GetViaURL(path) + if err != nil { + return "", err + } + for _, policy := range cont.S("DhcpRelayPolicies").Data().([]interface{}) { + if optionPol, ok := policy.(map[string]interface{}); ok { + if name == optionPol["name"].(string) { + return optionPol["id"].(string), nil + } + } + } + return "", fmt.Errorf("DHCP Option Policy with name: %s not found", name) +} + +func (client *Client) CreateDHCPOptionPolicy(obj *models.DHCPOptionPolicy) (*container.Container, error) { + path := "api/v1/policies/dhcp/option" + cont, err := client.Save(path, obj) + if err != nil { + return nil, err + } + return cont, nil +} + +func (client *Client) ReadDHCPOptionPolicy(id string) (*container.Container, error) { + path := "api/v1/policies/dhcp/option/" + id + cont, err := client.GetViaURL(path) + if err != nil { + return nil, err + } + return cont, nil +} + +func (client *Client) UpdateDHCPOptionPolicy(id string, obj *models.DHCPOptionPolicy) (*container.Container, error) { + path := "api/v1/policies/dhcp/option/" + id + cont, err := client.Put(path, obj) + if err != nil { + return nil, err + } + return cont, nil +} + +func (client *Client) DeleteDHCPOptionPolicy(id string) error { + path := "api/v1/policies/dhcp/option/" + id + err := client.DeletebyId(path) + if err != nil { + return err + } + return nil +} diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/models/dhcp_option_policy.go b/vendor/github.com/ciscoecosystem/mso-go-client/models/dhcp_option_policy.go new file mode 100644 index 00000000..cc35a269 --- /dev/null +++ b/vendor/github.com/ciscoecosystem/mso-go-client/models/dhcp_option_policy.go @@ -0,0 +1,55 @@ +package models + +import ( + "encoding/json" + + "github.com/ciscoecosystem/mso-go-client/container" +) + +type DHCPOptionPolicy struct { + ID string `json:"id,omitempty"` + Name string `json:"name"` + PolicyType string `json:"policyType,omitempty"` + PolicySubtype string `json:"policySubtype,omitempty"` + Desc string `json:"desc"` + TenantID string `json:"tenantId"` + DHCPOption []DHCPOption `json:"dhcpOption"` +} + +func NewDHCPOptionPolicy(policy DHCPOptionPolicy) *DHCPOptionPolicy { + newDHCPOptionPolicy := policy + return &newDHCPOptionPolicy +} + +type DHCPOption struct { + ID string `json:"id"` + Name string `json:"name"` + Data string `json:"data"` +} + +func (model *DHCPOptionPolicy) ToMap() (map[string]interface{}, error) { + objMap := make(map[string]interface{}) + + jsonObj, err := json.Marshal(model) + if err != nil { + return nil, err + } + + err = json.Unmarshal(jsonObj, &objMap) + if err != nil { + return nil, err + } + + return objMap, nil +} + +func DHCPOptionPolicyFromContainer(cont *container.Container) (*DHCPOptionPolicy, error) { + policy := DHCPOptionPolicy{} + + err := json.Unmarshal(cont.EncodeJSON(), &policy) + if err != nil { + return nil, err + } + + return &policy, nil +} diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/models/label.go b/vendor/github.com/ciscoecosystem/mso-go-client/models/label.go index e0637b60..11fa7628 100644 --- a/vendor/github.com/ciscoecosystem/mso-go-client/models/label.go +++ b/vendor/github.com/ciscoecosystem/mso-go-client/models/label.go @@ -6,9 +6,6 @@ type Label struct { Type string `json:",omitempty"` } - - - func NewLabel (id, labels, types string) *Label{ return &Label{ diff --git a/vendor/modules.txt b/vendor/modules.txt index 6682ae46..3d44be7f 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -56,7 +56,7 @@ github.com/aws/aws-sdk-go/service/sts/stsiface github.com/bgentry/go-netrc/netrc # github.com/bgentry/speakeasy v0.1.0 github.com/bgentry/speakeasy -# github.com/ciscoecosystem/mso-go-client v1.3.0 +# github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220209133549-b2680916c1f0 github.com/ciscoecosystem/mso-go-client/client github.com/ciscoecosystem/mso-go-client/container github.com/ciscoecosystem/mso-go-client/models From 368b32d241807463da5406f83e3809a6cb6b83f1 Mon Sep 17 00:00:00 2001 From: hthakkar-crest Date: Thu, 10 Feb 2022 18:15:59 +0530 Subject: [PATCH 02/67] added test file for dhcp_option_policy --- .gitignore | 3 +- mso/datasource_mso_dhcp_option_policy_test.go | 156 + mso/resource_mso_dhcp_option_policy.go | 8 +- mso/resource_mso_dhcp_option_policy_test.go | 491 +- mso/tf.log | 52109 ---------------- mso/util.go | 8 + 6 files changed, 656 insertions(+), 52119 deletions(-) create mode 100644 mso/datasource_mso_dhcp_option_policy_test.go delete mode 100644 mso/tf.log diff --git a/.gitignore b/.gitignore index c5cf525b..9f69906c 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ **/.terraform **/terraform.tfstate **/terraform.tfstate.backup -**/.vscode \ No newline at end of file +**/.vscode +**/*.log \ No newline at end of file diff --git a/mso/datasource_mso_dhcp_option_policy_test.go b/mso/datasource_mso_dhcp_option_policy_test.go new file mode 100644 index 00000000..d0fa5a82 --- /dev/null +++ b/mso/datasource_mso_dhcp_option_policy_test.go @@ -0,0 +1,156 @@ +package mso + +import ( + "fmt" + "regexp" + "strconv" + "testing" + + "github.com/ciscoecosystem/mso-go-client/models" + "github.com/hashicorp/terraform-plugin-sdk/helper/acctest" + "github.com/hashicorp/terraform-plugin-sdk/helper/resource" +) + +func TestAccMSODHCPOptionPolicy_DataSource(t *testing.T) { + var optPolicy1 models.DHCPOptionPolicy + resourceName := "mso_dhcp_option_policy.test" + dataSourceName := "data.mso_dhcp_option_policy.test" + tenant := makeTestVariable(acctest.RandString(5)) + name := makeTestVariable(acctest.RandString(5)) + optionName := "acctest" + acctest.RandString(5) + optionId := strconv.Itoa(acctest.RandIntRange(1, 1000)) + randomParameter := acctest.RandStringFromCharSet(5, "abcdefghijklmnopqrstuvwxyz") + randomValue := acctest.RandString(5) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSODHCPOptionPolicyDestroy, + Steps: []resource.TestStep{ + { + Config: MSODHCPOptionPolicyDataSourceWithoutName(tenant, name), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSODHCPOptionPolicyDataSourceAttr(tenant, name, randomParameter, randomValue), + ExpectError: regexp.MustCompile(`An argument named(.)+is not expected here.`), + }, + { + Config: MSODHCPOptionPolicyDataSourceWithInvalidName(tenant, name), + ExpectError: regexp.MustCompile(`DHCP Option Policy with name: (.)+ not found`), + }, + { + Config: MSODHCPOptionPolicyDataSourceConfig(tenant, name, optionName, optionId), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &optPolicy1), + resource.TestCheckResourceAttrPair(resourceName, "description", dataSourceName, "description"), + resource.TestCheckResourceAttrPair(resourceName, "tenant_id", dataSourceName, "tenant_id"), + resource.TestCheckResourceAttrPair(resourceName, "name", dataSourceName, "name"), + resource.TestCheckResourceAttrPair(resourceName, "option.#", dataSourceName, "option.#"), + resource.TestCheckResourceAttrPair(resourceName, "option.0.name", dataSourceName, "option.0.name"), + resource.TestCheckResourceAttrPair(resourceName, "option.0.id", dataSourceName, "option.0.id"), + resource.TestCheckResourceAttrPair(resourceName, "option.0.data", dataSourceName, "option.0.data"), + ), + }, + { + Config: MSODHCPOptionPolicyDataSourceWithUpdatedResource(tenant, name, "description", randomValue), + ExpectNonEmptyPlan: true, + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &optPolicy1), + resource.TestCheckResourceAttrPair(resourceName, "description", dataSourceName, "description"), + ), + }, + }, + }) +} + +func MSODHCPOptionPolicyDataSourceConfig(tenant, name, optionname, optionid string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + option { + name = "%s" + id = "%s" + } + } + data "mso_dhcp_option_policy" "test" { + name = mso_dhcp_option_policy.test.name + } + `, tenant, tenant, name, optionname, optionid) + return resource +} + +func MSODHCPOptionPolicyDataSourceWithoutName(tenant, name string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + + } + data "mso_dhcp_option_policy" "test" {} + `, tenant, tenant, name) + return resource +} + +func MSODHCPOptionPolicyDataSourceWithUpdatedResource(tenant, name, key, val string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + %s = "%s" + } + data "mso_dhcp_option_policy" "test" { + name = mso_dhcp_option_policy.test.name + depends_on = [mso_dhcp_option_policy.test] + } + `, tenant, tenant, name, key, val) + return resource +} + +func MSODHCPOptionPolicyDataSourceAttr(tenant, name, key, val string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + + } + data "mso_dhcp_option_policy" "test" { + name = mso_dhcp_option_policy.test.name + %s = "%s" + } + `, tenant, tenant, name, key, val) + return resource +} + +func MSODHCPOptionPolicyDataSourceWithInvalidName(tenant, name string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + } + data "mso_dhcp_option_policy" "test" { + name = "${mso_dhcp_option_policy.test.name}_invalid" + } + `, tenant, tenant, name) + return resource +} diff --git a/mso/resource_mso_dhcp_option_policy.go b/mso/resource_mso_dhcp_option_policy.go index 4e6304db..64b3780a 100644 --- a/mso/resource_mso_dhcp_option_policy.go +++ b/mso/resource_mso_dhcp_option_policy.go @@ -2,6 +2,7 @@ package mso import ( "log" + "regexp" "github.com/ciscoecosystem/mso-go-client/client" "github.com/ciscoecosystem/mso-go-client/models" @@ -54,11 +55,12 @@ func resourceMSODHCPOptionPolicy() *schema.Resource { "name": { Type: schema.TypeString, Required: true, - ValidateFunc: validation.StringLenBetween(1, 1000), + ValidateFunc: validation.StringMatch(regexp.MustCompile(`^[a-zA-Z0-9]+$`), "value should be alphanumeric"), }, "id": { - Type: schema.TypeString, - Required: true, + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringMatch(regexp.MustCompile(`^[0-9]+$`), "value should be numeric"), }, "data": { Type: schema.TypeString, diff --git a/mso/resource_mso_dhcp_option_policy_test.go b/mso/resource_mso_dhcp_option_policy_test.go index 3cbc32a6..f7fcb077 100644 --- a/mso/resource_mso_dhcp_option_policy_test.go +++ b/mso/resource_mso_dhcp_option_policy_test.go @@ -1,25 +1,504 @@ package mso import ( + "fmt" + "regexp" + "strconv" "testing" + "github.com/ciscoecosystem/mso-go-client/client" + "github.com/ciscoecosystem/mso-go-client/models" + "github.com/hashicorp/terraform-plugin-sdk/helper/acctest" "github.com/hashicorp/terraform-plugin-sdk/helper/resource" + "github.com/hashicorp/terraform-plugin-sdk/terraform" ) func TestAccMSODHCPOptionPolicy_Basic(t *testing.T) { - var s LabelTest - resource.Test(t, resource.TestCase{ + var optPolicy1 models.DHCPOptionPolicy + var optPolicy2 models.DHCPOptionPolicy + resourceName := "mso_dhcp_option_policy.test" + tenant := makeTestVariable(acctest.RandString(5)) + tenantOther := makeTestVariable(acctest.RandString(5)) + name := makeTestVariable(acctest.RandString(5)) + nameOther := makeTestVariable(acctest.RandString(5)) + optionName := "acctest" + acctest.RandString(5) + optionId := strconv.Itoa(acctest.RandIntRange(1, 1000)) + resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders, - CheckDestroy: testAccCheckMSOLabelDestroy, + CheckDestroy: testAccCheckMSODHCPOptionPolicyDestroy, Steps: []resource.TestStep{ { - Config: testAccCheckMSOLabelConfig_basic("site"), + Config: MSODHCPOptionPolicyWithoutRequired(tenant, name, "tenant_id"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSODHCPOptionPolicyWithoutRequired(tenant, name, "name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSODHCPOptionPolicyWithRequired(tenant, name), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &optPolicy1), + resource.TestCheckResourceAttr(resourceName, "description", ""), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttr(resourceName, "option.#", "0"), + ), + }, + { + Config: MSODHCPOptionPolicyOptionWithoutRequired(tenant, name, optionName, optionId, "name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSODHCPOptionPolicyOptionWithoutRequired(tenant, name, optionName, optionId, "id"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSODHCPOptionPolicyWithOptioRequired(tenant, name, optionName, optionId), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &optPolicy2), + resource.TestCheckResourceAttr(resourceName, "description", ""), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttr(resourceName, "option.#", "1"), + resource.TestCheckResourceAttr(resourceName, "option.0.name", optionName), + resource.TestCheckResourceAttr(resourceName, "option.0.id", optionId), + resource.TestCheckResourceAttr(resourceName, "option.0.data", ""), + testAccCheckMSODHCPOptionPolicyIdEqual(&optPolicy1, &optPolicy2), + ), + }, + { + Config: MSODHCPOptionPolicyWithOptional(tenant, name, optionName, optionId), Check: resource.ComposeTestCheckFunc( - testAccCheckMSOLabelExists("mso_label.label1", &s), - testAccCheckMSOLabelAttributes("site", &s), + testAccCheckMSODHCPOptionPolicyExists(resourceName, &optPolicy2), + resource.TestCheckResourceAttr(resourceName, "description", "test description"), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttr(resourceName, "option.#", "1"), + resource.TestCheckResourceAttr(resourceName, "option.0.name", optionName), + resource.TestCheckResourceAttr(resourceName, "option.0.id", optionId), + resource.TestCheckResourceAttr(resourceName, "option.0.data", "test data"), + testAccCheckMSODHCPOptionPolicyIdEqual(&optPolicy1, &optPolicy2), + ), + }, + { + ResourceName: resourceName, + ImportState: true, + ImportStateVerify: true, + }, + { + Config: MSODHCPOptionPolicyWithOutRequiredParameters(), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSODHCPOptionPolicyWithRequired(tenant, nameOther), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &optPolicy2), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", nameOther), + testAccCheckMSODHCPOptionPolicyIdNotEqual(&optPolicy1, &optPolicy2), + ), + }, + { + Config: MSODHCPOptionPolicyWithRequired(tenant, name), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &optPolicy1), + ), + }, + { + Config: MSODHCPOptionPolicyWithRequiredParam(tenant, tenantOther, name), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &optPolicy2), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", name), + testAccCheckMSODHCPOptionPolicyIdNotEqual(&optPolicy1, &optPolicy2), + ), + }, + }, + }) +} + +func TestAccMSODHCPOptionPolicy_Update(t *testing.T) { + var optPolicy1 models.DHCPOptionPolicy + var optPolicy2 models.DHCPOptionPolicy + resourceName := "mso_dhcp_option_policy.test" + tenant := makeTestVariable(acctest.RandString(5)) + name := makeTestVariable(acctest.RandString(5)) + optionName := "acctest" + acctest.RandString(5) + optionId := strconv.Itoa(acctest.RandIntRange(1, 1000)) + optionNameOther := "acctest" + acctest.RandString(5) + optionIdOther := strconv.Itoa(acctest.RandIntRange(1, 1000)) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSODHCPOptionPolicyDestroy, + Steps: []resource.TestStep{ + { + Config: MSODHCPOptionPolicyWithMultipleOption(tenant, name, optionName, optionId, optionNameOther, optionIdOther), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &optPolicy1), + resource.TestCheckResourceAttr(resourceName, "description", ""), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttr(resourceName, "option.#", "2"), + resource.TestCheckResourceAttr(resourceName, "option.0.name", optionName), + resource.TestCheckResourceAttr(resourceName, "option.0.id", optionId), + resource.TestCheckResourceAttr(resourceName, "option.1.name", optionNameOther), + resource.TestCheckResourceAttr(resourceName, "option.1.id", optionIdOther), + ), + }, + { + Config: MSODHCPOptionPolicyWithOptioRequired(tenant, name, optionName, optionId), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &optPolicy2), + resource.TestCheckResourceAttr(resourceName, "description", ""), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttr(resourceName, "option.#", "1"), + resource.TestCheckResourceAttr(resourceName, "option.0.name", optionName), + resource.TestCheckResourceAttr(resourceName, "option.0.id", optionId), + testAccCheckMSODHCPOptionPolicyIdEqual(&optPolicy1, &optPolicy2), ), }, }, }) } + +func TestAccMSODHCPOptionPolicy_Negative(t *testing.T) { + randomParameter := acctest.RandStringFromCharSet(5, "abcdefghijklmnopqrstuvwxyz") + randomValue := acctest.RandString(5) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSODHCPOptionPolicyDestroy, + Steps: []resource.TestStep{ + { + Config: MSODHCPOptionPolicyWithInvalidTenantId(randomValue, randomValue), + ExpectError: regexp.MustCompile(`tenant with id (.)+ is not found`), + }, + { + Config: MSODHCPOptionPolicyWithRequired(randomValue, acctest.RandString(1001)), + ExpectError: regexp.MustCompile(`1 - 1000`), + }, + { + Config: MSODHCPOptionPolicyWithRequiredUpdatedAttr(randomValue, randomValue, "description", acctest.RandString(1001)), + ExpectError: regexp.MustCompile(`1 - 1000`), + }, + { + Config: MSODHCPOptionPolicyWithRequiredUpdatedAttr(randomValue, randomValue, randomParameter, randomValue), + ExpectError: regexp.MustCompile(`An argument named(.)+is not expected here.`), + }, + { + Config: MSODHCPOptionPolicyWithOptioRequired(randomValue, randomValue, makeTestVariable(acctest.RandString(5)), strconv.Itoa(acctest.RandIntRange(1, 1000))), + ExpectError: regexp.MustCompile(`value should be alphanumeric`), + }, + { + Config: MSODHCPOptionPolicyWithOptioRequired(randomValue, randomValue, randomValue, randomValue), + ExpectError: regexp.MustCompile(`value should be numeric`), + }, + { + Config: MSODHCPOptionPolicyWithOptioAttr(randomValue, randomValue, randomValue, strconv.Itoa(acctest.RandIntRange(1, 1000)), randomParameter, randomValue), + ExpectError: regexp.MustCompile(`Unsupported argument`), + }, + { + Config: MSODHCPOptionPolicyWithRequired(randomValue, randomValue), + }, + }, + }) +} + +func TestAccMSODHCPOptionPolicy_MultipleCreateDelete(t *testing.T) { + tenant := makeTestVariable(acctest.RandString(5)) + name := makeTestVariable(acctest.RandString(5)) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSODHCPOptionPolicyDestroy, + Steps: []resource.TestStep{ + { + Config: MSODHCPOptionPolicyMultiple(tenant, name), + }, + }, + }) +} + +func testAccCheckMSODHCPOptionPolicyExists(name string, m *models.DHCPOptionPolicy) resource.TestCheckFunc { + return func(s *terraform.State) error { + rs1, err1 := s.RootModule().Resources[name] + + if !err1 { + return fmt.Errorf("DHCP Option Policy %s not found", name) + } + + if rs1.Primary.ID == "" { + return fmt.Errorf("DHCP Option Policy was set") + } + + client := testAccProvider.Meta().(*client.Client) + + cont, err := client.ReadDHCPOptionPolicy(rs1.Primary.ID) + + if err != nil { + return err + } + + sts, _ := models.DHCPOptionPolicyFromContainer(cont) + + *m = *sts + return nil + } +} + +func testAccCheckMSODHCPOptionPolicyDestroy(s *terraform.State) error { + client := testAccProvider.Meta().(*client.Client) + + for _, rs := range s.RootModule().Resources { + + if rs.Type == "mso_dhcp_option_policy" { + _, err := client.ReadDHCPOptionPolicy(rs.Primary.ID) + if err == nil { + return fmt.Errorf("Label still exists") + } + } else { + continue + } + + } + return nil +} + +func testAccCheckMSODHCPOptionPolicyIdEqual(m1, m2 *models.DHCPOptionPolicy) resource.TestCheckFunc { + return func(s *terraform.State) error { + if m1.ID != m2.ID { + return fmt.Errorf("DHCP Option Policies are not equal") + } + return nil + } +} + +func testAccCheckMSODHCPOptionPolicyIdNotEqual(m1, m2 *models.DHCPOptionPolicy) resource.TestCheckFunc { + return func(s *terraform.State) error { + if m1.ID == m2.ID { + return fmt.Errorf("DHCP Option Policies are equal") + } + return nil + } +} + +func MSODHCPOptionPolicyWithRequiredUpdatedAttr(tenant, name, key, val string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + %s = "%s" + } + `, tenant, tenant, name, key, val) + return resource +} + +func MSODHCPOptionPolicyWithInvalidTenantId(tenant, name string) string { + resource := fmt.Sprintf(` + resource "mso_dhcp_option_policy" "test" { + tenant_id = "%s" + name = "%s" + } + `, tenant, name) + return resource +} + +func MSODHCPOptionPolicyMultiple(tenant, name string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s${count.index}" + count = 5 + } + `, tenant, tenant, name) + return resource +} + +func MSODHCPOptionPolicyWithRequired(tenant, name string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + } + `, tenant, tenant, name) + return resource +} + +func MSODHCPOptionPolicyWithRequiredParam(tenant, tenantother, name string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_tenant" "test1" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test1.id + name = "%s" + } + `, tenant, tenant, tenantother, tenantother, name) + return resource +} + +func MSODHCPOptionPolicyWithMultipleOption(tenant, name, opname, opid, opname1, opid1 string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + option { + name = "%s" + id = "%s" + } + option { + name = "%s" + id = "%s" + } + } + `, tenant, tenant, name, opname, opid, opname1, opid1) + return resource +} + +func MSODHCPOptionPolicyWithOptioAttr(tenant, name, optionname, optionid, key, val string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + option { + name = "%s" + id = "%s" + %s = "%s" + } + } + `, tenant, tenant, name, optionname, optionid, key, val) + return resource +} + +func MSODHCPOptionPolicyWithOptioRequired(tenant, name, optionname, optionid string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + option { + name = "%s" + id = "%s" + } + } + `, tenant, tenant, name, optionname, optionid) + return resource +} + +func MSODHCPOptionPolicyWithOutRequiredParameters() string { + resource := fmt.Sprintln(` + resource "mso_dhcp_option_policy" "test" { + description = "test description updated" + } + `) + return resource +} + +func MSODHCPOptionPolicyWithOptional(tenant, name, optionname, optionid string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + description = "test description" + option { + name = "%s" + id = "%s" + data = "test data" + } + } + `, tenant, tenant, name, optionname, optionid) + return resource +} + +func MSODHCPOptionPolicyWithoutRequired(tenant, name, attr string) string { + rBlock := ` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + ` + switch attr { + case "tenant_id": + rBlock += ` + resource "mso_dhcp_option_policy" "test" { + # tenant_id = mso_tenant.test.id + name = "%s" + + }` + case "name": + rBlock += ` + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + # name = "%s" + }` + } + return fmt.Sprintf(rBlock, tenant, tenant, name) +} + +func MSODHCPOptionPolicyOptionWithoutRequired(tenant, name, optionname, optionid, attr string) string { + rBlock := ` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + ` + switch attr { + case "name": + rBlock += ` + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + option { + # name = "%s" + id = "%s" + } + }` + case "id": + rBlock += ` + resource "mso_dhcp_option_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + option { + name = "%s" + # id = "%s" + } + }` + } + return fmt.Sprintf(rBlock, tenant, tenant, name, optionname, optionid) +} diff --git a/mso/tf.log b/mso/tf.log deleted file mode 100644 index be49707d..00000000 --- a/mso/tf.log +++ /dev/null @@ -1,52109 +0,0 @@ -2022/02/28 10:53:16 [DEBUG] Test: Executing step 0 -2022/02/28 10:53:16 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:16 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:53:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:16 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 10:53:16 [DEBUG] Test: Executing step 1 -2022/02/28 10:53:16 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:16 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:53:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:53:16 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 10:53:16 [DEBUG] Test: Executing step 2 -2022/02/28 10:53:16 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:16 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:53:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 10:53:16 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 10:53:16 [DEBUG] Test: Executing step 3 -2022/02/28 10:53:16 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:16 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:53:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_schema.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:16 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 10:53:16 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 10:53:16 [DEBUG] Test: Executing step 4 -2022/02/28 10:53:16 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:16 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:53:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:16 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:53:16 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:16 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:53:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 10:53:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:16 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:53:16 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 10:53:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:16 [DEBUG] : Beginning Read -2022/02/28 10:53:16 HTTP request GET mso/api/v1/tenants -2022/02/28 10:53:16 [DEBUG] Begin Injection -2022/02/28 10:53:16 HTTP request POST /login -2022/02/28 10:53:16 HTTP request after injection POST /login -2022/02/28 10:53:16 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 10:53:17 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 10:53:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:17 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000377380 -1 [chunked] false false map[] 0xc000290500 0xc0000f8420} -2022/02/28 10:53:17 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw"} -2022/02/28 10:53:17 [DEBUG] Exit from do method -2022/02/28 10:53:17 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 10:53:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:53:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:53:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00096ca40 5563 [] false false map[] 0xc000290400 0xc0000f8420} -2022/02/28 10:53:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 10:53:18 [DEBUG] Exit from do method -2022/02/28 10:53:18 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 10:53:18 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:18 [DEBUG] New state was assigned lineage "20ed9b7c-a1c9-562c-0852-c90daf3eaca1" -2022/02/28 10:53:18 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:53:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:18 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:18 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:18 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:18 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:18 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:53:18 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:53:18 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:18 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_stwqz" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_gwbkp" - template_name: "" => "acctest_gwbkp" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_stwqz" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_stwqz" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_gwbkp" - vrf_name: "" => "acctest_stwqz" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_stwqz" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_stwqz" - schema_id: "" => "" - template_name: "" => "acctest_gwbkp" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_stwqz" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_stwqz" - schema_id: "" => "" - template: "" => "acctest_gwbkp" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 10:53:18 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 10:53:18 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 10:53:18 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 10:53:18 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 10:53:18 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 10:53:18 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 10:53:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 10:53:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 10:53:18 [DEBUG] Starting graph walk: walkApply -2022/02/28 10:53:18 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 10:53:18 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 10:53:18 [DEBUG] Schema: Beginning Creation -2022/02/28 10:53:18 [DEBUG] : Beginning Create -2022/02/28 10:53:18 HTTP request POST mso/api/v1/schemas -2022/02/28 10:53:18 [DEBUG] Begin Injection -2022/02/28 10:53:18 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 10:53:18 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 10:53:18 [DEBUG] Begin Injection -2022/02/28 10:53:18 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 10:53:18 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw] Content-Type:[application/json]] {{"displayName":"acctest_gwbkp","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_gwbkp","externalEpgs":[],"filters":[],"name":"acctest_gwbkp","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x847ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 10:53:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 10:53:18 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw] Content-Type:[application/json]] {{"desc":"","name":"acctest_stwqz","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x847ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 10:53:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 10:53:18 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 10:53:18 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c5c461d000094614fb920] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8280 400 [] false false map[] 0xc000290300 0xc0000f8420} -2022/02/28 10:53:18 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 10:53:18 [DEBUG] Exit from do method -2022/02/28 10:53:18 [DEBUG] 621c5c461d000094614fb920: Schema Creation finished successfully -2022/02/28 10:53:18 [DEBUG] 621c5c461d000094614fb920: Beginning Read -2022/02/28 10:53:18 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:18 [DEBUG] Begin Injection -2022/02/28 10:53:18 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:18 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 10:53:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376a00 160 [] false false map[] 0xc000c80d00 0xc0000f8420} -2022/02/28 10:53:18 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5c461b00003f07fd0c06","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:18 [DEBUG] Exit from do method -2022/02/28 10:53:18 [DEBUG] 621c5c461b00003f07fd0c06: Creation finished successfully -2022/02/28 10:53:18 [DEBUG] 621c5c461b00003f07fd0c06: Beginning Read -2022/02/28 10:53:18 id: 621c5c461b00003f07fd0c06 -2022/02/28 10:53:18 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:18 [DEBUG] Begin Injection -2022/02/28 10:53:18 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8580 400 [] false false map[] 0xc0004c6000 0xc0000f8420} -2022/02/28 10:53:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 10:53:19 [DEBUG] Exit from do method -2022/02/28 10:53:19 [DEBUG] 621c5c461d000094614fb920: Read finished successfully -2022/02/28 10:53:19 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 10:53:19 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 10:53:19 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:19 [DEBUG] Begin Injection -2022/02/28 10:53:19 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376800 160 [] false false map[] 0xc000c81100 0xc0000f86e0} -2022/02/28 10:53:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 {"id":"621c5c461b00003f07fd0c06","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:19 [DEBUG] Exit from do method -2022/02/28 10:53:19 [DEBUG] 621c5c461b00003f07fd0c06: Read finished successfully -2022/02/28 10:53:19 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c80600 0xc0000f8420} -2022/02/28 10:53:19 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:19 [DEBUG] acctest_stwqz: Creation finished successfully -2022/02/28 10:53:19 [DEBUG] acctest_stwqz: Beginning Read -2022/02/28 10:53:19 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:19 [DEBUG] Begin Injection -2022/02/28 10:53:19 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376d80 768 [] false false map[] 0xc000a7a700 0xc0004ce4d0} -2022/02/28 10:53:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 10:53:19 [DEBUG] Exit from do method -2022/02/28 10:53:19 currentvrfname acctest_stwqz -2022/02/28 10:53:19 found correct vrfname -2022/02/28 10:53:19 [DEBUG] acctest_stwqz: Read finished successfully -2022/02/28 10:53:19 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 10:53:19 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 10:53:19 [DEBUG] Template BD: Beginning Creation -2022/02/28 10:53:19 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:19 [DEBUG] Begin Injection -2022/02/28 10:53:19 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:20 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004c6f00 0xc0004ce630} -2022/02/28 10:53:20 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:20 [DEBUG] : Beginning Read -2022/02/28 10:53:20 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:20 [DEBUG] Begin Injection -2022/02/28 10:53:20 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b5da40 1277 [] false false map[] 0xc00017e000 0xc0004ce630} -2022/02/28 10:53:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 10:53:20 [DEBUG] Exit from do method -2022/02/28 10:53:20 [DEBUG] acctest_stwqz: Read finished successfully -2022/02/28 10:53:20 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 10:53:20 [DEBUG] Template BD: Beginning Creation -2022/02/28 10:53:20 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:20 [DEBUG] Begin Injection -2022/02/28 10:53:20 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:20 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c81500 0xc0004ce630} -2022/02/28 10:53:20 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:20 [DEBUG] Creation Complete -2022/02/28 10:53:20 [DEBUG] : Beginning Read -2022/02/28 10:53:20 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:20 [DEBUG] Begin Injection -2022/02/28 10:53:20 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6f80 1362 [] false false map[] 0xc000c81700 0xc0004ce630} -2022/02/28 10:53:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:53:21 [DEBUG] Exit from do method -2022/02/28 10:53:21 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Read finished successfully -2022/02/28 10:53:21 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:21 [DEBUG] New state was assigned lineage "9c194632-a21b-6cbf-6f9e-11a67787933b" -2022/02/28 10:53:21 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:21 [DEBUG] Begin Injection -2022/02/28 10:53:21 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6440 1362 [] false false map[] 0xc000a7a700 0xc0004ce630} -2022/02/28 10:53:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:53:21 [DEBUG] Exit from do method -2022/02/28 10:53:21 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:53:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:21 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:53:21 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:21 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:53:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 10:53:21 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:21 [DEBUG] : Beginning Read -2022/02/28 10:53:21 HTTP request GET mso/api/v1/tenants -2022/02/28 10:53:21 [DEBUG] Begin Injection -2022/02/28 10:53:21 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 10:53:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:53:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:53:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000df0040 5563 [] false false map[] 0xc000290200 0xc0004ce630} -2022/02/28 10:53:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 10:53:21 [DEBUG] Exit from do method -2022/02/28 10:53:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:21 [DEBUG] 621c5c461d000094614fb920: Beginning Read -2022/02/28 10:53:21 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:21 [DEBUG] 621c5c461b00003f07fd0c06: Beginning Read -2022/02/28 10:53:21 id: 621c5c461b00003f07fd0c06 -2022/02/28 10:53:21 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:21 [DEBUG] Begin Injection -2022/02/28 10:53:21 [DEBUG] Begin Injection -2022/02/28 10:53:21 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00096c5c0 160 [] false false map[] 0xc000290800 0xc0000f86e0} -2022/02/28 10:53:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 {"id":"621c5c461b00003f07fd0c06","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:22 [DEBUG] Exit from do method -2022/02/28 10:53:22 [DEBUG] 621c5c461b00003f07fd0c06: Read finished successfully -2022/02/28 10:53:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6440 1362 [] false false map[] 0xc000e10a00 0xc0004ce630} -2022/02/28 10:53:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:53:22 [DEBUG] Exit from do method -2022/02/28 10:53:22 [DEBUG] 621c5c461d000094614fb920: Read finished successfully -2022/02/28 10:53:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:22 [DEBUG] acctest_stwqz: Beginning Read -2022/02/28 10:53:22 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:22 [DEBUG] Begin Injection -2022/02/28 10:53:22 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00096cac0 1362 [] false false map[] 0xc00017e500 0xc0004ce630} -2022/02/28 10:53:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:53:22 [DEBUG] Exit from do method -2022/02/28 10:53:22 currentvrfname acctest_stwqz -2022/02/28 10:53:22 found correct vrfname -2022/02/28 10:53:22 [DEBUG] acctest_stwqz: Read finished successfully -2022/02/28 10:53:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:53:22 [DEBUG] acctest_stwqz: Beginning Read -2022/02/28 10:53:22 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:22 [DEBUG] Begin Injection -2022/02/28 10:53:22 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00096de00 1362 [] false false map[] 0xc000e11000 0xc0004ce630} -2022/02/28 10:53:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:53:22 [DEBUG] Exit from do method -2022/02/28 10:53:22 [DEBUG] acctest_stwqz: Read finished successfully -2022/02/28 10:53:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:53:22 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Beginning Read -2022/02/28 10:53:22 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:22 [DEBUG] Begin Injection -2022/02/28 10:53:22 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00062d9c0 1362 [] false false map[] 0xc000290c00 0xc0004ce630} -2022/02/28 10:53:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:53:23 [DEBUG] Exit from do method -2022/02/28 10:53:23 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Read finished successfully -2022/02/28 10:53:23 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:23 [DEBUG] New state was assigned lineage "2ed3ff46-1133-c7f9-4e25-7565055cf40f" -2022/02/28 10:53:23 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:53:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 10:53:23 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:53:23 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:23 [DEBUG] Test: Executing step 5 -2022/02/28 10:53:23 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:23 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:53:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:23 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:53:23 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:23 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:53:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:23 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:23 [DEBUG] : Beginning Read -2022/02/28 10:53:23 HTTP request GET mso/api/v1/tenants -2022/02/28 10:53:23 [DEBUG] Begin Injection -2022/02/28 10:53:23 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 10:53:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:53:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:53:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008564c0 5563 [] false false map[] 0xc000290600 0xc0004ce630} -2022/02/28 10:53:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 10:53:23 [DEBUG] Exit from do method -2022/02/28 10:53:23 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:23 [DEBUG] 621c5c461d000094614fb920: Beginning Read -2022/02/28 10:53:23 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:23 [DEBUG] Begin Injection -2022/02/28 10:53:23 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:23 [DEBUG] 621c5c461b00003f07fd0c06: Beginning Read -2022/02/28 10:53:23 id: 621c5c461b00003f07fd0c06 -2022/02/28 10:53:23 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:23 [DEBUG] Begin Injection -2022/02/28 10:53:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377940 1362 [] false false map[] 0xc00017e700 0xc0000f86e0} -2022/02/28 10:53:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:53:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000630980 160 [] false false map[] 0xc000a7a500 0xc0004ce630} -2022/02/28 10:53:23 [DEBUG] Exit from do method -2022/02/28 10:53:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 {"id":"621c5c461b00003f07fd0c06","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:23 [DEBUG] Exit from do method -2022/02/28 10:53:23 [DEBUG] 621c5c461d000094614fb920: Read finished successfully -2022/02/28 10:53:23 [DEBUG] 621c5c461b00003f07fd0c06: Read finished successfully -2022/02/28 10:53:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:23 [DEBUG] acctest_stwqz: Beginning Read -2022/02/28 10:53:23 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:23 [DEBUG] Begin Injection -2022/02/28 10:53:23 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377f40 1362 [] false false map[] 0xc00085c300 0xc0004ce630} -2022/02/28 10:53:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:53:24 [DEBUG] Exit from do method -2022/02/28 10:53:24 currentvrfname acctest_stwqz -2022/02/28 10:53:24 found correct vrfname -2022/02/28 10:53:24 [DEBUG] acctest_stwqz: Read finished successfully -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:53:24 [DEBUG] acctest_stwqz: Beginning Read -2022/02/28 10:53:24 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:24 [DEBUG] Begin Injection -2022/02/28 10:53:24 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00083e0c0 1362 [] false false map[] 0xc00085c700 0xc0004ce630} -2022/02/28 10:53:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:53:24 [DEBUG] Exit from do method -2022/02/28 10:53:24 [DEBUG] acctest_stwqz: Read finished successfully -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:53:24 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Beginning Read -2022/02/28 10:53:24 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:24 [DEBUG] Begin Injection -2022/02/28 10:53:24 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000630100 1362 [] false false map[] 0xc000290300 0xc0004ce630} -2022/02/28 10:53:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:53:24 [DEBUG] Exit from do method -2022/02/28 10:53:24 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Read finished successfully -2022/02/28 10:53:24 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:24 [DEBUG] New state was assigned lineage "5589f1a7-834c-775d-679e-d8a0e4fe7f5c" -2022/02/28 10:53:24 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:53:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:53:24 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:53:24 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:24 [WARN] Test: Step plan: DIFF: - -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c5c461b00003f07fd0c06" => "" - name: "acctest_stwqz" => "acctest_66t8l" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - dhcp_policy.name: "acctest_stwqz" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_stwqz" => "acctest_66t8l" (forces new resource) - id: "acctest_stwqz" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_stwqz" => "acctest_66t8l" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c5c461d000094614fb920" => "621c5c461d000094614fb920" - template_name: "acctest_gwbkp" => "acctest_gwbkp" - vrf_name: "acctest_stwqz" => "acctest_66t8l" - vrf_schema_id: "621c5c461d000094614fb920" => "" - vrf_template_name: "acctest_gwbkp" => "" -DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_stwqz" => "acctest_66t8l" (forces new resource) - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz" => "" - name: "acctest_stwqz" => "acctest_66t8l" (forces new resource) - schema_id: "621c5c461d000094614fb920" => "621c5c461d000094614fb920" - template_name: "acctest_gwbkp" => "acctest_gwbkp" - version: "0" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_stwqz" => "acctest_66t8l" - id: "acctest_stwqz" => "" - layer3_multicast: "false" => "" - name: "acctest_stwqz" => "acctest_66t8l" (forces new resource) - schema_id: "621c5c461d000094614fb920" => "621c5c461d000094614fb920" - template: "acctest_gwbkp" => "acctest_gwbkp" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c5c461b00003f07fd0c06 - provider = provider.mso - description = - name = acctest_stwqz - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5c461d000094614fb920 - provider = provider.mso - name = acctest_gwbkp - template_name = acctest_gwbkp - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_stwqz - provider = provider.mso - dhcp_policy.name = acctest_stwqz - dhcp_policy.version = 0 - display_name = acctest_stwqz - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_stwqz - schema_id = 621c5c461d000094614fb920 - template_name = acctest_gwbkp - vrf_name = acctest_stwqz - vrf_schema_id = 621c5c461d000094614fb920 - vrf_template_name = acctest_gwbkp - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz - provider = provider.mso - bd_name = acctest_stwqz - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_stwqz - schema_id = 621c5c461d000094614fb920 - template_name = acctest_gwbkp - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_stwqz - provider = provider.mso - display_name = acctest_stwqz - layer3_multicast = false - name = acctest_stwqz - schema_id = 621c5c461d000094614fb920 - template = acctest_gwbkp - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 10:53:24 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 10:53:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 10:53:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:53:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:53:24 [DEBUG] Starting graph walk: walkApply -2022/02/28 10:53:24 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 10:53:24 [DEBUG] Template BD: Beginning Update -2022/02/28 10:53:24 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:24 [DEBUG] Begin Injection -2022/02/28 10:53:24 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a7a500 0xc0004ce630} -2022/02/28 10:53:25 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 10:53:25 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 10:53:25 [DEBUG] 621c5c461b00003f07fd0c06: Beginning Read -2022/02/28 10:53:25 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:25 [DEBUG] Begin Injection -2022/02/28 10:53:25 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:25 [DEBUG] Template BD: Beginning Update -2022/02/28 10:53:25 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 [DEBUG] Begin Injection -2022/02/28 10:53:25 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00069a500 0xc0004ce630} -2022/02/28 10:53:25 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c461b00003f07fd0c06 -2022/02/28 10:53:25 [DEBUG] : Read finished successfully -2022/02/28 10:53:25 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 10:53:25 [DEBUG] : Beginning Create -2022/02/28 10:53:25 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 10:53:25 [DEBUG] Begin Injection -2022/02/28 10:53:25 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 10:53:25 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw] Content-Type:[application/json]] {{"desc":"","name":"acctest_66t8l","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x847ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 10:53:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 10:53:25 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005e2100 0xc0000f86e0} -2022/02/28 10:53:25 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 10:53:25 [DEBUG] acctest_stwqz: Beginning Destroy -2022/02/28 10:53:25 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 [DEBUG] Begin Injection -2022/02/28 10:53:25 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005e2a00 0xc0000f86e0} -2022/02/28 10:53:25 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 [DEBUG] acctest_stwqz: Destroy finished successfully -2022/02/28 10:53:25 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 10:53:25 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 10:53:25 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 [DEBUG] Begin Injection -2022/02/28 10:53:25 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:25 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 10:53:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca9600 160 [] false false map[] 0xc00069aa00 0xc0004ce630} -2022/02/28 10:53:25 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5c4d1b00003f07fd0c07","name":"acctest_66t8l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:25 [DEBUG] Exit from do method -2022/02/28 10:53:25 [DEBUG] 621c5c4d1b00003f07fd0c07: Creation finished successfully -2022/02/28 10:53:25 [DEBUG] 621c5c4d1b00003f07fd0c07: Beginning Read -2022/02/28 10:53:25 id: 621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:25 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:25 [DEBUG] Begin Injection -2022/02/28 10:53:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006300c0 160 [] false false map[] 0xc000290800 0xc0004ce630} -2022/02/28 10:53:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 {"id":"621c5c4d1b00003f07fd0c07","name":"acctest_66t8l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:26 [DEBUG] Exit from do method -2022/02/28 10:53:26 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:26 [DEBUG] 621c5c4d1b00003f07fd0c07: Read finished successfully -2022/02/28 10:53:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000290600 0xc0000f86e0} -2022/02/28 10:53:26 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:26 [DEBUG] acctest_66t8l: Creation finished successfully -2022/02/28 10:53:26 [DEBUG] acctest_66t8l: Beginning Read -2022/02/28 10:53:26 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:26 [DEBUG] Begin Injection -2022/02/28 10:53:26 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376840 768 [] false false map[] 0xc000290900 0xc0000f86e0} -2022/02/28 10:53:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":8}],"_updateVersion":0} -2022/02/28 10:53:26 [DEBUG] Exit from do method -2022/02/28 10:53:26 currentvrfname acctest_66t8l -2022/02/28 10:53:26 found correct vrfname -2022/02/28 10:53:26 [DEBUG] acctest_66t8l: Read finished successfully -2022/02/28 10:53:26 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 10:53:26 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 10:53:26 [DEBUG] Template BD: Beginning Creation -2022/02/28 10:53:26 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:26 [DEBUG] Begin Injection -2022/02/28 10:53:26 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:26 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000291200 0xc0000f86e0} -2022/02/28 10:53:26 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:26 [DEBUG] : Beginning Read -2022/02/28 10:53:26 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:26 [DEBUG] Begin Injection -2022/02/28 10:53:26 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d7d740 1277 [] false false map[] 0xc00069a000 0xc0000f86e0} -2022/02/28 10:53:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 10:53:27 [DEBUG] Exit from do method -2022/02/28 10:53:27 [DEBUG] acctest_66t8l: Read finished successfully -2022/02/28 10:53:27 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 10:53:27 [DEBUG] Template BD: Beginning Creation -2022/02/28 10:53:27 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:27 [DEBUG] Begin Injection -2022/02/28 10:53:27 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:28 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00069ab00 0xc0000f86e0} -2022/02/28 10:53:28 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:28 [DEBUG] Creation Complete -2022/02/28 10:53:28 [DEBUG] : Beginning Read -2022/02/28 10:53:28 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:28 [DEBUG] Begin Injection -2022/02/28 10:53:28 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d7d8c0 1363 [] false false map[] 0xc000291400 0xc0000f86e0} -2022/02/28 10:53:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:53:28 [DEBUG] Exit from do method -2022/02/28 10:53:28 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l: Read finished successfully -2022/02/28 10:53:28 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:28 [DEBUG] New state was assigned lineage "4de98b1a-f05e-4706-dc91-6f94b7df98b3" -2022/02/28 10:53:28 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:28 [DEBUG] Begin Injection -2022/02/28 10:53:28 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000418580 1363 [] false false map[] 0xc000290000 0xc0000f86e0} -2022/02/28 10:53:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:53:28 [DEBUG] Exit from do method -2022/02/28 10:53:28 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:53:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:28 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:53:28 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:28 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:53:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:28 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:53:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:28 [DEBUG] : Beginning Read -2022/02/28 10:53:28 HTTP request GET mso/api/v1/tenants -2022/02/28 10:53:28 [DEBUG] Begin Injection -2022/02/28 10:53:28 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 10:53:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:53:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:53:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00083f200 5563 [] false false map[] 0xc000dac400 0xc0000f86e0} -2022/02/28 10:53:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 10:53:29 [DEBUG] Exit from do method -2022/02/28 10:53:29 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 10:53:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:29 [DEBUG] 621c5c461d000094614fb920: Beginning Read -2022/02/28 10:53:29 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:29 [DEBUG] Begin Injection -2022/02/28 10:53:29 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:29 [DEBUG] 621c5c4d1b00003f07fd0c07: Beginning Read -2022/02/28 10:53:29 id: 621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:29 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:29 [DEBUG] Begin Injection -2022/02/28 10:53:29 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8240 160 [] false false map[] 0xc000dac700 0xc0004ce630} -2022/02/28 10:53:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 {"id":"621c5c4d1b00003f07fd0c07","name":"acctest_66t8l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:29 [DEBUG] Exit from do method -2022/02/28 10:53:29 [DEBUG] 621c5c4d1b00003f07fd0c07: Read finished successfully -2022/02/28 10:53:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8300 1363 [] false false map[] 0xc00111e800 0xc0000f86e0} -2022/02/28 10:53:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:53:29 [DEBUG] Exit from do method -2022/02/28 10:53:29 [DEBUG] 621c5c461d000094614fb920: Read finished successfully -2022/02/28 10:53:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:29 [DEBUG] acctest_66t8l: Beginning Read -2022/02/28 10:53:29 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:29 [DEBUG] Begin Injection -2022/02/28 10:53:29 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8840 1363 [] false false map[] 0xc000dacc00 0xc0000f86e0} -2022/02/28 10:53:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:53:29 [DEBUG] Exit from do method -2022/02/28 10:53:29 currentvrfname acctest_66t8l -2022/02/28 10:53:29 found correct vrfname -2022/02/28 10:53:29 [DEBUG] acctest_66t8l: Read finished successfully -2022/02/28 10:53:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:53:29 [DEBUG] acctest_66t8l: Beginning Read -2022/02/28 10:53:29 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:29 [DEBUG] Begin Injection -2022/02/28 10:53:29 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000856040 1363 [] false false map[] 0xc000a7a700 0xc0000f86e0} -2022/02/28 10:53:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:53:30 [DEBUG] Exit from do method -2022/02/28 10:53:30 [DEBUG] acctest_66t8l: Read finished successfully -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:53:30 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l: Beginning Read -2022/02/28 10:53:30 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:30 [DEBUG] Begin Injection -2022/02/28 10:53:30 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005321c0 1363 [] false false map[] 0xc00111e400 0xc0000f86e0} -2022/02/28 10:53:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:53:30 [DEBUG] Exit from do method -2022/02/28 10:53:30 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l: Read finished successfully -2022/02/28 10:53:30 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:30 [DEBUG] New state was assigned lineage "68b2200f-bc11-eca2-1ece-fb97bdabefd2" -2022/02/28 10:53:30 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:53:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:30 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:53:30 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:30 [DEBUG] Test: Executing step 6 -2022/02/28 10:53:30 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:30 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:53:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 10:53:30 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:53:30 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:30 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:53:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:30 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:30 [DEBUG] : Beginning Read -2022/02/28 10:53:30 HTTP request GET mso/api/v1/tenants -2022/02/28 10:53:30 [DEBUG] Begin Injection -2022/02/28 10:53:30 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 10:53:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:53:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:53:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6200 5563 [] false false map[] 0xc000a7a300 0xc0000f86e0} -2022/02/28 10:53:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 10:53:30 [DEBUG] Exit from do method -2022/02/28 10:53:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 10:53:30 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:30 [DEBUG] 621c5c461d000094614fb920: Beginning Read -2022/02/28 10:53:30 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:30 [DEBUG] Begin Injection -2022/02/28 10:53:30 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:30 [DEBUG] 621c5c4d1b00003f07fd0c07: Beginning Read -2022/02/28 10:53:30 id: 621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:30 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:30 [DEBUG] Begin Injection -2022/02/28 10:53:30 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000418a00 1363 [] false false map[] 0xc0006c4400 0xc0000f86e0} -2022/02/28 10:53:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:53:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377480 160 [] false false map[] 0xc0005e4300 0xc0004ce630} -2022/02/28 10:53:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 {"id":"621c5c4d1b00003f07fd0c07","name":"acctest_66t8l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:31 [DEBUG] Exit from do method -2022/02/28 10:53:31 [DEBUG] Exit from do method -2022/02/28 10:53:31 [DEBUG] 621c5c4d1b00003f07fd0c07: Read finished successfully -2022/02/28 10:53:31 [DEBUG] 621c5c461d000094614fb920: Read finished successfully -2022/02/28 10:53:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:31 [DEBUG] acctest_66t8l: Beginning Read -2022/02/28 10:53:31 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:31 [DEBUG] Begin Injection -2022/02/28 10:53:31 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000532b80 1363 [] false false map[] 0xc000290a00 0xc0004ce630} -2022/02/28 10:53:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:53:31 [DEBUG] Exit from do method -2022/02/28 10:53:31 currentvrfname acctest_66t8l -2022/02/28 10:53:31 found correct vrfname -2022/02/28 10:53:31 [DEBUG] acctest_66t8l: Read finished successfully -2022/02/28 10:53:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:53:31 [DEBUG] acctest_66t8l: Beginning Read -2022/02/28 10:53:31 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:31 [DEBUG] Begin Injection -2022/02/28 10:53:31 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000856040 1363 [] false false map[] 0xc00017e600 0xc0004ce630} -2022/02/28 10:53:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:53:31 [DEBUG] Exit from do method -2022/02/28 10:53:31 [DEBUG] acctest_66t8l: Read finished successfully -2022/02/28 10:53:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:53:31 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l: Beginning Read -2022/02/28 10:53:31 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:31 [DEBUG] Begin Injection -2022/02/28 10:53:31 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000857a80 1363 [] false false map[] 0xc000a7a500 0xc0004ce630} -2022/02/28 10:53:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_66t8l","displayName":"acctest_66t8l","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_66t8l","dhcpLabel":{"name":"acctest_66t8l","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_66t8l","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:53:32 [DEBUG] Exit from do method -2022/02/28 10:53:32 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l: Read finished successfully -2022/02/28 10:53:32 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:32 [DEBUG] New state was assigned lineage "a7187cf3-8821-94a8-8364-2840bd437203" -2022/02/28 10:53:32 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:53:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:32 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:32 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:53:32 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:32 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.example - description: "" => "" - id: "" => "" - name: "" => "acctest_ymm0p" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c5c4d1b00003f07fd0c07" => "" - name: "acctest_66t8l" => "acctest_stwqz" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - dhcp_policy.name: "acctest_66t8l" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_66t8l" => "acctest_stwqz" (forces new resource) - id: "acctest_66t8l" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_66t8l" => "acctest_stwqz" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c5c461d000094614fb920" => "621c5c461d000094614fb920" - template_name: "acctest_gwbkp" => "acctest_gwbkp" - vrf_name: "acctest_66t8l" => "acctest_stwqz" - vrf_schema_id: "621c5c461d000094614fb920" => "" - vrf_template_name: "acctest_gwbkp" => "" -DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_66t8l" => "acctest_stwqz" (forces new resource) - dhcp_option_name: "" => "acctest_ymm0p" - dhcp_option_version: "0" => "1" - id: "/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l" => "" - name: "acctest_66t8l" => "acctest_stwqz" (forces new resource) - schema_id: "621c5c461d000094614fb920" => "621c5c461d000094614fb920" - template_name: "acctest_gwbkp" => "acctest_gwbkp" - version: "0" => "1" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_66t8l" => "acctest_stwqz" - id: "acctest_66t8l" => "" - layer3_multicast: "false" => "" - name: "acctest_66t8l" => "acctest_stwqz" (forces new resource) - schema_id: "621c5c461d000094614fb920" => "621c5c461d000094614fb920" - template: "acctest_gwbkp" => "acctest_gwbkp" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c5c4d1b00003f07fd0c07 - provider = provider.mso - description = - name = acctest_66t8l - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5c461d000094614fb920 - provider = provider.mso - name = acctest_gwbkp - template_name = acctest_gwbkp - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_66t8l - provider = provider.mso - dhcp_policy.name = acctest_66t8l - dhcp_policy.version = 0 - display_name = acctest_66t8l - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_66t8l - schema_id = 621c5c461d000094614fb920 - template_name = acctest_gwbkp - vrf_name = acctest_66t8l - vrf_schema_id = 621c5c461d000094614fb920 - vrf_template_name = acctest_gwbkp - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_66t8l/dhcpLabels/acctest_66t8l - provider = provider.mso - bd_name = acctest_66t8l - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_66t8l - schema_id = 621c5c461d000094614fb920 - template_name = acctest_gwbkp - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_66t8l - provider = provider.mso - display_name = acctest_66t8l - layer3_multicast = false - name = acctest_66t8l - schema_id = 621c5c461d000094614fb920 - template = acctest_gwbkp - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 10:53:32 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 10:53:32 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 10:53:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (prepare state)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example (prepare state) mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test (prepare state)] -2022/02/28 10:53:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 10:53:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 10:53:32 [DEBUG] Starting graph walk: walkApply -2022/02/28 10:53:32 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 10:53:32 [DEBUG] Template BD: Beginning Update -2022/02/28 10:53:32 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:32 [DEBUG] Begin Injection -2022/02/28 10:53:32 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:32 [DEBUG] mso_dhcp_option_policy.example: applying the planned Create change -2022/02/28 10:53:32 [DEBUG] : Beginning Create -2022/02/28 10:53:32 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 10:53:32 [DEBUG] Begin Injection -2022/02/28 10:53:32 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 10:53:32 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_ymm0p","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x847ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 10:53:32 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017f000 0xc0004ce630} -2022/02/28 10:53:32 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:32 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 10:53:32 [DEBUG] 621c5c4d1b00003f07fd0c07: Beginning Read -2022/02/28 10:53:32 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:32 [DEBUG] Begin Injection -2022/02/28 10:53:32 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:32 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 10:53:32 [DEBUG] Template BD: Beginning Update -2022/02/28 10:53:32 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:32 [DEBUG] Begin Injection -2022/02/28 10:53:32 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:32 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 10:53:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d08040 161 [] false false map[] 0xc001060a00 0xc0000f86e0} -2022/02/28 10:53:32 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c5c541b00004207fd0c08","name":"acctest_ymm0p","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:32 [DEBUG] Exit from do method -2022/02/28 10:53:32 [DEBUG] 621c5c541b00004207fd0c08: Creation finished successfully -2022/02/28 10:53:32 [DEBUG] 621c5c541b00004207fd0c08: Beginning Read -2022/02/28 10:53:32 id: 621c5c541b00004207fd0c08 -2022/02/28 10:53:32 HTTP request GET mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:32 [DEBUG] Begin Injection -2022/02/28 10:53:32 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:32 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001061200 0xc0004ce630} -2022/02/28 10:53:32 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c4d1b00003f07fd0c07 -2022/02/28 10:53:32 [DEBUG] : Read finished successfully -2022/02/28 10:53:32 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 10:53:32 [DEBUG] : Beginning Create -2022/02/28 10:53:32 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 10:53:32 [DEBUG] Begin Injection -2022/02/28 10:53:32 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 10:53:32 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI2OTk3LCJpYXQiOjE2NDYwMjU3OTcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoibDhibFlVbFM5dDZqU2F3eE1tMURwRGdQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.T0FpfNhyuyxkhR595xcwDfLYUtdzCirf38XmeysmLcOHSaRU5ZkZYlogtueVkEsRiBHdkf46VdSMtzapXcDOfAkInsEvHzJihbqIj49XcUCg4NbBfAgqpdu85299hcYVe7ZqDhrwYpfoDnpuH36urg4UAv-7CSNIvV6q9WMY2GZooEHk7TJ1M2nPQmb5KbHjRbUsijbMBwZ7QzDJAYb2gMLe2IGtruPV9NNk-zxV7rdS1cqEhROJba0A7TunZ6EsLWys6BKgnmor6SwaZttDnMbsbrC76ccUyKpdzTTsrUNfXEGsfTQVTPWdaJp_3qK_EWy5sTfD4fOJv_rx19AKhw] Content-Type:[application/json]] {{"desc":"","name":"acctest_stwqz","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x847ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 10:53:32 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a7a200 0xc0000f86e0} -2022/02/28 10:53:32 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:32 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 10:53:32 [DEBUG] acctest_66t8l: Beginning Destroy -2022/02/28 10:53:32 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:32 [DEBUG] Begin Injection -2022/02/28 10:53:32 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6200 161 [] false false map[] 0xc000c8a000 0xc0004ce630} -2022/02/28 10:53:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 {"id":"621c5c541b00004207fd0c08","name":"acctest_ymm0p","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:33 [DEBUG] Exit from do method -2022/02/28 10:53:33 [DEBUG] 621c5c541b00004207fd0c08: Read finished successfully -2022/02/28 10:53:33 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 10:53:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d08040 160 [] false false map[] 0xc000c8ab00 0xc0000f86e0} -2022/02/28 10:53:33 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5c551b00003e07fd0c09","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:33 [DEBUG] Exit from do method -2022/02/28 10:53:33 [DEBUG] 621c5c551b00003e07fd0c09: Creation finished successfully -2022/02/28 10:53:33 [DEBUG] 621c5c551b00003e07fd0c09: Beginning Read -2022/02/28 10:53:33 id: 621c5c551b00003e07fd0c09 -2022/02/28 10:53:33 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:33 [DEBUG] Begin Injection -2022/02/28 10:53:33 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:33 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001060500 0xc0004ce630} -2022/02/28 10:53:33 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:33 [DEBUG] acctest_66t8l: Destroy finished successfully -2022/02/28 10:53:33 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 10:53:33 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 10:53:33 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:33 [DEBUG] Begin Injection -2022/02/28 10:53:33 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d08800 160 [] false false map[] 0xc000c8a000 0xc0000f86e0} -2022/02/28 10:53:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 {"id":"621c5c551b00003e07fd0c09","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:33 [DEBUG] Exit from do method -2022/02/28 10:53:33 [DEBUG] 621c5c551b00003e07fd0c09: Read finished successfully -2022/02/28 10:53:33 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a7a600 0xc0008544d0} -2022/02/28 10:53:33 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:33 [DEBUG] acctest_stwqz: Creation finished successfully -2022/02/28 10:53:33 [DEBUG] acctest_stwqz: Beginning Read -2022/02/28 10:53:33 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:33 [DEBUG] Begin Injection -2022/02/28 10:53:33 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[769] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000532240 769 [] false false map[] 0xc000b5c400 0xc0000f86e0} -2022/02/28 10:53:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":14}],"_updateVersion":0} -2022/02/28 10:53:34 [DEBUG] Exit from do method -2022/02/28 10:53:34 currentvrfname acctest_stwqz -2022/02/28 10:53:34 found correct vrfname -2022/02/28 10:53:34 [DEBUG] acctest_stwqz: Read finished successfully -2022/02/28 10:53:34 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 10:53:34 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 10:53:34 [DEBUG] Template BD: Beginning Creation -2022/02/28 10:53:34 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:34 [DEBUG] Begin Injection -2022/02/28 10:53:34 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:34 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c8aa00 0xc0000f86e0} -2022/02/28 10:53:34 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:34 [DEBUG] : Beginning Read -2022/02/28 10:53:34 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:34 [DEBUG] Begin Injection -2022/02/28 10:53:34 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000856200 1278 [] false false map[] 0xc001060700 0xc0000f86e0} -2022/02/28 10:53:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":15}],"_updateVersion":0} -2022/02/28 10:53:34 [DEBUG] Exit from do method -2022/02/28 10:53:34 [DEBUG] acctest_stwqz: Read finished successfully -2022/02/28 10:53:34 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 10:53:34 [DEBUG] Template BD: Beginning Creation -2022/02/28 10:53:34 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:34 [DEBUG] Begin Injection -2022/02/28 10:53:34 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:35 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c8a200 0xc0000f86e0} -2022/02/28 10:53:35 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:35 [DEBUG] Creation Complete -2022/02/28 10:53:35 [DEBUG] : Beginning Read -2022/02/28 10:53:35 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:35 [DEBUG] Begin Injection -2022/02/28 10:53:35 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8280 1473 [] false false map[] 0xc000c8a400 0xc0000f86e0} -2022/02/28 10:53:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} -2022/02/28 10:53:35 [DEBUG] Exit from do method -2022/02/28 10:53:35 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Read finished successfully -2022/02/28 10:53:35 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:35 [DEBUG] New state was assigned lineage "db8ab40a-c714-6963-dd9f-e62910a3d35e" -2022/02/28 10:53:35 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:35 [DEBUG] Begin Injection -2022/02/28 10:53:35 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca8a00 1473 [] false false map[] 0xc000a7a200 0xc0000f86e0} -2022/02/28 10:53:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} -2022/02/28 10:53:35 [DEBUG] Exit from do method -2022/02/28 10:53:35 [WARN] Test: Executing destroy step -2022/02/28 10:53:35 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:35 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 10:53:35 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:53:35 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:35 [WARN] Not fixing up EachModes for data.mso_tenant.test because it has no config -2022/02/28 10:53:35 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config -2022/02/28 10:53:35 [WARN] Not fixing up EachModes for mso_dhcp_relay_policy.test because it has no config -2022/02/28 10:53:35 [WARN] Not fixing up EachModes for mso_schema.test because it has no config -2022/02/28 10:53:35 [WARN] Not fixing up EachModes for mso_schema_template_bd.test because it has no config -2022/02/28 10:53:35 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config -2022/02/28 10:53:35 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config -2022/02/28 10:53:35 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 10:53:35 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:53:35 [DEBUG] 621c5c541b00004207fd0c08: Beginning Read -2022/02/28 10:53:35 id: 621c5c541b00004207fd0c08 -2022/02/28 10:53:35 [DEBUG] 621c5c461d000094614fb920: Beginning Read -2022/02/28 10:53:35 HTTP request GET mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:35 [DEBUG] Begin Injection -2022/02/28 10:53:35 [DEBUG] 621c5c551b00003e07fd0c09: Beginning Read -2022/02/28 10:53:35 id: 621c5c551b00003e07fd0c09 -2022/02/28 10:53:35 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:35 [DEBUG] Begin Injection -2022/02/28 10:53:35 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:35 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:35 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:35 [DEBUG] Begin Injection -2022/02/28 10:53:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f57400 1473 [] false false map[] 0xc001368400 0xc000f72160} -2022/02/28 10:53:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} -2022/02/28 10:53:36 [DEBUG] Exit from do method -2022/02/28 10:53:36 [DEBUG] 621c5c461d000094614fb920: Read finished successfully -2022/02/28 10:53:36 [DEBUG] acctest_stwqz: Beginning Read -2022/02/28 10:53:36 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:36 [DEBUG] Begin Injection -2022/02/28 10:53:36 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d08f80 161 [] false false map[] 0xc000c8ad00 0xc0000f86e0} -2022/02/28 10:53:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 {"id":"621c5c541b00004207fd0c08","name":"acctest_ymm0p","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:36 [DEBUG] Exit from do method -2022/02/28 10:53:36 [DEBUG] 621c5c541b00004207fd0c08: Read finished successfully -2022/02/28 10:53:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00083e080 160 [] false false map[] 0xc000732500 0xc000f72160} -2022/02/28 10:53:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 {"id":"621c5c551b00003e07fd0c09","name":"acctest_stwqz","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:53:36 [DEBUG] Exit from do method -2022/02/28 10:53:36 [DEBUG] 621c5c551b00003e07fd0c09: Read finished successfully -2022/02/28 10:53:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d09540 1473 [] false false map[] 0xc000732700 0xc0000f86e0} -2022/02/28 10:53:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} -2022/02/28 10:53:36 [DEBUG] Exit from do method -2022/02/28 10:53:36 currentvrfname acctest_stwqz -2022/02/28 10:53:36 found correct vrfname -2022/02/28 10:53:36 [DEBUG] acctest_stwqz: Read finished successfully -2022/02/28 10:53:36 [DEBUG] acctest_stwqz: Beginning Read -2022/02/28 10:53:36 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:36 [DEBUG] Begin Injection -2022/02/28 10:53:36 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d09c00 1473 [] false false map[] 0xc000a7a500 0xc0000f86e0} -2022/02/28 10:53:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} -2022/02/28 10:53:36 [DEBUG] Exit from do method -2022/02/28 10:53:36 [DEBUG] acctest_stwqz: Read finished successfully -2022/02/28 10:53:36 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Beginning Read -2022/02/28 10:53:36 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:36 [DEBUG] Begin Injection -2022/02/28 10:53:36 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d09cc0 1473 [] false false map[] 0xc00017e500 0xc000f72000} -2022/02/28 10:53:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"id":"621c5c461d000094614fb920","displayName":"acctest_gwbkp","description":"","templates":[{"name":"acctest_gwbkp","displayName":"acctest_gwbkp","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_stwqz","displayName":"acctest_stwqz","bdRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/vrfs/acctest_stwqz","dhcpLabel":{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_stwqz","dhcpOptionLabel":{"name":"acctest_ymm0p","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} -2022/02/28 10:53:37 [DEBUG] Exit from do method -2022/02/28 10:53:37 [DEBUG] /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz: Read finished successfully -2022/02/28 10:53:37 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:37 [DEBUG] New state was assigned lineage "88036662-c928-645b-6109-3518f56c32f3" -2022/02/28 10:53:37 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 10:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:37 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 10:53:37 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.example - description: "" => "" - id: "621c5c541b00004207fd0c08" => "" - name: "acctest_ymm0p" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c5c551b00003e07fd0c09" => "" - name: "acctest_stwqz" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c5c461d000094614fb920" => "" - name: "acctest_gwbkp" => "" - template_name: "acctest_gwbkp" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.dhcp_option_policy_name: "acctest_ymm0p" => "" - dhcp_policy.dhcp_option_policy_version: "1" => "" - dhcp_policy.name: "acctest_stwqz" => "" - dhcp_policy.version: "1" => "" - display_name: "acctest_stwqz" => "" - id: "acctest_stwqz" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_stwqz" => "" - schema_id: "621c5c461d000094614fb920" => "" - template_name: "acctest_gwbkp" => "" - vrf_name: "acctest_stwqz" => "" - vrf_schema_id: "621c5c461d000094614fb920" => "" - vrf_template_name: "acctest_gwbkp" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_stwqz" => "" - dhcp_option_name: "acctest_ymm0p" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz" => "" - name: "acctest_stwqz" => "" - schema_id: "621c5c461d000094614fb920" => "" - template_name: "acctest_gwbkp" => "" - version: "1" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_stwqz" => "" - id: "acctest_stwqz" => "" - layer3_multicast: "false" => "" - name: "acctest_stwqz" => "" - schema_id: "621c5c461d000094614fb920" => "" - template: "acctest_gwbkp" => "" - vzany: "false" => "" - - - -STATE: - -mso_dhcp_option_policy.example: - ID = 621c5c541b00004207fd0c08 - provider = provider.mso - description = - name = acctest_ymm0p - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c5c551b00003e07fd0c09 - provider = provider.mso - description = - name = acctest_stwqz - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5c461d000094614fb920 - provider = provider.mso - name = acctest_gwbkp - template_name = acctest_gwbkp - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_stwqz - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_ymm0p - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_stwqz - dhcp_policy.version = 1 - display_name = acctest_stwqz - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_stwqz - schema_id = 621c5c461d000094614fb920 - template_name = acctest_gwbkp - vrf_name = acctest_stwqz - vrf_schema_id = 621c5c461d000094614fb920 - vrf_template_name = acctest_gwbkp - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5c461d000094614fb920/templates/acctest_gwbkp/bds/acctest_stwqz/dhcpLabels/acctest_stwqz - provider = provider.mso - bd_name = acctest_stwqz - dhcp_option_name = acctest_ymm0p - dhcp_option_version = 1 - name = acctest_stwqz - schema_id = 621c5c461d000094614fb920 - template_name = acctest_gwbkp - version = 1 - - Dependencies: - mso_dhcp_option_policy.example - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_stwqz - provider = provider.mso - display_name = acctest_stwqz - layer3_multicast = false - name = acctest_stwqz - schema_id = 621c5c461d000094614fb920 - template = acctest_gwbkp - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 10:53:37 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 10:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (clean up state)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (clean up state)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 10:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:53:37 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 10:53:37 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 10:53:37 [DEBUG] Template BD: Beginning Update -2022/02/28 10:53:37 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:37 [DEBUG] Begin Injection -2022/02/28 10:53:37 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:37 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000edf500 0xc0000f8420} -2022/02/28 10:53:37 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:37 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 10:53:37 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change -2022/02/28 10:53:37 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 10:53:37 [DEBUG] 621c5c551b00003e07fd0c09: Beginning Read -2022/02/28 10:53:37 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:37 [DEBUG] Begin Injection -2022/02/28 10:53:37 [DEBUG] 621c5c541b00004207fd0c08: Beginning Read -2022/02/28 10:53:37 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:37 [DEBUG] Begin Injection -2022/02/28 10:53:37 [DEBUG] Template BD: Beginning Update -2022/02/28 10:53:37 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:37 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:37 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:37 [DEBUG] Begin Injection -2022/02/28 10:53:37 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:37 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000a7a700 0xc000f72160} -2022/02/28 10:53:37 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5c541b00004207fd0c08 -2022/02/28 10:53:37 [DEBUG] : Read finished successfully -2022/02/28 10:53:37 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000c8a300 0xc0000f8420} -2022/02/28 10:53:37 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5c551b00003e07fd0c09 -2022/02/28 10:53:37 [DEBUG] : Read finished successfully -2022/02/28 10:53:38 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017e700 0xc000f72160} -2022/02/28 10:53:38 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:38 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 10:53:38 [DEBUG] acctest_stwqz: Beginning Destroy -2022/02/28 10:53:38 HTTP request PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:38 [DEBUG] Begin Injection -2022/02/28 10:53:38 HTTP request after injection PATCH mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:38 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017eb00 0xc000f72160} -2022/02/28 10:53:38 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920?validate=false -2022/02/28 10:53:38 [DEBUG] acctest_stwqz: Destroy finished successfully -2022/02/28 10:53:38 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 10:53:38 [DEBUG] 621c5c461d000094614fb920: Beginning Destroy -2022/02/28 10:53:38 HTTP request DELETE mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:38 [DEBUG] Begin Injection -2022/02/28 10:53:38 HTTP request after injection DELETE mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:38 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00017e700 0xc0001362c0} -2022/02/28 10:53:38 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:38 [DEBUG] 621c5c461d000094614fb920: Destroy finished successfully -2022/02/28 10:53:38 [DEBUG] provider has no plugin.Client -2022/02/28 10:53:38 [DEBUG] New state was assigned lineage "d5accf04-6157-dc62-3210-eaef57794008" -2022/02/28 10:53:38 HTTP request GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:38 [DEBUG] Begin Injection -2022/02/28 10:53:38 HTTP request after injection GET mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 -2022/02/28 10:53:39 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:23:38 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d08580 39 [] false false map[] 0xc000a7a200 0xc0001362c0} -2022/02/28 10:53:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5c461d000094614fb920 {"code":404,"message":"Item not found"} -2022/02/28 10:53:39 [DEBUG] Exit from do method -2022/02/28 10:53:39 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 10:53:39 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 10:53:39 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:53:39 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:53:39 [DEBUG] New state was assigned lineage "77c01ba0-74ce-b21c-c65c-e037b6d4623f" -2022/02/28 10:53:39 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 10:53:39 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 10:56:56 [DEBUG] Test: Executing step 0 -2022/02/28 10:56:57 [DEBUG] provider has no plugin.Client -2022/02/28 10:56:57 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:56:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:56:57 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 10:56:57 [DEBUG] Test: Executing step 1 -2022/02/28 10:56:57 [DEBUG] provider has no plugin.Client -2022/02/28 10:56:57 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:56:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:56:57 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 10:56:57 [DEBUG] Test: Executing step 2 -2022/02/28 10:56:57 [DEBUG] provider has no plugin.Client -2022/02/28 10:56:57 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:56:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:56:57 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 10:56:57 [DEBUG] Test: Executing step 3 -2022/02/28 10:56:57 [DEBUG] provider has no plugin.Client -2022/02/28 10:56:57 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:56:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] -2022/02/28 10:56:57 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 10:56:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 10:56:57 [DEBUG] Test: Executing step 4 -2022/02/28 10:56:57 [DEBUG] provider has no plugin.Client -2022/02/28 10:56:57 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:56:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:56:57 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:56:57 [DEBUG] provider has no plugin.Client -2022/02/28 10:56:57 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:56:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 10:56:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:56:57 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:56:57 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 10:56:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:56:57 [DEBUG] : Beginning Read -2022/02/28 10:56:57 HTTP request GET mso/api/v1/tenants -2022/02/28 10:56:57 [DEBUG] Begin Injection -2022/02/28 10:56:57 HTTP request POST /login -2022/02/28 10:56:57 HTTP request after injection POST /login -2022/02/28 10:56:57 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 10:56:58 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 10:56:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:26:58 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0000f8240 -1 [chunked] false false map[] 0xc0004ad500 0xc00097e0b0} -2022/02/28 10:56:58 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg"} -2022/02/28 10:56:58 [DEBUG] Exit from do method -2022/02/28 10:56:58 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 10:56:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:56:59 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:56:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:26:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004de00 5563 [] false false map[] 0xc0004ad400 0xc00097e0b0} -2022/02/28 10:56:59 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 10:56:59 [DEBUG] Exit from do method -2022/02/28 10:56:59 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 10:56:59 [DEBUG] provider has no plugin.Client -2022/02/28 10:56:59 [DEBUG] New state was assigned lineage "092c8545-dccc-cdd2-a3f3-09f93f513eb0" -2022/02/28 10:56:59 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:56:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 10:56:59 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:56:59 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:56:59 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:56:59 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:56:59 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:56:59 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:56:59 [DEBUG] provider has no plugin.Client -2022/02/28 10:56:59 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_9gd4a" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_n0ejy" - template_name: "" => "acctest_n0ejy" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_9gd4a" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_9gd4a" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_n0ejy" - vrf_name: "" => "acctest_9gd4a" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_9gd4a" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_9gd4a" - schema_id: "" => "" - template_name: "" => "acctest_n0ejy" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_9gd4a" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_9gd4a" - schema_id: "" => "" - template: "" => "acctest_n0ejy" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 10:56:59 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 10:56:59 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 10:56:59 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 10:56:59 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 10:56:59 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 10:56:59 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 10:56:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 10:56:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:56:59 [DEBUG] Starting graph walk: walkApply -2022/02/28 10:56:59 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 10:56:59 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 10:56:59 [DEBUG] Schema: Beginning Creation -2022/02/28 10:56:59 [DEBUG] : Beginning Create -2022/02/28 10:56:59 HTTP request POST mso/api/v1/schemas -2022/02/28 10:56:59 [DEBUG] Begin Injection -2022/02/28 10:56:59 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 10:56:59 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg] Content-Type:[application/json]] {{"displayName":"acctest_n0ejy","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_n0ejy","externalEpgs":[],"filters":[],"name":"acctest_n0ejy","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x327ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 10:56:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 10:56:59 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 10:56:59 [DEBUG] Begin Injection -2022/02/28 10:56:59 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 10:56:59 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg] Content-Type:[application/json]] {{"desc":"","name":"acctest_9gd4a","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x327ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 10:56:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 10:56:59 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 10:56:59 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:26:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c5d231d0000a6614fb934] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d21340 400 [] false false map[] 0xc000e62400 0xc00097e0b0} -2022/02/28 10:56:59 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 10:56:59 [DEBUG] Exit from do method -2022/02/28 10:56:59 [DEBUG] 621c5d231d0000a6614fb934: Schema Creation finished successfully -2022/02/28 10:56:59 [DEBUG] 621c5d231d0000a6614fb934: Beginning Read -2022/02/28 10:56:59 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:56:59 [DEBUG] Begin Injection -2022/02/28 10:56:59 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:56:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:00 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 10:57:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:26:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d20180 160 [] false false map[] 0xc000564900 0xc00097e0b0} -2022/02/28 10:57:00 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5d231b00005b07fd0c0a","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:00 [DEBUG] Exit from do method -2022/02/28 10:57:00 [DEBUG] 621c5d231b00005b07fd0c0a: Creation finished successfully -2022/02/28 10:57:00 [DEBUG] 621c5d231b00005b07fd0c0a: Beginning Read -2022/02/28 10:57:00 id: 621c5d231b00005b07fd0c0a -2022/02/28 10:57:00 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:00 [DEBUG] Begin Injection -2022/02/28 10:57:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:00 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010a8100 400 [] false false map[] 0xc0007ce000 0xc00097e0b0} -2022/02/28 10:57:00 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 10:57:00 [DEBUG] Exit from do method -2022/02/28 10:57:00 [DEBUG] 621c5d231d0000a6614fb934: Read finished successfully -2022/02/28 10:57:00 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 10:57:00 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 10:57:00 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:00 [DEBUG] Begin Injection -2022/02/28 10:57:00 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:01 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:01 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000f8480 160 [] false false map[] 0xc000564000 0xc000500160} -2022/02/28 10:57:01 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000fe6500 0xc00097e0b0} -2022/02/28 10:57:01 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:01 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a {"id":"621c5d231b00005b07fd0c0a","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:01 [DEBUG] Exit from do method -2022/02/28 10:57:01 [DEBUG] acctest_9gd4a: Creation finished successfully -2022/02/28 10:57:01 [DEBUG] acctest_9gd4a: Beginning Read -2022/02/28 10:57:01 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:01 [DEBUG] Begin Injection -2022/02/28 10:57:01 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:01 [DEBUG] 621c5d231b00005b07fd0c0a: Read finished successfully -2022/02/28 10:57:01 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d20440 768 [] false false map[] 0xc000b38000 0xc0010d0420} -2022/02/28 10:57:01 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 10:57:01 [DEBUG] Exit from do method -2022/02/28 10:57:01 currentvrfname acctest_9gd4a -2022/02/28 10:57:01 found correct vrfname -2022/02/28 10:57:01 [DEBUG] acctest_9gd4a: Read finished successfully -2022/02/28 10:57:01 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 10:57:01 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 10:57:01 [DEBUG] Template BD: Beginning Creation -2022/02/28 10:57:01 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:01 [DEBUG] Begin Injection -2022/02/28 10:57:01 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:01 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:01 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000e62b00 0xc000dca000} -2022/02/28 10:57:01 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:01 [DEBUG] : Beginning Read -2022/02/28 10:57:01 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:01 [DEBUG] Begin Injection -2022/02/28 10:57:01 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:02 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011fe040 1277 [] false false map[] 0xc000e62d00 0xc000dca000} -2022/02/28 10:57:02 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 10:57:02 [DEBUG] Exit from do method -2022/02/28 10:57:02 [DEBUG] acctest_9gd4a: Read finished successfully -2022/02/28 10:57:02 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 10:57:02 [DEBUG] Template BD: Beginning Creation -2022/02/28 10:57:02 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:02 [DEBUG] Begin Injection -2022/02/28 10:57:02 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:02 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:02 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000e62a00 0xc000dca000} -2022/02/28 10:57:02 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:02 [DEBUG] Creation Complete -2022/02/28 10:57:02 [DEBUG] : Beginning Read -2022/02/28 10:57:02 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:02 [DEBUG] Begin Injection -2022/02/28 10:57:02 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:02 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d20e40 1362 [] false false map[] 0xc000e62c00 0xc000dca000} -2022/02/28 10:57:02 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:57:02 [DEBUG] Exit from do method -2022/02/28 10:57:02 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Read finished successfully -2022/02/28 10:57:02 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:02 [DEBUG] New state was assigned lineage "1210b1df-31ba-aafb-31cc-aa7ff17a006f" -2022/02/28 10:57:02 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:02 [DEBUG] Begin Injection -2022/02/28 10:57:02 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e54cc0 1362 [] false false map[] 0xc0007ce000 0xc000dca000} -2022/02/28 10:57:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:57:03 [DEBUG] Exit from do method -2022/02/28 10:57:03 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:57:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 10:57:03 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:57:03 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:03 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:57:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 10:57:03 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:03 [DEBUG] : Beginning Read -2022/02/28 10:57:03 HTTP request GET mso/api/v1/tenants -2022/02/28 10:57:03 [DEBUG] Begin Injection -2022/02/28 10:57:03 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 10:57:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:57:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:57:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d29280 5563 [] false false map[] 0xc0004ac500 0xc000dca000} -2022/02/28 10:57:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 10:57:03 [DEBUG] Exit from do method -2022/02/28 10:57:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:57:03 [DEBUG] 621c5d231d0000a6614fb934: Beginning Read -2022/02/28 10:57:03 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:03 [DEBUG] Begin Injection -2022/02/28 10:57:03 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:03 [DEBUG] 621c5d231b00005b07fd0c0a: Beginning Read -2022/02/28 10:57:03 id: 621c5d231b00005b07fd0c0a -2022/02/28 10:57:03 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:03 [DEBUG] Begin Injection -2022/02/28 10:57:03 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000f91c0 1362 [] false false map[] 0xc0004ac700 0xc000dca000} -2022/02/28 10:57:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:57:03 [DEBUG] Exit from do method -2022/02/28 10:57:03 [DEBUG] 621c5d231d0000a6614fb934: Read finished successfully -2022/02/28 10:57:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:57:03 [DEBUG] acctest_9gd4a: Beginning Read -2022/02/28 10:57:03 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:03 [DEBUG] Begin Injection -2022/02/28 10:57:03 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fbd8c0 160 [] false false map[] 0xc000564300 0xc00097e0b0} -2022/02/28 10:57:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a {"id":"621c5d231b00005b07fd0c0a","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:03 [DEBUG] Exit from do method -2022/02/28 10:57:03 [DEBUG] 621c5d231b00005b07fd0c0a: Read finished successfully -2022/02/28 10:57:04 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001efac0 1362 [] false false map[] 0xc000564800 0xc000dca000} -2022/02/28 10:57:04 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:57:04 [DEBUG] Exit from do method -2022/02/28 10:57:04 currentvrfname acctest_9gd4a -2022/02/28 10:57:04 found correct vrfname -2022/02/28 10:57:04 [DEBUG] acctest_9gd4a: Read finished successfully -2022/02/28 10:57:04 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:57:04 [DEBUG] acctest_9gd4a: Beginning Read -2022/02/28 10:57:04 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:04 [DEBUG] Begin Injection -2022/02/28 10:57:04 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:04 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fbdd40 1362 [] false false map[] 0xc0004ad300 0xc000dca000} -2022/02/28 10:57:04 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:57:04 [DEBUG] Exit from do method -2022/02/28 10:57:04 [DEBUG] acctest_9gd4a: Read finished successfully -2022/02/28 10:57:04 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:57:04 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Beginning Read -2022/02/28 10:57:04 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:04 [DEBUG] Begin Injection -2022/02/28 10:57:04 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010fcac0 1362 [] false false map[] 0xc000d00900 0xc000dca000} -2022/02/28 10:57:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:57:05 [DEBUG] Exit from do method -2022/02/28 10:57:05 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Read finished successfully -2022/02/28 10:57:05 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:05 [DEBUG] New state was assigned lineage "6f5c7f68-7446-3b49-e620-736ac3b7e733" -2022/02/28 10:57:05 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:57:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:05 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:57:05 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:05 [DEBUG] Test: Executing step 5 -2022/02/28 10:57:05 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:05 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:57:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:05 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:57:05 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:05 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:57:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:05 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:05 [DEBUG] : Beginning Read -2022/02/28 10:57:05 HTTP request GET mso/api/v1/tenants -2022/02/28 10:57:05 [DEBUG] Begin Injection -2022/02/28 10:57:05 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 10:57:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:57:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:57:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004a60c0 5563 [] false false map[] 0xc001290600 0xc000dca000} -2022/02/28 10:57:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 10:57:05 [DEBUG] Exit from do method -2022/02/28 10:57:05 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:05 [DEBUG] 621c5d231d0000a6614fb934: Beginning Read -2022/02/28 10:57:05 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:05 [DEBUG] Begin Injection -2022/02/28 10:57:05 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:05 [DEBUG] 621c5d231b00005b07fd0c0a: Beginning Read -2022/02/28 10:57:05 id: 621c5d231b00005b07fd0c0a -2022/02/28 10:57:05 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:05 [DEBUG] Begin Injection -2022/02/28 10:57:05 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001eec40 1362 [] false false map[] 0xc001290900 0xc000dca000} -2022/02/28 10:57:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010a8480 160 [] false false map[] 0xc0004ac800 0xc00097e0b0} -2022/02/28 10:57:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:57:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a {"id":"621c5d231b00005b07fd0c0a","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:05 [DEBUG] Exit from do method -2022/02/28 10:57:05 [DEBUG] Exit from do method -2022/02/28 10:57:05 [DEBUG] 621c5d231d0000a6614fb934: Read finished successfully -2022/02/28 10:57:05 [DEBUG] 621c5d231b00005b07fd0c0a: Read finished successfully -2022/02/28 10:57:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:57:05 [DEBUG] acctest_9gd4a: Beginning Read -2022/02/28 10:57:05 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:05 [DEBUG] Begin Injection -2022/02/28 10:57:05 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001efb40 1362 [] false false map[] 0xc0004acd00 0xc00097e0b0} -2022/02/28 10:57:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:57:06 [DEBUG] Exit from do method -2022/02/28 10:57:06 currentvrfname acctest_9gd4a -2022/02/28 10:57:06 found correct vrfname -2022/02/28 10:57:06 [DEBUG] acctest_9gd4a: Read finished successfully -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:57:06 [DEBUG] acctest_9gd4a: Beginning Read -2022/02/28 10:57:06 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:06 [DEBUG] Begin Injection -2022/02/28 10:57:06 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051c0c0 1362 [] false false map[] 0xc0004ad200 0xc00097e0b0} -2022/02/28 10:57:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:57:06 [DEBUG] Exit from do method -2022/02/28 10:57:06 [DEBUG] acctest_9gd4a: Read finished successfully -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:57:06 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Beginning Read -2022/02/28 10:57:06 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:06 [DEBUG] Begin Injection -2022/02/28 10:57:06 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001eea80 1362 [] false false map[] 0xc0004ac500 0xc00097e0b0} -2022/02/28 10:57:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 10:57:06 [DEBUG] Exit from do method -2022/02/28 10:57:06 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Read finished successfully -2022/02/28 10:57:06 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:06 [DEBUG] New state was assigned lineage "f6e02432-6f07-cb1b-69fb-f16658a81627" -2022/02/28 10:57:06 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:57:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:06 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:57:06 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:06 [WARN] Test: Step plan: DIFF: - -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c5d231b00005b07fd0c0a" => "" - name: "acctest_9gd4a" => "acctest_fbvfv" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - dhcp_policy.name: "acctest_9gd4a" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_9gd4a" => "acctest_fbvfv" (forces new resource) - id: "acctest_9gd4a" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_9gd4a" => "acctest_fbvfv" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c5d231d0000a6614fb934" => "621c5d231d0000a6614fb934" - template_name: "acctest_n0ejy" => "acctest_n0ejy" - vrf_name: "acctest_9gd4a" => "acctest_fbvfv" - vrf_schema_id: "621c5d231d0000a6614fb934" => "" - vrf_template_name: "acctest_n0ejy" => "" -DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_9gd4a" => "acctest_fbvfv" (forces new resource) - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a" => "" - name: "acctest_9gd4a" => "acctest_fbvfv" (forces new resource) - schema_id: "621c5d231d0000a6614fb934" => "621c5d231d0000a6614fb934" - template_name: "acctest_n0ejy" => "acctest_n0ejy" - version: "0" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_9gd4a" => "acctest_fbvfv" - id: "acctest_9gd4a" => "" - layer3_multicast: "false" => "" - name: "acctest_9gd4a" => "acctest_fbvfv" (forces new resource) - schema_id: "621c5d231d0000a6614fb934" => "621c5d231d0000a6614fb934" - template: "acctest_n0ejy" => "acctest_n0ejy" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c5d231b00005b07fd0c0a - provider = provider.mso - description = - name = acctest_9gd4a - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5d231d0000a6614fb934 - provider = provider.mso - name = acctest_n0ejy - template_name = acctest_n0ejy - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_9gd4a - provider = provider.mso - dhcp_policy.name = acctest_9gd4a - dhcp_policy.version = 0 - display_name = acctest_9gd4a - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_9gd4a - schema_id = 621c5d231d0000a6614fb934 - template_name = acctest_n0ejy - vrf_name = acctest_9gd4a - vrf_schema_id = 621c5d231d0000a6614fb934 - vrf_template_name = acctest_n0ejy - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a - provider = provider.mso - bd_name = acctest_9gd4a - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_9gd4a - schema_id = 621c5d231d0000a6614fb934 - template_name = acctest_n0ejy - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_9gd4a - provider = provider.mso - display_name = acctest_9gd4a - layer3_multicast = false - name = acctest_9gd4a - schema_id = 621c5d231d0000a6614fb934 - template = acctest_n0ejy - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 10:57:06 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 10:57:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 10:57:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 10:57:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:57:06 [DEBUG] Starting graph walk: walkApply -2022/02/28 10:57:06 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 10:57:06 [DEBUG] Template BD: Beginning Update -2022/02/28 10:57:06 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:06 [DEBUG] Begin Injection -2022/02/28 10:57:06 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000abcc00 0xc00097e0b0} -2022/02/28 10:57:07 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 10:57:07 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 10:57:07 [DEBUG] 621c5d231b00005b07fd0c0a: Beginning Read -2022/02/28 10:57:07 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:07 [DEBUG] Begin Injection -2022/02/28 10:57:07 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:07 [DEBUG] Template BD: Beginning Update -2022/02/28 10:57:07 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 [DEBUG] Begin Injection -2022/02/28 10:57:07 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d4c700 0xc000dca000} -2022/02/28 10:57:07 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 10:57:07 [DEBUG] acctest_9gd4a: Beginning Destroy -2022/02/28 10:57:07 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 [DEBUG] Begin Injection -2022/02/28 10:57:07 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000a92500 0xc00097e0b0} -2022/02/28 10:57:07 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d231b00005b07fd0c0a -2022/02/28 10:57:07 [DEBUG] : Read finished successfully -2022/02/28 10:57:07 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 10:57:07 [DEBUG] : Beginning Create -2022/02/28 10:57:07 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 10:57:07 [DEBUG] Begin Injection -2022/02/28 10:57:07 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 10:57:07 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg] Content-Type:[application/json]] {{"desc":"","name":"acctest_fbvfv","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x327ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 10:57:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 10:57:07 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 10:57:07 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000720140 160 [] false false map[] 0xc000abda00 0xc00097e0b0} -2022/02/28 10:57:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d4d100 0xc000dca000} -2022/02/28 10:57:07 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 [DEBUG] acctest_9gd4a: Destroy finished successfully -2022/02/28 10:57:07 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5d2b1b00005b07fd0c0b","name":"acctest_fbvfv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:07 [DEBUG] Exit from do method -2022/02/28 10:57:07 [DEBUG] 621c5d2b1b00005b07fd0c0b: Creation finished successfully -2022/02/28 10:57:07 [DEBUG] 621c5d2b1b00005b07fd0c0b: Beginning Read -2022/02/28 10:57:07 id: 621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:07 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:07 [DEBUG] Begin Injection -2022/02/28 10:57:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:07 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 10:57:07 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 10:57:07 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 [DEBUG] Begin Injection -2022/02/28 10:57:07 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:08 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:08 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d4c900 0xc000dca000} -2022/02/28 10:57:08 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:08 [DEBUG] acctest_fbvfv: Creation finished successfully -2022/02/28 10:57:08 [DEBUG] acctest_fbvfv: Beginning Read -2022/02/28 10:57:08 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:08 [DEBUG] Begin Injection -2022/02/28 10:57:08 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce1c0 160 [] false false map[] 0xc000abc000 0xc00097e0b0} -2022/02/28 10:57:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b {"id":"621c5d2b1b00005b07fd0c0b","name":"acctest_fbvfv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:08 [DEBUG] Exit from do method -2022/02/28 10:57:08 [DEBUG] 621c5d2b1b00005b07fd0c0b: Read finished successfully -2022/02/28 10:57:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000720300 768 [] false false map[] 0xc000d4cb00 0xc000dca000} -2022/02/28 10:57:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":8}],"_updateVersion":0} -2022/02/28 10:57:08 [DEBUG] Exit from do method -2022/02/28 10:57:08 currentvrfname acctest_fbvfv -2022/02/28 10:57:08 found correct vrfname -2022/02/28 10:57:08 [DEBUG] acctest_fbvfv: Read finished successfully -2022/02/28 10:57:08 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 10:57:08 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 10:57:08 [DEBUG] Template BD: Beginning Creation -2022/02/28 10:57:08 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:08 [DEBUG] Begin Injection -2022/02/28 10:57:08 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:08 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:08 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004aca00 0xc000dca000} -2022/02/28 10:57:08 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:08 [DEBUG] : Beginning Read -2022/02/28 10:57:08 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:08 [DEBUG] Begin Injection -2022/02/28 10:57:08 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce800 1277 [] false false map[] 0xc000dfe000 0xc000dca000} -2022/02/28 10:57:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 10:57:09 [DEBUG] Exit from do method -2022/02/28 10:57:09 [DEBUG] acctest_fbvfv: Read finished successfully -2022/02/28 10:57:09 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 10:57:09 [DEBUG] Template BD: Beginning Creation -2022/02/28 10:57:09 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:09 [DEBUG] Begin Injection -2022/02/28 10:57:09 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:09 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:09 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000abc100 0xc000dca000} -2022/02/28 10:57:09 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:09 [DEBUG] Creation Complete -2022/02/28 10:57:09 [DEBUG] : Beginning Read -2022/02/28 10:57:09 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:09 [DEBUG] Begin Injection -2022/02/28 10:57:09 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce100 1363 [] false false map[] 0xc000abc000 0xc000dca000} -2022/02/28 10:57:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:57:09 [DEBUG] Exit from do method -2022/02/28 10:57:09 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv: Read finished successfully -2022/02/28 10:57:09 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:10 [DEBUG] New state was assigned lineage "9a571089-4eff-3d91-9b14-9f9dfbe5f8fa" -2022/02/28 10:57:10 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:10 [DEBUG] Begin Injection -2022/02/28 10:57:10 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010a8140 1363 [] false false map[] 0xc000dfe000 0xc000dca000} -2022/02/28 10:57:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:57:10 [DEBUG] Exit from do method -2022/02/28 10:57:10 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:57:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:10 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:57:10 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:10 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:57:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 10:57:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:57:10 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:10 [DEBUG] : Beginning Read -2022/02/28 10:57:10 HTTP request GET mso/api/v1/tenants -2022/02/28 10:57:10 [DEBUG] Begin Injection -2022/02/28 10:57:10 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 10:57:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:57:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:57:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ddc0 5563 [] false false map[] 0xc000e0a300 0xc000dca000} -2022/02/28 10:57:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 10:57:10 [DEBUG] Exit from do method -2022/02/28 10:57:10 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:57:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:10 [DEBUG] 621c5d231d0000a6614fb934: Beginning Read -2022/02/28 10:57:10 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:10 [DEBUG] Begin Injection -2022/02/28 10:57:10 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:10 [DEBUG] 621c5d2b1b00005b07fd0c0b: Beginning Read -2022/02/28 10:57:10 id: 621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:10 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:10 [DEBUG] Begin Injection -2022/02/28 10:57:10 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcee00 1363 [] false false map[] 0xc000dfea00 0xc000dca000} -2022/02/28 10:57:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ee4c0 160 [] false false map[] 0xc000e0a900 0xc00097e0b0} -2022/02/28 10:57:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:57:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b {"id":"621c5d2b1b00005b07fd0c0b","name":"acctest_fbvfv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:11 [DEBUG] Exit from do method -2022/02/28 10:57:11 [DEBUG] Exit from do method -2022/02/28 10:57:11 [DEBUG] 621c5d231d0000a6614fb934: Read finished successfully -2022/02/28 10:57:11 [DEBUG] 621c5d2b1b00005b07fd0c0b: Read finished successfully -2022/02/28 10:57:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:57:11 [DEBUG] acctest_fbvfv: Beginning Read -2022/02/28 10:57:11 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:11 [DEBUG] Begin Injection -2022/02/28 10:57:11 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce180 1363 [] false false map[] 0xc000e0a100 0xc00097e0b0} -2022/02/28 10:57:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:57:11 [DEBUG] Exit from do method -2022/02/28 10:57:11 currentvrfname acctest_fbvfv -2022/02/28 10:57:11 found correct vrfname -2022/02/28 10:57:11 [DEBUG] acctest_fbvfv: Read finished successfully -2022/02/28 10:57:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:57:11 [DEBUG] acctest_fbvfv: Beginning Read -2022/02/28 10:57:11 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:11 [DEBUG] Begin Injection -2022/02/28 10:57:11 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001eeb40 1363 [] false false map[] 0xc000e0a500 0xc00097e0b0} -2022/02/28 10:57:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:57:12 [DEBUG] Exit from do method -2022/02/28 10:57:12 [DEBUG] acctest_fbvfv: Read finished successfully -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:57:12 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv: Beginning Read -2022/02/28 10:57:12 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:12 [DEBUG] Begin Injection -2022/02/28 10:57:12 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001eea80 1363 [] false false map[] 0xc00045e500 0xc00097e0b0} -2022/02/28 10:57:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:57:12 [DEBUG] Exit from do method -2022/02/28 10:57:12 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv: Read finished successfully -2022/02/28 10:57:12 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:12 [DEBUG] New state was assigned lineage "b0869464-fef4-749c-ece3-e11222a53d83" -2022/02/28 10:57:12 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:57:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:57:12 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:57:12 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:12 [DEBUG] Test: Executing step 6 -2022/02/28 10:57:12 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:12 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:57:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 10:57:12 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:57:12 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:12 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:57:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:12 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:57:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:12 [DEBUG] : Beginning Read -2022/02/28 10:57:12 HTTP request GET mso/api/v1/tenants -2022/02/28 10:57:12 [DEBUG] Begin Injection -2022/02/28 10:57:12 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 10:57:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:57:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 10:57:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000720040 5563 [] false false map[] 0xc00107e100 0xc00097e0b0} -2022/02/28 10:57:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 10:57:13 [DEBUG] Exit from do method -2022/02/28 10:57:13 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 10:57:13 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 10:57:13 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 10:57:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:57:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:13 [DEBUG] 621c5d231d0000a6614fb934: Beginning Read -2022/02/28 10:57:13 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:13 [DEBUG] Begin Injection -2022/02/28 10:57:13 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:13 [DEBUG] 621c5d2b1b00005b07fd0c0b: Beginning Read -2022/02/28 10:57:13 id: 621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:13 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:13 [DEBUG] Begin Injection -2022/02/28 10:57:13 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007217c0 1363 [] false false map[] 0xc0000c4800 0xc00097e0b0} -2022/02/28 10:57:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:57:13 [DEBUG] Exit from do method -2022/02/28 10:57:13 [DEBUG] 621c5d231d0000a6614fb934: Read finished successfully -2022/02/28 10:57:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:57:13 [DEBUG] acctest_fbvfv: Beginning Read -2022/02/28 10:57:13 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:13 [DEBUG] Begin Injection -2022/02/28 10:57:13 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000721cc0 160 [] false false map[] 0xc0006d4200 0xc000dca000} -2022/02/28 10:57:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b {"id":"621c5d2b1b00005b07fd0c0b","name":"acctest_fbvfv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:13 [DEBUG] Exit from do method -2022/02/28 10:57:13 [DEBUG] 621c5d2b1b00005b07fd0c0b: Read finished successfully -2022/02/28 10:57:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000f9400 1363 [] false false map[] 0xc0000c4d00 0xc00097e0b0} -2022/02/28 10:57:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:57:13 [DEBUG] Exit from do method -2022/02/28 10:57:13 currentvrfname acctest_fbvfv -2022/02/28 10:57:13 found correct vrfname -2022/02/28 10:57:13 [DEBUG] acctest_fbvfv: Read finished successfully -2022/02/28 10:57:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:57:13 [DEBUG] acctest_fbvfv: Beginning Read -2022/02/28 10:57:13 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:13 [DEBUG] Begin Injection -2022/02/28 10:57:13 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d28080 1363 [] false false map[] 0xc000618100 0xc00097e0b0} -2022/02/28 10:57:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:57:14 [DEBUG] Exit from do method -2022/02/28 10:57:14 [DEBUG] acctest_fbvfv: Read finished successfully -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:57:14 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv: Beginning Read -2022/02/28 10:57:14 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:14 [DEBUG] Begin Injection -2022/02/28 10:57:14 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d289c0 1363 [] false false map[] 0xc0000c4300 0xc00097e0b0} -2022/02/28 10:57:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_fbvfv","displayName":"acctest_fbvfv","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_fbvfv","dhcpLabel":{"name":"acctest_fbvfv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_fbvfv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 10:57:14 [DEBUG] Exit from do method -2022/02/28 10:57:14 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv: Read finished successfully -2022/02/28 10:57:14 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:14 [DEBUG] New state was assigned lineage "9b438e3a-afb6-6938-a7dc-0ea7bfdb00b3" -2022/02/28 10:57:14 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 10:57:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:14 [DEBUG] Starting graph walk: walkPlan -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:57:14 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 10:57:14 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:14 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.example - description: "" => "" - id: "" => "" - name: "" => "acctest_23rlh" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c5d2b1b00005b07fd0c0b" => "" - name: "acctest_fbvfv" => "acctest_9gd4a" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - dhcp_policy.name: "acctest_fbvfv" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_fbvfv" => "acctest_9gd4a" (forces new resource) - id: "acctest_fbvfv" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_fbvfv" => "acctest_9gd4a" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c5d231d0000a6614fb934" => "621c5d231d0000a6614fb934" - template_name: "acctest_n0ejy" => "acctest_n0ejy" - vrf_name: "acctest_fbvfv" => "acctest_9gd4a" - vrf_schema_id: "621c5d231d0000a6614fb934" => "" - vrf_template_name: "acctest_n0ejy" => "" -DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_fbvfv" => "acctest_9gd4a" (forces new resource) - dhcp_option_name: "" => "acctest_23rlh" - dhcp_option_version: "0" => "1" - id: "/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv" => "" - name: "acctest_fbvfv" => "acctest_9gd4a" (forces new resource) - schema_id: "621c5d231d0000a6614fb934" => "621c5d231d0000a6614fb934" - template_name: "acctest_n0ejy" => "acctest_n0ejy" - version: "0" => "1" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_fbvfv" => "acctest_9gd4a" - id: "acctest_fbvfv" => "" - layer3_multicast: "false" => "" - name: "acctest_fbvfv" => "acctest_9gd4a" (forces new resource) - schema_id: "621c5d231d0000a6614fb934" => "621c5d231d0000a6614fb934" - template: "acctest_n0ejy" => "acctest_n0ejy" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c5d2b1b00005b07fd0c0b - provider = provider.mso - description = - name = acctest_fbvfv - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5d231d0000a6614fb934 - provider = provider.mso - name = acctest_n0ejy - template_name = acctest_n0ejy - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_fbvfv - provider = provider.mso - dhcp_policy.name = acctest_fbvfv - dhcp_policy.version = 0 - display_name = acctest_fbvfv - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_fbvfv - schema_id = 621c5d231d0000a6614fb934 - template_name = acctest_n0ejy - vrf_name = acctest_fbvfv - vrf_schema_id = 621c5d231d0000a6614fb934 - vrf_template_name = acctest_n0ejy - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_fbvfv/dhcpLabels/acctest_fbvfv - provider = provider.mso - bd_name = acctest_fbvfv - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_fbvfv - schema_id = 621c5d231d0000a6614fb934 - template_name = acctest_n0ejy - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_fbvfv - provider = provider.mso - display_name = acctest_fbvfv - layer3_multicast = false - name = acctest_fbvfv - schema_id = 621c5d231d0000a6614fb934 - template = acctest_n0ejy - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 10:57:14 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 10:57:14 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 10:57:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (prepare state)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test (prepare state)] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example (prepare state) mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:57:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:57:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:14 [DEBUG] Starting graph walk: walkApply -2022/02/28 10:57:14 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 10:57:14 [DEBUG] Template BD: Beginning Update -2022/02/28 10:57:14 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:14 [DEBUG] Begin Injection -2022/02/28 10:57:14 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:14 [DEBUG] mso_dhcp_option_policy.example: applying the planned Create change -2022/02/28 10:57:14 [DEBUG] : Beginning Create -2022/02/28 10:57:14 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 10:57:14 [DEBUG] Begin Injection -2022/02/28 10:57:14 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 10:57:14 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_23rlh","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x327ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 10:57:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 10:57:14 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:14 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 10:57:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a90300 0xc00097e0b0} -2022/02/28 10:57:14 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010fd7c0 161 [] false false map[] 0xc0004ad900 0xc000dca000} -2022/02/28 10:57:14 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c5d321b00007507fd0c0c","name":"acctest_23rlh","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:14 [DEBUG] Exit from do method -2022/02/28 10:57:14 [DEBUG] 621c5d321b00007507fd0c0c: Creation finished successfully -2022/02/28 10:57:14 [DEBUG] 621c5d321b00007507fd0c0c: Beginning Read -2022/02/28 10:57:14 id: 621c5d321b00007507fd0c0c -2022/02/28 10:57:14 HTTP request GET mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:14 [DEBUG] Begin Injection -2022/02/28 10:57:14 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:14 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 10:57:14 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 10:57:14 [DEBUG] 621c5d2b1b00005b07fd0c0b: Beginning Read -2022/02/28 10:57:14 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:14 [DEBUG] Begin Injection -2022/02/28 10:57:14 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:14 [DEBUG] Template BD: Beginning Update -2022/02/28 10:57:14 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:14 [DEBUG] Begin Injection -2022/02/28 10:57:14 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010fc040 161 [] false false map[] 0xc00103c000 0xc000dca000} -2022/02/28 10:57:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c {"id":"621c5d321b00007507fd0c0c","name":"acctest_23rlh","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:15 [DEBUG] Exit from do method -2022/02/28 10:57:15 [DEBUG] 621c5d321b00007507fd0c0c: Read finished successfully -2022/02/28 10:57:15 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:15 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0000c4800 0xc00097e0b0} -2022/02/28 10:57:15 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d2b1b00005b07fd0c0b -2022/02/28 10:57:15 [DEBUG] : Read finished successfully -2022/02/28 10:57:15 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 10:57:15 [DEBUG] : Beginning Create -2022/02/28 10:57:15 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 10:57:15 [DEBUG] Begin Injection -2022/02/28 10:57:15 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 10:57:15 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3MjE4LCJpYXQiOjE2NDYwMjYwMTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0cxeE9Kc0RRNDAzaVpncnpxdlh3NzdvIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jEjHe6wdKlHdKHR29weZGG20ceXUyWqEXUT4giRfz0AHJWTVYVPXAnPnWB39JomvhBrT9dvc2By1DDCCrVKWaJYL3bNCw4bqlgj6XH1B0JzGRDo-sU09wzZzOFGeIQOPefh7yJ2_f17ZpGVkdrkL54SSdXRDpCZqPJ63BcX_vJ6pa5jOqQRnhmdPn_O2go5yg79QsIGq-1yM8YONzJbU7vyqLEY1XiO0WD9GJsToOX1vGUf4lEwNLq15Fq6Le6NmQk1L3nCY1vMFb4cry7RGeMiIxDDLMY6r2szneo-bezAOpAl1dCZuuX9-1PJTpxAEVUjRX3gdvnTdTKfydfCBsg] Content-Type:[application/json]] {{"desc":"","name":"acctest_9gd4a","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x327ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 10:57:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 10:57:15 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:15 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00103c400 0xc000dca000} -2022/02/28 10:57:15 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:15 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 10:57:15 [DEBUG] acctest_fbvfv: Beginning Destroy -2022/02/28 10:57:15 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:15 [DEBUG] Begin Injection -2022/02/28 10:57:15 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:15 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 10:57:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007203c0 160 [] false false map[] 0xc0000c4900 0xc00097e0b0} -2022/02/28 10:57:15 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5d331b00005b07fd0c0d","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:15 [DEBUG] Exit from do method -2022/02/28 10:57:15 [DEBUG] 621c5d331b00005b07fd0c0d: Creation finished successfully -2022/02/28 10:57:15 [DEBUG] 621c5d331b00005b07fd0c0d: Beginning Read -2022/02/28 10:57:15 id: 621c5d331b00005b07fd0c0d -2022/02/28 10:57:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:15 [DEBUG] Begin Injection -2022/02/28 10:57:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:15 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:15 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00103ce00 0xc000dca000} -2022/02/28 10:57:15 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:15 [DEBUG] acctest_fbvfv: Destroy finished successfully -2022/02/28 10:57:15 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 10:57:15 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 10:57:15 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:15 [DEBUG] Begin Injection -2022/02/28 10:57:15 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007b4840 160 [] false false map[] 0xc0004ac100 0xc00097e0b0} -2022/02/28 10:57:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d {"id":"621c5d331b00005b07fd0c0d","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:16 [DEBUG] Exit from do method -2022/02/28 10:57:16 [DEBUG] 621c5d331b00005b07fd0c0d: Read finished successfully -2022/02/28 10:57:16 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:16 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004ac900 0xc000dca000} -2022/02/28 10:57:16 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:16 [DEBUG] acctest_9gd4a: Creation finished successfully -2022/02/28 10:57:16 [DEBUG] acctest_9gd4a: Beginning Read -2022/02/28 10:57:16 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:16 [DEBUG] Begin Injection -2022/02/28 10:57:16 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[769] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010fc040 769 [] false false map[] 0xc0004ac100 0xc00097e0b0} -2022/02/28 10:57:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":14}],"_updateVersion":0} -2022/02/28 10:57:17 [DEBUG] Exit from do method -2022/02/28 10:57:17 currentvrfname acctest_9gd4a -2022/02/28 10:57:17 found correct vrfname -2022/02/28 10:57:17 [DEBUG] acctest_9gd4a: Read finished successfully -2022/02/28 10:57:17 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 10:57:17 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 10:57:17 [DEBUG] Template BD: Beginning Creation -2022/02/28 10:57:17 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:17 [DEBUG] Begin Injection -2022/02/28 10:57:17 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:17 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004ac500 0xc00097e0b0} -2022/02/28 10:57:17 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:17 [DEBUG] : Beginning Read -2022/02/28 10:57:17 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:17 [DEBUG] Begin Injection -2022/02/28 10:57:17 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010fdf80 1278 [] false false map[] 0xc000a90000 0xc00097e0b0} -2022/02/28 10:57:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":15}],"_updateVersion":0} -2022/02/28 10:57:17 [DEBUG] Exit from do method -2022/02/28 10:57:17 [DEBUG] acctest_9gd4a: Read finished successfully -2022/02/28 10:57:17 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 10:57:17 [DEBUG] Template BD: Beginning Creation -2022/02/28 10:57:17 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:17 [DEBUG] Begin Injection -2022/02/28 10:57:17 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:18 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:18 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000c4900 0xc00097e0b0} -2022/02/28 10:57:18 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:18 [DEBUG] Creation Complete -2022/02/28 10:57:18 [DEBUG] : Beginning Read -2022/02/28 10:57:18 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:18 [DEBUG] Begin Injection -2022/02/28 10:57:18 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007b4400 1473 [] false false map[] 0xc0000c4b00 0xc00097e0b0} -2022/02/28 10:57:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} -2022/02/28 10:57:18 [DEBUG] Exit from do method -2022/02/28 10:57:18 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Read finished successfully -2022/02/28 10:57:18 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:18 [DEBUG] New state was assigned lineage "eff4e0d7-e9aa-24d9-d364-ec5a96159dfa" -2022/02/28 10:57:18 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:18 [DEBUG] Begin Injection -2022/02/28 10:57:18 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007b40c0 1473 [] false false map[] 0xc0000c4000 0xc00097e0b0} -2022/02/28 10:57:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} -2022/02/28 10:57:18 [DEBUG] Exit from do method -2022/02/28 10:57:18 [WARN] Test: Executing destroy step -2022/02/28 10:57:19 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:19 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 10:57:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 10:57:19 [DEBUG] Starting graph walk: walkValidate -2022/02/28 10:57:19 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:19 [WARN] Not fixing up EachModes for mso_schema.test because it has no config -2022/02/28 10:57:19 [WARN] Not fixing up EachModes for mso_schema_template_bd.test because it has no config -2022/02/28 10:57:19 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config -2022/02/28 10:57:19 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config -2022/02/28 10:57:19 [WARN] Not fixing up EachModes for data.mso_tenant.test because it has no config -2022/02/28 10:57:19 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config -2022/02/28 10:57:19 [WARN] Not fixing up EachModes for mso_dhcp_relay_policy.test because it has no config -2022/02/28 10:57:19 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:57:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 10:57:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:19 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:57:19 [DEBUG] 621c5d231d0000a6614fb934: Beginning Read -2022/02/28 10:57:19 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:19 [DEBUG] Begin Injection -2022/02/28 10:57:19 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:19 [DEBUG] 621c5d331b00005b07fd0c0d: Beginning Read -2022/02/28 10:57:19 id: 621c5d331b00005b07fd0c0d -2022/02/28 10:57:19 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:19 [DEBUG] 621c5d321b00007507fd0c0c: Beginning Read -2022/02/28 10:57:19 id: 621c5d321b00007507fd0c0c -2022/02/28 10:57:19 HTTP request GET mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:19 [DEBUG] Begin Injection -2022/02/28 10:57:19 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:19 [DEBUG] Begin Injection -2022/02/28 10:57:19 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051c2c0 1473 [] false false map[] 0xc000da8100 0xc00097e0b0} -2022/02/28 10:57:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d20440 161 [] false false map[] 0xc000e32100 0xc000454630} -2022/02/28 10:57:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} -2022/02/28 10:57:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c {"id":"621c5d321b00007507fd0c0c","name":"acctest_23rlh","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:19 [DEBUG] Exit from do method -2022/02/28 10:57:19 [DEBUG] Exit from do method -2022/02/28 10:57:19 [DEBUG] 621c5d231d0000a6614fb934: Read finished successfully -2022/02/28 10:57:19 [DEBUG] 621c5d321b00007507fd0c0c: Read finished successfully -2022/02/28 10:57:19 [DEBUG] acctest_9gd4a: Beginning Read -2022/02/28 10:57:19 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:19 [DEBUG] Begin Injection -2022/02/28 10:57:19 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d280c0 1473 [] false false map[] 0xc000f7a400 0xc000454630} -2022/02/28 10:57:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} -2022/02/28 10:57:19 [DEBUG] Exit from do method -2022/02/28 10:57:19 currentvrfname acctest_9gd4a -2022/02/28 10:57:19 found correct vrfname -2022/02/28 10:57:19 [DEBUG] acctest_9gd4a: Read finished successfully -2022/02/28 10:57:19 [DEBUG] acctest_9gd4a: Beginning Read -2022/02/28 10:57:19 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:19 [DEBUG] Begin Injection -2022/02/28 10:57:19 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d28540 160 [] false false map[] 0xc000da8200 0xc00097e0b0} -2022/02/28 10:57:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d {"id":"621c5d331b00005b07fd0c0d","name":"acctest_9gd4a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 10:57:19 [DEBUG] Exit from do method -2022/02/28 10:57:19 [DEBUG] 621c5d331b00005b07fd0c0d: Read finished successfully -2022/02/28 10:57:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010fddc0 1473 [] false false map[] 0xc000f7ad00 0xc000454630} -2022/02/28 10:57:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} -2022/02/28 10:57:20 [DEBUG] Exit from do method -2022/02/28 10:57:20 [DEBUG] acctest_9gd4a: Read finished successfully -2022/02/28 10:57:20 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Beginning Read -2022/02/28 10:57:20 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:20 [DEBUG] Begin Injection -2022/02/28 10:57:20 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1473] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051c0c0 1473 [] false false map[] 0xc000f7b200 0xc00013e2c0} -2022/02/28 10:57:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"id":"621c5d231d0000a6614fb934","displayName":"acctest_n0ejy","description":"","templates":[{"name":"acctest_n0ejy","displayName":"acctest_n0ejy","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9gd4a","displayName":"acctest_9gd4a","bdRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/vrfs/acctest_9gd4a","dhcpLabel":{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9gd4a","dhcpOptionLabel":{"name":"acctest_23rlh","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":16}],"_updateVersion":0} -2022/02/28 10:57:20 [DEBUG] Exit from do method -2022/02/28 10:57:20 [DEBUG] /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a: Read finished successfully -2022/02/28 10:57:20 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:20 [DEBUG] New state was assigned lineage "1f42df39-5182-ebaa-4bcf-741e952584eb" -2022/02/28 10:57:20 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 10:57:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example (destroy) -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 10:57:20 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.example - description: "" => "" - id: "621c5d321b00007507fd0c0c" => "" - name: "acctest_23rlh" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c5d331b00005b07fd0c0d" => "" - name: "acctest_9gd4a" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c5d231d0000a6614fb934" => "" - name: "acctest_n0ejy" => "" - template_name: "acctest_n0ejy" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.dhcp_option_policy_name: "acctest_23rlh" => "" - dhcp_policy.dhcp_option_policy_version: "1" => "" - dhcp_policy.name: "acctest_9gd4a" => "" - dhcp_policy.version: "1" => "" - display_name: "acctest_9gd4a" => "" - id: "acctest_9gd4a" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_9gd4a" => "" - schema_id: "621c5d231d0000a6614fb934" => "" - template_name: "acctest_n0ejy" => "" - vrf_name: "acctest_9gd4a" => "" - vrf_schema_id: "621c5d231d0000a6614fb934" => "" - vrf_template_name: "acctest_n0ejy" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_9gd4a" => "" - dhcp_option_name: "acctest_23rlh" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a" => "" - name: "acctest_9gd4a" => "" - schema_id: "621c5d231d0000a6614fb934" => "" - template_name: "acctest_n0ejy" => "" - version: "1" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_9gd4a" => "" - id: "acctest_9gd4a" => "" - layer3_multicast: "false" => "" - name: "acctest_9gd4a" => "" - schema_id: "621c5d231d0000a6614fb934" => "" - template: "acctest_n0ejy" => "" - vzany: "false" => "" - - - -STATE: - -mso_dhcp_option_policy.example: - ID = 621c5d321b00007507fd0c0c - provider = provider.mso - description = - name = acctest_23rlh - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c5d331b00005b07fd0c0d - provider = provider.mso - description = - name = acctest_9gd4a - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5d231d0000a6614fb934 - provider = provider.mso - name = acctest_n0ejy - template_name = acctest_n0ejy - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_9gd4a - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_23rlh - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_9gd4a - dhcp_policy.version = 1 - display_name = acctest_9gd4a - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_9gd4a - schema_id = 621c5d231d0000a6614fb934 - template_name = acctest_n0ejy - vrf_name = acctest_9gd4a - vrf_schema_id = 621c5d231d0000a6614fb934 - vrf_template_name = acctest_n0ejy - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5d231d0000a6614fb934/templates/acctest_n0ejy/bds/acctest_9gd4a/dhcpLabels/acctest_9gd4a - provider = provider.mso - bd_name = acctest_9gd4a - dhcp_option_name = acctest_23rlh - dhcp_option_version = 1 - name = acctest_9gd4a - schema_id = 621c5d231d0000a6614fb934 - template_name = acctest_n0ejy - version = 1 - - Dependencies: - mso_dhcp_option_policy.example - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_9gd4a - provider = provider.mso - display_name = acctest_9gd4a - layer3_multicast = false - name = acctest_9gd4a - schema_id = 621c5d231d0000a6614fb934 - template = acctest_n0ejy - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 10:57:20 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 10:57:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (clean up state)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (clean up state)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] -2022/02/28 10:57:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 10:57:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 10:57:20 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 10:57:20 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 10:57:20 [DEBUG] Template BD: Beginning Update -2022/02/28 10:57:20 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:20 [DEBUG] Begin Injection -2022/02/28 10:57:20 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:21 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005b8e00 0xc00013e2c0} -2022/02/28 10:57:21 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:21 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change -2022/02/28 10:57:21 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 10:57:21 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 10:57:21 [DEBUG] 621c5d321b00007507fd0c0c: Beginning Read -2022/02/28 10:57:21 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:21 [DEBUG] 621c5d331b00005b07fd0c0d: Beginning Read -2022/02/28 10:57:21 [DEBUG] Begin Injection -2022/02/28 10:57:21 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:21 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:21 [DEBUG] Begin Injection -2022/02/28 10:57:21 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:21 [DEBUG] Template BD: Beginning Update -2022/02/28 10:57:21 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:21 [DEBUG] Begin Injection -2022/02/28 10:57:21 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:21 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:21 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0005b8300 0xc00013e2c0} -2022/02/28 10:57:21 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5d331b00005b07fd0c0d -2022/02/28 10:57:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0004ac500 0xc00097e0b0} -2022/02/28 10:57:21 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5d321b00007507fd0c0c -2022/02/28 10:57:21 [DEBUG] : Read finished successfully -2022/02/28 10:57:21 [DEBUG] : Read finished successfully -2022/02/28 10:57:21 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f6a300 0xc00097e0b0} -2022/02/28 10:57:21 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:21 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 10:57:21 [DEBUG] acctest_9gd4a: Beginning Destroy -2022/02/28 10:57:21 HTTP request PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:21 [DEBUG] Begin Injection -2022/02/28 10:57:21 HTTP request after injection PATCH mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:22 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004acc00 0xc00097e0b0} -2022/02/28 10:57:22 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934?validate=false -2022/02/28 10:57:22 [DEBUG] acctest_9gd4a: Destroy finished successfully -2022/02/28 10:57:22 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 10:57:22 [DEBUG] 621c5d231d0000a6614fb934: Beginning Destroy -2022/02/28 10:57:22 HTTP request DELETE mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:22 [DEBUG] Begin Injection -2022/02/28 10:57:22 HTTP request after injection DELETE mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:22 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:27:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0004ac700 0xc0005000b0} -2022/02/28 10:57:22 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:22 [DEBUG] 621c5d231d0000a6614fb934: Destroy finished successfully -2022/02/28 10:57:22 [DEBUG] provider has no plugin.Client -2022/02/28 10:57:22 [DEBUG] New state was assigned lineage "80fc588a-3fb8-684d-cd88-c9f82347365c" -2022/02/28 10:57:22 HTTP request GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:22 [DEBUG] Begin Injection -2022/02/28 10:57:22 HTTP request after injection GET mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 -2022/02/28 10:57:23 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:27:22 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051c200 39 [] false false map[] 0xc0006ac000 0xc0005000b0} -2022/02/28 10:57:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5d231d0000a6614fb934 {"code":404,"message":"Item not found"} -2022/02/28 10:57:23 [DEBUG] Exit from do method -2022/02/28 10:57:23 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 10:57:23 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 10:57:23 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 10:57:23 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 10:57:23 [DEBUG] New state was assigned lineage "cf684836-8300-2b1d-1045-0afc7610313b" -2022/02/28 10:57:23 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 10:57:23 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:01:07 [DEBUG] Test: Executing step 0 -2022/02/28 11:01:07 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:07 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:01:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:07 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:01:07 [DEBUG] Test: Executing step 1 -2022/02/28 11:01:07 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:07 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:01:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:07 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:01:07 [DEBUG] Test: Executing step 2 -2022/02/28 11:01:07 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:07 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:01:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:07 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:01:07 [DEBUG] Test: Executing step 3 -2022/02/28 11:01:07 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:07 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:01:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:07 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:01:07 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:01:07 [DEBUG] Test: Executing step 4 -2022/02/28 11:01:07 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:07 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:01:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:07 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:01:07 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:07 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:01:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:01:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:07 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:01:07 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:01:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:07 [DEBUG] : Beginning Read -2022/02/28 11:01:07 HTTP request GET mso/api/v1/tenants -2022/02/28 11:01:07 [DEBUG] Begin Injection -2022/02/28 11:01:07 HTTP request POST /login -2022/02/28 11:01:07 HTTP request after injection POST /login -2022/02/28 11:01:07 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:01:09 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:01:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:09 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0008b7480 -1 [chunked] false false map[] 0xc000414700 0xc000632000} -2022/02/28 11:01:09 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw"} -2022/02/28 11:01:09 [DEBUG] Exit from do method -2022/02/28 11:01:09 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:01:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008b7680 5563 [] false false map[] 0xc000414600 0xc000632000} -2022/02/28 11:01:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:01:10 [DEBUG] Exit from do method -2022/02/28 11:01:10 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:01:10 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:10 [DEBUG] New state was assigned lineage "381a0684-0fa8-0077-08e7-9aa707c65fb9" -2022/02/28 11:01:10 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:01:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:01:10 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:10 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:01:10 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:10 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:10 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:01:10 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:01:10 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:10 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_qqw6f" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_ifkqt" - template_name: "" => "acctest_ifkqt" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_qqw6f" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_qqw6f" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_ifkqt" - vrf_name: "" => "acctest_qqw6f" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_qqw6f" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_qqw6f" - schema_id: "" => "" - template_name: "" => "acctest_ifkqt" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_qqw6f" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_qqw6f" - schema_id: "" => "" - template: "" => "acctest_ifkqt" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:01:10 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:01:10 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:01:10 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:01:10 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:01:10 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:01:10 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:01:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:01:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:01:10 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:01:10 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:01:10 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:01:10 [DEBUG] Schema: Beginning Creation -2022/02/28 11:01:10 [DEBUG] : Beginning Create -2022/02/28 11:01:10 HTTP request POST mso/api/v1/schemas -2022/02/28 11:01:10 [DEBUG] Begin Injection -2022/02/28 11:01:10 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:01:10 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw] Content-Type:[application/json]] {{"displayName":"acctest_ifkqt","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_ifkqt","externalEpgs":[],"filters":[],"name":"acctest_ifkqt","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x347ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:01:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:01:10 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:01:10 [DEBUG] Begin Injection -2022/02/28 11:01:10 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:01:10 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw] Content-Type:[application/json]] {{"desc":"","name":"acctest_qqw6f","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x347ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:01:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:01:10 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:01:10 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c5e1e1d0000d9614fb948] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000737840 400 [] false false map[] 0xc000414500 0xc000632000} -2022/02/28 11:01:10 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:01:10 [DEBUG] Exit from do method -2022/02/28 11:01:10 [DEBUG] 621c5e1e1d0000d9614fb948: Schema Creation finished successfully -2022/02/28 11:01:10 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Read -2022/02/28 11:01:10 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:10 [DEBUG] Begin Injection -2022/02/28 11:01:10 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:11 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:01:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000097580 160 [] false false map[] 0xc000d9e400 0xc000632000} -2022/02/28 11:01:11 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5e1f1b0000b307fd0c0e","name":"acctest_qqw6f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:11 [DEBUG] Exit from do method -2022/02/28 11:01:11 [DEBUG] 621c5e1f1b0000b307fd0c0e: Creation finished successfully -2022/02/28 11:01:11 [DEBUG] 621c5e1f1b0000b307fd0c0e: Beginning Read -2022/02/28 11:01:11 id: 621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:11 [DEBUG] Begin Injection -2022/02/28 11:01:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae6b80 160 [] false false map[] 0xc000414900 0xc000632000} -2022/02/28 11:01:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d80fc0 400 [] false false map[] 0xc000c9e800 0xc00013e2c0} -2022/02/28 11:01:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e {"id":"621c5e1f1b0000b307fd0c0e","name":"acctest_qqw6f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:01:11 [DEBUG] Exit from do method -2022/02/28 11:01:11 [DEBUG] Exit from do method -2022/02/28 11:01:11 [DEBUG] 621c5e1e1d0000d9614fb948: Read finished successfully -2022/02/28 11:01:11 [DEBUG] 621c5e1f1b0000b307fd0c0e: Read finished successfully -2022/02/28 11:01:11 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:01:11 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:01:11 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:11 [DEBUG] Begin Injection -2022/02/28 11:01:11 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:12 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:12 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000743000 0xc00013e2c0} -2022/02/28 11:01:12 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:12 [DEBUG] acctest_qqw6f: Creation finished successfully -2022/02/28 11:01:12 [DEBUG] acctest_qqw6f: Beginning Read -2022/02/28 11:01:12 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:12 [DEBUG] Begin Injection -2022/02/28 11:01:12 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d815c0 768 [] false false map[] 0xc000414a00 0xc000da8fd0} -2022/02/28 11:01:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:01:12 [DEBUG] Exit from do method -2022/02/28 11:01:12 currentvrfname acctest_qqw6f -2022/02/28 11:01:12 found correct vrfname -2022/02/28 11:01:12 [DEBUG] acctest_qqw6f: Read finished successfully -2022/02/28 11:01:12 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:01:12 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:01:12 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:01:12 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:12 [DEBUG] Begin Injection -2022/02/28 11:01:12 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:12 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:12 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c9ed00 0xc000da8fd0} -2022/02/28 11:01:12 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:12 [DEBUG] : Beginning Read -2022/02/28 11:01:12 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:12 [DEBUG] Begin Injection -2022/02/28 11:01:12 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000830040 1277 [] false false map[] 0xc000414100 0xc000da8fd0} -2022/02/28 11:01:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:01:13 [DEBUG] Exit from do method -2022/02/28 11:01:13 [DEBUG] acctest_qqw6f: Read finished successfully -2022/02/28 11:01:13 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:01:13 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:01:13 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:13 [DEBUG] Begin Injection -2022/02/28 11:01:13 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:13 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000742a00 0xc000da8fd0} -2022/02/28 11:01:13 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:13 [DEBUG] Creation Complete -2022/02/28 11:01:13 [DEBUG] : Beginning Read -2022/02/28 11:01:13 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:13 [DEBUG] Begin Injection -2022/02/28 11:01:13 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae6ec0 1362 [] false false map[] 0xc000c9e000 0xc000da8fd0} -2022/02/28 11:01:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:01:13 [DEBUG] Exit from do method -2022/02/28 11:01:13 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully -2022/02/28 11:01:13 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:13 [DEBUG] New state was assigned lineage "96defb7d-32c6-1559-37e4-f37fbdf31af5" -2022/02/28 11:01:13 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:13 [DEBUG] Begin Injection -2022/02/28 11:01:13 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ee200 1362 [] false false map[] 0xc000414200 0xc000da8fd0} -2022/02/28 11:01:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:01:14 [DEBUG] Exit from do method -2022/02/28 11:01:14 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:01:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:14 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:01:14 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:14 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:01:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:14 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:14 [DEBUG] : Beginning Read -2022/02/28 11:01:14 HTTP request GET mso/api/v1/tenants -2022/02/28 11:01:14 [DEBUG] Begin Injection -2022/02/28 11:01:14 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:01:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d80240 5563 [] false false map[] 0xc000caa100 0xc000da8fd0} -2022/02/28 11:01:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:01:14 [DEBUG] Exit from do method -2022/02/28 11:01:14 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:01:14 [DEBUG] 621c5e1f1b0000b307fd0c0e: Beginning Read -2022/02/28 11:01:14 id: 621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:14 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:14 [DEBUG] Begin Injection -2022/02/28 11:01:14 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Read -2022/02/28 11:01:14 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:14 [DEBUG] Begin Injection -2022/02/28 11:01:14 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d81c80 160 [] false false map[] 0xc000caa700 0xc000632000} -2022/02/28 11:01:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736600 1362 [] false false map[] 0xc000414600 0xc000da8fd0} -2022/02/28 11:01:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e {"id":"621c5e1f1b0000b307fd0c0e","name":"acctest_qqw6f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:01:15 [DEBUG] Exit from do method -2022/02/28 11:01:15 [DEBUG] Exit from do method -2022/02/28 11:01:15 [DEBUG] 621c5e1e1d0000d9614fb948: Read finished successfully -2022/02/28 11:01:15 [DEBUG] 621c5e1f1b0000b307fd0c0e: Read finished successfully -2022/02/28 11:01:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:15 [DEBUG] acctest_qqw6f: Beginning Read -2022/02/28 11:01:15 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:15 [DEBUG] Begin Injection -2022/02/28 11:01:15 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008ac940 1362 [] false false map[] 0xc000742700 0xc000da8fd0} -2022/02/28 11:01:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:01:15 [DEBUG] Exit from do method -2022/02/28 11:01:15 currentvrfname acctest_qqw6f -2022/02/28 11:01:15 found correct vrfname -2022/02/28 11:01:15 [DEBUG] acctest_qqw6f: Read finished successfully -2022/02/28 11:01:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:01:15 [DEBUG] acctest_qqw6f: Beginning Read -2022/02/28 11:01:15 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:15 [DEBUG] Begin Injection -2022/02/28 11:01:15 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008b6c40 1362 [] false false map[] 0xc000414b00 0xc000da8fd0} -2022/02/28 11:01:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:01:16 [DEBUG] Exit from do method -2022/02/28 11:01:16 [DEBUG] acctest_qqw6f: Read finished successfully -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:01:16 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Read -2022/02/28 11:01:16 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:16 [DEBUG] Begin Injection -2022/02/28 11:01:16 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736080 1362 [] false false map[] 0xc000742b00 0xc000da8fd0} -2022/02/28 11:01:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:01:16 [DEBUG] Exit from do method -2022/02/28 11:01:16 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully -2022/02/28 11:01:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:16 [DEBUG] New state was assigned lineage "45399aee-4758-de0a-3072-cc35585a2b2e" -2022/02/28 11:01:16 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:01:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:16 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:01:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:16 [DEBUG] Test: Executing step 5 -2022/02/28 11:01:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:16 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:01:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:16 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:01:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:16 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:01:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:16 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:01:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:16 [DEBUG] : Beginning Read -2022/02/28 11:01:16 HTTP request GET mso/api/v1/tenants -2022/02/28 11:01:16 [DEBUG] Begin Injection -2022/02/28 11:01:16 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:01:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008ad140 5563 [] false false map[] 0xc000742200 0xc000da8fd0} -2022/02/28 11:01:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:01:17 [DEBUG] Exit from do method -2022/02/28 11:01:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:01:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:01:17 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 11:01:17 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:01:17 [DEBUG] 621c5e1f1b0000b307fd0c0e: Beginning Read -2022/02/28 11:01:17 id: 621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:17 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:17 [DEBUG] Begin Injection -2022/02/28 11:01:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:17 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Read -2022/02/28 11:01:17 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:17 [DEBUG] Begin Injection -2022/02/28 11:01:17 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736b80 160 [] false false map[] 0xc00104cc00 0xc000da8fd0} -2022/02/28 11:01:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ab6f00 1362 [] false false map[] 0xc000b2a000 0xc000632000} -2022/02/28 11:01:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e {"id":"621c5e1f1b0000b307fd0c0e","name":"acctest_qqw6f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:01:17 [DEBUG] Exit from do method -2022/02/28 11:01:17 [DEBUG] Exit from do method -2022/02/28 11:01:17 [DEBUG] 621c5e1e1d0000d9614fb948: Read finished successfully -2022/02/28 11:01:17 [DEBUG] 621c5e1f1b0000b307fd0c0e: Read finished successfully -2022/02/28 11:01:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:17 [DEBUG] acctest_qqw6f: Beginning Read -2022/02/28 11:01:17 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:17 [DEBUG] Begin Injection -2022/02/28 11:01:17 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00062c040 1362 [] false false map[] 0xc000ad0700 0xc000632000} -2022/02/28 11:01:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:01:17 [DEBUG] Exit from do method -2022/02/28 11:01:17 currentvrfname acctest_qqw6f -2022/02/28 11:01:17 found correct vrfname -2022/02/28 11:01:17 [DEBUG] acctest_qqw6f: Read finished successfully -2022/02/28 11:01:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:01:17 [DEBUG] acctest_qqw6f: Beginning Read -2022/02/28 11:01:17 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:17 [DEBUG] Begin Injection -2022/02/28 11:01:17 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00062ca80 1362 [] false false map[] 0xc000742300 0xc000632000} -2022/02/28 11:01:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:01:18 [DEBUG] Exit from do method -2022/02/28 11:01:18 [DEBUG] acctest_qqw6f: Read finished successfully -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:01:18 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Read -2022/02/28 11:01:18 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:18 [DEBUG] Begin Injection -2022/02/28 11:01:18 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ab6f00 1362 [] false false map[] 0xc000414600 0xc000632000} -2022/02/28 11:01:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:01:18 [DEBUG] Exit from do method -2022/02/28 11:01:18 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully -2022/02/28 11:01:18 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:18 [DEBUG] New state was assigned lineage "43affaaf-60f4-3865-13ce-32477b904379" -2022/02/28 11:01:18 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:01:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:18 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:18 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:01:18 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:18 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.example - description: "" => "" - id: "" => "" - name: "" => "acctest_nskt7" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -UPDATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_qqw6f" => "acctest_qqw6f" - dhcp_option_name: "" => "acctest_nskt7" - dhcp_option_version: "0" => "1" - id: "/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f" => "/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f" - name: "acctest_qqw6f" => "acctest_qqw6f" - schema_id: "621c5e1e1d0000d9614fb948" => "621c5e1e1d0000d9614fb948" - template_name: "acctest_ifkqt" => "acctest_ifkqt" - version: "0" => "1" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c5e1f1b0000b307fd0c0e - provider = provider.mso - description = - name = acctest_qqw6f - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5e1e1d0000d9614fb948 - provider = provider.mso - name = acctest_ifkqt - template_name = acctest_ifkqt - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_qqw6f - provider = provider.mso - dhcp_policy.name = acctest_qqw6f - dhcp_policy.version = 0 - display_name = acctest_qqw6f - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_qqw6f - schema_id = 621c5e1e1d0000d9614fb948 - template_name = acctest_ifkqt - vrf_name = acctest_qqw6f - vrf_schema_id = 621c5e1e1d0000d9614fb948 - vrf_template_name = acctest_ifkqt - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f - provider = provider.mso - bd_name = acctest_qqw6f - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_qqw6f - schema_id = 621c5e1e1d0000d9614fb948 - template_name = acctest_ifkqt - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_qqw6f - provider = provider.mso - display_name = acctest_qqw6f - layer3_multicast = false - name = acctest_qqw6f - schema_id = 621c5e1e1d0000d9614fb948 - template = acctest_ifkqt - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:01:18 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:01:18 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 11:01:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_option_policy.example (prepare state)] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (prepare state)" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:01:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:01:18 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:01:18 [DEBUG] mso_dhcp_option_policy.example: applying the planned Create change -2022/02/28 11:01:18 [DEBUG] : Beginning Create -2022/02/28 11:01:18 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 11:01:18 [DEBUG] Begin Injection -2022/02/28 11:01:18 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 11:01:18 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_nskt7","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x347ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:01:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:01:18 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:01:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000978140 161 [] false false map[] 0xc000caad00 0xc000632000} -2022/02/28 11:01:18 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c5e261b0000b207fd0c0f","name":"acctest_nskt7","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:18 [DEBUG] Exit from do method -2022/02/28 11:01:18 [DEBUG] 621c5e261b0000b207fd0c0f: Creation finished successfully -2022/02/28 11:01:18 [DEBUG] 621c5e261b0000b207fd0c0f: Beginning Read -2022/02/28 11:01:18 id: 621c5e261b0000b207fd0c0f -2022/02/28 11:01:18 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:18 [DEBUG] Begin Injection -2022/02/28 11:01:18 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000978480 161 [] false false map[] 0xc000742000 0xc000632000} -2022/02/28 11:01:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f {"id":"621c5e261b0000b207fd0c0f","name":"acctest_nskt7","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:19 [DEBUG] Exit from do method -2022/02/28 11:01:19 [DEBUG] 621c5e261b0000b207fd0c0f: Read finished successfully -2022/02/28 11:01:19 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change -2022/02/28 11:01:19 [DEBUG] Template BD: Beginning Update -2022/02/28 11:01:19 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:19 [DEBUG] Begin Injection -2022/02/28 11:01:19 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:19 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000414d00 0xc000632000} -2022/02/28 11:01:19 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:19 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Read -2022/02/28 11:01:19 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:19 [DEBUG] Begin Injection -2022/02/28 11:01:19 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000978b80 1472 [] false false map[] 0xc000cab800 0xc000632000} -2022/02/28 11:01:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:01:19 [DEBUG] Exit from do method -2022/02/28 11:01:19 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully -2022/02/28 11:01:19 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:19 [DEBUG] New state was assigned lineage "3ee4f7af-a14c-39f1-12bc-2a39d4cc6303" -2022/02/28 11:01:19 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:19 [DEBUG] Begin Injection -2022/02/28 11:01:19 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008ac040 1472 [] false false map[] 0xc000742000 0xc000632000} -2022/02/28 11:01:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:01:20 [DEBUG] Exit from do method -2022/02/28 11:01:20 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:01:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:01:20 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:01:20 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:20 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:01:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example] -2022/02/28 11:01:20 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:20 [DEBUG] : Beginning Read -2022/02/28 11:01:20 HTTP request GET mso/api/v1/tenants -2022/02/28 11:01:20 [DEBUG] Begin Injection -2022/02/28 11:01:20 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:01:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006dec00 5563 [] false false map[] 0xc000cabe00 0xc000632000} -2022/02/28 11:01:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:01:20 [DEBUG] Exit from do method -2022/02/28 11:01:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:01:20 [DEBUG] 621c5e261b0000b207fd0c0f: Beginning Read -2022/02/28 11:01:20 id: 621c5e261b0000b207fd0c0f -2022/02/28 11:01:20 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:20 [DEBUG] Begin Injection -2022/02/28 11:01:20 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:20 [DEBUG] 621c5e1f1b0000b307fd0c0e: Beginning Read -2022/02/28 11:01:20 id: 621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:20 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Read -2022/02/28 11:01:20 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:20 [DEBUG] Begin Injection -2022/02/28 11:01:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:20 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:20 [DEBUG] Begin Injection -2022/02/28 11:01:20 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ab6280 161 [] false false map[] 0xc000414600 0xc000632000} -2022/02/28 11:01:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f {"id":"621c5e261b0000b207fd0c0f","name":"acctest_nskt7","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:20 [DEBUG] Exit from do method -2022/02/28 11:01:20 [DEBUG] 621c5e261b0000b207fd0c0f: Read finished successfully -2022/02/28 11:01:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d81d40 160 [] false false map[] 0xc000ad0300 0xc000da8fd0} -2022/02/28 11:01:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e {"id":"621c5e1f1b0000b307fd0c0e","name":"acctest_qqw6f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:20 [DEBUG] Exit from do method -2022/02/28 11:01:20 [DEBUG] 621c5e1f1b0000b307fd0c0e: Read finished successfully -2022/02/28 11:01:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006df740 1472 [] false false map[] 0xc001106600 0xc000632000} -2022/02/28 11:01:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:01:21 [DEBUG] Exit from do method -2022/02/28 11:01:21 [DEBUG] 621c5e1e1d0000d9614fb948: Read finished successfully -2022/02/28 11:01:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:21 [DEBUG] acctest_qqw6f: Beginning Read -2022/02/28 11:01:21 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:21 [DEBUG] Begin Injection -2022/02/28 11:01:21 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d81e00 1472 [] false false map[] 0xc000ad0800 0xc000632000} -2022/02/28 11:01:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:01:21 [DEBUG] Exit from do method -2022/02/28 11:01:21 currentvrfname acctest_qqw6f -2022/02/28 11:01:21 found correct vrfname -2022/02/28 11:01:21 [DEBUG] acctest_qqw6f: Read finished successfully -2022/02/28 11:01:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:01:21 [DEBUG] acctest_qqw6f: Beginning Read -2022/02/28 11:01:21 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:21 [DEBUG] Begin Injection -2022/02/28 11:01:21 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008b6040 1472 [] false false map[] 0xc000414900 0xc000da82c0} -2022/02/28 11:01:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:01:21 [DEBUG] Exit from do method -2022/02/28 11:01:21 [DEBUG] acctest_qqw6f: Read finished successfully -2022/02/28 11:01:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:01:21 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Read -2022/02/28 11:01:21 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:21 [DEBUG] Begin Injection -2022/02/28 11:01:21 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ee200 1472 [] false false map[] 0xc001106500 0xc000da82c0} -2022/02/28 11:01:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:01:22 [DEBUG] Exit from do method -2022/02/28 11:01:22 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully -2022/02/28 11:01:22 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:22 [DEBUG] New state was assigned lineage "e80c29b9-bea0-b186-5e22-2ac67615db4f" -2022/02/28 11:01:22 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:01:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:22 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:01:22 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:22 [DEBUG] Test: Executing step 6 -2022/02/28 11:01:22 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f\")" (*terraform.graphNodeImportState) needs provider.mso -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f\")" references: [] -2022/02/28 11:01:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:22 [DEBUG] Starting graph walk: walkImport -2022/02/28 11:01:22 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Import -2022/02/28 11:01:22 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:22 [DEBUG] Begin Injection -2022/02/28 11:01:22 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736f00 1472 [] false false map[] 0xc000414c00 0xc000da82c0} -2022/02/28 11:01:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:01:22 [DEBUG] Exit from do method -2022/02/28 11:01:22 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Import finished successfully -2022/02/28 11:01:22 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Read -2022/02/28 11:01:22 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:22 [DEBUG] Begin Injection -2022/02/28 11:01:22 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736100 1472 [] false false map[] 0xc000414f00 0xc000da82c0} -2022/02/28 11:01:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:01:23 [DEBUG] Exit from do method -2022/02/28 11:01:23 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully -2022/02/28 11:01:23 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:23 [DEBUG] New state was assigned lineage "6007c05f-1fae-a77c-c2c4-dd14d7bce49b" -2022/02/28 11:01:23 [DEBUG] Test: Executing step 7 -2022/02/28 11:01:23 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:23 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:01:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:01:23 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:01:23 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config -2022/02/28 11:01:23 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:23 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:01:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:23 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:23 [DEBUG] : Beginning Read -2022/02/28 11:01:23 HTTP request GET mso/api/v1/tenants -2022/02/28 11:01:23 [DEBUG] Begin Injection -2022/02/28 11:01:23 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:01:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006dec40 5563 [] false false map[] 0xc0012fd300 0xc000da82c0} -2022/02/28 11:01:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:01:23 [DEBUG] Exit from do method -2022/02/28 11:01:23 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:01:23 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Read -2022/02/28 11:01:23 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:23 [DEBUG] Begin Injection -2022/02/28 11:01:23 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:23 [DEBUG] 621c5e1f1b0000b307fd0c0e: Beginning Read -2022/02/28 11:01:23 id: 621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:23 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:23 [DEBUG] Begin Injection -2022/02/28 11:01:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:23 [DEBUG] 621c5e261b0000b207fd0c0f: Beginning Read -2022/02/28 11:01:23 id: 621c5e261b0000b207fd0c0f -2022/02/28 11:01:23 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:23 [DEBUG] Begin Injection -2022/02/28 11:01:23 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008b6e00 160 [] false false map[] 0xc0000f6200 0xc000da8fd0} -2022/02/28 11:01:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e {"id":"621c5e1f1b0000b307fd0c0e","name":"acctest_qqw6f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c080 1472 [] false false map[] 0xc000ad0600 0xc000da82c0} -2022/02/28 11:01:24 [DEBUG] Exit from do method -2022/02/28 11:01:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:01:24 [DEBUG] Exit from do method -2022/02/28 11:01:24 [DEBUG] 621c5e1f1b0000b307fd0c0e: Read finished successfully -2022/02/28 11:01:24 [DEBUG] 621c5e1e1d0000d9614fb948: Read finished successfully -2022/02/28 11:01:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:24 [DEBUG] acctest_qqw6f: Beginning Read -2022/02/28 11:01:24 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:24 [DEBUG] Begin Injection -2022/02/28 11:01:24 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008ac700 1472 [] false false map[] 0xc000414e00 0xc000da82c0} -2022/02/28 11:01:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:01:24 [DEBUG] Exit from do method -2022/02/28 11:01:24 currentvrfname acctest_qqw6f -2022/02/28 11:01:24 found correct vrfname -2022/02/28 11:01:24 [DEBUG] acctest_qqw6f: Read finished successfully -2022/02/28 11:01:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:01:24 [DEBUG] acctest_qqw6f: Beginning Read -2022/02/28 11:01:24 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:24 [DEBUG] Begin Injection -2022/02/28 11:01:24 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001105200 161 [] false false map[] 0xc000ad0700 0xc000da8fd0} -2022/02/28 11:01:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f {"id":"621c5e261b0000b207fd0c0f","name":"acctest_nskt7","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:24 [DEBUG] Exit from do method -2022/02/28 11:01:24 [DEBUG] 621c5e261b0000b207fd0c0f: Read finished successfully -2022/02/28 11:01:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008b7840 1472 [] false false map[] 0xc000416500 0xc000da82c0} -2022/02/28 11:01:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:01:24 [DEBUG] Exit from do method -2022/02/28 11:01:24 [DEBUG] acctest_qqw6f: Read finished successfully -2022/02/28 11:01:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:01:24 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Beginning Read -2022/02/28 11:01:24 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:24 [DEBUG] Begin Injection -2022/02/28 11:01:24 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736200 1472 [] false false map[] 0xc000416a00 0xc0005d0000} -2022/02/28 11:01:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_qqw6f","displayName":"acctest_qqw6f","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_qqw6f","dhcpLabel":{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_qqw6f","dhcpOptionLabel":{"name":"acctest_nskt7","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:01:25 [DEBUG] Exit from do method -2022/02/28 11:01:25 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f: Read finished successfully -2022/02/28 11:01:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:25 [DEBUG] New state was assigned lineage "0ba34c6a-3771-3fba-7863-f3aed4607950" -2022/02/28 11:01:25 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:01:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (orphan)" references: [data.mso_tenant.test] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:25 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:01:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:25 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.example - description: "" => "" - id: "621c5e261b0000b207fd0c0f" => "" - name: "acctest_nskt7" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c5e1f1b0000b307fd0c0e" => "" - name: "acctest_qqw6f" => "acctest_jgi6w" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - dhcp_policy.dhcp_option_policy_name: "acctest_nskt7" => "" - dhcp_policy.dhcp_option_policy_version: "1" => "" - dhcp_policy.name: "acctest_qqw6f" => "" - dhcp_policy.version: "1" => "" - display_name: "acctest_qqw6f" => "acctest_jgi6w" (forces new resource) - id: "acctest_qqw6f" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_qqw6f" => "acctest_jgi6w" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c5e1e1d0000d9614fb948" => "621c5e1e1d0000d9614fb948" - template_name: "acctest_ifkqt" => "acctest_ifkqt" - vrf_name: "acctest_qqw6f" => "acctest_jgi6w" - vrf_schema_id: "621c5e1e1d0000d9614fb948" => "" - vrf_template_name: "acctest_ifkqt" => "" -DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_qqw6f" => "acctest_jgi6w" (forces new resource) - dhcp_option_name: "acctest_nskt7" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f" => "" - name: "acctest_qqw6f" => "acctest_jgi6w" (forces new resource) - schema_id: "621c5e1e1d0000d9614fb948" => "621c5e1e1d0000d9614fb948" - template_name: "acctest_ifkqt" => "acctest_ifkqt" - version: "1" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_qqw6f" => "acctest_jgi6w" - id: "acctest_qqw6f" => "" - layer3_multicast: "false" => "" - name: "acctest_qqw6f" => "acctest_jgi6w" (forces new resource) - schema_id: "621c5e1e1d0000d9614fb948" => "621c5e1e1d0000d9614fb948" - template: "acctest_ifkqt" => "acctest_ifkqt" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.example: - ID = 621c5e261b0000b207fd0c0f - provider = provider.mso - description = - name = acctest_nskt7 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c5e1f1b0000b307fd0c0e - provider = provider.mso - description = - name = acctest_qqw6f - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5e1e1d0000d9614fb948 - provider = provider.mso - name = acctest_ifkqt - template_name = acctest_ifkqt - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_qqw6f - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_nskt7 - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_qqw6f - dhcp_policy.version = 1 - display_name = acctest_qqw6f - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_qqw6f - schema_id = 621c5e1e1d0000d9614fb948 - template_name = acctest_ifkqt - vrf_name = acctest_qqw6f - vrf_schema_id = 621c5e1e1d0000d9614fb948 - vrf_template_name = acctest_ifkqt - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_qqw6f/dhcpLabels/acctest_qqw6f - provider = provider.mso - bd_name = acctest_qqw6f - dhcp_option_name = acctest_nskt7 - dhcp_option_version = 1 - name = acctest_qqw6f - schema_id = 621c5e1e1d0000d9614fb948 - template_name = acctest_ifkqt - version = 1 - - Dependencies: - mso_dhcp_option_policy.example - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_qqw6f - provider = provider.mso - display_name = acctest_qqw6f - layer3_multicast = false - name = acctest_qqw6f - schema_id = 621c5e1e1d0000d9614fb948 - template = acctest_ifkqt - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:01:25 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:01:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:01:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 11:01:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:01:25 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:01:25 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change -2022/02/28 11:01:25 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:01:25 [DEBUG] 621c5e261b0000b207fd0c0f: Beginning Read -2022/02/28 11:01:25 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:25 [DEBUG] Begin Injection -2022/02/28 11:01:25 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:25 [DEBUG] Template BD: Beginning Update -2022/02/28 11:01:25 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:25 [DEBUG] Begin Injection -2022/02/28 11:01:25 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:25 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:25 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[84] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:25 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000966200 84 [] false false map[] 0xc00115c500 0xc0005d0000} -2022/02/28 11:01:25 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001078200 0xc000da8fd0} -2022/02/28 11:01:25 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:25 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f {"code":144,"message":"Cannot Delete Resource: Policy acctest_nskt7 is being used."} -2022/02/28 11:01:25 [DEBUG] mso_dhcp_option_policy.example: apply errored, but we're indicating that via the Error pointer rather than returning it: Unable to delete the object -2022/02/28 11:01:25 [ERROR] : eval: *terraform.EvalApplyPost, err: Unable to delete the object -2022/02/28 11:01:25 [ERROR] : eval: *terraform.EvalSequence, err: Unable to delete the object -2022/02/28 11:01:25 [ERROR] : eval: *terraform.EvalOpFilter, err: Unable to delete the object -2022/02/28 11:01:25 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:01:25 [DEBUG] 621c5e1f1b0000b307fd0c0e: Beginning Read -2022/02/28 11:01:25 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:25 [DEBUG] Begin Injection -2022/02/28 11:01:25 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:01:25 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:25 [DEBUG] Template BD: Beginning Update -2022/02/28 11:01:25 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:25 [DEBUG] Begin Injection -2022/02/28 11:01:25 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:25 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001006d00 0xc0005d0000} -2022/02/28 11:01:25 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e1f1b0000b307fd0c0e -2022/02/28 11:01:25 [DEBUG] : Read finished successfully -2022/02/28 11:01:25 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:01:25 [DEBUG] : Beginning Create -2022/02/28 11:01:25 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:01:25 [DEBUG] Begin Injection -2022/02/28 11:01:25 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:01:25 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NDY5LCJpYXQiOjE2NDYwMjYyNjksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVjRNejVyU0M3V25rQjQ2aVB5SW5hak9vIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jGculkpQRgesoGaACOKUhdztyTi8eKswx6Ju_fbGc8wDuYLeCiXeS85uv9-aGPfmfePd2eanCoLkIin9c4vmWia-DxD5GaOHnF2TfhwguR8jnHNnt5n6M9cKftQTM2lryZqDd8wbaJ7i4W7bD1e-HnV9fIbjTfDZ9FWA--HwoIEzk-13akUQAlti_FC4zQ4vqizuuzecgV1yzui7QIstyzEBR3KlAxBjF4NfArSp2-yLTYeqfjMjlRT8_xFf_uGGjjwKthxt-5GoRLRIFy9pNWoAGqGRQWLZOwGZ_AgPGSbtTbL5T5Sn3qDvbgnrj_f27BsjNKu16rpgQp3At5EpHw] Content-Type:[application/json]] {{"desc":"","name":"acctest_jgi6w","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x347ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:01:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:01:25 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ad0400 0xc000da8fd0} -2022/02/28 11:01:25 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:25 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:01:25 [DEBUG] acctest_qqw6f: Beginning Destroy -2022/02/28 11:01:25 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:25 [DEBUG] Begin Injection -2022/02/28 11:01:25 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:26 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:01:26 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000966040 160 [] false false map[] 0xc001078300 0xc0005d0000} -2022/02/28 11:01:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00115c700 0xc000da8fd0} -2022/02/28 11:01:26 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:26 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5e2e1b0000b507fd0c10","name":"acctest_jgi6w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:26 [DEBUG] Exit from do method -2022/02/28 11:01:26 [DEBUG] acctest_qqw6f: Destroy finished successfully -2022/02/28 11:01:26 [DEBUG] 621c5e2e1b0000b507fd0c10: Creation finished successfully -2022/02/28 11:01:26 [DEBUG] 621c5e2e1b0000b507fd0c10: Beginning Read -2022/02/28 11:01:26 id: 621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:26 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:26 [DEBUG] Begin Injection -2022/02/28 11:01:26 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:26 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:01:26 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:01:26 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:26 [DEBUG] Begin Injection -2022/02/28 11:01:26 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c45440 160 [] false false map[] 0xc000416000 0xc0005d0000} -2022/02/28 11:01:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 {"id":"621c5e2e1b0000b507fd0c10","name":"acctest_jgi6w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:26 [DEBUG] Exit from do method -2022/02/28 11:01:26 [DEBUG] 621c5e2e1b0000b507fd0c10: Read finished successfully -2022/02/28 11:01:26 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001006500 0xc000da8fd0} -2022/02/28 11:01:26 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:26 [DEBUG] acctest_jgi6w: Creation finished successfully -2022/02/28 11:01:26 [DEBUG] acctest_jgi6w: Beginning Read -2022/02/28 11:01:26 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:26 [DEBUG] Begin Injection -2022/02/28 11:01:26 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c45500 768 [] false false map[] 0xc000ad0000 0xc000da8fd0} -2022/02/28 11:01:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 11:01:27 [DEBUG] Exit from do method -2022/02/28 11:01:27 currentvrfname acctest_jgi6w -2022/02/28 11:01:27 found correct vrfname -2022/02/28 11:01:27 [DEBUG] acctest_jgi6w: Read finished successfully -2022/02/28 11:01:27 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:01:27 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:01:27 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:01:27 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:27 [DEBUG] Begin Injection -2022/02/28 11:01:27 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:27 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001006c00 0xc000da8fd0} -2022/02/28 11:01:27 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:27 [DEBUG] : Beginning Read -2022/02/28 11:01:27 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:27 [DEBUG] Begin Injection -2022/02/28 11:01:27 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ee200 1278 [] false false map[] 0xc00115c000 0xc000da8fd0} -2022/02/28 11:01:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 11:01:27 [DEBUG] Exit from do method -2022/02/28 11:01:27 [DEBUG] acctest_jgi6w: Read finished successfully -2022/02/28 11:01:27 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:01:27 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:01:27 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:27 [DEBUG] Begin Injection -2022/02/28 11:01:27 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:28 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00115cb00 0xc000da8fd0} -2022/02/28 11:01:28 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:28 [DEBUG] Creation Complete -2022/02/28 11:01:28 [DEBUG] : Beginning Read -2022/02/28 11:01:28 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:28 [DEBUG] Begin Injection -2022/02/28 11:01:28 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000736140 1363 [] false false map[] 0xc001006000 0xc000da8fd0} -2022/02/28 11:01:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","dhcpLabel":{"name":"acctest_jgi6w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jgi6w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:01:28 [DEBUG] Exit from do method -2022/02/28 11:01:28 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w/dhcpLabels/acctest_jgi6w: Read finished successfully -2022/02/28 11:01:28 [DEBUG] New state was assigned lineage "9f303055-c282-98ca-5d95-196c42fda878" -2022/02/28 11:01:28 [WARN] Test: Executing destroy step -2022/02/28 11:01:28 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:28 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:01:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:01:28 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:01:28 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:28 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config -2022/02/28 11:01:28 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:01:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:01:28 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:01:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:28 [DEBUG] : Beginning Read -2022/02/28 11:01:28 HTTP request GET mso/api/v1/tenants -2022/02/28 11:01:28 [DEBUG] Begin Injection -2022/02/28 11:01:28 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:01:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:28 [DEBUG] 621c5e261b0000b207fd0c0f: Beginning Read -2022/02/28 11:01:28 id: 621c5e261b0000b207fd0c0f -2022/02/28 11:01:28 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:28 [DEBUG] Begin Injection -2022/02/28 11:01:28 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009663c0 5563 [] false false map[] 0xc000cbc300 0xc000da8fd0} -2022/02/28 11:01:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008b7700 161 [] false false map[] 0xc00115d600 0xc0005d0000} -2022/02/28 11:01:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f {"id":"621c5e261b0000b207fd0c0f","name":"acctest_nskt7","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:01:29 [DEBUG] Exit from do method -2022/02/28 11:01:29 [DEBUG] Exit from do method -2022/02/28 11:01:29 [DEBUG] 621c5e261b0000b207fd0c0f: Read finished successfully -2022/02/28 11:01:29 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:01:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:01:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:01:29 [DEBUG] 621c5e2e1b0000b507fd0c10: Beginning Read -2022/02/28 11:01:29 id: 621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:29 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Read -2022/02/28 11:01:29 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:29 [DEBUG] Begin Injection -2022/02/28 11:01:29 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:29 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:29 [DEBUG] Begin Injection -2022/02/28 11:01:29 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d80040 1363 [] false false map[] 0xc000cbc800 0xc0005d0000} -2022/02/28 11:01:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","dhcpLabel":{"name":"acctest_jgi6w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jgi6w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:01:29 [DEBUG] Exit from do method -2022/02/28 11:01:29 [DEBUG] 621c5e1e1d0000d9614fb948: Read finished successfully -2022/02/28 11:01:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:01:29 [DEBUG] acctest_jgi6w: Beginning Read -2022/02/28 11:01:29 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:29 [DEBUG] Begin Injection -2022/02/28 11:01:29 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ee240 160 [] false false map[] 0xc000d8a200 0xc000da8fd0} -2022/02/28 11:01:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 {"id":"621c5e2e1b0000b507fd0c10","name":"acctest_jgi6w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:01:29 [DEBUG] Exit from do method -2022/02/28 11:01:29 [DEBUG] 621c5e2e1b0000b507fd0c10: Read finished successfully -2022/02/28 11:01:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000966240 1363 [] false false map[] 0xc00115c200 0xc0005d0000} -2022/02/28 11:01:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","dhcpLabel":{"name":"acctest_jgi6w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jgi6w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:01:29 [DEBUG] Exit from do method -2022/02/28 11:01:29 currentvrfname acctest_jgi6w -2022/02/28 11:01:29 found correct vrfname -2022/02/28 11:01:29 [DEBUG] acctest_jgi6w: Read finished successfully -2022/02/28 11:01:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:01:29 [DEBUG] acctest_jgi6w: Beginning Read -2022/02/28 11:01:29 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:29 [DEBUG] Begin Injection -2022/02/28 11:01:29 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d81840 1363 [] false false map[] 0xc000414200 0xc0005d0000} -2022/02/28 11:01:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","dhcpLabel":{"name":"acctest_jgi6w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jgi6w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:01:30 [DEBUG] Exit from do method -2022/02/28 11:01:30 [DEBUG] acctest_jgi6w: Read finished successfully -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:01:30 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w/dhcpLabels/acctest_jgi6w: Beginning Read -2022/02/28 11:01:30 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:30 [DEBUG] Begin Injection -2022/02/28 11:01:30 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009789c0 1363 [] false false map[] 0xc00115c800 0xc0005d0000} -2022/02/28 11:01:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"id":"621c5e1e1d0000d9614fb948","displayName":"acctest_ifkqt","description":"","templates":[{"name":"acctest_ifkqt","displayName":"acctest_ifkqt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jgi6w","displayName":"acctest_jgi6w","bdRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/vrfs/acctest_jgi6w","dhcpLabel":{"name":"acctest_jgi6w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jgi6w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:01:30 [DEBUG] Exit from do method -2022/02/28 11:01:30 [DEBUG] /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w/dhcpLabels/acctest_jgi6w: Read finished successfully -2022/02/28 11:01:30 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:30 [DEBUG] New state was assigned lineage "7ae30b0d-b96e-84d5-5665-4a5e4dc6b82c" -2022/02/28 11:01:30 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:01:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:30 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:01:30 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_option_policy.example - description: "" => "" - id: "621c5e261b0000b207fd0c0f" => "" - name: "acctest_nskt7" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c5e2e1b0000b507fd0c10" => "" - name: "acctest_jgi6w" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c5e1e1d0000d9614fb948" => "" - name: "acctest_ifkqt" => "" - template_name: "acctest_ifkqt" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_jgi6w" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_jgi6w" => "" - id: "acctest_jgi6w" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_jgi6w" => "" - schema_id: "621c5e1e1d0000d9614fb948" => "" - template_name: "acctest_ifkqt" => "" - vrf_name: "acctest_jgi6w" => "" - vrf_schema_id: "621c5e1e1d0000d9614fb948" => "" - vrf_template_name: "acctest_ifkqt" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_jgi6w" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w/dhcpLabels/acctest_jgi6w" => "" - name: "acctest_jgi6w" => "" - schema_id: "621c5e1e1d0000d9614fb948" => "" - template_name: "acctest_ifkqt" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_jgi6w" => "" - id: "acctest_jgi6w" => "" - layer3_multicast: "false" => "" - name: "acctest_jgi6w" => "" - schema_id: "621c5e1e1d0000d9614fb948" => "" - template: "acctest_ifkqt" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.example: - ID = 621c5e261b0000b207fd0c0f - provider = provider.mso - description = - name = acctest_nskt7 - tenant_id = 620cf5ad1d0000ab504f9a3d -mso_dhcp_relay_policy.test: - ID = 621c5e2e1b0000b507fd0c10 - provider = provider.mso - description = - name = acctest_jgi6w - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5e1e1d0000d9614fb948 - provider = provider.mso - name = acctest_ifkqt - template_name = acctest_ifkqt - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_jgi6w - provider = provider.mso - dhcp_policy.name = acctest_jgi6w - dhcp_policy.version = 0 - display_name = acctest_jgi6w - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_jgi6w - schema_id = 621c5e1e1d0000d9614fb948 - template_name = acctest_ifkqt - vrf_name = acctest_jgi6w - vrf_schema_id = 621c5e1e1d0000d9614fb948 - vrf_template_name = acctest_ifkqt - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5e1e1d0000d9614fb948/templates/acctest_ifkqt/bds/acctest_jgi6w/dhcpLabels/acctest_jgi6w - provider = provider.mso - bd_name = acctest_jgi6w - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_jgi6w - schema_id = 621c5e1e1d0000d9614fb948 - template_name = acctest_ifkqt - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_jgi6w - provider = provider.mso - display_name = acctest_jgi6w - layer3_multicast = false - name = acctest_jgi6w - schema_id = 621c5e1e1d0000d9614fb948 - template = acctest_ifkqt - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:01:30 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:01:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:01:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:01:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:01:30 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:01:30 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:01:30 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:01:30 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:01:30 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:01:30 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:01:30 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:01:30 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:01:30 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change -2022/02/28 11:01:30 [DEBUG] Template BD: Beginning Update -2022/02/28 11:01:30 [DEBUG] 621c5e261b0000b207fd0c0f: Beginning Read -2022/02/28 11:01:30 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:30 [DEBUG] Begin Injection -2022/02/28 11:01:30 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:30 [DEBUG] Begin Injection -2022/02/28 11:01:30 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:30 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:30 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00115cc00 0xc0005d0000} -2022/02/28 11:01:30 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e261b0000b207fd0c0f -2022/02/28 11:01:30 [DEBUG] : Read finished successfully -2022/02/28 11:01:30 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000414b00 0xc000da8fd0} -2022/02/28 11:01:30 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:30 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:01:30 [DEBUG] 621c5e2e1b0000b507fd0c10: Beginning Read -2022/02/28 11:01:30 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:30 [DEBUG] Begin Injection -2022/02/28 11:01:30 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:01:30 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:30 [DEBUG] Template BD: Beginning Update -2022/02/28 11:01:30 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:30 [DEBUG] Begin Injection -2022/02/28 11:01:30 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:31 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00115d800 0xc000da8fd0} -2022/02/28 11:01:31 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e2e1b0000b507fd0c10 -2022/02/28 11:01:31 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:31 [DEBUG] : Read finished successfully -2022/02/28 11:01:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000414e00 0xc0005d0000} -2022/02/28 11:01:31 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:31 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:01:31 [DEBUG] acctest_jgi6w: Beginning Destroy -2022/02/28 11:01:31 HTTP request PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:31 [DEBUG] Begin Injection -2022/02/28 11:01:31 HTTP request after injection PATCH mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:31 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000415500 0xc0005d0000} -2022/02/28 11:01:31 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948?validate=false -2022/02/28 11:01:31 [DEBUG] acctest_jgi6w: Destroy finished successfully -2022/02/28 11:01:31 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:01:31 [DEBUG] 621c5e1e1d0000d9614fb948: Beginning Destroy -2022/02/28 11:01:31 HTTP request DELETE mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:31 [DEBUG] Begin Injection -2022/02/28 11:01:31 HTTP request after injection DELETE mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:31 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:31:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00115df00 0xc0005d0000} -2022/02/28 11:01:31 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:31 [DEBUG] 621c5e1e1d0000d9614fb948: Destroy finished successfully -2022/02/28 11:01:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:31 [DEBUG] New state was assigned lineage "23fc3399-8707-58de-1938-f1c5095b5c20" -2022/02/28 11:01:31 HTTP request GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:31 [DEBUG] Begin Injection -2022/02/28 11:01:31 HTTP request after injection GET mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 -2022/02/28 11:01:32 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:32 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000737d40 39 [] false false map[] 0xc000415800 0xc0005d0000} -2022/02/28 11:01:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e1e1d0000d9614fb948 {"code":404,"message":"Item not found"} -2022/02/28 11:01:32 [DEBUG] Exit from do method -2022/02/28 11:01:32 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:01:32 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:01:32 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:01:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:01:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:01:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:32 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:01:32 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:01:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:32 [DEBUG] : Beginning Read -2022/02/28 11:01:32 HTTP request GET mso/api/v1/tenants -2022/02/28 11:01:32 [DEBUG] Begin Injection -2022/02/28 11:01:32 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:01:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:01:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:31:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ab6200 5563 [] false false map[] 0xc000414800 0xc0005d0000} -2022/02/28 11:01:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:01:32 [DEBUG] Exit from do method -2022/02/28 11:01:32 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:01:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:01:32 [DEBUG] New state was assigned lineage "5f04d3cf-7a13-13db-5570-6fb49fcd3152" -2022/02/28 11:01:32 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:01:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:01:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:01:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:01:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:01:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:01:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:01:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:01:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:01:32 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:02:25 [DEBUG] Test: Executing step 0 -2022/02/28 11:02:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:25 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:25 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:02:25 [DEBUG] Test: Executing step 1 -2022/02/28 11:02:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:25 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:02:25 [DEBUG] Test: Executing step 2 -2022/02/28 11:02:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:25 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:02:25 [DEBUG] Test: Executing step 3 -2022/02/28 11:02:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:25 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:02:25 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:02:25 [DEBUG] Test: Executing step 4 -2022/02/28 11:02:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:25 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:25 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:02:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:25 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:25 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:02:25 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:25 [DEBUG] : Beginning Read -2022/02/28 11:02:25 HTTP request GET mso/api/v1/tenants -2022/02/28 11:02:25 [DEBUG] Begin Injection -2022/02/28 11:02:25 HTTP request POST /login -2022/02/28 11:02:25 HTTP request after injection POST /login -2022/02/28 11:02:25 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:02:27 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:02:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:27 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000648900 -1 [chunked] false false map[] 0xc0008b0600 0xc000aca0b0} -2022/02/28 11:02:27 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw"} -2022/02/28 11:02:27 [DEBUG] Exit from do method -2022/02/28 11:02:27 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:02:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a2180 5563 [] false false map[] 0xc0000a6300 0xc000aca0b0} -2022/02/28 11:02:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:02:27 [DEBUG] Exit from do method -2022/02/28 11:02:27 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:02:27 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:27 [DEBUG] New state was assigned lineage "9ae8c85d-c3d4-902e-f8ec-26a6ad3b02ce" -2022/02/28 11:02:27 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:02:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:27 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:27 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:27 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:02:27 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:27 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:02:27 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:02:27 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:27 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_aj6np" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_ewqek" - template_name: "" => "acctest_ewqek" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_aj6np" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_aj6np" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_ewqek" - vrf_name: "" => "acctest_aj6np" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_aj6np" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_aj6np" - schema_id: "" => "" - template_name: "" => "acctest_ewqek" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_aj6np" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_aj6np" - schema_id: "" => "" - template: "" => "acctest_ewqek" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:02:27 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:02:27 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:02:27 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:02:27 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:02:27 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:02:27 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:02:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:02:27 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:02:27 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:02:27 [DEBUG] Schema: Beginning Creation -2022/02/28 11:02:27 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:02:27 HTTP request POST mso/api/v1/schemas -2022/02/28 11:02:27 [DEBUG] Begin Injection -2022/02/28 11:02:27 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:02:27 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw] Content-Type:[application/json]] {{"displayName":"acctest_ewqek","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_ewqek","externalEpgs":[],"filters":[],"name":"acctest_ewqek","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xa77ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:02:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:02:27 [DEBUG] : Beginning Create -2022/02/28 11:02:27 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:02:27 [DEBUG] Begin Injection -2022/02/28 11:02:27 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:02:27 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw] Content-Type:[application/json]] {{"desc":"","name":"acctest_aj6np","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa77ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:02:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:02:28 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:02:28 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c5e6b1d0000e7614fb957] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a2680 400 [] false false map[] 0xc0008b0500 0xc000aca0b0} -2022/02/28 11:02:28 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:02:28 [DEBUG] Exit from do method -2022/02/28 11:02:28 [DEBUG] 621c5e6b1d0000e7614fb957: Schema Creation finished successfully -2022/02/28 11:02:28 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Read -2022/02/28 11:02:28 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:28 [DEBUG] Begin Injection -2022/02/28 11:02:28 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:28 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:02:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0fc0 160 [] false false map[] 0xc0000a6500 0xc000aca0b0} -2022/02/28 11:02:28 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5e6c1b0000c407fd0c11","name":"acctest_aj6np","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:28 [DEBUG] Exit from do method -2022/02/28 11:02:28 [DEBUG] 621c5e6c1b0000c407fd0c11: Creation finished successfully -2022/02/28 11:02:28 [DEBUG] 621c5e6c1b0000c407fd0c11: Beginning Read -2022/02/28 11:02:28 id: 621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:28 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:28 [DEBUG] Begin Injection -2022/02/28 11:02:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000649580 400 [] false false map[] 0xc0009f0000 0xc000aca0b0} -2022/02/28 11:02:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:02:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da12c0 160 [] false false map[] 0xc0009f0200 0xc0009fe210} -2022/02/28 11:02:29 [DEBUG] Exit from do method -2022/02/28 11:02:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 {"id":"621c5e6c1b0000c407fd0c11","name":"acctest_aj6np","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:29 [DEBUG] 621c5e6b1d0000e7614fb957: Read finished successfully -2022/02/28 11:02:29 [DEBUG] Exit from do method -2022/02/28 11:02:29 [DEBUG] 621c5e6c1b0000c407fd0c11: Read finished successfully -2022/02/28 11:02:29 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:02:29 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:02:29 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:29 [DEBUG] Begin Injection -2022/02/28 11:02:29 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:29 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:29 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a6c00 0xc000aca0b0} -2022/02/28 11:02:29 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:29 [DEBUG] acctest_aj6np: Creation finished successfully -2022/02/28 11:02:29 [DEBUG] acctest_aj6np: Beginning Read -2022/02/28 11:02:29 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:29 [DEBUG] Begin Injection -2022/02/28 11:02:29 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a3e00 768 [] false false map[] 0xc000c40300 0xc000aca0b0} -2022/02/28 11:02:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:02:29 [DEBUG] Exit from do method -2022/02/28 11:02:29 currentvrfname acctest_aj6np -2022/02/28 11:02:29 found correct vrfname -2022/02/28 11:02:29 [DEBUG] acctest_aj6np: Read finished successfully -2022/02/28 11:02:29 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:02:29 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:02:29 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:02:29 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:29 [DEBUG] Begin Injection -2022/02/28 11:02:29 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:30 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c40200 0xc0009fe6e0} -2022/02/28 11:02:30 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:30 [DEBUG] : Beginning Read -2022/02/28 11:02:30 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:30 [DEBUG] Begin Injection -2022/02/28 11:02:30 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c5d140 1277 [] false false map[] 0xc0008b0200 0xc0009fe6e0} -2022/02/28 11:02:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:02:30 [DEBUG] Exit from do method -2022/02/28 11:02:30 [DEBUG] acctest_aj6np: Read finished successfully -2022/02/28 11:02:30 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:02:30 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:02:30 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:30 [DEBUG] Begin Injection -2022/02/28 11:02:30 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:31 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0009f0300 0xc0009fe6e0} -2022/02/28 11:02:31 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:31 [DEBUG] Creation Complete -2022/02/28 11:02:31 [DEBUG] : Beginning Read -2022/02/28 11:02:31 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:31 [DEBUG] Begin Injection -2022/02/28 11:02:31 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a2180 1362 [] false false map[] 0xc000c40800 0xc0009fe6e0} -2022/02/28 11:02:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:02:31 [DEBUG] Exit from do method -2022/02/28 11:02:31 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully -2022/02/28 11:02:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:31 [DEBUG] New state was assigned lineage "7aaa4c05-cbba-3565-1d20-412d852bf9f5" -2022/02/28 11:02:31 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:31 [DEBUG] Begin Injection -2022/02/28 11:02:31 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000648600 1362 [] false false map[] 0xc0008b0000 0xc0009fe6e0} -2022/02/28 11:02:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:02:31 [DEBUG] Exit from do method -2022/02/28 11:02:31 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:02:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:31 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:02:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:31 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:02:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:31 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:02:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:31 [DEBUG] : Beginning Read -2022/02/28 11:02:31 HTTP request GET mso/api/v1/tenants -2022/02/28 11:02:31 [DEBUG] Begin Injection -2022/02/28 11:02:31 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:02:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a25c0 5563 [] false false map[] 0xc0009f0000 0xc0009fe6e0} -2022/02/28 11:02:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:02:32 [DEBUG] Exit from do method -2022/02/28 11:02:32 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:02:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:02:32 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Read -2022/02/28 11:02:32 [DEBUG] 621c5e6c1b0000c407fd0c11: Beginning Read -2022/02/28 11:02:32 id: 621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:32 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:32 [DEBUG] Begin Injection -2022/02/28 11:02:32 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:32 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:32 [DEBUG] Begin Injection -2022/02/28 11:02:32 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a96d00 160 [] false false map[] 0xc0008b0700 0xc0009fe6e0} -2022/02/28 11:02:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 {"id":"621c5e6c1b0000c407fd0c11","name":"acctest_aj6np","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:32 [DEBUG] Exit from do method -2022/02/28 11:02:32 [DEBUG] 621c5e6c1b0000c407fd0c11: Read finished successfully -2022/02/28 11:02:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a3940 1362 [] false false map[] 0xc000c40500 0xc000aca4d0} -2022/02/28 11:02:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:02:32 [DEBUG] Exit from do method -2022/02/28 11:02:32 [DEBUG] 621c5e6b1d0000e7614fb957: Read finished successfully -2022/02/28 11:02:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:32 [DEBUG] acctest_aj6np: Beginning Read -2022/02/28 11:02:32 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:32 [DEBUG] Begin Injection -2022/02/28 11:02:32 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c5c580 1362 [] false false map[] 0xc0000a6c00 0xc000aca4d0} -2022/02/28 11:02:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:02:32 [DEBUG] Exit from do method -2022/02/28 11:02:32 currentvrfname acctest_aj6np -2022/02/28 11:02:32 found correct vrfname -2022/02/28 11:02:32 [DEBUG] acctest_aj6np: Read finished successfully -2022/02/28 11:02:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:02:32 [DEBUG] acctest_aj6np: Beginning Read -2022/02/28 11:02:32 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:32 [DEBUG] Begin Injection -2022/02/28 11:02:32 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a96dc0 1362 [] false false map[] 0xc0000a7100 0xc000aca4d0} -2022/02/28 11:02:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:02:33 [DEBUG] Exit from do method -2022/02/28 11:02:33 [DEBUG] acctest_aj6np: Read finished successfully -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:02:33 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Read -2022/02/28 11:02:33 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:33 [DEBUG] Begin Injection -2022/02/28 11:02:33 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6b00 1362 [] false false map[] 0xc000c40a00 0xc000aca4d0} -2022/02/28 11:02:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:02:33 [DEBUG] Exit from do method -2022/02/28 11:02:33 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully -2022/02/28 11:02:33 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:33 [DEBUG] New state was assigned lineage "05575503-edce-b206-b3ff-6f2731d26e44" -2022/02/28 11:02:33 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:02:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:33 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:02:33 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:33 [DEBUG] Test: Executing step 5 -2022/02/28 11:02:33 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:33 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:02:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:02:33 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:02:33 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:33 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:02:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:33 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:02:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:33 [DEBUG] : Beginning Read -2022/02/28 11:02:33 HTTP request GET mso/api/v1/tenants -2022/02/28 11:02:33 [DEBUG] Begin Injection -2022/02/28 11:02:33 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:02:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0380 5563 [] false false map[] 0xc0008b0200 0xc000aca4d0} -2022/02/28 11:02:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:02:34 [DEBUG] Exit from do method -2022/02/28 11:02:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:02:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:02:34 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 11:02:34 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:02:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:34 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Read -2022/02/28 11:02:34 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:34 [DEBUG] Begin Injection -2022/02/28 11:02:34 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:34 [DEBUG] 621c5e6c1b0000c407fd0c11: Beginning Read -2022/02/28 11:02:34 id: 621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:34 [DEBUG] Begin Injection -2022/02/28 11:02:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000648780 1362 [] false false map[] 0xc0008b0900 0xc000aca4d0} -2022/02/28 11:02:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:02:34 [DEBUG] Exit from do method -2022/02/28 11:02:34 [DEBUG] 621c5e6b1d0000e7614fb957: Read finished successfully -2022/02/28 11:02:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:34 [DEBUG] acctest_aj6np: Beginning Read -2022/02/28 11:02:34 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:34 [DEBUG] Begin Injection -2022/02/28 11:02:34 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000496040 160 [] false false map[] 0xc0000a6500 0xc0009fe6e0} -2022/02/28 11:02:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 {"id":"621c5e6c1b0000c407fd0c11","name":"acctest_aj6np","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:34 [DEBUG] Exit from do method -2022/02/28 11:02:34 [DEBUG] 621c5e6c1b0000c407fd0c11: Read finished successfully -2022/02/28 11:02:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c5c400 1362 [] false false map[] 0xc0009f0f00 0xc000aca4d0} -2022/02/28 11:02:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:02:34 [DEBUG] Exit from do method -2022/02/28 11:02:34 currentvrfname acctest_aj6np -2022/02/28 11:02:34 found correct vrfname -2022/02/28 11:02:34 [DEBUG] acctest_aj6np: Read finished successfully -2022/02/28 11:02:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:02:34 [DEBUG] acctest_aj6np: Beginning Read -2022/02/28 11:02:34 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:34 [DEBUG] Begin Injection -2022/02/28 11:02:34 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000496340 1362 [] false false map[] 0xc000940400 0xc000aca4d0} -2022/02/28 11:02:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:02:35 [DEBUG] Exit from do method -2022/02/28 11:02:35 [DEBUG] acctest_aj6np: Read finished successfully -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:02:35 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Read -2022/02/28 11:02:35 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:35 [DEBUG] Begin Injection -2022/02/28 11:02:35 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000497b80 1362 [] false false map[] 0xc0000a6300 0xc000aca4d0} -2022/02/28 11:02:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:02:35 [DEBUG] Exit from do method -2022/02/28 11:02:35 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully -2022/02/28 11:02:35 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:35 [DEBUG] New state was assigned lineage "a3cd4121-4fdf-5dfe-5a8a-fb51b30944cd" -2022/02/28 11:02:35 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:02:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:35 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:35 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:02:35 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:35 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.example - description: "" => "" - id: "" => "" - name: "" => "acctest_2i1fb" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -UPDATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_aj6np" => "acctest_aj6np" - dhcp_option_name: "" => "acctest_2i1fb" - dhcp_option_version: "0" => "1" - id: "/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np" => "/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np" - name: "acctest_aj6np" => "acctest_aj6np" - schema_id: "621c5e6b1d0000e7614fb957" => "621c5e6b1d0000e7614fb957" - template_name: "acctest_ewqek" => "acctest_ewqek" - version: "0" => "1" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c5e6c1b0000c407fd0c11 - provider = provider.mso - description = - name = acctest_aj6np - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5e6b1d0000e7614fb957 - provider = provider.mso - name = acctest_ewqek - template_name = acctest_ewqek - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_aj6np - provider = provider.mso - dhcp_policy.name = acctest_aj6np - dhcp_policy.version = 0 - display_name = acctest_aj6np - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_aj6np - schema_id = 621c5e6b1d0000e7614fb957 - template_name = acctest_ewqek - vrf_name = acctest_aj6np - vrf_schema_id = 621c5e6b1d0000e7614fb957 - vrf_template_name = acctest_ewqek - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np - provider = provider.mso - bd_name = acctest_aj6np - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_aj6np - schema_id = 621c5e6b1d0000e7614fb957 - template_name = acctest_ewqek - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_aj6np - provider = provider.mso - display_name = acctest_aj6np - layer3_multicast = false - name = acctest_aj6np - schema_id = 621c5e6b1d0000e7614fb957 - template = acctest_ewqek - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:02:35 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:02:35 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 11:02:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.example mso_dhcp_option_policy.example mso_dhcp_option_policy.example (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (prepare state)" references: [] -2022/02/28 11:02:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:02:35 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:02:35 [DEBUG] mso_dhcp_option_policy.example: applying the planned Create change -2022/02/28 11:02:35 [DEBUG] : Beginning Create -2022/02/28 11:02:35 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 11:02:35 [DEBUG] Begin Injection -2022/02/28 11:02:35 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 11:02:35 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_2i1fb","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa77ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:02:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:02:36 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:02:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0040 161 [] false false map[] 0xc0008b0c00 0xc000aca4d0} -2022/02/28 11:02:36 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c5e741b0000c607fd0c12","name":"acctest_2i1fb","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:36 [DEBUG] Exit from do method -2022/02/28 11:02:36 [DEBUG] 621c5e741b0000c607fd0c12: Creation finished successfully -2022/02/28 11:02:36 [DEBUG] 621c5e741b0000c607fd0c12: Beginning Read -2022/02/28 11:02:36 id: 621c5e741b0000c607fd0c12 -2022/02/28 11:02:36 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:36 [DEBUG] Begin Injection -2022/02/28 11:02:36 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c5c500 161 [] false false map[] 0xc000dfa200 0xc000aca4d0} -2022/02/28 11:02:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 {"id":"621c5e741b0000c607fd0c12","name":"acctest_2i1fb","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:36 [DEBUG] Exit from do method -2022/02/28 11:02:36 [DEBUG] 621c5e741b0000c607fd0c12: Read finished successfully -2022/02/28 11:02:36 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change -2022/02/28 11:02:36 [DEBUG] Template BD: Beginning Update -2022/02/28 11:02:36 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:36 [DEBUG] Begin Injection -2022/02/28 11:02:36 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:37 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000b22200 0xc000aca4d0} -2022/02/28 11:02:37 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:37 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Read -2022/02/28 11:02:37 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:37 [DEBUG] Begin Injection -2022/02/28 11:02:37 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da00c0 1472 [] false false map[] 0xc000b22400 0xc000aca4d0} -2022/02/28 11:02:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:02:37 [DEBUG] Exit from do method -2022/02/28 11:02:37 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully -2022/02/28 11:02:37 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:37 [DEBUG] New state was assigned lineage "9ae3d4f0-7661-96e1-37c1-bf3121121225" -2022/02/28 11:02:37 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:37 [DEBUG] Begin Injection -2022/02/28 11:02:37 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0a00 1472 [] false false map[] 0xc000dfa000 0xc000aca4d0} -2022/02/28 11:02:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:02:37 [DEBUG] Exit from do method -2022/02/28 11:02:37 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:02:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:02:37 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:02:37 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:37 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:02:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:37 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:02:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:37 [DEBUG] : Beginning Read -2022/02/28 11:02:37 HTTP request GET mso/api/v1/tenants -2022/02/28 11:02:37 [DEBUG] Begin Injection -2022/02/28 11:02:37 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:02:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a97c00 5563 [] false false map[] 0xc000dfb000 0xc000aca4d0} -2022/02/28 11:02:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:02:38 [DEBUG] Exit from do method -2022/02/28 11:02:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:02:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:02:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:02:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:38 [DEBUG] 621c5e741b0000c607fd0c12: Beginning Read -2022/02/28 11:02:38 id: 621c5e741b0000c607fd0c12 -2022/02/28 11:02:38 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:38 [DEBUG] Begin Injection -2022/02/28 11:02:38 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:38 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Read -2022/02/28 11:02:38 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:38 [DEBUG] Begin Injection -2022/02/28 11:02:38 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:38 [DEBUG] 621c5e6c1b0000c407fd0c11: Beginning Read -2022/02/28 11:02:38 id: 621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:38 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:38 [DEBUG] Begin Injection -2022/02/28 11:02:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000196cc0 161 [] false false map[] 0xc000dfa200 0xc000aca4d0} -2022/02/28 11:02:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 {"id":"621c5e741b0000c607fd0c12","name":"acctest_2i1fb","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000de02c0 1472 [] false false map[] 0xc000cb2100 0xc0009fe6e0} -2022/02/28 11:02:38 [DEBUG] Exit from do method -2022/02/28 11:02:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:02:38 [DEBUG] Exit from do method -2022/02/28 11:02:38 [DEBUG] 621c5e741b0000c607fd0c12: Read finished successfully -2022/02/28 11:02:38 [DEBUG] 621c5e6b1d0000e7614fb957: Read finished successfully -2022/02/28 11:02:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:38 [DEBUG] acctest_aj6np: Beginning Read -2022/02/28 11:02:38 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:38 [DEBUG] Begin Injection -2022/02/28 11:02:38 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000de0400 160 [] false false map[] 0xc0008b0500 0xc000aca4d0} -2022/02/28 11:02:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 {"id":"621c5e6c1b0000c407fd0c11","name":"acctest_aj6np","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:39 [DEBUG] Exit from do method -2022/02/28 11:02:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001970c0 1472 [] false false map[] 0xc0008b0a00 0xc0009fe6e0} -2022/02/28 11:02:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:02:39 [DEBUG] 621c5e6c1b0000c407fd0c11: Read finished successfully -2022/02/28 11:02:39 [DEBUG] Exit from do method -2022/02/28 11:02:39 currentvrfname acctest_aj6np -2022/02/28 11:02:39 found correct vrfname -2022/02/28 11:02:39 [DEBUG] acctest_aj6np: Read finished successfully -2022/02/28 11:02:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:02:39 [DEBUG] acctest_aj6np: Beginning Read -2022/02/28 11:02:39 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:39 [DEBUG] Begin Injection -2022/02/28 11:02:39 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0040 1472 [] false false map[] 0xc000dfa800 0xc0009fe6e0} -2022/02/28 11:02:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:02:41 [DEBUG] Exit from do method -2022/02/28 11:02:41 [DEBUG] acctest_aj6np: Read finished successfully -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:02:41 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Read -2022/02/28 11:02:41 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:41 [DEBUG] Begin Injection -2022/02/28 11:02:41 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000196d40 1472 [] false false map[] 0xc0000a6400 0xc0009fe4d0} -2022/02/28 11:02:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:02:41 [DEBUG] Exit from do method -2022/02/28 11:02:41 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully -2022/02/28 11:02:41 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:41 [DEBUG] New state was assigned lineage "498ec63f-f2ff-2cd2-1b27-26e8e8a2f9b1" -2022/02/28 11:02:41 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:02:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:41 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:02:41 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:41 [DEBUG] Test: Executing step 6 -2022/02/28 11:02:41 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np\")" (*terraform.graphNodeImportState) needs provider.mso -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np\")" references: [] -2022/02/28 11:02:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:41 [DEBUG] Starting graph walk: walkImport -2022/02/28 11:02:41 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Import -2022/02/28 11:02:41 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:41 [DEBUG] Begin Injection -2022/02/28 11:02:41 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005c4740 1472 [] false false map[] 0xc0008b0300 0xc0009fe4d0} -2022/02/28 11:02:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:02:42 [DEBUG] Exit from do method -2022/02/28 11:02:42 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Import finished successfully -2022/02/28 11:02:42 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Read -2022/02/28 11:02:42 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:42 [DEBUG] Begin Injection -2022/02/28 11:02:42 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006485c0 1472 [] false false map[] 0xc0008b0600 0xc0009fe4d0} -2022/02/28 11:02:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:02:42 [DEBUG] Exit from do method -2022/02/28 11:02:42 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully -2022/02/28 11:02:42 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:42 [DEBUG] New state was assigned lineage "e9b12bf0-9bb1-868a-7021-bdac2cb3689f" -2022/02/28 11:02:42 [DEBUG] Test: Executing step 7 -2022/02/28 11:02:42 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:42 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:02:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:42 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:02:42 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:42 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config -2022/02/28 11:02:42 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:02:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:02:42 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:02:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:42 [DEBUG] : Beginning Read -2022/02/28 11:02:42 HTTP request GET mso/api/v1/tenants -2022/02/28 11:02:42 [DEBUG] Begin Injection -2022/02/28 11:02:42 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:02:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a2580 5563 [] false false map[] 0xc000dfa500 0xc0009fe4d0} -2022/02/28 11:02:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:02:43 [DEBUG] Exit from do method -2022/02/28 11:02:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:02:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:02:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:43 [DEBUG] 621c5e741b0000c607fd0c12: Beginning Read -2022/02/28 11:02:43 [DEBUG] 621c5e6c1b0000c407fd0c11: Beginning Read -2022/02/28 11:02:43 id: 621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:43 id: 621c5e741b0000c607fd0c12 -2022/02/28 11:02:43 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:43 [DEBUG] Begin Injection -2022/02/28 11:02:43 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:43 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Read -2022/02/28 11:02:43 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:43 [DEBUG] Begin Injection -2022/02/28 11:02:43 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:43 [DEBUG] Begin Injection -2022/02/28 11:02:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:43 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0040 160 [] false false map[] 0xc0008b0800 0xc0009fe4d0} -2022/02/28 11:02:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000de0040 161 [] false false map[] 0xc0001a0100 0xc000aca4d0} -2022/02/28 11:02:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 {"id":"621c5e6c1b0000c407fd0c11","name":"acctest_aj6np","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 {"id":"621c5e741b0000c607fd0c12","name":"acctest_2i1fb","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:43 [DEBUG] Exit from do method -2022/02/28 11:02:43 [DEBUG] Exit from do method -2022/02/28 11:02:43 [DEBUG] 621c5e6c1b0000c407fd0c11: Read finished successfully -2022/02/28 11:02:43 [DEBUG] 621c5e741b0000c607fd0c12: Read finished successfully -2022/02/28 11:02:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c5c1c0 1472 [] false false map[] 0xc000dfac00 0xc0009fe4d0} -2022/02/28 11:02:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:02:44 [DEBUG] Exit from do method -2022/02/28 11:02:44 [DEBUG] 621c5e6b1d0000e7614fb957: Read finished successfully -2022/02/28 11:02:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:44 [DEBUG] acctest_aj6np: Beginning Read -2022/02/28 11:02:44 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:44 [DEBUG] Begin Injection -2022/02/28 11:02:44 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0580 1472 [] false false map[] 0xc000dfa200 0xc0009fe4d0} -2022/02/28 11:02:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:02:44 [DEBUG] Exit from do method -2022/02/28 11:02:44 currentvrfname acctest_aj6np -2022/02/28 11:02:44 found correct vrfname -2022/02/28 11:02:44 [DEBUG] acctest_aj6np: Read finished successfully -2022/02/28 11:02:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:02:44 [DEBUG] acctest_aj6np: Beginning Read -2022/02/28 11:02:44 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:44 [DEBUG] Begin Injection -2022/02/28 11:02:44 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000196d40 1472 [] false false map[] 0xc0008b0a00 0xc000aca000} -2022/02/28 11:02:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:02:44 [DEBUG] Exit from do method -2022/02/28 11:02:44 [DEBUG] acctest_aj6np: Read finished successfully -2022/02/28 11:02:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:02:44 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Beginning Read -2022/02/28 11:02:44 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:44 [DEBUG] Begin Injection -2022/02/28 11:02:44 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0b00 1472 [] false false map[] 0xc0001a0600 0xc000aca000} -2022/02/28 11:02:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_aj6np","displayName":"acctest_aj6np","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_aj6np","dhcpLabel":{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_aj6np","dhcpOptionLabel":{"name":"acctest_2i1fb","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:02:45 [DEBUG] Exit from do method -2022/02/28 11:02:45 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np: Read finished successfully -2022/02/28 11:02:45 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:45 [DEBUG] New state was assigned lineage "10851a1d-a6b2-382d-2430-0dce2ac9a616" -2022/02/28 11:02:45 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:02:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (orphan)" references: [data.mso_tenant.test] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:45 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:02:45 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:45 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.example - description: "" => "" - id: "621c5e741b0000c607fd0c12" => "" - name: "acctest_2i1fb" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c5e6c1b0000c407fd0c11" => "" - name: "acctest_aj6np" => "acctest_7jwgo" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - dhcp_policy.dhcp_option_policy_name: "acctest_2i1fb" => "" - dhcp_policy.dhcp_option_policy_version: "1" => "" - dhcp_policy.name: "acctest_aj6np" => "" - dhcp_policy.version: "1" => "" - display_name: "acctest_aj6np" => "acctest_7jwgo" (forces new resource) - id: "acctest_aj6np" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_aj6np" => "acctest_7jwgo" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c5e6b1d0000e7614fb957" => "621c5e6b1d0000e7614fb957" - template_name: "acctest_ewqek" => "acctest_ewqek" - vrf_name: "acctest_aj6np" => "acctest_7jwgo" - vrf_schema_id: "621c5e6b1d0000e7614fb957" => "" - vrf_template_name: "acctest_ewqek" => "" -DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_aj6np" => "acctest_7jwgo" (forces new resource) - dhcp_option_name: "acctest_2i1fb" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np" => "" - name: "acctest_aj6np" => "acctest_7jwgo" (forces new resource) - schema_id: "621c5e6b1d0000e7614fb957" => "621c5e6b1d0000e7614fb957" - template_name: "acctest_ewqek" => "acctest_ewqek" - version: "1" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_aj6np" => "acctest_7jwgo" - id: "acctest_aj6np" => "" - layer3_multicast: "false" => "" - name: "acctest_aj6np" => "acctest_7jwgo" (forces new resource) - schema_id: "621c5e6b1d0000e7614fb957" => "621c5e6b1d0000e7614fb957" - template: "acctest_ewqek" => "acctest_ewqek" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.example: - ID = 621c5e741b0000c607fd0c12 - provider = provider.mso - description = - name = acctest_2i1fb - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c5e6c1b0000c407fd0c11 - provider = provider.mso - description = - name = acctest_aj6np - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5e6b1d0000e7614fb957 - provider = provider.mso - name = acctest_ewqek - template_name = acctest_ewqek - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_aj6np - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_2i1fb - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_aj6np - dhcp_policy.version = 1 - display_name = acctest_aj6np - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_aj6np - schema_id = 621c5e6b1d0000e7614fb957 - template_name = acctest_ewqek - vrf_name = acctest_aj6np - vrf_schema_id = 621c5e6b1d0000e7614fb957 - vrf_template_name = acctest_ewqek - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_aj6np/dhcpLabels/acctest_aj6np - provider = provider.mso - bd_name = acctest_aj6np - dhcp_option_name = acctest_2i1fb - dhcp_option_version = 1 - name = acctest_aj6np - schema_id = 621c5e6b1d0000e7614fb957 - template_name = acctest_ewqek - version = 1 - - Dependencies: - mso_dhcp_option_policy.example - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_aj6np - provider = provider.mso - display_name = acctest_aj6np - layer3_multicast = false - name = acctest_aj6np - schema_id = 621c5e6b1d0000e7614fb957 - template = acctest_ewqek - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:02:45 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:02:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:02:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:02:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:45 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:02:45 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change -2022/02/28 11:02:45 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:02:45 [DEBUG] 621c5e741b0000c607fd0c12: Beginning Read -2022/02/28 11:02:45 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:45 [DEBUG] Begin Injection -2022/02/28 11:02:45 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:45 [DEBUG] Template BD: Beginning Update -2022/02/28 11:02:45 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:45 [DEBUG] Begin Injection -2022/02/28 11:02:45 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:45 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:45 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:45 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[84] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:45 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e70c0 84 [] false false map[] 0xc0000a6f00 0xc000aca000} -2022/02/28 11:02:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0008b0500 0xc000aca4d0} -2022/02/28 11:02:45 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 {"code":144,"message":"Cannot Delete Resource: Policy acctest_2i1fb is being used."} -2022/02/28 11:02:45 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:45 [DEBUG] mso_dhcp_option_policy.example: apply errored, but we're indicating that via the Error pointer rather than returning it: Unable to delete the object -2022/02/28 11:02:45 [ERROR] : eval: *terraform.EvalApplyPost, err: Unable to delete the object -2022/02/28 11:02:45 [ERROR] : eval: *terraform.EvalSequence, err: Unable to delete the object -2022/02/28 11:02:45 [ERROR] : eval: *terraform.EvalOpFilter, err: Unable to delete the object -2022/02/28 11:02:45 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:02:45 [DEBUG] 621c5e6c1b0000c407fd0c11: Beginning Read -2022/02/28 11:02:45 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:45 [DEBUG] Begin Injection -2022/02/28 11:02:45 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:45 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:02:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:45 [DEBUG] Template BD: Beginning Update -2022/02/28 11:02:45 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:45 [DEBUG] Begin Injection -2022/02/28 11:02:45 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:45 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0001a0c00 0xc000aca000} -2022/02/28 11:02:45 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e6c1b0000c407fd0c11 -2022/02/28 11:02:45 [DEBUG] : Read finished successfully -2022/02/28 11:02:45 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:02:45 [DEBUG] : Beginning Create -2022/02/28 11:02:45 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:02:45 [DEBUG] Begin Injection -2022/02/28 11:02:45 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:02:45 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3NTQ3LCJpYXQiOjE2NDYwMjYzNDcsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTzZLekhhN0R6YnE4T1lrM0xmeWgwV3lDIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Y05FZ693zNH7vlqpn4sGUl8TzKNIQulqcqkWDYwMeNMc4RB99W2156UVqmCZbw0eqJ9Tv_KtHj_rKZZt3LvYho4KZCzIFnjowmEgHedVC2bPJUNgKdFSTaLMGFs4zKBcZSSqsXnluK8AaXSWvkJV8sRSB1syqqqqSJtyB1rylw0wYvtUtsDCOaxF3FTb8S82h6D36zOau-nFeL2xF2BhwhwnErmY1owRSMXDXpq_UpNSeznmgYxTxUUwK5HbwSz6Sh8YhRAHU2R0Wj2bA99hswcf0gq-iTx1WpQ5WCmmdOHhlEscycfzpwpec12zTDKp0tU80z7cKS6lNfViXcVRUw] Content-Type:[application/json]] {{"desc":"","name":"acctest_7jwgo","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa77ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:02:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:02:45 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0008b0d00 0xc000aca4d0} -2022/02/28 11:02:45 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:45 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:02:45 [DEBUG] acctest_aj6np: Beginning Destroy -2022/02/28 11:02:45 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:45 [DEBUG] Begin Injection -2022/02/28 11:02:45 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:46 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001a1200 0xc000aca4d0} -2022/02/28 11:02:46 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:46 [DEBUG] acctest_aj6np: Destroy finished successfully -2022/02/28 11:02:46 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:02:46 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:02:46 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:46 [DEBUG] Begin Injection -2022/02/28 11:02:46 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:46 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:02:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010053c0 160 [] false false map[] 0xc0008b1800 0xc000aca000} -2022/02/28 11:02:46 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5e7e1b0000c707fd0c13","name":"acctest_7jwgo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:46 [DEBUG] Exit from do method -2022/02/28 11:02:46 [DEBUG] 621c5e7e1b0000c707fd0c13: Creation finished successfully -2022/02/28 11:02:46 [DEBUG] 621c5e7e1b0000c707fd0c13: Beginning Read -2022/02/28 11:02:46 id: 621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:46 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:46 [DEBUG] Begin Injection -2022/02/28 11:02:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000de0180 160 [] false false map[] 0xc0008b1d00 0xc000aca000} -2022/02/28 11:02:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 {"id":"621c5e7e1b0000c707fd0c13","name":"acctest_7jwgo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:46 [DEBUG] Exit from do method -2022/02/28 11:02:46 [DEBUG] 621c5e7e1b0000c707fd0c13: Read finished successfully -2022/02/28 11:02:46 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000fbc700 0xc000aca4d0} -2022/02/28 11:02:46 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:46 [DEBUG] acctest_7jwgo: Creation finished successfully -2022/02/28 11:02:46 [DEBUG] acctest_7jwgo: Beginning Read -2022/02/28 11:02:46 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:46 [DEBUG] Begin Injection -2022/02/28 11:02:46 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c5cec0 768 [] false false map[] 0xc000dfa200 0xc000aca4d0} -2022/02/28 11:02:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 11:02:46 [DEBUG] Exit from do method -2022/02/28 11:02:46 currentvrfname acctest_7jwgo -2022/02/28 11:02:46 found correct vrfname -2022/02/28 11:02:46 [DEBUG] acctest_7jwgo: Read finished successfully -2022/02/28 11:02:46 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:02:46 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:02:46 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:02:46 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:46 [DEBUG] Begin Injection -2022/02/28 11:02:46 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:47 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000dfa300 0xc000aca4d0} -2022/02/28 11:02:47 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:47 [DEBUG] : Beginning Read -2022/02/28 11:02:47 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:47 [DEBUG] Begin Injection -2022/02/28 11:02:47 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000de00c0 1278 [] false false map[] 0xc0000a6700 0xc000aca4d0} -2022/02/28 11:02:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 11:02:47 [DEBUG] Exit from do method -2022/02/28 11:02:47 [DEBUG] acctest_7jwgo: Read finished successfully -2022/02/28 11:02:47 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:02:47 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:02:47 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:47 [DEBUG] Begin Injection -2022/02/28 11:02:47 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:48 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:48 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0008b0600 0xc000aca4d0} -2022/02/28 11:02:48 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:48 [DEBUG] Creation Complete -2022/02/28 11:02:48 [DEBUG] : Beginning Read -2022/02/28 11:02:48 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:48 [DEBUG] Begin Injection -2022/02/28 11:02:48 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000196140 1363 [] false false map[] 0xc0008b0800 0xc000aca4d0} -2022/02/28 11:02:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","dhcpLabel":{"name":"acctest_7jwgo","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7jwgo","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:02:48 [DEBUG] Exit from do method -2022/02/28 11:02:48 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo/dhcpLabels/acctest_7jwgo: Read finished successfully -2022/02/28 11:02:48 [DEBUG] New state was assigned lineage "ae12d767-683d-1a09-dfb3-7434c710fc86" -2022/02/28 11:02:48 [WARN] Test: Executing destroy step -2022/02/28 11:02:48 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:48 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:02:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:48 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:02:48 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:48 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config -2022/02/28 11:02:48 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:02:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:02:48 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:48 [DEBUG] 621c5e741b0000c607fd0c12: Beginning Read -2022/02/28 11:02:48 id: 621c5e741b0000c607fd0c12 -2022/02/28 11:02:48 HTTP request GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:48 [DEBUG] Begin Injection -2022/02/28 11:02:48 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:48 [DEBUG] : Beginning Read -2022/02/28 11:02:48 HTTP request GET mso/api/v1/tenants -2022/02/28 11:02:48 [DEBUG] Begin Injection -2022/02/28 11:02:48 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:02:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da04c0 161 [] false false map[] 0xc0000a7d00 0xc000aca4d0} -2022/02/28 11:02:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 {"id":"621c5e741b0000c607fd0c12","name":"acctest_2i1fb","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:48 [DEBUG] Exit from do method -2022/02/28 11:02:48 [DEBUG] 621c5e741b0000c607fd0c12: Read finished successfully -2022/02/28 11:02:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a2040 5563 [] false false map[] 0xc0008b0d00 0xc000aca000} -2022/02/28 11:02:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:02:48 [DEBUG] Exit from do method -2022/02/28 11:02:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:02:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:02:48 [DEBUG] 621c5e7e1b0000c707fd0c13: Beginning Read -2022/02/28 11:02:48 id: 621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:48 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Read -2022/02/28 11:02:48 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:48 [DEBUG] Begin Injection -2022/02/28 11:02:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:48 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:48 [DEBUG] Begin Injection -2022/02/28 11:02:48 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000da0940 160 [] false false map[] 0xc000dfa400 0xc000aca4d0} -2022/02/28 11:02:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b2ea80 1363 [] false false map[] 0xc000e30000 0xc000aca000} -2022/02/28 11:02:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","dhcpLabel":{"name":"acctest_7jwgo","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7jwgo","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:02:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 {"id":"621c5e7e1b0000c707fd0c13","name":"acctest_7jwgo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:02:49 [DEBUG] Exit from do method -2022/02/28 11:02:49 [DEBUG] Exit from do method -2022/02/28 11:02:49 [DEBUG] 621c5e6b1d0000e7614fb957: Read finished successfully -2022/02/28 11:02:49 [DEBUG] 621c5e7e1b0000c707fd0c13: Read finished successfully -2022/02/28 11:02:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:02:49 [DEBUG] acctest_7jwgo: Beginning Read -2022/02/28 11:02:49 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:49 [DEBUG] Begin Injection -2022/02/28 11:02:49 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e61c0 1363 [] false false map[] 0xc000e30400 0xc000aca000} -2022/02/28 11:02:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","dhcpLabel":{"name":"acctest_7jwgo","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7jwgo","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:02:49 [DEBUG] Exit from do method -2022/02/28 11:02:49 currentvrfname acctest_7jwgo -2022/02/28 11:02:49 found correct vrfname -2022/02/28 11:02:49 [DEBUG] acctest_7jwgo: Read finished successfully -2022/02/28 11:02:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:02:49 [DEBUG] acctest_7jwgo: Beginning Read -2022/02/28 11:02:49 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:49 [DEBUG] Begin Injection -2022/02/28 11:02:49 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b2f8c0 1363 [] false false map[] 0xc000e30900 0xc000aca000} -2022/02/28 11:02:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","dhcpLabel":{"name":"acctest_7jwgo","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7jwgo","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:02:50 [DEBUG] Exit from do method -2022/02/28 11:02:50 [DEBUG] acctest_7jwgo: Read finished successfully -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:02:50 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo/dhcpLabels/acctest_7jwgo: Beginning Read -2022/02/28 11:02:50 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:50 [DEBUG] Begin Injection -2022/02/28 11:02:50 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6840 1363 [] false false map[] 0xc0000a6e00 0xc000aca000} -2022/02/28 11:02:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"id":"621c5e6b1d0000e7614fb957","displayName":"acctest_ewqek","description":"","templates":[{"name":"acctest_ewqek","displayName":"acctest_ewqek","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7jwgo","displayName":"acctest_7jwgo","bdRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/vrfs/acctest_7jwgo","dhcpLabel":{"name":"acctest_7jwgo","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7jwgo","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:02:50 [DEBUG] Exit from do method -2022/02/28 11:02:50 [DEBUG] /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo/dhcpLabels/acctest_7jwgo: Read finished successfully -2022/02/28 11:02:50 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:50 [DEBUG] New state was assigned lineage "49221d84-8733-a9e6-b139-9aa3984d004e" -2022/02/28 11:02:50 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:02:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:50 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:02:50 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_option_policy.example - description: "" => "" - id: "621c5e741b0000c607fd0c12" => "" - name: "acctest_2i1fb" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c5e7e1b0000c707fd0c13" => "" - name: "acctest_7jwgo" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c5e6b1d0000e7614fb957" => "" - name: "acctest_ewqek" => "" - template_name: "acctest_ewqek" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_7jwgo" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_7jwgo" => "" - id: "acctest_7jwgo" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_7jwgo" => "" - schema_id: "621c5e6b1d0000e7614fb957" => "" - template_name: "acctest_ewqek" => "" - vrf_name: "acctest_7jwgo" => "" - vrf_schema_id: "621c5e6b1d0000e7614fb957" => "" - vrf_template_name: "acctest_ewqek" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_7jwgo" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo/dhcpLabels/acctest_7jwgo" => "" - name: "acctest_7jwgo" => "" - schema_id: "621c5e6b1d0000e7614fb957" => "" - template_name: "acctest_ewqek" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_7jwgo" => "" - id: "acctest_7jwgo" => "" - layer3_multicast: "false" => "" - name: "acctest_7jwgo" => "" - schema_id: "621c5e6b1d0000e7614fb957" => "" - template: "acctest_ewqek" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.example: - ID = 621c5e741b0000c607fd0c12 - provider = provider.mso - description = - name = acctest_2i1fb - tenant_id = 620cf5ad1d0000ab504f9a3d -mso_dhcp_relay_policy.test: - ID = 621c5e7e1b0000c707fd0c13 - provider = provider.mso - description = - name = acctest_7jwgo - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5e6b1d0000e7614fb957 - provider = provider.mso - name = acctest_ewqek - template_name = acctest_ewqek - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_7jwgo - provider = provider.mso - dhcp_policy.name = acctest_7jwgo - dhcp_policy.version = 0 - display_name = acctest_7jwgo - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_7jwgo - schema_id = 621c5e6b1d0000e7614fb957 - template_name = acctest_ewqek - vrf_name = acctest_7jwgo - vrf_schema_id = 621c5e6b1d0000e7614fb957 - vrf_template_name = acctest_ewqek - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5e6b1d0000e7614fb957/templates/acctest_ewqek/bds/acctest_7jwgo/dhcpLabels/acctest_7jwgo - provider = provider.mso - bd_name = acctest_7jwgo - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_7jwgo - schema_id = 621c5e6b1d0000e7614fb957 - template_name = acctest_ewqek - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_7jwgo - provider = provider.mso - display_name = acctest_7jwgo - layer3_multicast = false - name = acctest_7jwgo - schema_id = 621c5e6b1d0000e7614fb957 - template = acctest_ewqek - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:02:50 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:02:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example (clean up state) -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:02:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:02:50 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:02:50 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:02:50 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:02:50 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:02:50 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:02:50 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:02:50 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:02:50 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change -2022/02/28 11:02:50 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:02:50 [DEBUG] 621c5e741b0000c607fd0c12: Beginning Read -2022/02/28 11:02:50 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:50 [DEBUG] Begin Injection -2022/02/28 11:02:50 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:50 [DEBUG] Template BD: Beginning Update -2022/02/28 11:02:50 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:50 [DEBUG] Begin Injection -2022/02/28 11:02:50 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:50 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:50 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0011a8f00 0xc000aca4d0} -2022/02/28 11:02:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000f9d200 0xc000aca000} -2022/02/28 11:02:50 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5e741b0000c607fd0c12 -2022/02/28 11:02:50 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:50 [DEBUG] : Read finished successfully -2022/02/28 11:02:50 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:02:50 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:02:50 [DEBUG] 621c5e7e1b0000c707fd0c13: Beginning Read -2022/02/28 11:02:50 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:50 [DEBUG] Begin Injection -2022/02/28 11:02:50 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:50 [DEBUG] Template BD: Beginning Update -2022/02/28 11:02:50 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:50 [DEBUG] Begin Injection -2022/02/28 11:02:50 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:51 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f9c300 0xc000aca000} -2022/02/28 11:02:51 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:51 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000dfa100 0xc000aca4d0} -2022/02/28 11:02:51 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5e7e1b0000c707fd0c13 -2022/02/28 11:02:51 [DEBUG] : Read finished successfully -2022/02/28 11:02:51 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:02:51 [DEBUG] acctest_7jwgo: Beginning Destroy -2022/02/28 11:02:51 HTTP request PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:51 [DEBUG] Begin Injection -2022/02/28 11:02:51 HTTP request after injection PATCH mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:51 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f9cb00 0xc000aca000} -2022/02/28 11:02:51 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957?validate=false -2022/02/28 11:02:51 [DEBUG] acctest_7jwgo: Destroy finished successfully -2022/02/28 11:02:51 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:02:51 [DEBUG] 621c5e6b1d0000e7614fb957: Beginning Destroy -2022/02/28 11:02:51 HTTP request DELETE mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:51 [DEBUG] Begin Injection -2022/02/28 11:02:51 HTTP request after injection DELETE mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:52 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:32:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000dfa800 0xc000aca000} -2022/02/28 11:02:52 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:52 [DEBUG] 621c5e6b1d0000e7614fb957: Destroy finished successfully -2022/02/28 11:02:52 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:52 [DEBUG] New state was assigned lineage "d4b8f3a0-ab54-d789-25f4-47c237ae8cd0" -2022/02/28 11:02:52 HTTP request GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:52 [DEBUG] Begin Injection -2022/02/28 11:02:52 HTTP request after injection GET mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:52 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 -2022/02/28 11:02:52 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:52 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000752040 39 [] false false map[] 0xc0000a6500 0xc000aca000} -2022/02/28 11:02:52 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5e6b1d0000e7614fb957 {"code":404,"message":"Item not found"} -2022/02/28 11:02:52 [DEBUG] Exit from do method -2022/02/28 11:02:52 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:02:52 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:02:52 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:02:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:02:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:02:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:52 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:02:52 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:02:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:52 [DEBUG] : Beginning Read -2022/02/28 11:02:52 HTTP request GET mso/api/v1/tenants -2022/02/28 11:02:52 [DEBUG] Begin Injection -2022/02/28 11:02:52 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:02:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:02:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:32:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000197f80 5563 [] false false map[] 0xc0008b1100 0xc000aca000} -2022/02/28 11:02:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:02:53 [DEBUG] Exit from do method -2022/02/28 11:02:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:02:53 [DEBUG] provider has no plugin.Client -2022/02/28 11:02:53 [DEBUG] New state was assigned lineage "dd078738-7b00-84b9-f9a5-1a3ba33e5949" -2022/02/28 11:02:53 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:02:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:02:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:02:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:02:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:02:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:02:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:02:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:02:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:02:53 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:06:49 [DEBUG] Test: Executing step 0 -2022/02/28 11:06:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:49 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:06:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:49 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:06:49 [DEBUG] Test: Executing step 1 -2022/02/28 11:06:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:49 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:06:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:49 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:06:49 [DEBUG] Test: Executing step 2 -2022/02/28 11:06:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:49 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:06:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:49 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:06:49 [DEBUG] Test: Executing step 3 -2022/02/28 11:06:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:49 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:06:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:06:49 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:06:49 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:06:49 [DEBUG] Test: Executing step 4 -2022/02/28 11:06:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:49 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:06:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:49 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:06:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:49 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:06:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:06:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:49 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:06:49 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:06:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:49 [DEBUG] : Beginning Read -2022/02/28 11:06:49 HTTP request GET mso/api/v1/tenants -2022/02/28 11:06:49 [DEBUG] Begin Injection -2022/02/28 11:06:49 HTTP request POST /login -2022/02/28 11:06:49 HTTP request after injection POST /login -2022/02/28 11:06:49 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:06:50 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:06:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:50 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000828480 -1 [chunked] false false map[] 0xc00045b000 0xc001062840} -2022/02/28 11:06:50 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg"} -2022/02/28 11:06:50 [DEBUG] Exit from do method -2022/02/28 11:06:50 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:06:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:06:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:06:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016e3c0 5563 [] false false map[] 0xc00045af00 0xc001062840} -2022/02/28 11:06:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:06:51 [DEBUG] Exit from do method -2022/02/28 11:06:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:06:51 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:51 [DEBUG] New state was assigned lineage "aa568354-8abd-7a65-6b9e-79ca1e108a71" -2022/02/28 11:06:51 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:06:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:51 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:51 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:06:51 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:06:51 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:06:51 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:06:51 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:06:51 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:51 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_egwsr" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_3bt4p" - template_name: "" => "acctest_3bt4p" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_egwsr" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_egwsr" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_3bt4p" - vrf_name: "" => "acctest_egwsr" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_egwsr" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_egwsr" - schema_id: "" => "" - template_name: "" => "acctest_3bt4p" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_egwsr" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_egwsr" - schema_id: "" => "" - template: "" => "acctest_3bt4p" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:06:51 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:06:51 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:06:51 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:06:51 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:06:51 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:06:51 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:06:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:06:51 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:06:51 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:06:51 [DEBUG] Schema: Beginning Creation -2022/02/28 11:06:51 HTTP request POST mso/api/v1/schemas -2022/02/28 11:06:51 [DEBUG] Begin Injection -2022/02/28 11:06:51 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:06:51 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg] Content-Type:[application/json]] {{"displayName":"acctest_3bt4p","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_3bt4p","externalEpgs":[],"filters":[],"name":"acctest_3bt4p","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x857ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:06:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:06:51 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:06:51 [DEBUG] : Beginning Create -2022/02/28 11:06:51 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:06:51 [DEBUG] Begin Injection -2022/02/28 11:06:51 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:06:51 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg] Content-Type:[application/json]] {{"desc":"","name":"acctest_egwsr","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x857ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:06:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:06:51 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:06:51 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c5f731d000023624fb974] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000828580 400 [] false false map[] 0xc000b66100 0xc001062840} -2022/02/28 11:06:51 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:06:51 [DEBUG] Exit from do method -2022/02/28 11:06:51 [DEBUG] 621c5f731d000023624fb974: Schema Creation finished successfully -2022/02/28 11:06:51 [DEBUG] 621c5f731d000023624fb974: Beginning Read -2022/02/28 11:06:51 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:51 [DEBUG] Begin Injection -2022/02/28 11:06:51 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:51 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:06:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dc8a00 160 [] false false map[] 0xc00045a700 0xc001062840} -2022/02/28 11:06:51 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5f731b00000408fd0c17","name":"acctest_egwsr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:06:51 [DEBUG] Exit from do method -2022/02/28 11:06:51 [DEBUG] 621c5f731b00000408fd0c17: Creation finished successfully -2022/02/28 11:06:51 [DEBUG] 621c5f731b00000408fd0c17: Beginning Read -2022/02/28 11:06:51 id: 621c5f731b00000408fd0c17 -2022/02/28 11:06:51 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:51 [DEBUG] Begin Injection -2022/02/28 11:06:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:52 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008289c0 400 [] false false map[] 0xc000496300 0xc001062840} -2022/02/28 11:06:52 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:06:52 [DEBUG] Exit from do method -2022/02/28 11:06:52 [DEBUG] 621c5f731d000023624fb974: Read finished successfully -2022/02/28 11:06:52 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:06:52 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:06:52 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:52 [DEBUG] Begin Injection -2022/02/28 11:06:52 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:52 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a8580 160 [] false false map[] 0xc00045aa00 0xc0004f2580} -2022/02/28 11:06:52 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 {"id":"621c5f731b00000408fd0c17","name":"acctest_egwsr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:06:52 [DEBUG] Exit from do method -2022/02/28 11:06:52 [DEBUG] 621c5f731b00000408fd0c17: Read finished successfully -2022/02/28 11:06:52 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:36:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005ca900 0xc001062840} -2022/02/28 11:06:52 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:52 [DEBUG] acctest_egwsr: Creation finished successfully -2022/02/28 11:06:52 [DEBUG] acctest_egwsr: Beginning Read -2022/02/28 11:06:52 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:52 [DEBUG] Begin Injection -2022/02/28 11:06:52 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:52 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000828040 768 [] false false map[] 0xc000496700 0xc00037b4a0} -2022/02/28 11:06:52 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:06:52 [DEBUG] Exit from do method -2022/02/28 11:06:52 currentvrfname acctest_egwsr -2022/02/28 11:06:52 found correct vrfname -2022/02/28 11:06:52 [DEBUG] acctest_egwsr: Read finished successfully -2022/02/28 11:06:52 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:06:52 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:06:52 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:06:52 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:52 [DEBUG] Begin Injection -2022/02/28 11:06:52 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:53 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:36:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000496400 0xc0004f20b0} -2022/02/28 11:06:53 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:53 [DEBUG] : Beginning Read -2022/02/28 11:06:53 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:53 [DEBUG] Begin Injection -2022/02/28 11:06:53 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008284c0 1277 [] false false map[] 0xc000b3c000 0xc0004f20b0} -2022/02/28 11:06:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:06:53 [DEBUG] Exit from do method -2022/02/28 11:06:53 [DEBUG] acctest_egwsr: Read finished successfully -2022/02/28 11:06:53 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:06:53 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:06:53 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:53 [DEBUG] Begin Injection -2022/02/28 11:06:53 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:53 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:36:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000b3c800 0xc0004f20b0} -2022/02/28 11:06:53 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:53 [DEBUG] Creation Complete -2022/02/28 11:06:53 [DEBUG] : Beginning Read -2022/02/28 11:06:53 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:53 [DEBUG] Begin Injection -2022/02/28 11:06:53 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:54 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058f800 1362 [] false false map[] 0xc000496800 0xc0004f20b0} -2022/02/28 11:06:54 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:06:54 [DEBUG] Exit from do method -2022/02/28 11:06:54 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully -2022/02/28 11:06:54 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:54 [DEBUG] New state was assigned lineage "628720f9-b8fb-e7b6-9f97-b9ee29f992e9" -2022/02/28 11:06:54 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:54 [DEBUG] Begin Injection -2022/02/28 11:06:54 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:54 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058e300 1362 [] false false map[] 0xc000854000 0xc0004f20b0} -2022/02/28 11:06:54 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:06:54 [DEBUG] Exit from do method -2022/02/28 11:06:54 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:06:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:54 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:06:54 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:54 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:06:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:54 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:54 [DEBUG] : Beginning Read -2022/02/28 11:06:54 HTTP request GET mso/api/v1/tenants -2022/02/28 11:06:54 [DEBUG] Begin Injection -2022/02/28 11:06:54 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:06:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:06:54 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:06:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e821c0 5563 [] false false map[] 0xc000b66500 0xc0004f20b0} -2022/02/28 11:06:54 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:06:54 [DEBUG] Exit from do method -2022/02/28 11:06:54 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:06:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:06:54 [DEBUG] 621c5f731b00000408fd0c17: Beginning Read -2022/02/28 11:06:54 id: 621c5f731b00000408fd0c17 -2022/02/28 11:06:54 [DEBUG] 621c5f731d000023624fb974: Beginning Read -2022/02/28 11:06:54 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:54 [DEBUG] Begin Injection -2022/02/28 11:06:54 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:54 [DEBUG] Begin Injection -2022/02/28 11:06:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:54 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a8e80 1362 [] false false map[] 0xc000610000 0xc0004f20b0} -2022/02/28 11:06:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:06:55 [DEBUG] Exit from do method -2022/02/28 11:06:55 [DEBUG] 621c5f731d000023624fb974: Read finished successfully -2022/02/28 11:06:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:06:55 [DEBUG] acctest_egwsr: Beginning Read -2022/02/28 11:06:55 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:55 [DEBUG] Begin Injection -2022/02/28 11:06:55 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a98c0 160 [] false false map[] 0xc000854500 0xc0004f2580} -2022/02/28 11:06:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 {"id":"621c5f731b00000408fd0c17","name":"acctest_egwsr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:06:55 [DEBUG] Exit from do method -2022/02/28 11:06:55 [DEBUG] 621c5f731b00000408fd0c17: Read finished successfully -2022/02/28 11:06:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a9980 1362 [] false false map[] 0xc00045a800 0xc0004f20b0} -2022/02/28 11:06:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:06:55 [DEBUG] Exit from do method -2022/02/28 11:06:55 currentvrfname acctest_egwsr -2022/02/28 11:06:55 found correct vrfname -2022/02/28 11:06:55 [DEBUG] acctest_egwsr: Read finished successfully -2022/02/28 11:06:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:06:55 [DEBUG] acctest_egwsr: Beginning Read -2022/02/28 11:06:55 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:55 [DEBUG] Begin Injection -2022/02/28 11:06:55 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000828040 1362 [] false false map[] 0xc000610500 0xc0004f20b0} -2022/02/28 11:06:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:06:55 [DEBUG] Exit from do method -2022/02/28 11:06:55 [DEBUG] acctest_egwsr: Read finished successfully -2022/02/28 11:06:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:06:55 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Read -2022/02/28 11:06:55 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:55 [DEBUG] Begin Injection -2022/02/28 11:06:55 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:56 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008283c0 1362 [] false false map[] 0xc000610a00 0xc0004f20b0} -2022/02/28 11:06:56 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:06:56 [DEBUG] Exit from do method -2022/02/28 11:06:56 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully -2022/02/28 11:06:56 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:56 [DEBUG] New state was assigned lineage "32619710-96e7-b1d9-298f-eca3ff4bb8b5" -2022/02/28 11:06:56 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:06:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:56 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:06:56 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:56 [DEBUG] Test: Executing step 5 -2022/02/28 11:06:56 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:56 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:06:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:56 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:06:56 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:56 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:06:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:56 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:56 [DEBUG] : Beginning Read -2022/02/28 11:06:56 HTTP request GET mso/api/v1/tenants -2022/02/28 11:06:56 [DEBUG] Begin Injection -2022/02/28 11:06:56 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:06:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:06:56 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:06:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049a700 5563 [] false false map[] 0xc000f86200 0xc0004f20b0} -2022/02/28 11:06:56 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:06:56 [DEBUG] Exit from do method -2022/02/28 11:06:56 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:06:56 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:06:56 [DEBUG] 621c5f731d000023624fb974: Beginning Read -2022/02/28 11:06:56 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:56 [DEBUG] Begin Injection -2022/02/28 11:06:56 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:56 [DEBUG] 621c5f731b00000408fd0c17: Beginning Read -2022/02/28 11:06:56 id: 621c5f731b00000408fd0c17 -2022/02/28 11:06:56 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:56 [DEBUG] Begin Injection -2022/02/28 11:06:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:56 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006c33c0 1362 [] false false map[] 0xc0002d8200 0xc0004f20b0} -2022/02/28 11:06:56 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:06:56 [DEBUG] Exit from do method -2022/02/28 11:06:56 [DEBUG] 621c5f731d000023624fb974: Read finished successfully -2022/02/28 11:06:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:06:56 [DEBUG] acctest_egwsr: Beginning Read -2022/02/28 11:06:56 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:56 [DEBUG] Begin Injection -2022/02/28 11:06:56 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:56 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008296c0 160 [] false false map[] 0xc000fa6300 0xc0004f2580} -2022/02/28 11:06:56 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 {"id":"621c5f731b00000408fd0c17","name":"acctest_egwsr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:06:56 [DEBUG] Exit from do method -2022/02/28 11:06:56 [DEBUG] 621c5f731b00000408fd0c17: Read finished successfully -2022/02/28 11:06:57 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e821c0 1362 [] false false map[] 0xc000496900 0xc0004f20b0} -2022/02/28 11:06:57 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:06:57 [DEBUG] Exit from do method -2022/02/28 11:06:57 currentvrfname acctest_egwsr -2022/02/28 11:06:57 found correct vrfname -2022/02/28 11:06:57 [DEBUG] acctest_egwsr: Read finished successfully -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:06:57 [DEBUG] acctest_egwsr: Beginning Read -2022/02/28 11:06:57 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:57 [DEBUG] Begin Injection -2022/02/28 11:06:57 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:57 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073e880 1362 [] false false map[] 0xc000496d00 0xc0004f20b0} -2022/02/28 11:06:57 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:06:57 [DEBUG] Exit from do method -2022/02/28 11:06:57 [DEBUG] acctest_egwsr: Read finished successfully -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:06:57 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Read -2022/02/28 11:06:57 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:57 [DEBUG] Begin Injection -2022/02/28 11:06:57 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:57 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e82100 1362 [] false false map[] 0xc0002d8300 0xc0004f20b0} -2022/02/28 11:06:57 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:06:57 [DEBUG] Exit from do method -2022/02/28 11:06:57 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully -2022/02/28 11:06:57 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:57 [DEBUG] New state was assigned lineage "f7f6b9ad-dc5f-5f59-5387-92ac600f44bf" -2022/02/28 11:06:57 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:06:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example] -2022/02/28 11:06:57 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:57 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:06:57 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:57 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.example - description: "" => "" - id: "" => "" - name: "" => "acctest_6vwb3" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -UPDATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_egwsr" => "acctest_egwsr" - dhcp_option_name: "" => "acctest_6vwb3" - dhcp_option_version: "0" => "1" - id: "/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr" => "/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr" - name: "acctest_egwsr" => "acctest_egwsr" - schema_id: "621c5f731d000023624fb974" => "621c5f731d000023624fb974" - template_name: "acctest_3bt4p" => "acctest_3bt4p" - version: "0" => "1" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c5f731b00000408fd0c17 - provider = provider.mso - description = - name = acctest_egwsr - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5f731d000023624fb974 - provider = provider.mso - name = acctest_3bt4p - template_name = acctest_3bt4p - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_egwsr - provider = provider.mso - dhcp_policy.name = acctest_egwsr - dhcp_policy.version = 0 - display_name = acctest_egwsr - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_egwsr - schema_id = 621c5f731d000023624fb974 - template_name = acctest_3bt4p - vrf_name = acctest_egwsr - vrf_schema_id = 621c5f731d000023624fb974 - vrf_template_name = acctest_3bt4p - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr - provider = provider.mso - bd_name = acctest_egwsr - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_egwsr - schema_id = 621c5f731d000023624fb974 - template_name = acctest_3bt4p - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_egwsr - provider = provider.mso - display_name = acctest_egwsr - layer3_multicast = false - name = acctest_egwsr - schema_id = 621c5f731d000023624fb974 - template = acctest_3bt4p - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:06:57 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:06:57 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.example", instance mso_dhcp_option_policy.example -2022/02/28 11:06:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example (prepare state) -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (prepare state)" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:06:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.example (prepare state) mso_dhcp_option_policy.example mso_dhcp_option_policy.example] -2022/02/28 11:06:57 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:06:57 [DEBUG] mso_dhcp_option_policy.example: applying the planned Create change -2022/02/28 11:06:57 [DEBUG] : Beginning Create -2022/02/28 11:06:57 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 11:06:57 [DEBUG] Begin Injection -2022/02/28 11:06:57 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 11:06:57 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_6vwb3","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x857ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:06:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:06:58 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:06:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005f4e80 161 [] false false map[] 0xc000496500 0xc0004f20b0} -2022/02/28 11:06:58 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c5f7a1b0000de07fd0c18","name":"acctest_6vwb3","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:06:58 [DEBUG] Exit from do method -2022/02/28 11:06:58 [DEBUG] 621c5f7a1b0000de07fd0c18: Creation finished successfully -2022/02/28 11:06:58 [DEBUG] 621c5f7a1b0000de07fd0c18: Beginning Read -2022/02/28 11:06:58 id: 621c5f7a1b0000de07fd0c18 -2022/02/28 11:06:58 HTTP request GET mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:06:58 [DEBUG] Begin Injection -2022/02/28 11:06:58 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:06:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:06:58 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:06:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dc8940 161 [] false false map[] 0xc000d1e700 0xc0004f20b0} -2022/02/28 11:06:58 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 {"id":"621c5f7a1b0000de07fd0c18","name":"acctest_6vwb3","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:06:58 [DEBUG] Exit from do method -2022/02/28 11:06:58 [DEBUG] 621c5f7a1b0000de07fd0c18: Read finished successfully -2022/02/28 11:06:58 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change -2022/02/28 11:06:58 [DEBUG] Template BD: Beginning Update -2022/02/28 11:06:58 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:58 [DEBUG] Begin Injection -2022/02/28 11:06:58 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:58 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:36:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0002dc700 0xc0004f20b0} -2022/02/28 11:06:58 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:06:58 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Read -2022/02/28 11:06:58 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:58 [DEBUG] Begin Injection -2022/02/28 11:06:58 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:59 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058e7c0 1472 [] false false map[] 0xc0002dc000 0xc0004f20b0} -2022/02/28 11:06:59 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:06:59 [DEBUG] Exit from do method -2022/02/28 11:06:59 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully -2022/02/28 11:06:59 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:59 [DEBUG] New state was assigned lineage "173ec425-d817-5a2a-7454-79aacead6e45" -2022/02/28 11:06:59 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:59 [DEBUG] Begin Injection -2022/02/28 11:06:59 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:59 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058f680 1472 [] false false map[] 0xc0002dc100 0xc0004f20b0} -2022/02/28 11:06:59 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:06:59 [DEBUG] Exit from do method -2022/02/28 11:06:59 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:06:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:59 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:06:59 [DEBUG] provider has no plugin.Client -2022/02/28 11:06:59 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:06:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:06:59 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:06:59 [DEBUG] : Beginning Read -2022/02/28 11:06:59 HTTP request GET mso/api/v1/tenants -2022/02/28 11:06:59 [DEBUG] Begin Injection -2022/02/28 11:06:59 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:06:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:06:59 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:06:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:36:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000db4480 5563 [] false false map[] 0xc000b72600 0xc0004f20b0} -2022/02/28 11:06:59 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:06:59 [DEBUG] Exit from do method -2022/02/28 11:06:59 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:06:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:06:59 [DEBUG] 621c5f731d000023624fb974: Beginning Read -2022/02/28 11:06:59 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:59 [DEBUG] Begin Injection -2022/02/28 11:06:59 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:06:59 [DEBUG] 621c5f7a1b0000de07fd0c18: Beginning Read -2022/02/28 11:06:59 id: 621c5f7a1b0000de07fd0c18 -2022/02/28 11:06:59 HTTP request GET mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:06:59 [DEBUG] Begin Injection -2022/02/28 11:06:59 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:06:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:06:59 [DEBUG] 621c5f731b00000408fd0c17: Beginning Read -2022/02/28 11:06:59 id: 621c5f731b00000408fd0c17 -2022/02/28 11:06:59 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:59 [DEBUG] Begin Injection -2022/02/28 11:06:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:06:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:07:00 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009aa8c0 1472 [] false false map[] 0xc00045a500 0xc0004f20b0} -2022/02/28 11:07:00 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:07:00 [DEBUG] Exit from do method -2022/02/28 11:07:00 [DEBUG] 621c5f731d000023624fb974: Read finished successfully -2022/02/28 11:07:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:07:00 [DEBUG] acctest_egwsr: Beginning Read -2022/02/28 11:07:00 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:00 [DEBUG] Begin Injection -2022/02/28 11:07:00 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:00 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:07:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000db5f40 161 [] false false map[] 0xc000cb2400 0xc0004f2580} -2022/02/28 11:07:00 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 {"id":"621c5f7a1b0000de07fd0c18","name":"acctest_6vwb3","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:07:00 [DEBUG] Exit from do method -2022/02/28 11:07:00 [DEBUG] 621c5f7a1b0000de07fd0c18: Read finished successfully -2022/02/28 11:07:00 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:07:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009aae40 160 [] false false map[] 0xc0011ca300 0xc0004f20b0} -2022/02/28 11:07:00 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 {"id":"621c5f731b00000408fd0c17","name":"acctest_egwsr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:07:00 [DEBUG] Exit from do method -2022/02/28 11:07:00 [DEBUG] 621c5f731b00000408fd0c17: Read finished successfully -2022/02/28 11:07:00 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d34040 1472 [] false false map[] 0xc0011ca800 0xc0004f2580} -2022/02/28 11:07:00 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:07:00 [DEBUG] Exit from do method -2022/02/28 11:07:00 currentvrfname acctest_egwsr -2022/02/28 11:07:00 found correct vrfname -2022/02/28 11:07:00 [DEBUG] acctest_egwsr: Read finished successfully -2022/02/28 11:07:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:07:00 [DEBUG] acctest_egwsr: Beginning Read -2022/02/28 11:07:00 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:00 [DEBUG] Begin Injection -2022/02/28 11:07:00 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:00 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009aa0c0 1472 [] false false map[] 0xc000496300 0xc0004f2580} -2022/02/28 11:07:00 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:07:00 [DEBUG] Exit from do method -2022/02/28 11:07:00 [DEBUG] acctest_egwsr: Read finished successfully -2022/02/28 11:07:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:07:00 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Read -2022/02/28 11:07:00 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:00 [DEBUG] Begin Injection -2022/02/28 11:07:00 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:01 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058f7c0 1472 [] false false map[] 0xc000b72500 0xc0000be2c0} -2022/02/28 11:07:01 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:07:01 [DEBUG] Exit from do method -2022/02/28 11:07:01 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully -2022/02/28 11:07:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:01 [DEBUG] New state was assigned lineage "5569d146-1d5c-a1b6-ba53-33e94f79183c" -2022/02/28 11:07:01 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:07:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.example mso_dhcp_relay_policy.test] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:07:01 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:07:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:01 [DEBUG] Test: Executing step 6 -2022/02/28 11:07:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr\")" (*terraform.graphNodeImportState) needs provider.mso -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr\")" references: [] -2022/02/28 11:07:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:01 [DEBUG] Starting graph walk: walkImport -2022/02/28 11:07:01 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Import -2022/02/28 11:07:01 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:01 [DEBUG] Begin Injection -2022/02/28 11:07:01 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:01 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005f5080 1472 [] false false map[] 0xc000496200 0xc0005a6370} -2022/02/28 11:07:01 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:07:01 [DEBUG] Exit from do method -2022/02/28 11:07:01 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Import finished successfully -2022/02/28 11:07:01 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Read -2022/02/28 11:07:01 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:01 [DEBUG] Begin Injection -2022/02/28 11:07:01 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:01 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073e800 1472 [] false false map[] 0xc000496300 0xc0005a6370} -2022/02/28 11:07:01 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:07:01 [DEBUG] Exit from do method -2022/02/28 11:07:01 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully -2022/02/28 11:07:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:01 [DEBUG] New state was assigned lineage "33e41478-1f18-ff5a-7cfa-23b5d1a6788e" -2022/02/28 11:07:01 [DEBUG] Test: Executing step 7 -2022/02/28 11:07:02 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:02 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:07:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:07:02 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:07:02 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.example because it has no config -2022/02/28 11:07:02 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:02 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:07:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [data.mso_tenant.test] -2022/02/28 11:07:02 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:02 [DEBUG] : Beginning Read -2022/02/28 11:07:02 HTTP request GET mso/api/v1/tenants -2022/02/28 11:07:02 [DEBUG] Begin Injection -2022/02/28 11:07:02 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:07:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:07:02 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:07:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073e080 5563 [] false false map[] 0xc0011fc500 0xc0005a6370} -2022/02/28 11:07:02 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:07:02 [DEBUG] Exit from do method -2022/02/28 11:07:02 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:07:02 [DEBUG] 621c5f7a1b0000de07fd0c18: Beginning Read -2022/02/28 11:07:02 id: 621c5f7a1b0000de07fd0c18 -2022/02/28 11:07:02 [DEBUG] 621c5f731d000023624fb974: Beginning Read -2022/02/28 11:07:02 HTTP request GET mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:07:02 [DEBUG] Begin Injection -2022/02/28 11:07:02 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:07:02 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:02 [DEBUG] Begin Injection -2022/02/28 11:07:02 [DEBUG] 621c5f731b00000408fd0c17: Beginning Read -2022/02/28 11:07:02 id: 621c5f731b00000408fd0c17 -2022/02/28 11:07:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:07:02 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:02 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:07:02 [DEBUG] Begin Injection -2022/02/28 11:07:02 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:07:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:07:02 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000828bc0 1472 [] false false map[] 0xc000e9e100 0xc0004f20b0} -2022/02/28 11:07:02 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:07:02 [DEBUG] Exit from do method -2022/02/28 11:07:02 [DEBUG] 621c5f731d000023624fb974: Read finished successfully -2022/02/28 11:07:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:07:02 [DEBUG] acctest_egwsr: Beginning Read -2022/02/28 11:07:02 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:02 [DEBUG] Begin Injection -2022/02/28 11:07:02 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:02 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:07:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000829540 161 [] false false map[] 0xc00045a500 0xc0005a6370} -2022/02/28 11:07:02 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 {"id":"621c5f7a1b0000de07fd0c18","name":"acctest_6vwb3","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:07:02 [DEBUG] Exit from do method -2022/02/28 11:07:02 [DEBUG] 621c5f7a1b0000de07fd0c18: Read finished successfully -2022/02/28 11:07:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:07:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049a200 160 [] false false map[] 0xc000496b00 0xc0004f20b0} -2022/02/28 11:07:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 {"id":"621c5f731b00000408fd0c17","name":"acctest_egwsr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:07:03 [DEBUG] Exit from do method -2022/02/28 11:07:03 [DEBUG] 621c5f731b00000408fd0c17: Read finished successfully -2022/02/28 11:07:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e82040 1472 [] false false map[] 0xc000496f00 0xc0005a6370} -2022/02/28 11:07:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:07:03 [DEBUG] Exit from do method -2022/02/28 11:07:03 currentvrfname acctest_egwsr -2022/02/28 11:07:03 found correct vrfname -2022/02/28 11:07:03 [DEBUG] acctest_egwsr: Read finished successfully -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:07:03 [DEBUG] acctest_egwsr: Beginning Read -2022/02/28 11:07:03 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:03 [DEBUG] Begin Injection -2022/02/28 11:07:03 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009aa580 1472 [] false false map[] 0xc00045a400 0xc0005a6370} -2022/02/28 11:07:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:07:03 [DEBUG] Exit from do method -2022/02/28 11:07:03 [DEBUG] acctest_egwsr: Read finished successfully -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:07:03 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Beginning Read -2022/02/28 11:07:03 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:03 [DEBUG] Begin Injection -2022/02/28 11:07:03 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005f4e00 1472 [] false false map[] 0xc00045a900 0xc0005a6420} -2022/02/28 11:07:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_egwsr","displayName":"acctest_egwsr","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_egwsr","dhcpLabel":{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_egwsr","dhcpOptionLabel":{"name":"acctest_6vwb3","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:07:03 [DEBUG] Exit from do method -2022/02/28 11:07:03 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr: Read finished successfully -2022/02/28 11:07:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:03 [DEBUG] New state was assigned lineage "492669a4-8a07-96dd-eea8-2c08b65f6905" -2022/02/28 11:07:03 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:07:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (orphan)" references: [data.mso_tenant.test] -2022/02/28 11:07:03 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:07:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:03 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.example - description: "" => "" - id: "621c5f7a1b0000de07fd0c18" => "" - name: "acctest_6vwb3" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c5f731b00000408fd0c17" => "" - name: "acctest_egwsr" => "acctest_3fu8f" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - dhcp_policy.dhcp_option_policy_name: "acctest_6vwb3" => "" - dhcp_policy.dhcp_option_policy_version: "1" => "" - dhcp_policy.name: "acctest_egwsr" => "" - dhcp_policy.version: "1" => "" - display_name: "acctest_egwsr" => "acctest_3fu8f" (forces new resource) - id: "acctest_egwsr" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_egwsr" => "acctest_3fu8f" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c5f731d000023624fb974" => "621c5f731d000023624fb974" - template_name: "acctest_3bt4p" => "acctest_3bt4p" - vrf_name: "acctest_egwsr" => "acctest_3fu8f" - vrf_schema_id: "621c5f731d000023624fb974" => "" - vrf_template_name: "acctest_3bt4p" => "" -DESTROY/CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_egwsr" => "acctest_3fu8f" (forces new resource) - dhcp_option_name: "acctest_6vwb3" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr" => "" - name: "acctest_egwsr" => "acctest_3fu8f" (forces new resource) - schema_id: "621c5f731d000023624fb974" => "621c5f731d000023624fb974" - template_name: "acctest_3bt4p" => "acctest_3bt4p" - version: "1" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_egwsr" => "acctest_3fu8f" - id: "acctest_egwsr" => "" - layer3_multicast: "false" => "" - name: "acctest_egwsr" => "acctest_3fu8f" (forces new resource) - schema_id: "621c5f731d000023624fb974" => "621c5f731d000023624fb974" - template: "acctest_3bt4p" => "acctest_3bt4p" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.example: - ID = 621c5f7a1b0000de07fd0c18 - provider = provider.mso - description = - name = acctest_6vwb3 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c5f731b00000408fd0c17 - provider = provider.mso - description = - name = acctest_egwsr - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5f731d000023624fb974 - provider = provider.mso - name = acctest_3bt4p - template_name = acctest_3bt4p - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_egwsr - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_6vwb3 - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_egwsr - dhcp_policy.version = 1 - display_name = acctest_egwsr - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_egwsr - schema_id = 621c5f731d000023624fb974 - template_name = acctest_3bt4p - vrf_name = acctest_egwsr - vrf_schema_id = 621c5f731d000023624fb974 - vrf_template_name = acctest_3bt4p - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_egwsr/dhcpLabels/acctest_egwsr - provider = provider.mso - bd_name = acctest_egwsr - dhcp_option_name = acctest_6vwb3 - dhcp_option_version = 1 - name = acctest_egwsr - schema_id = 621c5f731d000023624fb974 - template_name = acctest_3bt4p - version = 1 - - Dependencies: - mso_dhcp_option_policy.example - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_egwsr - provider = provider.mso - display_name = acctest_egwsr - layer3_multicast = false - name = acctest_egwsr - schema_id = 621c5f731d000023624fb974 - template = acctest_3bt4p - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:07:03 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:07:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (clean up state)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:07:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.example (destroy) -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.example" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example (destroy)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.example" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:07:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:07:03 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:07:03 [DEBUG] mso_dhcp_option_policy.example: applying the planned Delete change -2022/02/28 11:07:03 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:07:03 [DEBUG] 621c5f7a1b0000de07fd0c18: Beginning Read -2022/02/28 11:07:03 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:07:03 [DEBUG] Begin Injection -2022/02/28 11:07:03 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:07:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:07:03 [DEBUG] Template BD: Beginning Update -2022/02/28 11:07:03 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:03 [DEBUG] Begin Injection -2022/02/28 11:07:03 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001174f00 0xc0004f20b0} -2022/02/28 11:07:04 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:07:04 [DEBUG] 621c5f731b00000408fd0c17: Beginning Read -2022/02/28 11:07:04 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:07:04 [DEBUG] Begin Injection -2022/02/28 11:07:04 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:07:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:07:04 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:07:04 [DEBUG] Template BD: Beginning Update -2022/02/28 11:07:04 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 [DEBUG] Begin Injection -2022/02/28 11:07:04 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:07:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000aee400 0xc0004f2160} -2022/02/28 11:07:04 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c5f7a1b0000de07fd0c18 -2022/02/28 11:07:04 [DEBUG] : Read finished successfully -2022/02/28 11:07:04 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:07:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00045ad00 0xc0004f20b0} -2022/02/28 11:07:04 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f731b00000408fd0c17 -2022/02/28 11:07:04 [DEBUG] : Read finished successfully -2022/02/28 11:07:04 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:07:04 [DEBUG] : Beginning Create -2022/02/28 11:07:04 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:07:04 [DEBUG] Begin Injection -2022/02/28 11:07:04 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:07:04 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI3ODEwLCJpYXQiOjE2NDYwMjY2MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZDViV2FhbzBhaTZUTnZlRXRHVUs2c1N3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.PdOPjmW14uRZNCiT1xVdheBtQgx6kiwV6uCzcoLHVSWutiTtx7djBt624TsxJxmIJVNYhCRKUCrZFSzbKAs5mtSHRgJXDNSpBtFEca-M-an17rtRfer20Qe9xsSqNNVePadA7BBL-sGsl3LDWt2MMRxJrVxWoJMvWC5DkEZu5oGF89OPMA13serbZ66cM8CTJQqa9DX2LJs3tKDHNdc8LXvzvYmXCDxq9qdVY1H-KhSjuLz5FmQkmZ8_lZ8GeiXn8WCmffUQ9x5t5pE4OoohPMK9IZF5vFhXlpArD_Om-FfZi2cM6ow78V6VfuL70SH3M-zrlbGJqnN3JPrMsscyUg] Content-Type:[application/json]] {{"desc":"","name":"acctest_3fu8f","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x857ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:07:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:07:04 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00045a200 0xc0004f2160} -2022/02/28 11:07:04 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:07:04 [DEBUG] acctest_egwsr: Beginning Destroy -2022/02/28 11:07:04 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 [DEBUG] Begin Injection -2022/02/28 11:07:04 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:07:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005f5280 160 [] false false map[] 0xc000718700 0xc0004f20b0} -2022/02/28 11:07:04 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c5f801b00000908fd0c19","name":"acctest_3fu8f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:07:04 [DEBUG] Exit from do method -2022/02/28 11:07:04 [DEBUG] 621c5f801b00000908fd0c19: Creation finished successfully -2022/02/28 11:07:04 [DEBUG] 621c5f801b00000908fd0c19: Beginning Read -2022/02/28 11:07:04 id: 621c5f801b00000908fd0c19 -2022/02/28 11:07:04 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:04 [DEBUG] Begin Injection -2022/02/28 11:07:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:04 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000aeea00 0xc0004f2160} -2022/02/28 11:07:04 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 [DEBUG] acctest_egwsr: Destroy finished successfully -2022/02/28 11:07:04 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:07:04 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:07:04 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 [DEBUG] Begin Injection -2022/02/28 11:07:04 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016e3c0 160 [] false false map[] 0xc000718b00 0xc0004f20b0} -2022/02/28 11:07:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 {"id":"621c5f801b00000908fd0c19","name":"acctest_3fu8f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:07:05 [DEBUG] Exit from do method -2022/02/28 11:07:05 [DEBUG] 621c5f801b00000908fd0c19: Read finished successfully -2022/02/28 11:07:05 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000497300 0xc0004f2160} -2022/02/28 11:07:05 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:05 [DEBUG] acctest_3fu8f: Creation finished successfully -2022/02/28 11:07:05 [DEBUG] acctest_3fu8f: Beginning Read -2022/02/28 11:07:05 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:05 [DEBUG] Begin Injection -2022/02/28 11:07:05 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b4040 768 [] false false map[] 0xc00045a100 0xc0004f20b0} -2022/02/28 11:07:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 11:07:05 [DEBUG] Exit from do method -2022/02/28 11:07:05 currentvrfname acctest_3fu8f -2022/02/28 11:07:05 found correct vrfname -2022/02/28 11:07:05 [DEBUG] acctest_3fu8f: Read finished successfully -2022/02/28 11:07:05 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:07:05 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:07:05 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:07:05 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:05 [DEBUG] Begin Injection -2022/02/28 11:07:05 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:05 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000718f00 0xc0004f20b0} -2022/02/28 11:07:05 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:05 [DEBUG] : Beginning Read -2022/02/28 11:07:05 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:05 [DEBUG] Begin Injection -2022/02/28 11:07:05 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005f5a40 1278 [] false false map[] 0xc000aee000 0xc0004f20b0} -2022/02/28 11:07:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 11:07:06 [DEBUG] Exit from do method -2022/02/28 11:07:06 [DEBUG] acctest_3fu8f: Read finished successfully -2022/02/28 11:07:06 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:07:06 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:07:06 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:06 [DEBUG] Begin Injection -2022/02/28 11:07:06 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:06 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000aee400 0xc0004f20b0} -2022/02/28 11:07:06 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:06 [DEBUG] Creation Complete -2022/02/28 11:07:06 [DEBUG] : Beginning Read -2022/02/28 11:07:06 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:06 [DEBUG] Begin Injection -2022/02/28 11:07:06 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016e340 1363 [] false false map[] 0xc000718000 0xc0004f20b0} -2022/02/28 11:07:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:07:06 [DEBUG] Exit from do method -2022/02/28 11:07:06 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f: Read finished successfully -2022/02/28 11:07:06 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:06 [DEBUG] New state was assigned lineage "160f3954-d7b7-cf1c-6365-ff30521387ef" -2022/02/28 11:07:06 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:06 [DEBUG] Begin Injection -2022/02/28 11:07:06 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016f0c0 1363 [] false false map[] 0xc000aee000 0xc0004f20b0} -2022/02/28 11:07:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:07:07 [DEBUG] Exit from do method -2022/02/28 11:07:07 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:07:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:07 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:07:07 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:07 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:07:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:07:07 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:07 [DEBUG] : Beginning Read -2022/02/28 11:07:07 HTTP request GET mso/api/v1/tenants -2022/02/28 11:07:07 [DEBUG] Begin Injection -2022/02/28 11:07:07 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:07:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:07:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:07:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00114e0c0 5563 [] false false map[] 0xc000719c00 0xc0004f20b0} -2022/02/28 11:07:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:07:07 [DEBUG] Exit from do method -2022/02/28 11:07:07 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:07:07 [DEBUG] 621c5f801b00000908fd0c19: Beginning Read -2022/02/28 11:07:07 id: 621c5f801b00000908fd0c19 -2022/02/28 11:07:07 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:07 [DEBUG] Begin Injection -2022/02/28 11:07:07 [DEBUG] 621c5f731d000023624fb974: Beginning Read -2022/02/28 11:07:07 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:07 [DEBUG] Begin Injection -2022/02/28 11:07:07 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049a2c0 1363 [] false false map[] 0xc000718700 0xc0004f20b0} -2022/02/28 11:07:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:07:07 [DEBUG] Exit from do method -2022/02/28 11:07:07 [DEBUG] 621c5f731d000023624fb974: Read finished successfully -2022/02/28 11:07:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:07:07 [DEBUG] acctest_3fu8f: Beginning Read -2022/02/28 11:07:07 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:07 [DEBUG] Begin Injection -2022/02/28 11:07:07 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009ab080 160 [] false false map[] 0xc00045a500 0xc0004f22c0} -2022/02/28 11:07:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 {"id":"621c5f801b00000908fd0c19","name":"acctest_3fu8f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:07:07 [DEBUG] Exit from do method -2022/02/28 11:07:07 [DEBUG] 621c5f801b00000908fd0c19: Read finished successfully -2022/02/28 11:07:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049b8c0 1363 [] false false map[] 0xc000d1e500 0xc0004f20b0} -2022/02/28 11:07:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:07:08 [DEBUG] Exit from do method -2022/02/28 11:07:08 currentvrfname acctest_3fu8f -2022/02/28 11:07:08 found correct vrfname -2022/02/28 11:07:08 [DEBUG] acctest_3fu8f: Read finished successfully -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:07:08 [DEBUG] acctest_3fu8f: Beginning Read -2022/02/28 11:07:08 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:08 [DEBUG] Begin Injection -2022/02/28 11:07:08 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073ef40 1363 [] false false map[] 0xc000d1ea00 0xc0004f20b0} -2022/02/28 11:07:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:07:08 [DEBUG] Exit from do method -2022/02/28 11:07:08 [DEBUG] acctest_3fu8f: Read finished successfully -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:07:08 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f: Beginning Read -2022/02/28 11:07:08 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:08 [DEBUG] Begin Injection -2022/02/28 11:07:08 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058e240 1363 [] false false map[] 0xc00045aa00 0xc0004f20b0} -2022/02/28 11:07:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:07:08 [DEBUG] Exit from do method -2022/02/28 11:07:08 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f: Read finished successfully -2022/02/28 11:07:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:08 [DEBUG] New state was assigned lineage "fdbb1c67-d980-b81d-8a98-5ed04dfc804a" -2022/02/28 11:07:08 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:07:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:08 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:07:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:08 [WARN] Test: Executing destroy step -2022/02/28 11:07:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:08 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:07:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:07:08 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:07:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:08 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:07:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:07:08 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:07:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:08 [DEBUG] : Beginning Read -2022/02/28 11:07:08 HTTP request GET mso/api/v1/tenants -2022/02/28 11:07:08 [DEBUG] Begin Injection -2022/02/28 11:07:08 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:07:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:07:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:07:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049a200 5563 [] false false map[] 0xc001144f00 0xc0004f20b0} -2022/02/28 11:07:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:07:09 [DEBUG] Exit from do method -2022/02/28 11:07:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:07:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:07:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:07:09 [DEBUG] 621c5f731d000023624fb974: Beginning Read -2022/02/28 11:07:09 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:09 [DEBUG] Begin Injection -2022/02/28 11:07:09 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:09 [DEBUG] 621c5f801b00000908fd0c19: Beginning Read -2022/02/28 11:07:09 id: 621c5f801b00000908fd0c19 -2022/02/28 11:07:09 HTTP request GET mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:09 [DEBUG] Begin Injection -2022/02/28 11:07:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049b080 1363 [] false false map[] 0xc000496700 0xc0004f20b0} -2022/02/28 11:07:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:07:09 [DEBUG] Exit from do method -2022/02/28 11:07:09 [DEBUG] 621c5f731d000023624fb974: Read finished successfully -2022/02/28 11:07:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:07:09 [DEBUG] acctest_3fu8f: Beginning Read -2022/02/28 11:07:09 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:09 [DEBUG] Begin Injection -2022/02/28 11:07:09 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049bd00 160 [] false false map[] 0xc000ea4a00 0xc0004f22c0} -2022/02/28 11:07:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 {"id":"621c5f801b00000908fd0c19","name":"acctest_3fu8f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:07:09 [DEBUG] Exit from do method -2022/02/28 11:07:09 [DEBUG] 621c5f801b00000908fd0c19: Read finished successfully -2022/02/28 11:07:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00114e300 1363 [] false false map[] 0xc000496b00 0xc0004f20b0} -2022/02/28 11:07:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:07:09 [DEBUG] Exit from do method -2022/02/28 11:07:09 currentvrfname acctest_3fu8f -2022/02/28 11:07:09 found correct vrfname -2022/02/28 11:07:09 [DEBUG] acctest_3fu8f: Read finished successfully -2022/02/28 11:07:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:07:09 [DEBUG] acctest_3fu8f: Beginning Read -2022/02/28 11:07:09 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:09 [DEBUG] Begin Injection -2022/02/28 11:07:09 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058f280 1363 [] false false map[] 0xc001144400 0xc0004f20b0} -2022/02/28 11:07:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:07:10 [DEBUG] Exit from do method -2022/02/28 11:07:10 [DEBUG] acctest_3fu8f: Read finished successfully -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:07:10 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f: Beginning Read -2022/02/28 11:07:10 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:10 [DEBUG] Begin Injection -2022/02/28 11:07:10 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00114fb40 1363 [] false false map[] 0xc000497000 0xc0004f20b0} -2022/02/28 11:07:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"id":"621c5f731d000023624fb974","displayName":"acctest_3bt4p","description":"","templates":[{"name":"acctest_3bt4p","displayName":"acctest_3bt4p","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3fu8f","displayName":"acctest_3fu8f","bdRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/vrfs/acctest_3fu8f","dhcpLabel":{"name":"acctest_3fu8f","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3fu8f","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:07:10 [DEBUG] Exit from do method -2022/02/28 11:07:10 [DEBUG] /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f: Read finished successfully -2022/02/28 11:07:10 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:10 [DEBUG] New state was assigned lineage "63a3fe34-9edd-dd37-4c7d-fb4448d26fd7" -2022/02/28 11:07:10 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:07:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:07:10 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c5f801b00000908fd0c19" => "" - name: "acctest_3fu8f" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c5f731d000023624fb974" => "" - name: "acctest_3bt4p" => "" - template_name: "acctest_3bt4p" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_3fu8f" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_3fu8f" => "" - id: "acctest_3fu8f" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_3fu8f" => "" - schema_id: "621c5f731d000023624fb974" => "" - template_name: "acctest_3bt4p" => "" - vrf_name: "acctest_3fu8f" => "" - vrf_schema_id: "621c5f731d000023624fb974" => "" - vrf_template_name: "acctest_3bt4p" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_3fu8f" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f" => "" - name: "acctest_3fu8f" => "" - schema_id: "621c5f731d000023624fb974" => "" - template_name: "acctest_3bt4p" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_3fu8f" => "" - id: "acctest_3fu8f" => "" - layer3_multicast: "false" => "" - name: "acctest_3fu8f" => "" - schema_id: "621c5f731d000023624fb974" => "" - template: "acctest_3bt4p" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c5f801b00000908fd0c19 - provider = provider.mso - description = - name = acctest_3fu8f - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c5f731d000023624fb974 - provider = provider.mso - name = acctest_3bt4p - template_name = acctest_3bt4p - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_3fu8f - provider = provider.mso - dhcp_policy.name = acctest_3fu8f - dhcp_policy.version = 0 - display_name = acctest_3fu8f - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_3fu8f - schema_id = 621c5f731d000023624fb974 - template_name = acctest_3bt4p - vrf_name = acctest_3fu8f - vrf_schema_id = 621c5f731d000023624fb974 - vrf_template_name = acctest_3bt4p - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c5f731d000023624fb974/templates/acctest_3bt4p/bds/acctest_3fu8f/dhcpLabels/acctest_3fu8f - provider = provider.mso - bd_name = acctest_3fu8f - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_3fu8f - schema_id = 621c5f731d000023624fb974 - template_name = acctest_3bt4p - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_3fu8f - provider = provider.mso - display_name = acctest_3fu8f - layer3_multicast = false - name = acctest_3fu8f - schema_id = 621c5f731d000023624fb974 - template = acctest_3bt4p - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:07:10 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:07:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:07:10 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:07:10 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:07:10 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:07:10 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:07:10 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:07:10 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:07:10 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:07:10 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:07:10 [DEBUG] Template BD: Beginning Update -2022/02/28 11:07:10 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:10 [DEBUG] Begin Injection -2022/02/28 11:07:10 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:10 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000817100 0xc0004f20b0} -2022/02/28 11:07:10 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:10 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:07:10 [DEBUG] 621c5f801b00000908fd0c19: Beginning Read -2022/02/28 11:07:10 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:10 [DEBUG] Begin Injection -2022/02/28 11:07:10 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:10 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:07:10 [DEBUG] Template BD: Beginning Update -2022/02/28 11:07:10 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:10 [DEBUG] Begin Injection -2022/02/28 11:07:10 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:10 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000ea5400 0xc0004f20b0} -2022/02/28 11:07:10 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c5f801b00000908fd0c19 -2022/02/28 11:07:10 [DEBUG] : Read finished successfully -2022/02/28 11:07:11 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:11 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000496200 0xc0004f22c0} -2022/02/28 11:07:11 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:11 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:07:11 [DEBUG] acctest_3fu8f: Beginning Destroy -2022/02/28 11:07:11 HTTP request PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:11 [DEBUG] Begin Injection -2022/02/28 11:07:11 HTTP request after injection PATCH mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:11 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:11 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ea4b00 0xc0004f22c0} -2022/02/28 11:07:11 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974?validate=false -2022/02/28 11:07:11 [DEBUG] acctest_3fu8f: Destroy finished successfully -2022/02/28 11:07:11 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:07:11 [DEBUG] 621c5f731d000023624fb974: Beginning Destroy -2022/02/28 11:07:11 HTTP request DELETE mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:11 [DEBUG] Begin Injection -2022/02/28 11:07:11 HTTP request after injection DELETE mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:11 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:11 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:37:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000ea5600 0xc0004f22c0} -2022/02/28 11:07:11 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:11 [DEBUG] 621c5f731d000023624fb974: Destroy finished successfully -2022/02/28 11:07:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:11 [DEBUG] New state was assigned lineage "c3a3f565-e444-2c88-546f-848507f7812d" -2022/02/28 11:07:11 HTTP request GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:11 [DEBUG] Begin Injection -2022/02/28 11:07:11 HTTP request after injection GET mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 -2022/02/28 11:07:12 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:11 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000828400 39 [] false false map[] 0xc000816100 0xc0004f22c0} -2022/02/28 11:07:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c5f731d000023624fb974 {"code":404,"message":"Item not found"} -2022/02/28 11:07:12 [DEBUG] Exit from do method -2022/02/28 11:07:12 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:07:12 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:07:12 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:07:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:07:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:07:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:12 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:07:12 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:07:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:12 [DEBUG] : Beginning Read -2022/02/28 11:07:12 HTTP request GET mso/api/v1/tenants -2022/02/28 11:07:12 [DEBUG] Begin Injection -2022/02/28 11:07:12 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:07:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:07:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:07:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:37:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010cc440 5563 [] false false map[] 0xc000ea4800 0xc0004f22c0} -2022/02/28 11:07:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:07:12 [DEBUG] Exit from do method -2022/02/28 11:07:12 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:07:12 [DEBUG] provider has no plugin.Client -2022/02/28 11:07:12 [DEBUG] New state was assigned lineage "981293bf-8d97-4b2f-cdd0-3d8797484921" -2022/02/28 11:07:12 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:07:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:07:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:07:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:07:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:07:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:07:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:07:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:07:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:07:12 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:15:24 [DEBUG] Test: Executing step 0 -2022/02/28 11:15:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:24 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:24 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:15:24 [DEBUG] Test: Executing step 1 -2022/02/28 11:15:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:24 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:24 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:15:24 [DEBUG] Test: Executing step 2 -2022/02/28 11:15:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:24 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:15:24 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:15:24 [DEBUG] Test: Executing step 3 -2022/02/28 11:15:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:24 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:24 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:15:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:15:24 [DEBUG] Test: Executing step 4 -2022/02/28 11:15:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:24 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:24 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:24 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:24 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:15:24 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:24 [DEBUG] : Beginning Read -2022/02/28 11:15:24 HTTP request GET mso/api/v1/tenants -2022/02/28 11:15:24 [DEBUG] Begin Injection -2022/02/28 11:15:24 HTTP request POST /login -2022/02/28 11:15:24 HTTP request after injection POST /login -2022/02/28 11:15:24 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:15:25 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:15:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:25 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00021a6c0 -1 [chunked] false false map[] 0xc000706200 0xc0001362c0} -2022/02/28 11:15:25 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA"} -2022/02/28 11:15:25 [DEBUG] Exit from do method -2022/02/28 11:15:25 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:15:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000488400 5563 [] false false map[] 0xc000706100 0xc0001362c0} -2022/02/28 11:15:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:15:26 [DEBUG] Exit from do method -2022/02/28 11:15:26 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:15:26 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:26 [DEBUG] New state was assigned lineage "6738ef0f-0f77-982c-cc17-7015c27fd3dd" -2022/02/28 11:15:26 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:15:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:26 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:26 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:26 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:26 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:26 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:26 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:26 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:26 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_98r79" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_0d0oj" - template_name: "" => "acctest_0d0oj" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_98r79" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_98r79" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_0d0oj" - vrf_name: "" => "acctest_98r79" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_98r79" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_98r79" - schema_id: "" => "" - template_name: "" => "acctest_0d0oj" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_98r79" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_98r79" - schema_id: "" => "" - template: "" => "acctest_0d0oj" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:15:26 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:15:26 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:15:26 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:15:26 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:15:26 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:15:26 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:15:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:15:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:15:26 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:15:26 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:15:26 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:15:26 [DEBUG] : Beginning Create -2022/02/28 11:15:26 [DEBUG] Schema: Beginning Creation -2022/02/28 11:15:26 HTTP request POST mso/api/v1/schemas -2022/02/28 11:15:26 [DEBUG] Begin Injection -2022/02/28 11:15:26 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:15:26 [DEBUG] Begin Injection -2022/02/28 11:15:26 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:15:26 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:15:26 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA] Content-Type:[application/json]] {{"desc":"","name":"acctest_98r79","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa97ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:15:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:15:26 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA] Content-Type:[application/json]] {{"displayName":"acctest_0d0oj","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_0d0oj","externalEpgs":[],"filters":[],"name":"acctest_0d0oj","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xa97ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:15:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:15:26 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:15:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000590140 160 [] false false map[] 0xc000bcd000 0xc0001362c0} -2022/02/28 11:15:26 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:26 [DEBUG] Exit from do method -2022/02/28 11:15:26 [DEBUG] 621c61761b00007008fd0c1a: Creation finished successfully -2022/02/28 11:15:26 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read -2022/02/28 11:15:26 id: 621c61761b00007008fd0c1a -2022/02/28 11:15:26 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:26 [DEBUG] Begin Injection -2022/02/28 11:15:26 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:27 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:15:27 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c61761d000050624fb983] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000489640 400 [] false false map[] 0xc000d2cd00 0xc0001362c0} -2022/02/28 11:15:27 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:15:27 [DEBUG] Exit from do method -2022/02/28 11:15:27 [DEBUG] 621c61761d000050624fb983: Schema Creation finished successfully -2022/02/28 11:15:27 [DEBUG] 621c61761d000050624fb983: Beginning Read -2022/02/28 11:15:27 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:27 [DEBUG] Begin Injection -2022/02/28 11:15:27 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000488040 160 [] false false map[] 0xc000bcd300 0xc000136420} -2022/02/28 11:15:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:27 [DEBUG] Exit from do method -2022/02/28 11:15:27 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully -2022/02/28 11:15:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000378040 400 [] false false map[] 0xc000fa4400 0xc0001362c0} -2022/02/28 11:15:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:15:27 [DEBUG] Exit from do method -2022/02/28 11:15:27 [DEBUG] 621c61761d000050624fb983: Read finished successfully -2022/02/28 11:15:27 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:15:27 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:15:27 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:27 [DEBUG] Begin Injection -2022/02/28 11:15:27 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:27 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000fa4a00 0xc0001362c0} -2022/02/28 11:15:27 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:27 [DEBUG] acctest_98r79: Creation finished successfully -2022/02/28 11:15:27 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:27 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:27 [DEBUG] Begin Injection -2022/02/28 11:15:27 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021ac00 768 [] false false map[] 0xc000fa4c00 0xc0003f1340} -2022/02/28 11:15:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:15:28 [DEBUG] Exit from do method -2022/02/28 11:15:28 currentvrfname acctest_98r79 -2022/02/28 11:15:28 found correct vrfname -2022/02/28 11:15:28 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:28 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:15:28 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:15:28 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:15:28 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:28 [DEBUG] Begin Injection -2022/02/28 11:15:28 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:28 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000fa5600 0xc0003f1340} -2022/02/28 11:15:28 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:28 [DEBUG] : Beginning Read -2022/02/28 11:15:28 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:28 [DEBUG] Begin Injection -2022/02/28 11:15:28 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000590400 1277 [] false false map[] 0xc000d2c000 0xc0003f1340} -2022/02/28 11:15:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:15:28 [DEBUG] Exit from do method -2022/02/28 11:15:28 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:28 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:15:28 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:15:28 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:28 [DEBUG] Begin Injection -2022/02/28 11:15:28 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:28 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d2d000 0xc0003f1340} -2022/02/28 11:15:28 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:28 [DEBUG] Creation Complete -2022/02/28 11:15:28 [DEBUG] : Beginning Read -2022/02/28 11:15:28 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:28 [DEBUG] Begin Injection -2022/02/28 11:15:28 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd7fc0 1362 [] false false map[] 0xc000bcc000 0xc0003f1340} -2022/02/28 11:15:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:15:29 [DEBUG] Exit from do method -2022/02/28 11:15:29 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully -2022/02/28 11:15:29 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:29 [DEBUG] New state was assigned lineage "cb741498-5fa2-bdb0-1ed1-2c2875b59944" -2022/02/28 11:15:29 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:29 [DEBUG] Begin Injection -2022/02/28 11:15:29 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000945000 1362 [] false false map[] 0xc000bcc100 0xc0003f1340} -2022/02/28 11:15:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:15:29 [DEBUG] Exit from do method -2022/02/28 11:15:29 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:15:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:15:29 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:29 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:29 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:15:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:15:29 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:29 [DEBUG] : Beginning Read -2022/02/28 11:15:29 HTTP request GET mso/api/v1/tenants -2022/02/28 11:15:29 [DEBUG] Begin Injection -2022/02/28 11:15:29 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:15:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000944040 5563 [] false false map[] 0xc000d2d100 0xc0003f1340} -2022/02/28 11:15:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:15:29 [DEBUG] Exit from do method -2022/02/28 11:15:29 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:29 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read -2022/02/28 11:15:29 id: 621c61761b00007008fd0c1a -2022/02/28 11:15:29 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:29 [DEBUG] Begin Injection -2022/02/28 11:15:29 [DEBUG] 621c61761d000050624fb983: Beginning Read -2022/02/28 11:15:29 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:29 [DEBUG] Begin Injection -2022/02/28 11:15:29 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:29 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000abec80 160 [] false false map[] 0xc000d84500 0xc000136420} -2022/02/28 11:15:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:30 [DEBUG] Exit from do method -2022/02/28 11:15:30 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully -2022/02/28 11:15:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd60c0 1362 [] false false map[] 0xc000098100 0xc0003f1340} -2022/02/28 11:15:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:15:30 [DEBUG] Exit from do method -2022/02/28 11:15:30 [DEBUG] 621c61761d000050624fb983: Read finished successfully -2022/02/28 11:15:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:30 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:30 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:30 [DEBUG] Begin Injection -2022/02/28 11:15:30 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00c00 1362 [] false false map[] 0xc000d84900 0xc0003f1340} -2022/02/28 11:15:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:15:30 [DEBUG] Exit from do method -2022/02/28 11:15:30 currentvrfname acctest_98r79 -2022/02/28 11:15:30 found correct vrfname -2022/02/28 11:15:30 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:30 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:30 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:30 [DEBUG] Begin Injection -2022/02/28 11:15:30 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd74c0 1362 [] false false map[] 0xc00037e500 0xc0003f1340} -2022/02/28 11:15:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:15:30 [DEBUG] Exit from do method -2022/02/28 11:15:30 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:30 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Read -2022/02/28 11:15:30 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:30 [DEBUG] Begin Injection -2022/02/28 11:15:30 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000abf800 1362 [] false false map[] 0xc0007f0900 0xc0003f1340} -2022/02/28 11:15:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:15:31 [DEBUG] Exit from do method -2022/02/28 11:15:31 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully -2022/02/28 11:15:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:31 [DEBUG] New state was assigned lineage "2bfebec7-03a5-6529-a0e8-112c33f122c9" -2022/02/28 11:15:31 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:15:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:31 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:31 [DEBUG] Test: Executing step 5 -2022/02/28 11:15:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:31 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:15:31 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:31 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:15:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:31 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:31 [DEBUG] : Beginning Read -2022/02/28 11:15:31 HTTP request GET mso/api/v1/tenants -2022/02/28 11:15:31 [DEBUG] Begin Injection -2022/02/28 11:15:31 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:15:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7000 5563 [] false false map[] 0xc000d2c700 0xc0003f1340} -2022/02/28 11:15:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:15:31 [DEBUG] Exit from do method -2022/02/28 11:15:31 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:31 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:15:31 [DEBUG] 621c61761d000050624fb983: Beginning Read -2022/02/28 11:15:31 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:31 [DEBUG] Begin Injection -2022/02/28 11:15:31 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:31 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read -2022/02/28 11:15:31 id: 621c61761b00007008fd0c1a -2022/02/28 11:15:31 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:31 [DEBUG] Begin Injection -2022/02/28 11:15:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005918c0 1362 [] false false map[] 0xc00037e700 0xc0003f1340} -2022/02/28 11:15:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:15:31 [DEBUG] Exit from do method -2022/02/28 11:15:31 [DEBUG] 621c61761d000050624fb983: Read finished successfully -2022/02/28 11:15:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:31 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:31 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:31 [DEBUG] Begin Injection -2022/02/28 11:15:31 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005919c0 160 [] false false map[] 0xc000d74200 0xc000136420} -2022/02/28 11:15:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:31 [DEBUG] Exit from do method -2022/02/28 11:15:31 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully -2022/02/28 11:15:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6ac0 1362 [] false false map[] 0xc000d74600 0xc0003f1340} -2022/02/28 11:15:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:15:32 [DEBUG] Exit from do method -2022/02/28 11:15:32 currentvrfname acctest_98r79 -2022/02/28 11:15:32 found correct vrfname -2022/02/28 11:15:32 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:32 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:32 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:32 [DEBUG] Begin Injection -2022/02/28 11:15:32 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00040 1362 [] false false map[] 0xc000440800 0xc0003f1340} -2022/02/28 11:15:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:15:32 [DEBUG] Exit from do method -2022/02/28 11:15:32 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:32 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Read -2022/02/28 11:15:32 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:32 [DEBUG] Begin Injection -2022/02/28 11:15:32 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a920c0 1362 [] false false map[] 0xc00037e400 0xc0003f1340} -2022/02/28 11:15:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:15:32 [DEBUG] Exit from do method -2022/02/28 11:15:32 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully -2022/02/28 11:15:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:32 [DEBUG] New state was assigned lineage "eb92c367-804e-9dfc-447b-21d603b9dc77" -2022/02/28 11:15:32 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:15:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:32 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:32 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:32 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.test - description: "" => "" - id: "" => "" - name: "" => "acctest_yc60f" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -UPDATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_98r79" => "acctest_98r79" - dhcp_option_name: "" => "acctest_yc60f" - dhcp_option_version: "0" => "1" - id: "/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79" => "/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79" - name: "acctest_98r79" => "acctest_98r79" - schema_id: "621c61761d000050624fb983" => "621c61761d000050624fb983" - template_name: "acctest_0d0oj" => "acctest_0d0oj" - version: "0" => "1" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c61761b00007008fd0c1a - provider = provider.mso - description = - name = acctest_98r79 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c61761d000050624fb983 - provider = provider.mso - name = acctest_0d0oj - template_name = acctest_0d0oj - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_98r79 - provider = provider.mso - dhcp_policy.name = acctest_98r79 - dhcp_policy.version = 0 - display_name = acctest_98r79 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_98r79 - schema_id = 621c61761d000050624fb983 - template_name = acctest_0d0oj - vrf_name = acctest_98r79 - vrf_schema_id = 621c61761d000050624fb983 - vrf_template_name = acctest_0d0oj - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79 - provider = provider.mso - bd_name = acctest_98r79 - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_98r79 - schema_id = 621c61761d000050624fb983 - template_name = acctest_0d0oj - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_98r79 - provider = provider.mso - display_name = acctest_98r79 - layer3_multicast = false - name = acctest_98r79 - schema_id = 621c61761d000050624fb983 - template = acctest_0d0oj - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:15:32 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:15:32 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:15:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state)] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:15:32 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:15:32 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:15:32 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change -2022/02/28 11:15:32 [DEBUG] : Beginning Create -2022/02/28 11:15:32 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 11:15:32 [DEBUG] Begin Injection -2022/02/28 11:15:32 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 11:15:32 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_yc60f","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa97ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:15:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:15:33 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:15:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a01400 161 [] false false map[] 0xc000d2c600 0xc0003f1340} -2022/02/28 11:15:33 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c617d1b00007108fd0c1b","name":"acctest_yc60f","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:33 [DEBUG] Exit from do method -2022/02/28 11:15:33 [DEBUG] 621c617d1b00007108fd0c1b: Creation finished successfully -2022/02/28 11:15:33 [DEBUG] 621c617d1b00007108fd0c1b: Beginning Read -2022/02/28 11:15:33 id: 621c617d1b00007108fd0c1b -2022/02/28 11:15:33 HTTP request GET mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:33 [DEBUG] Begin Injection -2022/02/28 11:15:33 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a01540 161 [] false false map[] 0xc00102a000 0xc0003f1340} -2022/02/28 11:15:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b {"id":"621c617d1b00007108fd0c1b","name":"acctest_yc60f","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:33 [DEBUG] Exit from do method -2022/02/28 11:15:33 [DEBUG] 621c617d1b00007108fd0c1b: Read finished successfully -2022/02/28 11:15:33 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change -2022/02/28 11:15:33 [DEBUG] Template BD: Beginning Update -2022/02/28 11:15:33 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:33 [DEBUG] Begin Injection -2022/02/28 11:15:33 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:33 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d2d500 0xc0003f1340} -2022/02/28 11:15:33 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:33 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Read -2022/02/28 11:15:33 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:33 [DEBUG] Begin Injection -2022/02/28 11:15:33 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000488040 1472 [] false false map[] 0xc000d2c100 0xc0003f1340} -2022/02/28 11:15:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:15:34 [DEBUG] Exit from do method -2022/02/28 11:15:34 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully -2022/02/28 11:15:34 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:34 [DEBUG] New state was assigned lineage "0bad6a73-f7db-1a24-7325-9fa0ad3051f4" -2022/02/28 11:15:34 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:34 [DEBUG] Begin Injection -2022/02/28 11:15:34 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000590480 1472 [] false false map[] 0xc0000a4000 0xc0003f1340} -2022/02/28 11:15:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:15:34 [DEBUG] Exit from do method -2022/02/28 11:15:34 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:15:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:34 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:34 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:34 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:15:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:34 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:34 [DEBUG] : Beginning Read -2022/02/28 11:15:34 HTTP request GET mso/api/v1/tenants -2022/02/28 11:15:34 [DEBUG] Begin Injection -2022/02/28 11:15:34 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:15:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00300 5563 [] false false map[] 0xc00037ec00 0xc0003f1340} -2022/02/28 11:15:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:15:34 [DEBUG] Exit from do method -2022/02/28 11:15:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:15:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:34 [DEBUG] 621c61761d000050624fb983: Beginning Read -2022/02/28 11:15:34 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:34 [DEBUG] Begin Injection -2022/02/28 11:15:34 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:34 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read -2022/02/28 11:15:34 id: 621c61761b00007008fd0c1a -2022/02/28 11:15:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:34 [DEBUG] Begin Injection -2022/02/28 11:15:34 [DEBUG] 621c617d1b00007108fd0c1b: Beginning Read -2022/02/28 11:15:34 id: 621c617d1b00007108fd0c1b -2022/02/28 11:15:34 HTTP request GET mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:34 [DEBUG] Begin Injection -2022/02/28 11:15:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:34 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000590180 1472 [] false false map[] 0xc0000a4100 0xc0003f1340} -2022/02/28 11:15:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:15:35 [DEBUG] Exit from do method -2022/02/28 11:15:35 [DEBUG] 621c61761d000050624fb983: Read finished successfully -2022/02/28 11:15:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:35 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:35 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:35 [DEBUG] Begin Injection -2022/02/28 11:15:35 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6180 160 [] false false map[] 0xc00037f100 0xc000136420} -2022/02/28 11:15:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:35 [DEBUG] Exit from do method -2022/02/28 11:15:35 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully -2022/02/28 11:15:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92280 161 [] false false map[] 0xc0008a0500 0xc0003f1340} -2022/02/28 11:15:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b {"id":"621c617d1b00007108fd0c1b","name":"acctest_yc60f","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:35 [DEBUG] Exit from do method -2022/02/28 11:15:35 [DEBUG] 621c617d1b00007108fd0c1b: Read finished successfully -2022/02/28 11:15:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92800 1472 [] false false map[] 0xc0000a4800 0xc000136420} -2022/02/28 11:15:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:15:35 [DEBUG] Exit from do method -2022/02/28 11:15:35 currentvrfname acctest_98r79 -2022/02/28 11:15:35 found correct vrfname -2022/02/28 11:15:35 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:35 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:35 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:35 [DEBUG] Begin Injection -2022/02/28 11:15:35 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd68c0 1472 [] false false map[] 0xc0008a0a00 0xc000136420} -2022/02/28 11:15:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:15:35 [DEBUG] Exit from do method -2022/02/28 11:15:35 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:35 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Read -2022/02/28 11:15:35 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:35 [DEBUG] Begin Injection -2022/02/28 11:15:35 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6980 1472 [] false false map[] 0xc00037f600 0xc000906000} -2022/02/28 11:15:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:15:36 [DEBUG] Exit from do method -2022/02/28 11:15:36 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully -2022/02/28 11:15:36 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:36 [DEBUG] New state was assigned lineage "cee5de00-a93f-a1fb-5b4f-1e782db6b16b" -2022/02/28 11:15:36 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:15:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:36 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:36 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:36 [DEBUG] Test: Executing step 6 -2022/02/28 11:15:36 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79\")" (*terraform.graphNodeImportState) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79\")" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:36 [DEBUG] Starting graph walk: walkImport -2022/02/28 11:15:36 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Import -2022/02/28 11:15:36 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:36 [DEBUG] Begin Injection -2022/02/28 11:15:36 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e46a00 1472 [] false false map[] 0xc000e26a00 0xc000d32840} -2022/02/28 11:15:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:15:36 [DEBUG] Exit from do method -2022/02/28 11:15:36 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Import finished successfully -2022/02/28 11:15:36 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Read -2022/02/28 11:15:36 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:36 [DEBUG] Begin Injection -2022/02/28 11:15:36 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6040 1472 [] false false map[] 0xc000d2cb00 0xc000d32840} -2022/02/28 11:15:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:15:36 [DEBUG] Exit from do method -2022/02/28 11:15:36 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully -2022/02/28 11:15:36 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:36 [DEBUG] New state was assigned lineage "67c7eda3-1216-cfa3-fbff-30fd7d8d8440" -2022/02/28 11:15:36 [DEBUG] Test: Executing step 7 -2022/02/28 11:15:36 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:36 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:36 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:36 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:36 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config -2022/02/28 11:15:36 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config -2022/02/28 11:15:36 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:15:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:36 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:15:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:36 [DEBUG] : Beginning Read -2022/02/28 11:15:36 HTTP request GET mso/api/v1/tenants -2022/02/28 11:15:36 [DEBUG] Begin Injection -2022/02/28 11:15:36 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:15:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6040 5563 [] false false map[] 0xc00037e800 0xc000d32840} -2022/02/28 11:15:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:15:37 [DEBUG] Exit from do method -2022/02/28 11:15:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:15:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:37 [DEBUG] 621c61761d000050624fb983: Beginning Read -2022/02/28 11:15:37 [DEBUG] 621c617d1b00007108fd0c1b: Beginning Read -2022/02/28 11:15:37 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:37 [DEBUG] Begin Injection -2022/02/28 11:15:37 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:37 id: 621c617d1b00007108fd0c1b -2022/02/28 11:15:37 HTTP request GET mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:37 [DEBUG] Begin Injection -2022/02/28 11:15:37 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:37 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read -2022/02/28 11:15:37 id: 621c61761b00007008fd0c1a -2022/02/28 11:15:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:37 [DEBUG] Begin Injection -2022/02/28 11:15:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000830500 1472 [] false false map[] 0xc00019eb00 0xc000d32840} -2022/02/28 11:15:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:15:37 [DEBUG] Exit from do method -2022/02/28 11:15:37 [DEBUG] 621c61761d000050624fb983: Read finished successfully -2022/02/28 11:15:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:37 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:37 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:37 [DEBUG] Begin Injection -2022/02/28 11:15:37 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000831640 161 [] false false map[] 0xc000e9e000 0xc0003f1340} -2022/02/28 11:15:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b {"id":"621c617d1b00007108fd0c1b","name":"acctest_yc60f","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:37 [DEBUG] Exit from do method -2022/02/28 11:15:37 [DEBUG] 621c617d1b00007108fd0c1b: Read finished successfully -2022/02/28 11:15:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6c80 160 [] false false map[] 0xc00041e100 0xc000d32840} -2022/02/28 11:15:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:37 [DEBUG] Exit from do method -2022/02/28 11:15:37 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully -2022/02/28 11:15:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004dfc0 1472 [] false false map[] 0xc00041e600 0xc0003f1340} -2022/02/28 11:15:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:15:37 [DEBUG] Exit from do method -2022/02/28 11:15:37 currentvrfname acctest_98r79 -2022/02/28 11:15:37 found correct vrfname -2022/02/28 11:15:37 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:37 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:37 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:37 [DEBUG] Begin Injection -2022/02/28 11:15:37 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6040 1472 [] false false map[] 0xc00041eb00 0xc0003f1340} -2022/02/28 11:15:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:15:38 [DEBUG] Exit from do method -2022/02/28 11:15:38 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:38 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Beginning Read -2022/02/28 11:15:38 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:38 [DEBUG] Begin Injection -2022/02/28 11:15:38 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000378280 1472 [] false false map[] 0xc00037ea00 0xc0001362c0} -2022/02/28 11:15:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","dhcpLabel":{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_98r79","dhcpOptionLabel":{"name":"acctest_yc60f","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:15:38 [DEBUG] Exit from do method -2022/02/28 11:15:38 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79: Read finished successfully -2022/02/28 11:15:38 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:38 [DEBUG] New state was assigned lineage "240b7527-1527-e389-88a6-d4f37b73d3ca" -2022/02/28 11:15:38 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:15:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] -2022/02/28 11:15:38 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:38 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:38 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.test - description: "" => "" - id: "621c617d1b00007108fd0c1b" => "" - name: "acctest_yc60f" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_98r79" => "" - dhcp_option_name: "acctest_yc60f" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79" => "" - name: "acctest_98r79" => "" - schema_id: "621c61761d000050624fb983" => "" - template_name: "acctest_0d0oj" => "" - version: "1" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.test: - ID = 621c617d1b00007108fd0c1b - provider = provider.mso - description = - name = acctest_yc60f - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c61761b00007008fd0c1a - provider = provider.mso - description = - name = acctest_98r79 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c61761d000050624fb983 - provider = provider.mso - name = acctest_0d0oj - template_name = acctest_0d0oj - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_98r79 - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_yc60f - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_98r79 - dhcp_policy.version = 1 - display_name = acctest_98r79 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_98r79 - schema_id = 621c61761d000050624fb983 - template_name = acctest_0d0oj - vrf_name = acctest_98r79 - vrf_schema_id = 621c61761d000050624fb983 - vrf_template_name = acctest_0d0oj - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79/dhcpLabels/acctest_98r79 - provider = provider.mso - bd_name = acctest_98r79 - dhcp_option_name = acctest_yc60f - dhcp_option_version = 1 - name = acctest_98r79 - schema_id = 621c61761d000050624fb983 - template_name = acctest_0d0oj - version = 1 - - Dependencies: - mso_dhcp_option_policy.test - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_98r79 - provider = provider.mso - display_name = acctest_98r79 - layer3_multicast = false - name = acctest_98r79 - schema_id = 621c61761d000050624fb983 - template = acctest_0d0oj - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:15:38 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:15:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] -2022/02/28 11:15:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] -2022/02/28 11:15:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:15:38 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:15:38 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:15:38 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:15:38 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:15:38 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:15:38 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:15:38 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:15:38 [DEBUG] Template BD: Beginning Update -2022/02/28 11:15:38 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:38 [DEBUG] Begin Injection -2022/02/28 11:15:38 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:38 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00043e300 0xc000d32000} -2022/02/28 11:15:38 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:38 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change -2022/02/28 11:15:38 [DEBUG] 621c617d1b00007108fd0c1b: Beginning Read -2022/02/28 11:15:38 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:38 [DEBUG] Begin Injection -2022/02/28 11:15:38 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:39 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00043eb00 0xc000d32000} -2022/02/28 11:15:39 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c617d1b00007108fd0c1b -2022/02/28 11:15:39 [DEBUG] : Read finished successfully -2022/02/28 11:15:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:39 [DEBUG] New state was assigned lineage "9caf8173-d5ee-a266-b21a-44ab7e57c2a5" -2022/02/28 11:15:39 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:15:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:39 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:39 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:15:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:39 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:39 [DEBUG] : Beginning Read -2022/02/28 11:15:39 HTTP request GET mso/api/v1/tenants -2022/02/28 11:15:39 [DEBUG] Begin Injection -2022/02/28 11:15:39 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:15:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92040 5563 [] false false map[] 0xc0007de700 0xc000d32000} -2022/02/28 11:15:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:15:39 [DEBUG] Exit from do method -2022/02/28 11:15:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:39 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read -2022/02/28 11:15:39 id: 621c61761b00007008fd0c1a -2022/02/28 11:15:39 [DEBUG] 621c61761d000050624fb983: Beginning Read -2022/02/28 11:15:39 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:39 [DEBUG] Begin Injection -2022/02/28 11:15:39 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:39 [DEBUG] Begin Injection -2022/02/28 11:15:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92180 1277 [] false false map[] 0xc000100500 0xc000d32000} -2022/02/28 11:15:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:15:39 [DEBUG] Exit from do method -2022/02/28 11:15:39 [DEBUG] 621c61761d000050624fb983: Read finished successfully -2022/02/28 11:15:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:39 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:39 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:39 [DEBUG] Begin Injection -2022/02/28 11:15:39 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92500 160 [] false false map[] 0xc00037ea00 0xc000d32840} -2022/02/28 11:15:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:39 [DEBUG] Exit from do method -2022/02/28 11:15:39 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully -2022/02/28 11:15:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e47d00 1277 [] false false map[] 0xc000802400 0xc000d32000} -2022/02/28 11:15:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:15:40 [DEBUG] Exit from do method -2022/02/28 11:15:40 currentvrfname acctest_98r79 -2022/02/28 11:15:40 found correct vrfname -2022/02/28 11:15:40 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:40 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:40 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:40 [DEBUG] Begin Injection -2022/02/28 11:15:40 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021a2c0 1277 [] false false map[] 0xc00037eb00 0xc000d32000} -2022/02/28 11:15:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:15:40 [DEBUG] Exit from do method -2022/02/28 11:15:40 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:40 [DEBUG] New state was assigned lineage "da9894b1-015d-eef9-5635-13bd5b30848f" -2022/02/28 11:15:40 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:15:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:40 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:40 [DEBUG] Test: Executing step 8 -2022/02/28 11:15:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:40 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:40 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:40 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:15:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:40 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:40 [DEBUG] : Beginning Read -2022/02/28 11:15:40 HTTP request GET mso/api/v1/tenants -2022/02/28 11:15:40 [DEBUG] Begin Injection -2022/02/28 11:15:40 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:15:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098d8c0 5563 [] false false map[] 0xc000dde300 0xc000d32000} -2022/02/28 11:15:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:15:40 [DEBUG] Exit from do method -2022/02/28 11:15:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:40 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read -2022/02/28 11:15:40 id: 621c61761b00007008fd0c1a -2022/02/28 11:15:40 [DEBUG] 621c61761d000050624fb983: Beginning Read -2022/02/28 11:15:40 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:40 [DEBUG] Begin Injection -2022/02/28 11:15:40 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:40 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:40 [DEBUG] Begin Injection -2022/02/28 11:15:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a926c0 1277 [] false false map[] 0xc0001fa100 0xc000d32000} -2022/02/28 11:15:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:15:41 [DEBUG] Exit from do method -2022/02/28 11:15:41 [DEBUG] 621c61761d000050624fb983: Read finished successfully -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:41 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:41 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:41 [DEBUG] Begin Injection -2022/02/28 11:15:41 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00580 160 [] false false map[] 0xc000e44600 0xc000d32840} -2022/02/28 11:15:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a {"id":"621c61761b00007008fd0c1a","name":"acctest_98r79","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:41 [DEBUG] Exit from do method -2022/02/28 11:15:41 [DEBUG] 621c61761b00007008fd0c1a: Read finished successfully -2022/02/28 11:15:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000590fc0 1277 [] false false map[] 0xc00037e500 0xc000d32000} -2022/02/28 11:15:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:15:41 [DEBUG] Exit from do method -2022/02/28 11:15:41 currentvrfname acctest_98r79 -2022/02/28 11:15:41 found correct vrfname -2022/02/28 11:15:41 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:41 [DEBUG] acctest_98r79: Beginning Read -2022/02/28 11:15:41 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:41 [DEBUG] Begin Injection -2022/02/28 11:15:41 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000590180 1277 [] false false map[] 0xc0006e0300 0xc000d32000} -2022/02/28 11:15:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_98r79","displayName":"acctest_98r79","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_98r79","displayName":"acctest_98r79","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_98r79","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_98r79","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:15:41 [DEBUG] Exit from do method -2022/02/28 11:15:41 [DEBUG] acctest_98r79: Read finished successfully -2022/02/28 11:15:41 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:41 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:41 [DEBUG] New state was assigned lineage "16106935-b39b-b751-2b08-376697819045" -2022/02/28 11:15:41 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:15:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:41 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:41 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:41 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:41 [WARN] Test: Step plan: DIFF: - -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c61761b00007008fd0c1a" => "" - name: "acctest_98r79" => "acctest_c7y9r" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "acctest_98r79" => "acctest_c7y9r" (forces new resource) - id: "acctest_98r79" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_98r79" => "acctest_c7y9r" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c61761d000050624fb983" => "621c61761d000050624fb983" - template_name: "acctest_0d0oj" => "acctest_0d0oj" - vrf_name: "acctest_98r79" => "acctest_c7y9r" - vrf_schema_id: "621c61761d000050624fb983" => "" - vrf_template_name: "acctest_0d0oj" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_c7y9r" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_c7y9r" - schema_id: "" => "621c61761d000050624fb983" - template_name: "" => "acctest_0d0oj" - version: "" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_98r79" => "acctest_c7y9r" - id: "acctest_98r79" => "" - layer3_multicast: "false" => "" - name: "acctest_98r79" => "acctest_c7y9r" (forces new resource) - schema_id: "621c61761d000050624fb983" => "621c61761d000050624fb983" - template: "acctest_0d0oj" => "acctest_0d0oj" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c61761b00007008fd0c1a - provider = provider.mso - description = - name = acctest_98r79 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c61761d000050624fb983 - provider = provider.mso - name = acctest_0d0oj - template_name = acctest_0d0oj - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_98r79 - provider = provider.mso - display_name = acctest_98r79 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_98r79 - schema_id = 621c61761d000050624fb983 - template_name = acctest_0d0oj - vrf_name = acctest_98r79 - vrf_schema_id = 621c61761d000050624fb983 - vrf_template_name = acctest_0d0oj - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_98r79 - provider = provider.mso - display_name = acctest_98r79 - layer3_multicast = false - name = acctest_98r79 - schema_id = 621c61761d000050624fb983 - template = acctest_0d0oj - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:15:41 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:15:41 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:15:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:15:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:15:41 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:15:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:15:41 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:15:41 [DEBUG] 621c61761b00007008fd0c1a: Beginning Read -2022/02/28 11:15:41 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:41 [DEBUG] Begin Injection -2022/02/28 11:15:41 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:41 [DEBUG] Template BD: Beginning Update -2022/02/28 11:15:41 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:41 [DEBUG] Begin Injection -2022/02/28 11:15:41 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000dde200 0xc000d32000} -2022/02/28 11:15:42 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61761b00007008fd0c1a -2022/02/28 11:15:42 [DEBUG] : Read finished successfully -2022/02/28 11:15:42 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:15:42 [DEBUG] : Beginning Create -2022/02/28 11:15:42 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:15:42 [DEBUG] Begin Injection -2022/02/28 11:15:42 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:15:42 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzI1LCJpYXQiOjE2NDYwMjcxMjUsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVDRQZXZwUmxzOGhMQ0N4SGw1Y0JPVkV0IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.i663GzC4R7IUyoPDXfdD0GEaK0lpk3AMv5boQEde_-bJFhSrSJ7cNvYs-V_Ojajd2xiF_c28Wss_soAFXdFH6rrSmgp-8xXpqFqVu2zg-8iwg0b_s5Unwr3Me06PGciiiFQhdCg9fPKDnsWPjctOq-hifYhjnN8IIFHlrP9zNPow25F31_hYAl54jE2wKmxIlV5UVdT73ivcZG13te2yF_pXlU_5Sd5o1_8eW9buDqyOOE4EORCsPlGRmJagBAWIJVPTpls3aZotPYUF2fUVY1HFyaBzNg-GfqKVVKhRdGJoqiH-SF0bBf_mCPacTSN5l_8THev7KAvtRq8RcFR1IA] Content-Type:[application/json]] {{"desc":"","name":"acctest_c7y9r","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa97ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:15:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:15:42 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00037e500 0xc000d32840} -2022/02/28 11:15:42 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:15:42 [DEBUG] acctest_98r79: Beginning Destroy -2022/02/28 11:15:42 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 [DEBUG] Begin Injection -2022/02/28 11:15:42 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ddee00 0xc000d32840} -2022/02/28 11:15:42 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 [DEBUG] acctest_98r79: Destroy finished successfully -2022/02/28 11:15:42 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:15:42 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:15:42 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 [DEBUG] Begin Injection -2022/02/28 11:15:42 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:15:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098c040 160 [] false false map[] 0xc0006e0f00 0xc000d32000} -2022/02/28 11:15:42 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c61861b00006408fd0c1c","name":"acctest_c7y9r","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:42 [DEBUG] Exit from do method -2022/02/28 11:15:42 [DEBUG] 621c61861b00006408fd0c1c: Creation finished successfully -2022/02/28 11:15:42 [DEBUG] 621c61861b00006408fd0c1c: Beginning Read -2022/02/28 11:15:42 id: 621c61861b00006408fd0c1c -2022/02/28 11:15:42 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:42 [DEBUG] Begin Injection -2022/02/28 11:15:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:42 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ddf300 0xc000d32840} -2022/02/28 11:15:42 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:42 [DEBUG] acctest_c7y9r: Creation finished successfully -2022/02/28 11:15:42 [DEBUG] acctest_c7y9r: Beginning Read -2022/02/28 11:15:42 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:42 [DEBUG] Begin Injection -2022/02/28 11:15:42 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92080 160 [] false false map[] 0xc000ab2100 0xc000d32000} -2022/02/28 11:15:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c {"id":"621c61861b00006408fd0c1c","name":"acctest_c7y9r","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:42 [DEBUG] Exit from do method -2022/02/28 11:15:42 [DEBUG] 621c61861b00006408fd0c1c: Read finished successfully -2022/02/28 11:15:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd60c0 768 [] false false map[] 0xc000ab2000 0xc000d32840} -2022/02/28 11:15:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 11:15:43 [DEBUG] Exit from do method -2022/02/28 11:15:43 currentvrfname acctest_c7y9r -2022/02/28 11:15:43 found correct vrfname -2022/02/28 11:15:43 [DEBUG] acctest_c7y9r: Read finished successfully -2022/02/28 11:15:43 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:15:43 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:15:43 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:15:43 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:43 [DEBUG] Begin Injection -2022/02/28 11:15:43 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:43 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ddef00 0xc000d32840} -2022/02/28 11:15:43 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:43 [DEBUG] : Beginning Read -2022/02/28 11:15:43 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:43 [DEBUG] Begin Injection -2022/02/28 11:15:43 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098c240 1278 [] false false map[] 0xc000ab2200 0xc000d32840} -2022/02/28 11:15:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 11:15:43 [DEBUG] Exit from do method -2022/02/28 11:15:43 [DEBUG] acctest_c7y9r: Read finished successfully -2022/02/28 11:15:43 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:15:43 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:15:43 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:43 [DEBUG] Begin Injection -2022/02/28 11:15:43 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:44 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ddf900 0xc000d32840} -2022/02/28 11:15:44 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:44 [DEBUG] Creation Complete -2022/02/28 11:15:44 [DEBUG] : Beginning Read -2022/02/28 11:15:44 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:44 [DEBUG] Begin Injection -2022/02/28 11:15:44 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021a2c0 1363 [] false false map[] 0xc000dde000 0xc000d32840} -2022/02/28 11:15:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:15:44 [DEBUG] Exit from do method -2022/02/28 11:15:44 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r: Read finished successfully -2022/02/28 11:15:44 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:44 [DEBUG] New state was assigned lineage "8f0ddae4-ad40-226b-fc3d-02718a14bbdd" -2022/02/28 11:15:44 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:44 [DEBUG] Begin Injection -2022/02/28 11:15:44 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021aa40 1363 [] false false map[] 0xc0011ac000 0xc000d32840} -2022/02/28 11:15:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:15:44 [DEBUG] Exit from do method -2022/02/28 11:15:44 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:15:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:44 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:44 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:44 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:15:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:15:44 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:15:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:44 [DEBUG] : Beginning Read -2022/02/28 11:15:44 HTTP request GET mso/api/v1/tenants -2022/02/28 11:15:44 [DEBUG] Begin Injection -2022/02/28 11:15:44 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:15:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e46540 5563 [] false false map[] 0xc000bec100 0xc000d32840} -2022/02/28 11:15:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:15:45 [DEBUG] Exit from do method -2022/02/28 11:15:45 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:15:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:45 [DEBUG] 621c61761d000050624fb983: Beginning Read -2022/02/28 11:15:45 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:45 [DEBUG] Begin Injection -2022/02/28 11:15:45 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:45 [DEBUG] 621c61861b00006408fd0c1c: Beginning Read -2022/02/28 11:15:45 id: 621c61861b00006408fd0c1c -2022/02/28 11:15:45 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:45 [DEBUG] Begin Injection -2022/02/28 11:15:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92800 1363 [] false false map[] 0xc000bec900 0xc000d32840} -2022/02/28 11:15:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:15:45 [DEBUG] Exit from do method -2022/02/28 11:15:45 [DEBUG] 621c61761d000050624fb983: Read finished successfully -2022/02/28 11:15:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:45 [DEBUG] acctest_c7y9r: Beginning Read -2022/02/28 11:15:45 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:45 [DEBUG] Begin Injection -2022/02/28 11:15:45 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92940 160 [] false false map[] 0xc0001fa600 0xc000d32000} -2022/02/28 11:15:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c {"id":"621c61861b00006408fd0c1c","name":"acctest_c7y9r","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:45 [DEBUG] Exit from do method -2022/02/28 11:15:45 [DEBUG] 621c61861b00006408fd0c1c: Read finished successfully -2022/02/28 11:15:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098c380 1363 [] false false map[] 0xc0001faa00 0xc000d32840} -2022/02/28 11:15:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:15:45 [DEBUG] Exit from do method -2022/02/28 11:15:45 currentvrfname acctest_c7y9r -2022/02/28 11:15:45 found correct vrfname -2022/02/28 11:15:45 [DEBUG] acctest_c7y9r: Read finished successfully -2022/02/28 11:15:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:45 [DEBUG] acctest_c7y9r: Beginning Read -2022/02/28 11:15:45 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:45 [DEBUG] Begin Injection -2022/02/28 11:15:45 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098d6c0 1363 [] false false map[] 0xc000becc00 0xc000d32840} -2022/02/28 11:15:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:15:46 [DEBUG] Exit from do method -2022/02/28 11:15:46 [DEBUG] acctest_c7y9r: Read finished successfully -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:46 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r: Beginning Read -2022/02/28 11:15:46 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:46 [DEBUG] Begin Injection -2022/02/28 11:15:46 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098c040 1363 [] false false map[] 0xc0001fae00 0xc000d32840} -2022/02/28 11:15:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:15:46 [DEBUG] Exit from do method -2022/02/28 11:15:46 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r: Read finished successfully -2022/02/28 11:15:46 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:46 [DEBUG] New state was assigned lineage "365cffae-c82f-431e-d1f6-37739a556b96" -2022/02/28 11:15:46 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:15:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:46 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:46 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:46 [WARN] Test: Executing destroy step -2022/02/28 11:15:46 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:46 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:46 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:46 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:46 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:15:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:46 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:15:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:46 [DEBUG] : Beginning Read -2022/02/28 11:15:46 HTTP request GET mso/api/v1/tenants -2022/02/28 11:15:46 [DEBUG] Begin Injection -2022/02/28 11:15:46 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:15:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021a180 5563 [] false false map[] 0xc000fd6d00 0xc000d32840} -2022/02/28 11:15:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:15:47 [DEBUG] Exit from do method -2022/02/28 11:15:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:15:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:15:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:15:47 [DEBUG] 621c61761d000050624fb983: Beginning Read -2022/02/28 11:15:47 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:47 [DEBUG] Begin Injection -2022/02/28 11:15:47 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:47 [DEBUG] 621c61861b00006408fd0c1c: Beginning Read -2022/02/28 11:15:47 id: 621c61861b00006408fd0c1c -2022/02/28 11:15:47 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:47 [DEBUG] Begin Injection -2022/02/28 11:15:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a92740 160 [] false false map[] 0xc00037e400 0xc000d32000} -2022/02/28 11:15:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c {"id":"621c61861b00006408fd0c1c","name":"acctest_c7y9r","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:15:47 [DEBUG] Exit from do method -2022/02/28 11:15:47 [DEBUG] 621c61861b00006408fd0c1c: Read finished successfully -2022/02/28 11:15:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00b40 1363 [] false false map[] 0xc00043e100 0xc000d32840} -2022/02/28 11:15:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:15:47 [DEBUG] Exit from do method -2022/02/28 11:15:47 [DEBUG] 621c61761d000050624fb983: Read finished successfully -2022/02/28 11:15:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:15:47 [DEBUG] acctest_c7y9r: Beginning Read -2022/02/28 11:15:47 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:47 [DEBUG] Begin Injection -2022/02/28 11:15:47 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098d1c0 1363 [] false false map[] 0xc001408600 0xc000d32840} -2022/02/28 11:15:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:15:47 [DEBUG] Exit from do method -2022/02/28 11:15:47 currentvrfname acctest_c7y9r -2022/02/28 11:15:47 found correct vrfname -2022/02/28 11:15:47 [DEBUG] acctest_c7y9r: Read finished successfully -2022/02/28 11:15:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:15:47 [DEBUG] acctest_c7y9r: Beginning Read -2022/02/28 11:15:47 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:47 [DEBUG] Begin Injection -2022/02/28 11:15:47 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd6040 1363 [] false false map[] 0xc00037e300 0xc000d32840} -2022/02/28 11:15:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:15:48 [DEBUG] Exit from do method -2022/02/28 11:15:48 [DEBUG] acctest_c7y9r: Read finished successfully -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:15:48 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r: Beginning Read -2022/02/28 11:15:48 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:48 [DEBUG] Begin Injection -2022/02/28 11:15:48 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bd72c0 1363 [] false false map[] 0xc00037e800 0xc000d32840} -2022/02/28 11:15:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"id":"621c61761d000050624fb983","displayName":"acctest_0d0oj","description":"","templates":[{"name":"acctest_0d0oj","displayName":"acctest_0d0oj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c7y9r","displayName":"acctest_c7y9r","bdRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/vrfs/acctest_c7y9r","dhcpLabel":{"name":"acctest_c7y9r","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c7y9r","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:15:48 [DEBUG] Exit from do method -2022/02/28 11:15:48 [DEBUG] /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r: Read finished successfully -2022/02/28 11:15:48 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:48 [DEBUG] New state was assigned lineage "ff080fae-6f42-61a1-400a-eff98c063396" -2022/02/28 11:15:48 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:15:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:48 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:15:48 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c61861b00006408fd0c1c" => "" - name: "acctest_c7y9r" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c61761d000050624fb983" => "" - name: "acctest_0d0oj" => "" - template_name: "acctest_0d0oj" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_c7y9r" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_c7y9r" => "" - id: "acctest_c7y9r" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_c7y9r" => "" - schema_id: "621c61761d000050624fb983" => "" - template_name: "acctest_0d0oj" => "" - vrf_name: "acctest_c7y9r" => "" - vrf_schema_id: "621c61761d000050624fb983" => "" - vrf_template_name: "acctest_0d0oj" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_c7y9r" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r" => "" - name: "acctest_c7y9r" => "" - schema_id: "621c61761d000050624fb983" => "" - template_name: "acctest_0d0oj" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_c7y9r" => "" - id: "acctest_c7y9r" => "" - layer3_multicast: "false" => "" - name: "acctest_c7y9r" => "" - schema_id: "621c61761d000050624fb983" => "" - template: "acctest_0d0oj" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c61861b00006408fd0c1c - provider = provider.mso - description = - name = acctest_c7y9r - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c61761d000050624fb983 - provider = provider.mso - name = acctest_0d0oj - template_name = acctest_0d0oj - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_c7y9r - provider = provider.mso - dhcp_policy.name = acctest_c7y9r - dhcp_policy.version = 0 - display_name = acctest_c7y9r - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_c7y9r - schema_id = 621c61761d000050624fb983 - template_name = acctest_0d0oj - vrf_name = acctest_c7y9r - vrf_schema_id = 621c61761d000050624fb983 - vrf_template_name = acctest_0d0oj - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c61761d000050624fb983/templates/acctest_0d0oj/bds/acctest_c7y9r/dhcpLabels/acctest_c7y9r - provider = provider.mso - bd_name = acctest_c7y9r - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_c7y9r - schema_id = 621c61761d000050624fb983 - template_name = acctest_0d0oj - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_c7y9r - provider = provider.mso - display_name = acctest_c7y9r - layer3_multicast = false - name = acctest_c7y9r - schema_id = 621c61761d000050624fb983 - template = acctest_0d0oj - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:15:48 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:15:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:15:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:15:48 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:15:48 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:15:48 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:15:48 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:15:48 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:15:48 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:15:48 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:15:48 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:15:48 [DEBUG] Template BD: Beginning Update -2022/02/28 11:15:48 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:48 [DEBUG] Begin Injection -2022/02/28 11:15:48 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:48 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:48 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ac4800 0xc000d32840} -2022/02/28 11:15:48 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:48 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:15:48 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:15:48 [DEBUG] 621c61861b00006408fd0c1c: Beginning Read -2022/02/28 11:15:48 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:48 [DEBUG] Begin Injection -2022/02/28 11:15:48 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:48 [DEBUG] Template BD: Beginning Update -2022/02/28 11:15:48 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:48 [DEBUG] Begin Injection -2022/02/28 11:15:48 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:49 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000ac4f00 0xc000d32840} -2022/02/28 11:15:49 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61861b00006408fd0c1c -2022/02/28 11:15:49 [DEBUG] : Read finished successfully -2022/02/28 11:15:49 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001408600 0xc000d32000} -2022/02/28 11:15:49 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:49 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:15:49 [DEBUG] acctest_c7y9r: Beginning Destroy -2022/02/28 11:15:49 HTTP request PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:49 [DEBUG] Begin Injection -2022/02/28 11:15:49 HTTP request after injection PATCH mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:49 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a6e700 0xc000d32000} -2022/02/28 11:15:49 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983?validate=false -2022/02/28 11:15:49 [DEBUG] acctest_c7y9r: Destroy finished successfully -2022/02/28 11:15:49 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:15:49 [DEBUG] 621c61761d000050624fb983: Beginning Destroy -2022/02/28 11:15:49 HTTP request DELETE mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:49 [DEBUG] Begin Injection -2022/02/28 11:15:49 HTTP request after injection DELETE mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:49 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:45:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000a6ec00 0xc000d32000} -2022/02/28 11:15:49 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:49 [DEBUG] 621c61761d000050624fb983: Destroy finished successfully -2022/02/28 11:15:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:49 [DEBUG] New state was assigned lineage "c5a89102-2847-e8f2-456a-f583d3bfd6a3" -2022/02/28 11:15:49 HTTP request GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:49 [DEBUG] Begin Injection -2022/02/28 11:15:49 HTTP request after injection GET mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 -2022/02/28 11:15:50 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:49 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000830340 39 [] false false map[] 0xc0001fa000 0xc000d32000} -2022/02/28 11:15:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61761d000050624fb983 {"code":404,"message":"Item not found"} -2022/02/28 11:15:50 [DEBUG] Exit from do method -2022/02/28 11:15:50 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:15:50 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:15:50 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:15:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:15:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:50 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:15:50 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:15:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:50 [DEBUG] : Beginning Read -2022/02/28 11:15:50 HTTP request GET mso/api/v1/tenants -2022/02/28 11:15:50 [DEBUG] Begin Injection -2022/02/28 11:15:50 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:15:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:15:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000379b80 5563 [] false false map[] 0xc0001fab00 0xc000d32000} -2022/02/28 11:15:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:15:50 [DEBUG] Exit from do method -2022/02/28 11:15:50 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:15:50 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:50 [DEBUG] New state was assigned lineage "3d6ff49f-40a6-5d54-208e-85c8d675cf86" -2022/02/28 11:15:50 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:15:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:15:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:15:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:15:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:15:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:50 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:15:57 [DEBUG] Test: Executing step 0 -2022/02/28 11:15:57 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:57 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:57 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:15:57 [DEBUG] Test: Executing step 1 -2022/02/28 11:15:57 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:57 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:57 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:15:57 [DEBUG] Test: Executing step 2 -2022/02/28 11:15:57 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:57 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:57 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:15:57 [DEBUG] Test: Executing step 3 -2022/02/28 11:15:57 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:57 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:57 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:15:57 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:15:57 [DEBUG] Test: Executing step 4 -2022/02/28 11:15:57 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:57 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:15:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:15:57 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:15:57 [DEBUG] provider has no plugin.Client -2022/02/28 11:15:57 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:15:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:15:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:15:57 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:15:57 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:15:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:15:57 [DEBUG] : Beginning Read -2022/02/28 11:15:57 HTTP request GET mso/api/v1/tenants -2022/02/28 11:15:57 [DEBUG] Begin Injection -2022/02/28 11:15:57 HTTP request POST /login -2022/02/28 11:15:57 HTTP request after injection POST /login -2022/02/28 11:15:57 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:15:59 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:15:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:59 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0003480c0 -1 [chunked] false false map[] 0xc00076ca00 0xc0008786e0} -2022/02/28 11:15:59 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q"} -2022/02/28 11:15:59 [DEBUG] Exit from do method -2022/02/28 11:15:59 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:15:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:00 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:45:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348500 5563 [] false false map[] 0xc00076c300 0xc0008786e0} -2022/02/28 11:16:00 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:00 [DEBUG] Exit from do method -2022/02/28 11:16:00 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:00 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:00 [DEBUG] New state was assigned lineage "79a5c257-95a6-9de8-cd41-8001854405e9" -2022/02/28 11:16:00 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:00 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:00 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:00 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:00 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:00 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:00 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:00 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:00 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_ftdrh" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_zt2hf" - template_name: "" => "acctest_zt2hf" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_ftdrh" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_ftdrh" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_zt2hf" - vrf_name: "" => "acctest_ftdrh" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_ftdrh" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_ftdrh" - schema_id: "" => "" - template_name: "" => "acctest_zt2hf" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_ftdrh" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_ftdrh" - schema_id: "" => "" - template: "" => "acctest_zt2hf" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:16:00 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:16:00 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:16:00 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:16:00 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:16:00 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:16:00 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:16:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:16:00 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:16:00 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:16:00 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:16:00 [DEBUG] Schema: Beginning Creation -2022/02/28 11:16:00 [DEBUG] : Beginning Create -2022/02/28 11:16:00 HTTP request POST mso/api/v1/schemas -2022/02/28 11:16:00 [DEBUG] Begin Injection -2022/02/28 11:16:00 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:16:00 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:00 [DEBUG] Begin Injection -2022/02/28 11:16:00 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:00 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q] Content-Type:[application/json]] {{"displayName":"acctest_zt2hf","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_zt2hf","externalEpgs":[],"filters":[],"name":"acctest_zt2hf","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x7a7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:16:00 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q] Content-Type:[application/json]] {{"desc":"","name":"acctest_ftdrh","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x7a7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:16:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:16:00 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104a00 160 [] false false map[] 0xc00076d200 0xc0008786e0} -2022/02/28 11:16:00 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:00 [DEBUG] Exit from do method -2022/02/28 11:16:00 [DEBUG] 621c61981b00007d08fd0c1d: Creation finished successfully -2022/02/28 11:16:00 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read -2022/02/28 11:16:00 id: 621c61981b00007d08fd0c1d -2022/02/28 11:16:00 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:00 [DEBUG] Begin Injection -2022/02/28 11:16:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:01 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:16:01 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c61981d000061624fb992] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104b00 400 [] false false map[] 0xc000a1e600 0xc0008786e0} -2022/02/28 11:16:01 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:16:01 [DEBUG] Exit from do method -2022/02/28 11:16:01 [DEBUG] 621c61981d000061624fb992: Schema Creation finished successfully -2022/02/28 11:16:01 [DEBUG] 621c61981d000061624fb992: Beginning Read -2022/02/28 11:16:01 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:01 [DEBUG] Begin Injection -2022/02/28 11:16:01 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:01 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003495c0 160 [] false false map[] 0xc0000a6500 0xc000748370} -2022/02/28 11:16:01 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:01 [DEBUG] Exit from do method -2022/02/28 11:16:01 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully -2022/02/28 11:16:01 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000349a00 400 [] false false map[] 0xc0000a6600 0xc0008786e0} -2022/02/28 11:16:01 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:16:01 [DEBUG] Exit from do method -2022/02/28 11:16:01 [DEBUG] 621c61981d000061624fb992: Read finished successfully -2022/02/28 11:16:01 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:16:01 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:16:01 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:01 [DEBUG] Begin Injection -2022/02/28 11:16:01 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:01 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:01 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a6c00 0xc0008786e0} -2022/02/28 11:16:01 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:01 [DEBUG] acctest_ftdrh: Creation finished successfully -2022/02/28 11:16:01 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:01 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:01 [DEBUG] Begin Injection -2022/02/28 11:16:01 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:02 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6f80 768 [] false false map[] 0xc00076db00 0xc000786420} -2022/02/28 11:16:02 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:16:02 [DEBUG] Exit from do method -2022/02/28 11:16:02 currentvrfname acctest_ftdrh -2022/02/28 11:16:02 found correct vrfname -2022/02/28 11:16:02 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:02 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:16:02 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:16:02 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:16:02 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:02 [DEBUG] Begin Injection -2022/02/28 11:16:02 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:02 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:02 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a7700 0xc000786420} -2022/02/28 11:16:02 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:02 [DEBUG] : Beginning Read -2022/02/28 11:16:02 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:02 [DEBUG] Begin Injection -2022/02/28 11:16:02 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:02 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d48140 1277 [] false false map[] 0xc0000a7900 0xc000786420} -2022/02/28 11:16:02 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:16:02 [DEBUG] Exit from do method -2022/02/28 11:16:02 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:02 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:16:02 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:16:02 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:02 [DEBUG] Begin Injection -2022/02/28 11:16:02 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:03 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:03 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a1e200 0xc000786420} -2022/02/28 11:16:03 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:03 [DEBUG] Creation Complete -2022/02/28 11:16:03 [DEBUG] : Beginning Read -2022/02/28 11:16:03 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:03 [DEBUG] Begin Injection -2022/02/28 11:16:03 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004b6280 1362 [] false false map[] 0xc0008a0000 0xc000786420} -2022/02/28 11:16:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:03 [DEBUG] Exit from do method -2022/02/28 11:16:03 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully -2022/02/28 11:16:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:03 [DEBUG] New state was assigned lineage "b5d2bc7f-0778-4ff1-8e0c-ec1fedbd0994" -2022/02/28 11:16:03 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:03 [DEBUG] Begin Injection -2022/02/28 11:16:03 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d49d00 1362 [] false false map[] 0xc00076c100 0xc000786420} -2022/02/28 11:16:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:03 [DEBUG] Exit from do method -2022/02/28 11:16:03 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:03 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:03 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:16:03 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:03 [DEBUG] : Beginning Read -2022/02/28 11:16:03 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:03 [DEBUG] Begin Injection -2022/02/28 11:16:03 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:04 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f5280 5563 [] false false map[] 0xc0000a6f00 0xc000786420} -2022/02/28 11:16:04 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:04 [DEBUG] Exit from do method -2022/02/28 11:16:04 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:04 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:04 [DEBUG] 621c61981d000061624fb992: Beginning Read -2022/02/28 11:16:04 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read -2022/02/28 11:16:04 id: 621c61981b00007d08fd0c1d -2022/02/28 11:16:04 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:04 [DEBUG] Begin Injection -2022/02/28 11:16:04 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:04 [DEBUG] Begin Injection -2022/02/28 11:16:04 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:04 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003487c0 1362 [] false false map[] 0xc000b16000 0xc000748370} -2022/02/28 11:16:04 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:04 [DEBUG] Exit from do method -2022/02/28 11:16:04 [DEBUG] 621c61981d000061624fb992: Read finished successfully -2022/02/28 11:16:04 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:04 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:04 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:04 [DEBUG] Begin Injection -2022/02/28 11:16:04 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:04 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f5ac80 160 [] false false map[] 0xc00076d300 0xc000786420} -2022/02/28 11:16:04 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:04 [DEBUG] Exit from do method -2022/02/28 11:16:04 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully -2022/02/28 11:16:04 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003493c0 1362 [] false false map[] 0xc000a1e400 0xc000748370} -2022/02/28 11:16:04 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:04 [DEBUG] Exit from do method -2022/02/28 11:16:04 currentvrfname acctest_ftdrh -2022/02/28 11:16:04 found correct vrfname -2022/02/28 11:16:04 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:04 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:04 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:04 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:04 [DEBUG] Begin Injection -2022/02/28 11:16:04 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057e700 1362 [] false false map[] 0xc00076cc00 0xc000748370} -2022/02/28 11:16:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:05 [DEBUG] Exit from do method -2022/02/28 11:16:05 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:05 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Read -2022/02/28 11:16:05 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:05 [DEBUG] Begin Injection -2022/02/28 11:16:05 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090dc0 1362 [] false false map[] 0xc000cb4900 0xc000748370} -2022/02/28 11:16:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:05 [DEBUG] Exit from do method -2022/02/28 11:16:05 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully -2022/02/28 11:16:05 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:05 [DEBUG] New state was assigned lineage "40c73066-ed38-3931-c8f0-a0eb3f3138c1" -2022/02/28 11:16:05 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:05 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:05 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:05 [DEBUG] Test: Executing step 5 -2022/02/28 11:16:05 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:05 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:05 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:05 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:05 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:05 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:05 [DEBUG] : Beginning Read -2022/02/28 11:16:05 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:05 [DEBUG] Begin Injection -2022/02/28 11:16:05 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6c80 5563 [] false false map[] 0xc000a1ee00 0xc000748370} -2022/02/28 11:16:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:05 [DEBUG] Exit from do method -2022/02/28 11:16:05 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:05 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:16:05 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:16:05 [DEBUG] 621c61981d000061624fb992: Beginning Read -2022/02/28 11:16:05 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:05 [DEBUG] Begin Injection -2022/02/28 11:16:05 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:05 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read -2022/02/28 11:16:05 id: 621c61981b00007d08fd0c1d -2022/02/28 11:16:05 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:05 [DEBUG] Begin Injection -2022/02/28 11:16:05 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d78140 1362 [] false false map[] 0xc000cf8200 0xc000748370} -2022/02/28 11:16:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:06 [DEBUG] Exit from do method -2022/02/28 11:16:06 [DEBUG] 621c61981d000061624fb992: Read finished successfully -2022/02/28 11:16:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:06 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:06 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:06 [DEBUG] Begin Injection -2022/02/28 11:16:06 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d78740 160 [] false false map[] 0xc000f16400 0xc000786420} -2022/02/28 11:16:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:06 [DEBUG] Exit from do method -2022/02/28 11:16:06 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully -2022/02/28 11:16:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d78040 1362 [] false false map[] 0xc000f16800 0xc000748370} -2022/02/28 11:16:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:06 [DEBUG] Exit from do method -2022/02/28 11:16:06 currentvrfname acctest_ftdrh -2022/02/28 11:16:06 found correct vrfname -2022/02/28 11:16:06 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:06 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:06 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:06 [DEBUG] Begin Injection -2022/02/28 11:16:06 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d78100 1362 [] false false map[] 0xc0000a6500 0xc000748370} -2022/02/28 11:16:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:06 [DEBUG] Exit from do method -2022/02/28 11:16:06 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:06 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Read -2022/02/28 11:16:06 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:06 [DEBUG] Begin Injection -2022/02/28 11:16:06 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d78a40 1362 [] false false map[] 0xc000f16400 0xc000748370} -2022/02/28 11:16:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:07 [DEBUG] Exit from do method -2022/02/28 11:16:07 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully -2022/02/28 11:16:07 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:07 [DEBUG] New state was assigned lineage "c59f2963-fe99-0133-0a7d-4d564f4e6cf9" -2022/02/28 11:16:07 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:07 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:07 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:07 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:07 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.test - description: "" => "" - id: "" => "" - name: "" => "acctest_jh1aj" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -UPDATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_ftdrh" => "acctest_ftdrh" - dhcp_option_name: "" => "acctest_jh1aj" - dhcp_option_version: "0" => "1" - id: "/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh" => "/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh" - name: "acctest_ftdrh" => "acctest_ftdrh" - schema_id: "621c61981d000061624fb992" => "621c61981d000061624fb992" - template_name: "acctest_zt2hf" => "acctest_zt2hf" - version: "0" => "1" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c61981b00007d08fd0c1d - provider = provider.mso - description = - name = acctest_ftdrh - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c61981d000061624fb992 - provider = provider.mso - name = acctest_zt2hf - template_name = acctest_zt2hf - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_ftdrh - provider = provider.mso - dhcp_policy.name = acctest_ftdrh - dhcp_policy.version = 0 - display_name = acctest_ftdrh - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_ftdrh - schema_id = 621c61981d000061624fb992 - template_name = acctest_zt2hf - vrf_name = acctest_ftdrh - vrf_schema_id = 621c61981d000061624fb992 - vrf_template_name = acctest_zt2hf - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh - provider = provider.mso - bd_name = acctest_ftdrh - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_ftdrh - schema_id = 621c61981d000061624fb992 - template_name = acctest_zt2hf - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_ftdrh - provider = provider.mso - display_name = acctest_ftdrh - layer3_multicast = false - name = acctest_ftdrh - schema_id = 621c61981d000061624fb992 - template = acctest_zt2hf - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:16:07 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:16:07 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:16:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:07 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:16:07 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:16:07 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change -2022/02/28 11:16:07 [DEBUG] : Beginning Create -2022/02/28 11:16:07 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 11:16:07 [DEBUG] Begin Injection -2022/02/28 11:16:07 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 11:16:07 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_jh1aj","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x7a7ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:16:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:16:07 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:16:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f5aa00 161 [] false false map[] 0xc000d20500 0xc000748370} -2022/02/28 11:16:07 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c619f1b00008408fd0c1e","name":"acctest_jh1aj","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:07 [DEBUG] Exit from do method -2022/02/28 11:16:07 [DEBUG] 621c619f1b00008408fd0c1e: Creation finished successfully -2022/02/28 11:16:07 [DEBUG] 621c619f1b00008408fd0c1e: Beginning Read -2022/02/28 11:16:07 id: 621c619f1b00008408fd0c1e -2022/02/28 11:16:07 HTTP request GET mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:07 [DEBUG] Begin Injection -2022/02/28 11:16:07 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d49200 161 [] false false map[] 0xc000a1e500 0xc000748370} -2022/02/28 11:16:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e {"id":"621c619f1b00008408fd0c1e","name":"acctest_jh1aj","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:07 [DEBUG] Exit from do method -2022/02/28 11:16:07 [DEBUG] 621c619f1b00008408fd0c1e: Read finished successfully -2022/02/28 11:16:07 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change -2022/02/28 11:16:07 [DEBUG] Template BD: Beginning Update -2022/02/28 11:16:07 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:07 [DEBUG] Begin Injection -2022/02/28 11:16:07 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:08 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:08 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d21400 0xc000748370} -2022/02/28 11:16:08 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:08 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Read -2022/02/28 11:16:08 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:08 [DEBUG] Begin Injection -2022/02/28 11:16:08 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000200100 1472 [] false false map[] 0xc000d21600 0xc000748370} -2022/02/28 11:16:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:08 [DEBUG] Exit from do method -2022/02/28 11:16:08 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully -2022/02/28 11:16:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:08 [DEBUG] New state was assigned lineage "d22e8ea2-efe0-4302-d485-9aa20fd3c8a9" -2022/02/28 11:16:08 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:08 [DEBUG] Begin Injection -2022/02/28 11:16:08 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348100 1472 [] false false map[] 0xc000b12000 0xc000748370} -2022/02/28 11:16:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:08 [DEBUG] Exit from do method -2022/02/28 11:16:08 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:08 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:08 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:08 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:08 [DEBUG] : Beginning Read -2022/02/28 11:16:08 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:08 [DEBUG] Begin Injection -2022/02/28 11:16:08 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057e940 5563 [] false false map[] 0xc0000a6400 0xc000748370} -2022/02/28 11:16:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:09 [DEBUG] Exit from do method -2022/02/28 11:16:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:09 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:16:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:09 [DEBUG] 621c619f1b00008408fd0c1e: Beginning Read -2022/02/28 11:16:09 id: 621c619f1b00008408fd0c1e -2022/02/28 11:16:09 HTTP request GET mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:09 [DEBUG] Begin Injection -2022/02/28 11:16:09 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:09 [DEBUG] 621c61981d000061624fb992: Beginning Read -2022/02/28 11:16:09 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:09 [DEBUG] Begin Injection -2022/02/28 11:16:09 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:09 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read -2022/02/28 11:16:09 id: 621c61981b00007d08fd0c1d -2022/02/28 11:16:09 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:09 [DEBUG] Begin Injection -2022/02/28 11:16:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f5a500 161 [] false false map[] 0xc000a1f100 0xc000748370} -2022/02/28 11:16:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e {"id":"621c619f1b00008408fd0c1e","name":"acctest_jh1aj","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:09 [DEBUG] Exit from do method -2022/02/28 11:16:09 [DEBUG] 621c619f1b00008408fd0c1e: Read finished successfully -2022/02/28 11:16:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057ef80 1472 [] false false map[] 0xc000d74200 0xc000786420} -2022/02/28 11:16:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:09 [DEBUG] Exit from do method -2022/02/28 11:16:09 [DEBUG] 621c61981d000061624fb992: Read finished successfully -2022/02/28 11:16:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:09 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:09 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:09 [DEBUG] Begin Injection -2022/02/28 11:16:09 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f5aa80 160 [] false false map[] 0xc000bb0300 0xc000748370} -2022/02/28 11:16:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:09 [DEBUG] Exit from do method -2022/02/28 11:16:09 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully -2022/02/28 11:16:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7e80 1472 [] false false map[] 0xc0000a6b00 0xc000786420} -2022/02/28 11:16:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:09 [DEBUG] Exit from do method -2022/02/28 11:16:09 currentvrfname acctest_ftdrh -2022/02/28 11:16:09 found correct vrfname -2022/02/28 11:16:09 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:09 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:09 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:09 [DEBUG] Begin Injection -2022/02/28 11:16:09 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d48140 1472 [] false false map[] 0xc000b12b00 0xc000786420} -2022/02/28 11:16:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:10 [DEBUG] Exit from do method -2022/02/28 11:16:10 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:10 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Read -2022/02/28 11:16:10 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:10 [DEBUG] Begin Injection -2022/02/28 11:16:10 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004b6140 1472 [] false false map[] 0xc000a1e500 0xc000748000} -2022/02/28 11:16:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:10 [DEBUG] Exit from do method -2022/02/28 11:16:10 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully -2022/02/28 11:16:10 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:10 [DEBUG] New state was assigned lineage "7e631898-9233-5fe9-08c9-ba40e49a38d2" -2022/02/28 11:16:10 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:10 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:10 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:10 [DEBUG] Test: Executing step 6 -2022/02/28 11:16:10 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh\")" (*terraform.graphNodeImportState) needs provider.mso -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh\")" references: [] -2022/02/28 11:16:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:10 [DEBUG] Starting graph walk: walkImport -2022/02/28 11:16:10 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Import -2022/02/28 11:16:10 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:10 [DEBUG] Begin Injection -2022/02/28 11:16:10 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348b00 1472 [] false false map[] 0xc0000a6d00 0xc000748000} -2022/02/28 11:16:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:10 [DEBUG] Exit from do method -2022/02/28 11:16:10 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Import finished successfully -2022/02/28 11:16:10 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Read -2022/02/28 11:16:10 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:10 [DEBUG] Begin Injection -2022/02/28 11:16:10 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f4240 1472 [] false false map[] 0xc00123a000 0xc000748000} -2022/02/28 11:16:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:11 [DEBUG] Exit from do method -2022/02/28 11:16:11 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully -2022/02/28 11:16:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:11 [DEBUG] New state was assigned lineage "8af81acd-f9c4-ec9a-b4b4-319d0469a995" -2022/02/28 11:16:11 [DEBUG] Test: Executing step 7 -2022/02/28 11:16:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:11 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:11 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:11 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config -2022/02/28 11:16:11 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config -2022/02/28 11:16:11 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:11 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:11 [DEBUG] : Beginning Read -2022/02/28 11:16:11 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:11 [DEBUG] Begin Injection -2022/02/28 11:16:11 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004b6140 5563 [] false false map[] 0xc0009f0800 0xc000748000} -2022/02/28 11:16:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:11 [DEBUG] Exit from do method -2022/02/28 11:16:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:11 [DEBUG] 621c619f1b00008408fd0c1e: Beginning Read -2022/02/28 11:16:11 id: 621c619f1b00008408fd0c1e -2022/02/28 11:16:11 HTTP request GET mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:11 [DEBUG] Begin Injection -2022/02/28 11:16:11 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:11 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read -2022/02/28 11:16:11 id: 621c61981b00007d08fd0c1d -2022/02/28 11:16:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:11 [DEBUG] Begin Injection -2022/02/28 11:16:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:11 [DEBUG] 621c61981d000061624fb992: Beginning Read -2022/02/28 11:16:11 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:11 [DEBUG] Begin Injection -2022/02/28 11:16:11 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000201840 161 [] false false map[] 0xc0009f0900 0xc000748000} -2022/02/28 11:16:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e {"id":"621c619f1b00008408fd0c1e","name":"acctest_jh1aj","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:11 [DEBUG] Exit from do method -2022/02/28 11:16:11 [DEBUG] 621c619f1b00008408fd0c1e: Read finished successfully -2022/02/28 11:16:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000910c0 1472 [] false false map[] 0xc001138200 0xc000748370} -2022/02/28 11:16:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:11 [DEBUG] Exit from do method -2022/02/28 11:16:11 [DEBUG] 621c61981d000061624fb992: Read finished successfully -2022/02/28 11:16:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:11 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:11 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:11 [DEBUG] Begin Injection -2022/02/28 11:16:11 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d49d40 160 [] false false map[] 0xc0000a6600 0xc000748000} -2022/02/28 11:16:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:12 [DEBUG] Exit from do method -2022/02/28 11:16:12 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully -2022/02/28 11:16:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000200100 1472 [] false false map[] 0xc0000a6e00 0xc000748370} -2022/02/28 11:16:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:12 [DEBUG] Exit from do method -2022/02/28 11:16:12 currentvrfname acctest_ftdrh -2022/02/28 11:16:12 found correct vrfname -2022/02/28 11:16:12 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:12 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:12 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:12 [DEBUG] Begin Injection -2022/02/28 11:16:12 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000201240 1472 [] false false map[] 0xc001138300 0xc000748370} -2022/02/28 11:16:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:12 [DEBUG] Exit from do method -2022/02/28 11:16:12 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:12 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Beginning Read -2022/02/28 11:16:12 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:12 [DEBUG] Begin Injection -2022/02/28 11:16:12 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002012c0 1472 [] false false map[] 0xc001138800 0xc000cae0b0} -2022/02/28 11:16:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","dhcpLabel":{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_ftdrh","dhcpOptionLabel":{"name":"acctest_jh1aj","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:12 [DEBUG] Exit from do method -2022/02/28 11:16:12 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh: Read finished successfully -2022/02/28 11:16:12 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:12 [DEBUG] New state was assigned lineage "a51c62fd-974e-8d87-50bd-21750526daff" -2022/02/28 11:16:12 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:12 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:12 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:12 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.test - description: "" => "" - id: "621c619f1b00008408fd0c1e" => "" - name: "acctest_jh1aj" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_ftdrh" => "" - dhcp_option_name: "acctest_jh1aj" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh" => "" - name: "acctest_ftdrh" => "" - schema_id: "621c61981d000061624fb992" => "" - template_name: "acctest_zt2hf" => "" - version: "1" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.test: - ID = 621c619f1b00008408fd0c1e - provider = provider.mso - description = - name = acctest_jh1aj - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c61981b00007d08fd0c1d - provider = provider.mso - description = - name = acctest_ftdrh - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c61981d000061624fb992 - provider = provider.mso - name = acctest_zt2hf - template_name = acctest_zt2hf - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_ftdrh - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_jh1aj - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_ftdrh - dhcp_policy.version = 1 - display_name = acctest_ftdrh - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_ftdrh - schema_id = 621c61981d000061624fb992 - template_name = acctest_zt2hf - vrf_name = acctest_ftdrh - vrf_schema_id = 621c61981d000061624fb992 - vrf_template_name = acctest_zt2hf - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh/dhcpLabels/acctest_ftdrh - provider = provider.mso - bd_name = acctest_ftdrh - dhcp_option_name = acctest_jh1aj - dhcp_option_version = 1 - name = acctest_ftdrh - schema_id = 621c61981d000061624fb992 - template_name = acctest_zt2hf - version = 1 - - Dependencies: - mso_dhcp_option_policy.test - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_ftdrh - provider = provider.mso - display_name = acctest_ftdrh - layer3_multicast = false - name = acctest_ftdrh - schema_id = 621c61981d000061624fb992 - template = acctest_zt2hf - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:16:12 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:16:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:16:12 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:16:12 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:16:12 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:16:12 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:16:12 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:16:12 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:16:12 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:16:12 [DEBUG] Template BD: Beginning Update -2022/02/28 11:16:12 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:12 [DEBUG] Begin Injection -2022/02/28 11:16:12 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:13 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a6800 0xc000cae0b0} -2022/02/28 11:16:13 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:13 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change -2022/02/28 11:16:13 [DEBUG] 621c619f1b00008408fd0c1e: Beginning Read -2022/02/28 11:16:13 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:13 [DEBUG] Begin Injection -2022/02/28 11:16:13 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:13 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0005aab00 0xc000cae0b0} -2022/02/28 11:16:13 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c619f1b00008408fd0c1e -2022/02/28 11:16:13 [DEBUG] : Read finished successfully -2022/02/28 11:16:13 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:13 [DEBUG] New state was assigned lineage "f924ef12-f18f-2edd-1841-26df0f973093" -2022/02/28 11:16:13 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:13 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:13 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:13 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:13 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:13 [DEBUG] : Beginning Read -2022/02/28 11:16:13 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:13 [DEBUG] Begin Injection -2022/02/28 11:16:13 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000200100 5563 [] false false map[] 0xc0012a8200 0xc000cae0b0} -2022/02/28 11:16:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:13 [DEBUG] Exit from do method -2022/02/28 11:16:13 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:13 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read -2022/02/28 11:16:13 id: 621c61981b00007d08fd0c1d -2022/02/28 11:16:13 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:13 [DEBUG] Begin Injection -2022/02/28 11:16:13 [DEBUG] 621c61981d000061624fb992: Beginning Read -2022/02/28 11:16:13 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:13 [DEBUG] Begin Injection -2022/02/28 11:16:13 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:13 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00108b200 1277 [] false false map[] 0xc0012a8600 0xc000cae0b0} -2022/02/28 11:16:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:16:14 [DEBUG] Exit from do method -2022/02/28 11:16:14 [DEBUG] 621c61981d000061624fb992: Read finished successfully -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:14 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:14 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:14 [DEBUG] Begin Injection -2022/02/28 11:16:14 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00108be80 160 [] false false map[] 0xc0009f0900 0xc000748000} -2022/02/28 11:16:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:14 [DEBUG] Exit from do method -2022/02/28 11:16:14 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully -2022/02/28 11:16:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00108bf40 1277 [] false false map[] 0xc000bba600 0xc000cae0b0} -2022/02/28 11:16:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:16:14 [DEBUG] Exit from do method -2022/02/28 11:16:14 currentvrfname acctest_ftdrh -2022/02/28 11:16:14 found correct vrfname -2022/02/28 11:16:14 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:14 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:14 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:14 [DEBUG] Begin Injection -2022/02/28 11:16:14 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348100 1277 [] false false map[] 0xc0009f0c00 0xc000cae0b0} -2022/02/28 11:16:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:16:14 [DEBUG] Exit from do method -2022/02/28 11:16:14 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:14 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:14 [DEBUG] New state was assigned lineage "89c6f38c-50cc-caaa-8c3e-09ddcd1ae584" -2022/02/28 11:16:14 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:14 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:14 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:14 [DEBUG] Test: Executing step 8 -2022/02/28 11:16:14 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:14 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:14 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:14 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:14 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:14 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:14 [DEBUG] : Beginning Read -2022/02/28 11:16:14 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:14 [DEBUG] Begin Injection -2022/02/28 11:16:14 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f4180 5563 [] false false map[] 0xc001407400 0xc000cae0b0} -2022/02/28 11:16:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:15 [DEBUG] Exit from do method -2022/02/28 11:16:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:15 [DEBUG] 621c61981d000061624fb992: Beginning Read -2022/02/28 11:16:15 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read -2022/02/28 11:16:15 id: 621c61981b00007d08fd0c1d -2022/02/28 11:16:15 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:15 [DEBUG] Begin Injection -2022/02/28 11:16:15 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:15 [DEBUG] Begin Injection -2022/02/28 11:16:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348300 1277 [] false false map[] 0xc001406500 0xc000cae0b0} -2022/02/28 11:16:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:16:15 [DEBUG] Exit from do method -2022/02/28 11:16:15 [DEBUG] 621c61981d000061624fb992: Read finished successfully -2022/02/28 11:16:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:15 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:15 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:15 [DEBUG] Begin Injection -2022/02/28 11:16:15 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d48b40 160 [] false false map[] 0xc0000a6600 0xc000748000} -2022/02/28 11:16:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d {"id":"621c61981b00007d08fd0c1d","name":"acctest_ftdrh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:15 [DEBUG] Exit from do method -2022/02/28 11:16:15 [DEBUG] 621c61981b00007d08fd0c1d: Read finished successfully -2022/02/28 11:16:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000349080 1277 [] false false map[] 0xc0000a6a00 0xc000cae0b0} -2022/02/28 11:16:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:16:15 [DEBUG] Exit from do method -2022/02/28 11:16:15 currentvrfname acctest_ftdrh -2022/02/28 11:16:15 found correct vrfname -2022/02/28 11:16:15 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:15 [DEBUG] acctest_ftdrh: Beginning Read -2022/02/28 11:16:15 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:15 [DEBUG] Begin Injection -2022/02/28 11:16:15 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348040 1277 [] false false map[] 0xc0000a6f00 0xc000cae0b0} -2022/02/28 11:16:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_ftdrh","displayName":"acctest_ftdrh","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_ftdrh","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_ftdrh","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:16:16 [DEBUG] Exit from do method -2022/02/28 11:16:16 [DEBUG] acctest_ftdrh: Read finished successfully -2022/02/28 11:16:16 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:16 [DEBUG] New state was assigned lineage "21c98971-ab0b-7a87-cfec-2a15deb3cd40" -2022/02/28 11:16:16 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:16 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:16 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:16 [WARN] Test: Step plan: DIFF: - -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c61981b00007d08fd0c1d" => "" - name: "acctest_ftdrh" => "acctest_4pmrt" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "acctest_ftdrh" => "acctest_4pmrt" (forces new resource) - id: "acctest_ftdrh" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_ftdrh" => "acctest_4pmrt" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c61981d000061624fb992" => "621c61981d000061624fb992" - template_name: "acctest_zt2hf" => "acctest_zt2hf" - vrf_name: "acctest_ftdrh" => "acctest_4pmrt" - vrf_schema_id: "621c61981d000061624fb992" => "" - vrf_template_name: "acctest_zt2hf" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_4pmrt" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_4pmrt" - schema_id: "" => "621c61981d000061624fb992" - template_name: "" => "acctest_zt2hf" - version: "" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_ftdrh" => "acctest_4pmrt" - id: "acctest_ftdrh" => "" - layer3_multicast: "false" => "" - name: "acctest_ftdrh" => "acctest_4pmrt" (forces new resource) - schema_id: "621c61981d000061624fb992" => "621c61981d000061624fb992" - template: "acctest_zt2hf" => "acctest_zt2hf" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c61981b00007d08fd0c1d - provider = provider.mso - description = - name = acctest_ftdrh - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c61981d000061624fb992 - provider = provider.mso - name = acctest_zt2hf - template_name = acctest_zt2hf - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_ftdrh - provider = provider.mso - display_name = acctest_ftdrh - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_ftdrh - schema_id = 621c61981d000061624fb992 - template_name = acctest_zt2hf - vrf_name = acctest_ftdrh - vrf_schema_id = 621c61981d000061624fb992 - vrf_template_name = acctest_zt2hf - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_ftdrh - provider = provider.mso - display_name = acctest_ftdrh - layer3_multicast = false - name = acctest_ftdrh - schema_id = 621c61981d000061624fb992 - template = acctest_zt2hf - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:16:16 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:16:16 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:16:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:16:16 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:16:16 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:16:16 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:16:16 [DEBUG] 621c61981b00007d08fd0c1d: Beginning Read -2022/02/28 11:16:16 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:16 [DEBUG] Begin Injection -2022/02/28 11:16:16 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:16 [DEBUG] Template BD: Beginning Update -2022/02/28 11:16:16 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:16 [DEBUG] Begin Injection -2022/02/28 11:16:16 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:16 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:16 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00083e200 0xc000748000} -2022/02/28 11:16:16 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:16 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:16:16 [DEBUG] acctest_ftdrh: Beginning Destroy -2022/02/28 11:16:16 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:16 [DEBUG] Begin Injection -2022/02/28 11:16:16 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:16 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:16 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0000a6a00 0xc000cae0b0} -2022/02/28 11:16:16 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61981b00007d08fd0c1d -2022/02/28 11:16:16 [DEBUG] : Read finished successfully -2022/02/28 11:16:16 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:16:16 [DEBUG] : Beginning Create -2022/02/28 11:16:16 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:16 [DEBUG] Begin Injection -2022/02/28 11:16:16 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:16 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzU5LCJpYXQiOjE2NDYwMjcxNTksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWWQ4TFo3Yk1OMGwyN01yblY0dFFCNm9kIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gNEi11jjZhaeyOLu2Piut82jdkltM2hqSpnjP0R6garhWfv0Q5L2PVlb1CtGACmXxlAORdeVNy88FZ33RtAJOjdnUfgop7GguTsodj6O4vs4SlitxSojT3bFgm7xqQ9yZVZWrGMNUMNErnue0-AHbGSXv6x2eBZsbvL3p1PPnoBu-F3I3nB2oP8x6iL4I-VuCZkueddeMWPVBnk8DhlQITb2aAAvf6juCR-23RET5Tbh9dV7EGe3iNUVMv6gQAhpULKpkmDyG5DMUbQbBrLVZtURUrlavk_8Irqn1i5VEU-M0LcBMu95ua1l68--6gXCieL1DaMxtfVnbyea74dr1Q] Content-Type:[application/json]] {{"desc":"","name":"acctest_4pmrt","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x7a7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:16:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:17 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a7000 0xc000748000} -2022/02/28 11:16:17 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:17 [DEBUG] acctest_ftdrh: Destroy finished successfully -2022/02/28 11:16:17 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:16:17 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:16:17 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:17 [DEBUG] Begin Injection -2022/02/28 11:16:17 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:17 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bdaf80 160 [] false false map[] 0xc0008e0c00 0xc000cae0b0} -2022/02/28 11:16:17 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c61a81b00008008fd0c1f","name":"acctest_4pmrt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:17 [DEBUG] Exit from do method -2022/02/28 11:16:17 [DEBUG] 621c61a81b00008008fd0c1f: Creation finished successfully -2022/02/28 11:16:17 [DEBUG] 621c61a81b00008008fd0c1f: Beginning Read -2022/02/28 11:16:17 id: 621c61a81b00008008fd0c1f -2022/02/28 11:16:17 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:17 [DEBUG] Begin Injection -2022/02/28 11:16:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:17 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00083f400 0xc000748000} -2022/02/28 11:16:17 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:17 [DEBUG] acctest_4pmrt: Creation finished successfully -2022/02/28 11:16:17 [DEBUG] acctest_4pmrt: Beginning Read -2022/02/28 11:16:17 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:17 [DEBUG] Begin Injection -2022/02/28 11:16:17 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057fac0 160 [] false false map[] 0xc00075c600 0xc000cae0b0} -2022/02/28 11:16:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f {"id":"621c61a81b00008008fd0c1f","name":"acctest_4pmrt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:17 [DEBUG] Exit from do method -2022/02/28 11:16:17 [DEBUG] 621c61a81b00008008fd0c1f: Read finished successfully -2022/02/28 11:16:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7740 768 [] false false map[] 0xc0000a7200 0xc000748000} -2022/02/28 11:16:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 11:16:17 [DEBUG] Exit from do method -2022/02/28 11:16:17 currentvrfname acctest_4pmrt -2022/02/28 11:16:17 found correct vrfname -2022/02/28 11:16:17 [DEBUG] acctest_4pmrt: Read finished successfully -2022/02/28 11:16:17 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:16:17 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:16:17 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:16:17 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:17 [DEBUG] Begin Injection -2022/02/28 11:16:17 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:17 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00075cd00 0xc000748000} -2022/02/28 11:16:17 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:17 [DEBUG] : Beginning Read -2022/02/28 11:16:17 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:17 [DEBUG] Begin Injection -2022/02/28 11:16:17 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00108a040 1278 [] false false map[] 0xc0000a6200 0xc000748000} -2022/02/28 11:16:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 11:16:18 [DEBUG] Exit from do method -2022/02/28 11:16:18 [DEBUG] acctest_4pmrt: Read finished successfully -2022/02/28 11:16:18 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:16:18 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:16:18 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:18 [DEBUG] Begin Injection -2022/02/28 11:16:18 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:18 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:18 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00083e200 0xc000748000} -2022/02/28 11:16:18 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:18 [DEBUG] Creation Complete -2022/02/28 11:16:18 [DEBUG] : Beginning Read -2022/02/28 11:16:18 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:18 [DEBUG] Begin Injection -2022/02/28 11:16:18 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d48040 1363 [] false false map[] 0xc00083e400 0xc000748000} -2022/02/28 11:16:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:19 [DEBUG] Exit from do method -2022/02/28 11:16:19 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt: Read finished successfully -2022/02/28 11:16:19 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:19 [DEBUG] New state was assigned lineage "23795992-39b3-ad51-8c2b-71dfbe27b6a3" -2022/02/28 11:16:19 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:19 [DEBUG] Begin Injection -2022/02/28 11:16:19 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009cf5c0 1363 [] false false map[] 0xc0008e0000 0xc000748000} -2022/02/28 11:16:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:19 [DEBUG] Exit from do method -2022/02/28 11:16:19 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:19 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:19 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:19 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:19 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:19 [DEBUG] : Beginning Read -2022/02/28 11:16:19 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:19 [DEBUG] Begin Injection -2022/02/28 11:16:19 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000200100 5563 [] false false map[] 0xc0008e0100 0xc000748000} -2022/02/28 11:16:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:19 [DEBUG] Exit from do method -2022/02/28 11:16:19 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:19 [DEBUG] 621c61a81b00008008fd0c1f: Beginning Read -2022/02/28 11:16:19 [DEBUG] 621c61981d000061624fb992: Beginning Read -2022/02/28 11:16:19 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:19 [DEBUG] Begin Injection -2022/02/28 11:16:19 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:19 id: 621c61a81b00008008fd0c1f -2022/02/28 11:16:19 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:19 [DEBUG] Begin Injection -2022/02/28 11:16:19 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f4bc0 1363 [] false false map[] 0xc0008e0600 0xc000748000} -2022/02/28 11:16:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002018c0 160 [] false false map[] 0xc0000a6200 0xc000cae0b0} -2022/02/28 11:16:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f {"id":"621c61a81b00008008fd0c1f","name":"acctest_4pmrt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:20 [DEBUG] Exit from do method -2022/02/28 11:16:20 [DEBUG] Exit from do method -2022/02/28 11:16:20 [DEBUG] 621c61a81b00008008fd0c1f: Read finished successfully -2022/02/28 11:16:20 [DEBUG] 621c61981d000061624fb992: Read finished successfully -2022/02/28 11:16:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:20 [DEBUG] acctest_4pmrt: Beginning Read -2022/02/28 11:16:20 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:20 [DEBUG] Begin Injection -2022/02/28 11:16:20 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ab2040 1363 [] false false map[] 0xc0008e0d00 0xc000cae0b0} -2022/02/28 11:16:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:20 [DEBUG] Exit from do method -2022/02/28 11:16:20 currentvrfname acctest_4pmrt -2022/02/28 11:16:20 found correct vrfname -2022/02/28 11:16:20 [DEBUG] acctest_4pmrt: Read finished successfully -2022/02/28 11:16:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:20 [DEBUG] acctest_4pmrt: Beginning Read -2022/02/28 11:16:20 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:20 [DEBUG] Begin Injection -2022/02/28 11:16:20 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d78040 1363 [] false false map[] 0xc0000a6600 0xc000cae0b0} -2022/02/28 11:16:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:20 [DEBUG] Exit from do method -2022/02/28 11:16:20 [DEBUG] acctest_4pmrt: Read finished successfully -2022/02/28 11:16:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:20 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt: Beginning Read -2022/02/28 11:16:20 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:20 [DEBUG] Begin Injection -2022/02/28 11:16:20 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d79080 1363 [] false false map[] 0xc0008e0400 0xc000cae0b0} -2022/02/28 11:16:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:21 [DEBUG] Exit from do method -2022/02/28 11:16:21 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt: Read finished successfully -2022/02/28 11:16:21 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:21 [DEBUG] New state was assigned lineage "d77ea9b0-36c4-d662-0a63-08cfc42175f4" -2022/02/28 11:16:21 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:21 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:21 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:21 [WARN] Test: Executing destroy step -2022/02/28 11:16:21 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:21 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:21 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:21 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:21 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:21 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:21 [DEBUG] : Beginning Read -2022/02/28 11:16:21 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:21 [DEBUG] Begin Injection -2022/02/28 11:16:21 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002017c0 5563 [] false false map[] 0xc0000a6400 0xc000cae0b0} -2022/02/28 11:16:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:21 [DEBUG] Exit from do method -2022/02/28 11:16:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:21 [DEBUG] 621c61a81b00008008fd0c1f: Beginning Read -2022/02/28 11:16:21 id: 621c61a81b00008008fd0c1f -2022/02/28 11:16:21 [DEBUG] 621c61981d000061624fb992: Beginning Read -2022/02/28 11:16:21 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:21 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:21 [DEBUG] Begin Injection -2022/02/28 11:16:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:21 [DEBUG] Begin Injection -2022/02/28 11:16:21 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f49c0 1363 [] false false map[] 0xc000a4a400 0xc000748000} -2022/02/28 11:16:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:21 [DEBUG] Exit from do method -2022/02/28 11:16:21 [DEBUG] 621c61981d000061624fb992: Read finished successfully -2022/02/28 11:16:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:21 [DEBUG] acctest_4pmrt: Beginning Read -2022/02/28 11:16:21 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:21 [DEBUG] Begin Injection -2022/02/28 11:16:21 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7980 160 [] false false map[] 0xc000938f00 0xc000cae0b0} -2022/02/28 11:16:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f {"id":"621c61a81b00008008fd0c1f","name":"acctest_4pmrt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:21 [DEBUG] Exit from do method -2022/02/28 11:16:21 [DEBUG] 621c61a81b00008008fd0c1f: Read finished successfully -2022/02/28 11:16:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d48cc0 1363 [] false false map[] 0xc000939300 0xc000748000} -2022/02/28 11:16:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:22 [DEBUG] Exit from do method -2022/02/28 11:16:22 currentvrfname acctest_4pmrt -2022/02/28 11:16:22 found correct vrfname -2022/02/28 11:16:22 [DEBUG] acctest_4pmrt: Read finished successfully -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:22 [DEBUG] acctest_4pmrt: Beginning Read -2022/02/28 11:16:22 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:22 [DEBUG] Begin Injection -2022/02/28 11:16:22 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057e300 1363 [] false false map[] 0xc0000a6a00 0xc000748000} -2022/02/28 11:16:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:22 [DEBUG] Exit from do method -2022/02/28 11:16:22 [DEBUG] acctest_4pmrt: Read finished successfully -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:22 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt: Beginning Read -2022/02/28 11:16:22 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:22 [DEBUG] Begin Injection -2022/02/28 11:16:22 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d48f80 1363 [] false false map[] 0xc0008e0300 0xc000748000} -2022/02/28 11:16:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"id":"621c61981d000061624fb992","displayName":"acctest_zt2hf","description":"","templates":[{"name":"acctest_zt2hf","displayName":"acctest_zt2hf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_4pmrt","displayName":"acctest_4pmrt","bdRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/vrfs/acctest_4pmrt","dhcpLabel":{"name":"acctest_4pmrt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_4pmrt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:22 [DEBUG] Exit from do method -2022/02/28 11:16:22 [DEBUG] /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt: Read finished successfully -2022/02/28 11:16:22 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:22 [DEBUG] New state was assigned lineage "50bef9ec-e77f-4fe5-279e-f46f57bf28d2" -2022/02/28 11:16:22 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:16:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:16:22 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c61a81b00008008fd0c1f" => "" - name: "acctest_4pmrt" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c61981d000061624fb992" => "" - name: "acctest_zt2hf" => "" - template_name: "acctest_zt2hf" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_4pmrt" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_4pmrt" => "" - id: "acctest_4pmrt" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_4pmrt" => "" - schema_id: "621c61981d000061624fb992" => "" - template_name: "acctest_zt2hf" => "" - vrf_name: "acctest_4pmrt" => "" - vrf_schema_id: "621c61981d000061624fb992" => "" - vrf_template_name: "acctest_zt2hf" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_4pmrt" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt" => "" - name: "acctest_4pmrt" => "" - schema_id: "621c61981d000061624fb992" => "" - template_name: "acctest_zt2hf" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_4pmrt" => "" - id: "acctest_4pmrt" => "" - layer3_multicast: "false" => "" - name: "acctest_4pmrt" => "" - schema_id: "621c61981d000061624fb992" => "" - template: "acctest_zt2hf" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c61a81b00008008fd0c1f - provider = provider.mso - description = - name = acctest_4pmrt - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c61981d000061624fb992 - provider = provider.mso - name = acctest_zt2hf - template_name = acctest_zt2hf - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_4pmrt - provider = provider.mso - dhcp_policy.name = acctest_4pmrt - dhcp_policy.version = 0 - display_name = acctest_4pmrt - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_4pmrt - schema_id = 621c61981d000061624fb992 - template_name = acctest_zt2hf - vrf_name = acctest_4pmrt - vrf_schema_id = 621c61981d000061624fb992 - vrf_template_name = acctest_zt2hf - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c61981d000061624fb992/templates/acctest_zt2hf/bds/acctest_4pmrt/dhcpLabels/acctest_4pmrt - provider = provider.mso - bd_name = acctest_4pmrt - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_4pmrt - schema_id = 621c61981d000061624fb992 - template_name = acctest_zt2hf - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_4pmrt - provider = provider.mso - display_name = acctest_4pmrt - layer3_multicast = false - name = acctest_4pmrt - schema_id = 621c61981d000061624fb992 - template = acctest_zt2hf - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:16:22 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:16:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:16:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:22 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:16:22 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:16:22 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:16:22 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:16:22 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:16:22 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:16:22 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:16:22 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:16:22 [DEBUG] Template BD: Beginning Update -2022/02/28 11:16:22 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:22 [DEBUG] Begin Injection -2022/02/28 11:16:22 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00091a300 0xc000748000} -2022/02/28 11:16:23 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:16:23 [DEBUG] 621c61a81b00008008fd0c1f: Beginning Read -2022/02/28 11:16:23 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:23 [DEBUG] Begin Injection -2022/02/28 11:16:23 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:23 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:16:23 [DEBUG] Template BD: Beginning Update -2022/02/28 11:16:23 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 [DEBUG] Begin Injection -2022/02/28 11:16:23 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0008e0600 0xc000748000} -2022/02/28 11:16:23 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61a81b00008008fd0c1f -2022/02/28 11:16:23 [DEBUG] : Read finished successfully -2022/02/28 11:16:23 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000938e00 0xc000cae0b0} -2022/02/28 11:16:23 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:16:23 [DEBUG] acctest_4pmrt: Beginning Destroy -2022/02/28 11:16:23 HTTP request PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 [DEBUG] Begin Injection -2022/02/28 11:16:23 HTTP request after injection PATCH mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f24900 0xc000cae0b0} -2022/02/28 11:16:23 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992?validate=false -2022/02/28 11:16:23 [DEBUG] acctest_4pmrt: Destroy finished successfully -2022/02/28 11:16:23 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:16:23 [DEBUG] 621c61981d000061624fb992: Beginning Destroy -2022/02/28 11:16:23 HTTP request DELETE mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:23 [DEBUG] Begin Injection -2022/02/28 11:16:23 HTTP request after injection DELETE mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:24 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:24 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00091ab00 0xc000cae0b0} -2022/02/28 11:16:24 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:24 [DEBUG] 621c61981d000061624fb992: Destroy finished successfully -2022/02/28 11:16:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:24 [DEBUG] New state was assigned lineage "1d1bbd5d-d2de-5879-820c-b6fa1502373e" -2022/02/28 11:16:24 HTTP request GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:24 [DEBUG] Begin Injection -2022/02/28 11:16:24 HTTP request after injection GET mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 -2022/02/28 11:16:24 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:24 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f42c0 39 [] false false map[] 0xc000938700 0xc000cae0b0} -2022/02/28 11:16:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61981d000061624fb992 {"code":404,"message":"Item not found"} -2022/02/28 11:16:24 [DEBUG] Exit from do method -2022/02/28 11:16:24 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:16:24 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:16:24 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:24 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:24 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:16:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:24 [DEBUG] : Beginning Read -2022/02/28 11:16:24 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:24 [DEBUG] Begin Injection -2022/02/28 11:16:24 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000348fc0 5563 [] false false map[] 0xc000f24900 0xc000cae0b0} -2022/02/28 11:16:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:24 [DEBUG] Exit from do method -2022/02/28 11:16:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:24 [DEBUG] New state was assigned lineage "2069eac0-6db9-d953-8026-057d0a2cb473" -2022/02/28 11:16:24 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:16:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:16:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:24 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:16:31 [DEBUG] Test: Executing step 0 -2022/02/28 11:16:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:31 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:31 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:16:31 [DEBUG] Test: Executing step 1 -2022/02/28 11:16:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:31 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:31 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:16:31 [DEBUG] Test: Executing step 2 -2022/02/28 11:16:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:31 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:31 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:16:31 [DEBUG] Test: Executing step 3 -2022/02/28 11:16:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:31 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] -2022/02/28 11:16:31 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:16:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:16:31 [DEBUG] Test: Executing step 4 -2022/02/28 11:16:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:31 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:31 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:31 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:31 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:31 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:16:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:31 [DEBUG] : Beginning Read -2022/02/28 11:16:31 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:31 [DEBUG] Begin Injection -2022/02/28 11:16:31 HTTP request POST /login -2022/02/28 11:16:31 HTTP request after injection POST /login -2022/02/28 11:16:31 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:16:33 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:16:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:33 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000b58100 -1 [chunked] false false map[] 0xc001026200 0xc0001b20b0} -2022/02/28 11:16:33 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw"} -2022/02/28 11:16:33 [DEBUG] Exit from do method -2022/02/28 11:16:33 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092a200 5563 [] false false map[] 0xc001026100 0xc0001b20b0} -2022/02/28 11:16:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:33 [DEBUG] Exit from do method -2022/02/28 11:16:33 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:33 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:33 [DEBUG] New state was assigned lineage "0c3bb869-28b7-7641-5e30-f7cf2ce9b438" -2022/02/28 11:16:33 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:33 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:33 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:33 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:33 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:33 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:33 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:33 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:33 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_9cio7" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_0d8iu" - template_name: "" => "acctest_0d8iu" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_9cio7" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_9cio7" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_0d8iu" - vrf_name: "" => "acctest_9cio7" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_9cio7" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_9cio7" - schema_id: "" => "" - template_name: "" => "acctest_0d8iu" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_9cio7" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_9cio7" - schema_id: "" => "" - template: "" => "acctest_0d8iu" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:16:33 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:16:33 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:16:33 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:16:33 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:16:33 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:16:33 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state)] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:16:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:16:33 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:16:33 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:16:33 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:16:33 [DEBUG] Schema: Beginning Creation -2022/02/28 11:16:33 [DEBUG] : Beginning Create -2022/02/28 11:16:33 HTTP request POST mso/api/v1/schemas -2022/02/28 11:16:33 [DEBUG] Begin Injection -2022/02/28 11:16:33 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:16:33 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:33 [DEBUG] Begin Injection -2022/02/28 11:16:33 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw] Content-Type:[application/json]] {{"displayName":"acctest_0d8iu","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_0d8iu","externalEpgs":[],"filters":[],"name":"acctest_0d8iu","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x9b7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:16:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:16:33 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:33 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw] Content-Type:[application/json]] {{"desc":"","name":"acctest_9cio7","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9b7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:16:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:34 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:16:34 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c61b91d000069624fb9a1] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7cc0 400 [] false false map[] 0xc00102c000 0xc0001b20b0} -2022/02/28 11:16:34 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:16:34 [DEBUG] Exit from do method -2022/02/28 11:16:34 [DEBUG] 621c61b91d000069624fb9a1: Schema Creation finished successfully -2022/02/28 11:16:34 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read -2022/02/28 11:16:34 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:34 [DEBUG] Begin Injection -2022/02/28 11:16:34 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:34 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf4e80 160 [] false false map[] 0xc0009f2500 0xc0001b20b0} -2022/02/28 11:16:34 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:34 [DEBUG] Exit from do method -2022/02/28 11:16:34 [DEBUG] 621c61ba1b00007908fd0c20: Creation finished successfully -2022/02/28 11:16:34 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read -2022/02/28 11:16:34 id: 621c61ba1b00007908fd0c20 -2022/02/28 11:16:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:34 [DEBUG] Begin Injection -2022/02/28 11:16:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092adc0 400 [] false false map[] 0xc000726500 0xc0001b20b0} -2022/02/28 11:16:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:16:34 [DEBUG] Exit from do method -2022/02/28 11:16:34 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully -2022/02/28 11:16:34 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:16:34 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:16:34 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:34 [DEBUG] Begin Injection -2022/02/28 11:16:34 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf4040 160 [] false false map[] 0xc00102c500 0xc00079a0b0} -2022/02/28 11:16:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:34 [DEBUG] Exit from do method -2022/02/28 11:16:34 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully -2022/02/28 11:16:35 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000930300 0xc0001b20b0} -2022/02/28 11:16:35 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:35 [DEBUG] acctest_9cio7: Creation finished successfully -2022/02/28 11:16:35 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:35 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:35 [DEBUG] Begin Injection -2022/02/28 11:16:35 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b583c0 768 [] false false map[] 0xc00037e200 0xc0001b2000} -2022/02/28 11:16:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:16:35 [DEBUG] Exit from do method -2022/02/28 11:16:35 currentvrfname acctest_9cio7 -2022/02/28 11:16:35 found correct vrfname -2022/02/28 11:16:35 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:35 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:16:35 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:16:35 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:16:35 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:35 [DEBUG] Begin Injection -2022/02/28 11:16:35 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:35 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000726d00 0xc00079a160} -2022/02/28 11:16:35 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:35 [DEBUG] : Beginning Read -2022/02/28 11:16:35 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:35 [DEBUG] Begin Injection -2022/02/28 11:16:35 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050d440 1277 [] false false map[] 0xc00037e300 0xc00079a160} -2022/02/28 11:16:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:16:36 [DEBUG] Exit from do method -2022/02/28 11:16:36 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:36 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:16:36 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:16:36 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:36 [DEBUG] Begin Injection -2022/02/28 11:16:36 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:36 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:36 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000727700 0xc00079a160} -2022/02/28 11:16:36 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:36 [DEBUG] Creation Complete -2022/02/28 11:16:36 [DEBUG] : Beginning Read -2022/02/28 11:16:36 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:36 [DEBUG] Begin Injection -2022/02/28 11:16:36 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cd080 1362 [] false false map[] 0xc000727900 0xc00079a160} -2022/02/28 11:16:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:36 [DEBUG] Exit from do method -2022/02/28 11:16:36 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully -2022/02/28 11:16:36 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:36 [DEBUG] New state was assigned lineage "64788efd-7e91-a6f7-08dc-90e5dd578305" -2022/02/28 11:16:36 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:36 [DEBUG] Begin Injection -2022/02/28 11:16:36 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cd740 1362 [] false false map[] 0xc00037e400 0xc00079a160} -2022/02/28 11:16:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:37 [DEBUG] Exit from do method -2022/02/28 11:16:37 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:37 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:37 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:37 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:37 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:37 [DEBUG] : Beginning Read -2022/02/28 11:16:37 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:37 [DEBUG] Begin Injection -2022/02/28 11:16:37 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b78fc0 5563 [] false false map[] 0xc00037e300 0xc00079a160} -2022/02/28 11:16:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:37 [DEBUG] Exit from do method -2022/02/28 11:16:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:37 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read -2022/02/28 11:16:37 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:37 [DEBUG] Begin Injection -2022/02/28 11:16:37 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:37 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read -2022/02/28 11:16:37 id: 621c61ba1b00007908fd0c20 -2022/02/28 11:16:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:37 [DEBUG] Begin Injection -2022/02/28 11:16:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cff040 1362 [] false false map[] 0xc000931800 0xc00079a160} -2022/02/28 11:16:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:37 [DEBUG] Exit from do method -2022/02/28 11:16:37 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully -2022/02/28 11:16:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:37 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:37 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:37 [DEBUG] Begin Injection -2022/02/28 11:16:37 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cd100 160 [] false false map[] 0xc0007ea400 0xc00079a0b0} -2022/02/28 11:16:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:37 [DEBUG] Exit from do method -2022/02/28 11:16:37 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully -2022/02/28 11:16:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cd580 1362 [] false false map[] 0xc0000b4500 0xc00079a160} -2022/02/28 11:16:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:38 [DEBUG] Exit from do method -2022/02/28 11:16:38 currentvrfname acctest_9cio7 -2022/02/28 11:16:38 found correct vrfname -2022/02/28 11:16:38 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:38 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:38 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:38 [DEBUG] Begin Injection -2022/02/28 11:16:38 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e80140 1362 [] false false map[] 0xc0000b4a00 0xc00079a160} -2022/02/28 11:16:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:38 [DEBUG] Exit from do method -2022/02/28 11:16:38 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:38 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Read -2022/02/28 11:16:38 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:38 [DEBUG] Begin Injection -2022/02/28 11:16:38 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e80280 1362 [] false false map[] 0xc000930c00 0xc00079a160} -2022/02/28 11:16:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:38 [DEBUG] Exit from do method -2022/02/28 11:16:38 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully -2022/02/28 11:16:38 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:38 [DEBUG] New state was assigned lineage "6b852c8d-c54a-e813-b5bc-08bd5c4b5cff" -2022/02/28 11:16:38 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:38 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:38 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:38 [DEBUG] Test: Executing step 5 -2022/02/28 11:16:38 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:38 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:38 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:38 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:38 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:38 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:38 [DEBUG] : Beginning Read -2022/02/28 11:16:38 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:38 [DEBUG] Begin Injection -2022/02/28 11:16:38 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cdd00 5563 [] false false map[] 0xc00037e700 0xc00079a160} -2022/02/28 11:16:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:39 [DEBUG] Exit from do method -2022/02/28 11:16:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:39 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:16:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:16:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:39 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read -2022/02/28 11:16:39 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:39 [DEBUG] Begin Injection -2022/02/28 11:16:39 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:39 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read -2022/02/28 11:16:39 id: 621c61ba1b00007908fd0c20 -2022/02/28 11:16:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:39 [DEBUG] Begin Injection -2022/02/28 11:16:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf5280 160 [] false false map[] 0xc00037ee00 0xc00079a0b0} -2022/02/28 11:16:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:39 [DEBUG] Exit from do method -2022/02/28 11:16:39 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully -2022/02/28 11:16:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2380 1362 [] false false map[] 0xc000eb2100 0xc00079a160} -2022/02/28 11:16:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:39 [DEBUG] Exit from do method -2022/02/28 11:16:39 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully -2022/02/28 11:16:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:39 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:39 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:39 [DEBUG] Begin Injection -2022/02/28 11:16:39 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050c500 1362 [] false false map[] 0xc001050400 0xc00079a160} -2022/02/28 11:16:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:39 [DEBUG] Exit from do method -2022/02/28 11:16:39 currentvrfname acctest_9cio7 -2022/02/28 11:16:39 found correct vrfname -2022/02/28 11:16:39 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:39 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:39 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:39 [DEBUG] Begin Injection -2022/02/28 11:16:39 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2600 1362 [] false false map[] 0xc000f12700 0xc00079a160} -2022/02/28 11:16:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:40 [DEBUG] Exit from do method -2022/02/28 11:16:40 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:40 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Read -2022/02/28 11:16:40 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:40 [DEBUG] Begin Injection -2022/02/28 11:16:40 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e72c0 1362 [] false false map[] 0xc0001fc300 0xc00079a160} -2022/02/28 11:16:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:16:40 [DEBUG] Exit from do method -2022/02/28 11:16:40 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully -2022/02/28 11:16:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:40 [DEBUG] New state was assigned lineage "4b905272-94e0-04dc-c376-cb9f5b1db323" -2022/02/28 11:16:40 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 11:16:40 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:40 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:40 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.test - description: "" => "" - id: "" => "" - name: "" => "acctest_a2sqa" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -UPDATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_9cio7" => "acctest_9cio7" - dhcp_option_name: "" => "acctest_a2sqa" - dhcp_option_version: "0" => "1" - id: "/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7" => "/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7" - name: "acctest_9cio7" => "acctest_9cio7" - schema_id: "621c61b91d000069624fb9a1" => "621c61b91d000069624fb9a1" - template_name: "acctest_0d8iu" => "acctest_0d8iu" - version: "0" => "1" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c61ba1b00007908fd0c20 - provider = provider.mso - description = - name = acctest_9cio7 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c61b91d000069624fb9a1 - provider = provider.mso - name = acctest_0d8iu - template_name = acctest_0d8iu - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_9cio7 - provider = provider.mso - dhcp_policy.name = acctest_9cio7 - dhcp_policy.version = 0 - display_name = acctest_9cio7 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_9cio7 - schema_id = 621c61b91d000069624fb9a1 - template_name = acctest_0d8iu - vrf_name = acctest_9cio7 - vrf_schema_id = 621c61b91d000069624fb9a1 - vrf_template_name = acctest_0d8iu - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7 - provider = provider.mso - bd_name = acctest_9cio7 - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_9cio7 - schema_id = 621c61b91d000069624fb9a1 - template_name = acctest_0d8iu - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_9cio7 - provider = provider.mso - display_name = acctest_9cio7 - layer3_multicast = false - name = acctest_9cio7 - schema_id = 621c61b91d000069624fb9a1 - template = acctest_0d8iu - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:16:40 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:16:40 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:16:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:16:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:16:40 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:16:40 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change -2022/02/28 11:16:40 [DEBUG] : Beginning Create -2022/02/28 11:16:40 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 11:16:40 [DEBUG] Begin Injection -2022/02/28 11:16:40 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 11:16:40 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_a2sqa","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9b7ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:16:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:16:40 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:16:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00093e080 161 [] false false map[] 0xc000fb4400 0xc00079a160} -2022/02/28 11:16:40 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c61c01b00008008fd0c21","name":"acctest_a2sqa","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:40 [DEBUG] Exit from do method -2022/02/28 11:16:40 [DEBUG] 621c61c01b00008008fd0c21: Creation finished successfully -2022/02/28 11:16:40 [DEBUG] 621c61c01b00008008fd0c21: Beginning Read -2022/02/28 11:16:40 id: 621c61c01b00008008fd0c21 -2022/02/28 11:16:40 HTTP request GET mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:40 [DEBUG] Begin Injection -2022/02/28 11:16:40 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000709c40 161 [] false false map[] 0xc00037e200 0xc00079a160} -2022/02/28 11:16:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 {"id":"621c61c01b00008008fd0c21","name":"acctest_a2sqa","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:41 [DEBUG] Exit from do method -2022/02/28 11:16:41 [DEBUG] 621c61c01b00008008fd0c21: Read finished successfully -2022/02/28 11:16:41 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change -2022/02/28 11:16:41 [DEBUG] Template BD: Beginning Update -2022/02/28 11:16:41 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:41 [DEBUG] Begin Injection -2022/02/28 11:16:41 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:41 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000732600 0xc00079a160} -2022/02/28 11:16:41 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:41 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Read -2022/02/28 11:16:41 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:41 [DEBUG] Begin Injection -2022/02/28 11:16:41 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050c200 1472 [] false false map[] 0xc000930100 0xc00079a160} -2022/02/28 11:16:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:41 [DEBUG] Exit from do method -2022/02/28 11:16:41 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully -2022/02/28 11:16:41 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:41 [DEBUG] New state was assigned lineage "830ad856-232e-8dcb-26f3-b4494dd6ad5c" -2022/02/28 11:16:41 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:41 [DEBUG] Begin Injection -2022/02/28 11:16:41 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2200 1472 [] false false map[] 0xc000930200 0xc00079a160} -2022/02/28 11:16:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:42 [DEBUG] Exit from do method -2022/02/28 11:16:42 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:42 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:42 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:42 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:42 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:42 [DEBUG] : Beginning Read -2022/02/28 11:16:42 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:42 [DEBUG] Begin Injection -2022/02/28 11:16:42 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b582c0 5563 [] false false map[] 0xc00037e300 0xc00079a160} -2022/02/28 11:16:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:42 [DEBUG] Exit from do method -2022/02/28 11:16:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:42 [DEBUG] 621c61c01b00008008fd0c21: Beginning Read -2022/02/28 11:16:42 id: 621c61c01b00008008fd0c21 -2022/02/28 11:16:42 HTTP request GET mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:42 [DEBUG] Begin Injection -2022/02/28 11:16:42 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:42 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read -2022/02/28 11:16:42 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:42 [DEBUG] Begin Injection -2022/02/28 11:16:42 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:42 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read -2022/02/28 11:16:42 id: 621c61ba1b00007908fd0c20 -2022/02/28 11:16:42 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:42 [DEBUG] Begin Injection -2022/02/28 11:16:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b59f00 161 [] false false map[] 0xc00048a700 0xc00079a160} -2022/02/28 11:16:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 {"id":"621c61c01b00008008fd0c21","name":"acctest_a2sqa","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:42 [DEBUG] Exit from do method -2022/02/28 11:16:42 [DEBUG] 621c61c01b00008008fd0c21: Read finished successfully -2022/02/28 11:16:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2700 1472 [] false false map[] 0xc000930700 0xc00079a0b0} -2022/02/28 11:16:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:42 [DEBUG] Exit from do method -2022/02/28 11:16:42 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully -2022/02/28 11:16:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:42 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:42 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:42 [DEBUG] Begin Injection -2022/02/28 11:16:42 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003752c0 160 [] false false map[] 0xc00037e700 0xc00079a160} -2022/02/28 11:16:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:43 [DEBUG] Exit from do method -2022/02/28 11:16:43 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully -2022/02/28 11:16:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf4040 1472 [] false false map[] 0xc000930c00 0xc00079a0b0} -2022/02/28 11:16:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:43 [DEBUG] Exit from do method -2022/02/28 11:16:43 currentvrfname acctest_9cio7 -2022/02/28 11:16:43 found correct vrfname -2022/02/28 11:16:43 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:43 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:43 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:43 [DEBUG] Begin Injection -2022/02/28 11:16:43 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf5cc0 1472 [] false false map[] 0xc00048ad00 0xc00079a0b0} -2022/02/28 11:16:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:43 [DEBUG] Exit from do method -2022/02/28 11:16:43 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:43 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Read -2022/02/28 11:16:43 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:43 [DEBUG] Begin Injection -2022/02/28 11:16:43 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000375880 1472 [] false false map[] 0xc00085e600 0xc0004f6370} -2022/02/28 11:16:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:43 [DEBUG] Exit from do method -2022/02/28 11:16:43 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully -2022/02/28 11:16:43 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:43 [DEBUG] New state was assigned lineage "78a2a4b3-92fd-f635-3141-00135cfe402f" -2022/02/28 11:16:43 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:43 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:43 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:43 [DEBUG] Test: Executing step 6 -2022/02/28 11:16:43 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7\")" (*terraform.graphNodeImportState) needs provider.mso -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7\")" references: [] -2022/02/28 11:16:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:43 [DEBUG] Starting graph walk: walkImport -2022/02/28 11:16:43 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Import -2022/02/28 11:16:43 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:43 [DEBUG] Begin Injection -2022/02/28 11:16:43 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b595c0 1472 [] false false map[] 0xc00037ec00 0xc0004f6370} -2022/02/28 11:16:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:44 [DEBUG] Exit from do method -2022/02/28 11:16:44 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Import finished successfully -2022/02/28 11:16:44 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Read -2022/02/28 11:16:44 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:44 [DEBUG] Begin Injection -2022/02/28 11:16:44 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000374c40 1472 [] false false map[] 0xc00044c300 0xc0004f6370} -2022/02/28 11:16:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:44 [DEBUG] Exit from do method -2022/02/28 11:16:44 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully -2022/02/28 11:16:44 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:44 [DEBUG] New state was assigned lineage "c1d4d5ee-b988-f2ba-b83c-bad28195f2b7" -2022/02/28 11:16:44 [DEBUG] Test: Executing step 7 -2022/02/28 11:16:44 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:44 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:44 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:44 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:44 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config -2022/02/28 11:16:44 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config -2022/02/28 11:16:44 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:44 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:44 [DEBUG] : Beginning Read -2022/02/28 11:16:44 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:44 [DEBUG] Begin Injection -2022/02/28 11:16:44 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b78040 5563 [] false false map[] 0xc000c7e600 0xc0004f6370} -2022/02/28 11:16:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:44 [DEBUG] Exit from do method -2022/02/28 11:16:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:44 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read -2022/02/28 11:16:44 [DEBUG] 621c61c01b00008008fd0c21: Beginning Read -2022/02/28 11:16:44 id: 621c61c01b00008008fd0c21 -2022/02/28 11:16:44 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:44 [DEBUG] Begin Injection -2022/02/28 11:16:44 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:44 HTTP request GET mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:44 [DEBUG] Begin Injection -2022/02/28 11:16:44 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:44 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read -2022/02/28 11:16:44 id: 621c61ba1b00007908fd0c20 -2022/02/28 11:16:44 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:44 [DEBUG] Begin Injection -2022/02/28 11:16:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6cc0 161 [] false false map[] 0xc0001b2100 0xc0004f6370} -2022/02/28 11:16:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 {"id":"621c61c01b00008008fd0c21","name":"acctest_a2sqa","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:45 [DEBUG] Exit from do method -2022/02/28 11:16:45 [DEBUG] 621c61c01b00008008fd0c21: Read finished successfully -2022/02/28 11:16:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b58a80 1472 [] false false map[] 0xc00030c200 0xc00079a160} -2022/02/28 11:16:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:45 [DEBUG] Exit from do method -2022/02/28 11:16:45 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully -2022/02/28 11:16:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:45 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:45 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:45 [DEBUG] Begin Injection -2022/02/28 11:16:45 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092aac0 1472 [] false false map[] 0xc00030c900 0xc00079a160} -2022/02/28 11:16:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b79600 160 [] false false map[] 0xc00030c400 0xc0004f6370} -2022/02/28 11:16:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:45 [DEBUG] Exit from do method -2022/02/28 11:16:45 [DEBUG] Exit from do method -2022/02/28 11:16:45 currentvrfname acctest_9cio7 -2022/02/28 11:16:45 found correct vrfname -2022/02/28 11:16:45 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:45 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully -2022/02/28 11:16:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:45 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:45 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:45 [DEBUG] Begin Injection -2022/02/28 11:16:45 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b79900 1472 [] false false map[] 0xc0001b2700 0xc0004f6370} -2022/02/28 11:16:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:45 [DEBUG] Exit from do method -2022/02/28 11:16:45 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:45 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Beginning Read -2022/02/28 11:16:45 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:45 [DEBUG] Begin Injection -2022/02/28 11:16:45 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd3780 1472 [] false false map[] 0xc0001b2c00 0xc000fc2000} -2022/02/28 11:16:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","dhcpLabel":{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_9cio7","dhcpOptionLabel":{"name":"acctest_a2sqa","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:16:46 [DEBUG] Exit from do method -2022/02/28 11:16:46 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7: Read finished successfully -2022/02/28 11:16:46 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:46 [DEBUG] New state was assigned lineage "ee728f58-0b35-f722-c350-12cfb2ba6e69" -2022/02/28 11:16:46 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:46 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:46 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:46 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.test - description: "" => "" - id: "621c61c01b00008008fd0c21" => "" - name: "acctest_a2sqa" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_9cio7" => "" - dhcp_option_name: "acctest_a2sqa" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7" => "" - name: "acctest_9cio7" => "" - schema_id: "621c61b91d000069624fb9a1" => "" - template_name: "acctest_0d8iu" => "" - version: "1" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.test: - ID = 621c61c01b00008008fd0c21 - provider = provider.mso - description = - name = acctest_a2sqa - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c61ba1b00007908fd0c20 - provider = provider.mso - description = - name = acctest_9cio7 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c61b91d000069624fb9a1 - provider = provider.mso - name = acctest_0d8iu - template_name = acctest_0d8iu - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_9cio7 - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_a2sqa - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_9cio7 - dhcp_policy.version = 1 - display_name = acctest_9cio7 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_9cio7 - schema_id = 621c61b91d000069624fb9a1 - template_name = acctest_0d8iu - vrf_name = acctest_9cio7 - vrf_schema_id = 621c61b91d000069624fb9a1 - vrf_template_name = acctest_0d8iu - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7/dhcpLabels/acctest_9cio7 - provider = provider.mso - bd_name = acctest_9cio7 - dhcp_option_name = acctest_a2sqa - dhcp_option_version = 1 - name = acctest_9cio7 - schema_id = 621c61b91d000069624fb9a1 - template_name = acctest_0d8iu - version = 1 - - Dependencies: - mso_dhcp_option_policy.test - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_9cio7 - provider = provider.mso - display_name = acctest_9cio7 - layer3_multicast = false - name = acctest_9cio7 - schema_id = 621c61b91d000069624fb9a1 - template = acctest_0d8iu - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:16:46 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:16:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:16:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:46 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:16:46 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:16:46 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:16:46 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:16:46 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:16:46 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:16:46 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:16:46 [DEBUG] Template BD: Beginning Update -2022/02/28 11:16:46 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:46 [DEBUG] Begin Injection -2022/02/28 11:16:46 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:46 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00037f200 0xc000fc2000} -2022/02/28 11:16:46 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:46 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change -2022/02/28 11:16:46 [DEBUG] 621c61c01b00008008fd0c21: Beginning Read -2022/02/28 11:16:46 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:46 [DEBUG] Begin Injection -2022/02/28 11:16:46 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:46 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000930800 0xc000fc2000} -2022/02/28 11:16:46 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c61c01b00008008fd0c21 -2022/02/28 11:16:46 [DEBUG] : Read finished successfully -2022/02/28 11:16:46 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:46 [DEBUG] New state was assigned lineage "001ac4ba-d429-b9bc-e34a-c156c92c472d" -2022/02/28 11:16:46 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:16:46 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:46 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:46 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:46 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:46 [DEBUG] : Beginning Read -2022/02/28 11:16:46 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:46 [DEBUG] Begin Injection -2022/02/28 11:16:46 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092a2c0 5563 [] false false map[] 0xc000beb600 0xc000fc2000} -2022/02/28 11:16:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:47 [DEBUG] Exit from do method -2022/02/28 11:16:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:47 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read -2022/02/28 11:16:47 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:47 [DEBUG] Begin Injection -2022/02/28 11:16:47 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:47 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read -2022/02/28 11:16:47 id: 621c61ba1b00007908fd0c20 -2022/02/28 11:16:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:47 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:47 [DEBUG] Begin Injection -2022/02/28 11:16:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092b180 160 [] false false map[] 0xc000bea500 0xc00079a160} -2022/02/28 11:16:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:47 [DEBUG] Exit from do method -2022/02/28 11:16:47 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully -2022/02/28 11:16:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf6100 1277 [] false false map[] 0xc000930900 0xc000fc2000} -2022/02/28 11:16:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:16:47 [DEBUG] Exit from do method -2022/02/28 11:16:47 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully -2022/02/28 11:16:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:47 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:47 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:47 [DEBUG] Begin Injection -2022/02/28 11:16:47 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050cec0 1277 [] false false map[] 0xc0001b4400 0xc000fc2000} -2022/02/28 11:16:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:16:47 [DEBUG] Exit from do method -2022/02/28 11:16:47 currentvrfname acctest_9cio7 -2022/02/28 11:16:47 found correct vrfname -2022/02/28 11:16:47 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:47 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:47 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:47 [DEBUG] Begin Injection -2022/02/28 11:16:47 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b580c0 1277 [] false false map[] 0xc000930f00 0xc000fc2000} -2022/02/28 11:16:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:16:48 [DEBUG] Exit from do method -2022/02/28 11:16:48 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:48 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:48 [DEBUG] New state was assigned lineage "22e8cc8f-3bbd-a023-265d-51d5258c09d3" -2022/02/28 11:16:48 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:48 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:48 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:48 [DEBUG] Test: Executing step 8 -2022/02/28 11:16:48 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:48 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:48 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:48 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:48 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:48 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:48 [DEBUG] : Beginning Read -2022/02/28 11:16:48 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:48 [DEBUG] Begin Injection -2022/02/28 11:16:48 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b58200 5563 [] false false map[] 0xc00120c100 0xc000fc2000} -2022/02/28 11:16:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:48 [DEBUG] Exit from do method -2022/02/28 11:16:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:48 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read -2022/02/28 11:16:48 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:48 [DEBUG] Begin Injection -2022/02/28 11:16:48 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:48 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read -2022/02/28 11:16:48 id: 621c61ba1b00007908fd0c20 -2022/02/28 11:16:48 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:48 [DEBUG] Begin Injection -2022/02/28 11:16:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092ad00 1277 [] false false map[] 0xc00037e500 0xc000fc2000} -2022/02/28 11:16:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:16:49 [DEBUG] Exit from do method -2022/02/28 11:16:49 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:49 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:49 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:49 [DEBUG] Begin Injection -2022/02/28 11:16:49 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092b500 160 [] false false map[] 0xc000930300 0xc00079a160} -2022/02/28 11:16:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 {"id":"621c61ba1b00007908fd0c20","name":"acctest_9cio7","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:49 [DEBUG] Exit from do method -2022/02/28 11:16:49 [DEBUG] 621c61ba1b00007908fd0c20: Read finished successfully -2022/02/28 11:16:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00092a140 1277 [] false false map[] 0xc000930500 0xc000fc2000} -2022/02/28 11:16:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:16:49 [DEBUG] Exit from do method -2022/02/28 11:16:49 currentvrfname acctest_9cio7 -2022/02/28 11:16:49 found correct vrfname -2022/02/28 11:16:49 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:49 [DEBUG] acctest_9cio7: Beginning Read -2022/02/28 11:16:49 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:49 [DEBUG] Begin Injection -2022/02/28 11:16:49 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050ce80 1277 [] false false map[] 0xc000930300 0xc000fc2000} -2022/02/28 11:16:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_9cio7","displayName":"acctest_9cio7","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_9cio7","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_9cio7","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:16:49 [DEBUG] Exit from do method -2022/02/28 11:16:49 [DEBUG] acctest_9cio7: Read finished successfully -2022/02/28 11:16:49 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:49 [DEBUG] New state was assigned lineage "6198c2fc-9a9d-a435-a6eb-728970fdb467" -2022/02/28 11:16:49 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:49 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:49 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:49 [WARN] Test: Step plan: DIFF: - -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c61ba1b00007908fd0c20" => "" - name: "acctest_9cio7" => "acctest_buuat" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "acctest_9cio7" => "acctest_buuat" (forces new resource) - id: "acctest_9cio7" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_9cio7" => "acctest_buuat" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c61b91d000069624fb9a1" => "621c61b91d000069624fb9a1" - template_name: "acctest_0d8iu" => "acctest_0d8iu" - vrf_name: "acctest_9cio7" => "acctest_buuat" - vrf_schema_id: "621c61b91d000069624fb9a1" => "" - vrf_template_name: "acctest_0d8iu" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_buuat" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_buuat" - schema_id: "" => "621c61b91d000069624fb9a1" - template_name: "" => "acctest_0d8iu" - version: "" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_9cio7" => "acctest_buuat" - id: "acctest_9cio7" => "" - layer3_multicast: "false" => "" - name: "acctest_9cio7" => "acctest_buuat" (forces new resource) - schema_id: "621c61b91d000069624fb9a1" => "621c61b91d000069624fb9a1" - template: "acctest_0d8iu" => "acctest_0d8iu" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c61ba1b00007908fd0c20 - provider = provider.mso - description = - name = acctest_9cio7 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c61b91d000069624fb9a1 - provider = provider.mso - name = acctest_0d8iu - template_name = acctest_0d8iu - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_9cio7 - provider = provider.mso - display_name = acctest_9cio7 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_9cio7 - schema_id = 621c61b91d000069624fb9a1 - template_name = acctest_0d8iu - vrf_name = acctest_9cio7 - vrf_schema_id = 621c61b91d000069624fb9a1 - vrf_template_name = acctest_0d8iu - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_9cio7 - provider = provider.mso - display_name = acctest_9cio7 - layer3_multicast = false - name = acctest_9cio7 - schema_id = 621c61b91d000069624fb9a1 - template = acctest_0d8iu - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:16:49 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:16:49 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:16:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:49 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:16:49 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:16:49 [DEBUG] 621c61ba1b00007908fd0c20: Beginning Read -2022/02/28 11:16:49 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:49 [DEBUG] Begin Injection -2022/02/28 11:16:49 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:49 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:16:49 [DEBUG] Template BD: Beginning Update -2022/02/28 11:16:49 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:49 [DEBUG] Begin Injection -2022/02/28 11:16:49 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d00000 0xc000fc2000} -2022/02/28 11:16:50 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ba1b00007908fd0c20 -2022/02/28 11:16:50 [DEBUG] : Read finished successfully -2022/02/28 11:16:50 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:16:50 [DEBUG] : Beginning Create -2022/02/28 11:16:50 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:50 [DEBUG] Begin Injection -2022/02/28 11:16:50 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:50 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4MzkzLCJpYXQiOjE2NDYwMjcxOTMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiY21mdkdnUVg4Z0kzZEpqbHBCc0VUaGdCIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I7BQt6yeCLx3y5cLcg8YWvX9Tha4zD-gFqDLzsZPN5QbWAgZsllKJiE0-FxcPamhoNjdKn2Ye7zoc_B2is-OEH2PJmylXZYml5P_QDhx_x1c2vbZK9RasfTx31CMsylJZvB-SY3Na8M-hArPaJw8YMm6ocZDVp4bg9Fp_FwTFdYROEgsKfm6wR1zPqEe8Tt-c-NmDgf_a2gkXyTQ8Do76U-Vt2Zl8dbEiMwV_G5vkqDtHo0OwoZW5248WkxBRIYc3-8yujxvW5euUlK0Lu2X5Aq6kBlaRYXOPOS5scgFLIXIBXTnYmDkieMLOffHEGRt06PzP-ro3BcvTXLOS37bEw] Content-Type:[application/json]] {{"desc":"","name":"acctest_buuat","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9b7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:16:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:50 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d00100 0xc00079a160} -2022/02/28 11:16:50 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:16:50 [DEBUG] acctest_9cio7: Beginning Destroy -2022/02/28 11:16:50 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 [DEBUG] Begin Injection -2022/02/28 11:16:50 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d00900 0xc00079a160} -2022/02/28 11:16:50 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 [DEBUG] acctest_9cio7: Destroy finished successfully -2022/02/28 11:16:50 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:16:50 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:16:50 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 [DEBUG] Begin Injection -2022/02/28 11:16:50 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:16:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001239580 160 [] false false map[] 0xc0007c2700 0xc000fc2000} -2022/02/28 11:16:50 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c61ca1b00007908fd0c22","name":"acctest_buuat","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:50 [DEBUG] Exit from do method -2022/02/28 11:16:50 [DEBUG] 621c61ca1b00007908fd0c22: Creation finished successfully -2022/02/28 11:16:50 [DEBUG] 621c61ca1b00007908fd0c22: Beginning Read -2022/02/28 11:16:50 id: 621c61ca1b00007908fd0c22 -2022/02/28 11:16:50 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:50 [DEBUG] Begin Injection -2022/02/28 11:16:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:50 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000338500 0xc00079a160} -2022/02/28 11:16:50 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:50 [DEBUG] acctest_buuat: Creation finished successfully -2022/02/28 11:16:50 [DEBUG] acctest_buuat: Beginning Read -2022/02/28 11:16:50 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:50 [DEBUG] Begin Injection -2022/02/28 11:16:50 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050df40 160 [] false false map[] 0xc000338700 0xc000fc2000} -2022/02/28 11:16:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 {"id":"621c61ca1b00007908fd0c22","name":"acctest_buuat","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:50 [DEBUG] Exit from do method -2022/02/28 11:16:50 [DEBUG] 621c61ca1b00007908fd0c22: Read finished successfully -2022/02/28 11:16:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cd0c0 768 [] false false map[] 0xc0007c3100 0xc00079a160} -2022/02/28 11:16:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 11:16:51 [DEBUG] Exit from do method -2022/02/28 11:16:51 currentvrfname acctest_buuat -2022/02/28 11:16:51 found correct vrfname -2022/02/28 11:16:51 [DEBUG] acctest_buuat: Read finished successfully -2022/02/28 11:16:51 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:16:51 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:16:51 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:16:51 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:51 [DEBUG] Begin Injection -2022/02/28 11:16:51 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:51 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00037ec00 0xc00079a160} -2022/02/28 11:16:51 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:51 [DEBUG] : Beginning Read -2022/02/28 11:16:51 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:51 [DEBUG] Begin Injection -2022/02/28 11:16:51 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2040 1278 [] false false map[] 0xc0007c2000 0xc00079a160} -2022/02/28 11:16:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 11:16:51 [DEBUG] Exit from do method -2022/02/28 11:16:51 [DEBUG] acctest_buuat: Read finished successfully -2022/02/28 11:16:51 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:16:51 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:16:51 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:51 [DEBUG] Begin Injection -2022/02/28 11:16:51 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:52 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00037eb00 0xc00079a160} -2022/02/28 11:16:52 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:52 [DEBUG] Creation Complete -2022/02/28 11:16:52 [DEBUG] : Beginning Read -2022/02/28 11:16:52 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:52 [DEBUG] Begin Injection -2022/02/28 11:16:52 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:52 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050d240 1363 [] false false map[] 0xc000338000 0xc00079a160} -2022/02/28 11:16:52 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:52 [DEBUG] Exit from do method -2022/02/28 11:16:52 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat: Read finished successfully -2022/02/28 11:16:52 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:52 [DEBUG] New state was assigned lineage "a4b9ecdb-5f86-658f-228f-6ba6ebd65c31" -2022/02/28 11:16:52 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:52 [DEBUG] Begin Injection -2022/02/28 11:16:52 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:52 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000cc400 1363 [] false false map[] 0xc00037f100 0xc00079a160} -2022/02/28 11:16:52 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:52 [DEBUG] Exit from do method -2022/02/28 11:16:52 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:52 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:52 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:52 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:52 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:52 [DEBUG] : Beginning Read -2022/02/28 11:16:52 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:52 [DEBUG] Begin Injection -2022/02/28 11:16:52 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2040 5563 [] false false map[] 0xc000f5d800 0xc00079a160} -2022/02/28 11:16:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:53 [DEBUG] Exit from do method -2022/02/28 11:16:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:53 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read -2022/02/28 11:16:53 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:53 [DEBUG] Begin Injection -2022/02/28 11:16:53 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:53 [DEBUG] 621c61ca1b00007908fd0c22: Beginning Read -2022/02/28 11:16:53 id: 621c61ca1b00007908fd0c22 -2022/02/28 11:16:53 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:53 [DEBUG] Begin Injection -2022/02/28 11:16:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ddc0 160 [] false false map[] 0xc000930600 0xc000fc2000} -2022/02/28 11:16:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 {"id":"621c61ca1b00007908fd0c22","name":"acctest_buuat","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:53 [DEBUG] Exit from do method -2022/02/28 11:16:53 [DEBUG] 621c61ca1b00007908fd0c22: Read finished successfully -2022/02/28 11:16:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00020ce00 1363 [] false false map[] 0xc000e42200 0xc00079a160} -2022/02/28 11:16:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:53 [DEBUG] Exit from do method -2022/02/28 11:16:53 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully -2022/02/28 11:16:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:53 [DEBUG] acctest_buuat: Beginning Read -2022/02/28 11:16:53 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:53 [DEBUG] Begin Injection -2022/02/28 11:16:53 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b79a40 1363 [] false false map[] 0xc000e42700 0xc00079a160} -2022/02/28 11:16:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:53 [DEBUG] Exit from do method -2022/02/28 11:16:53 currentvrfname acctest_buuat -2022/02/28 11:16:53 found correct vrfname -2022/02/28 11:16:53 [DEBUG] acctest_buuat: Read finished successfully -2022/02/28 11:16:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:53 [DEBUG] acctest_buuat: Beginning Read -2022/02/28 11:16:53 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:53 [DEBUG] Begin Injection -2022/02/28 11:16:53 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:54 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00126e040 1363 [] false false map[] 0xc0007c2800 0xc00079a160} -2022/02/28 11:16:54 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:54 [DEBUG] Exit from do method -2022/02/28 11:16:54 [DEBUG] acctest_buuat: Read finished successfully -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:54 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat: Beginning Read -2022/02/28 11:16:54 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:54 [DEBUG] Begin Injection -2022/02/28 11:16:54 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:54 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00020c6c0 1363 [] false false map[] 0xc000930500 0xc00079a160} -2022/02/28 11:16:54 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:54 [DEBUG] Exit from do method -2022/02/28 11:16:54 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat: Read finished successfully -2022/02/28 11:16:54 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:54 [DEBUG] New state was assigned lineage "b12db5f4-8448-354c-14f3-cc75c5418b35" -2022/02/28 11:16:54 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:16:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:54 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:54 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:54 [WARN] Test: Executing destroy step -2022/02/28 11:16:54 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:54 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:16:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:54 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:16:54 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:54 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:54 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:54 [DEBUG] : Beginning Read -2022/02/28 11:16:54 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:54 [DEBUG] Begin Injection -2022/02/28 11:16:54 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:54 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7bc0 5563 [] false false map[] 0xc000930200 0xc00079a160} -2022/02/28 11:16:54 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:54 [DEBUG] Exit from do method -2022/02/28 11:16:54 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:16:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:16:54 [DEBUG] 621c61b91d000069624fb9a1: Beginning Read -2022/02/28 11:16:54 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:54 [DEBUG] Begin Injection -2022/02/28 11:16:54 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:54 [DEBUG] 621c61ca1b00007908fd0c22: Beginning Read -2022/02/28 11:16:54 id: 621c61ca1b00007908fd0c22 -2022/02/28 11:16:54 HTTP request GET mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:54 [DEBUG] Begin Injection -2022/02/28 11:16:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cf5d80 1363 [] false false map[] 0xc000930700 0xc00079a160} -2022/02/28 11:16:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:55 [DEBUG] Exit from do method -2022/02/28 11:16:55 [DEBUG] 621c61b91d000069624fb9a1: Read finished successfully -2022/02/28 11:16:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:16:55 [DEBUG] acctest_buuat: Beginning Read -2022/02/28 11:16:55 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:55 [DEBUG] Begin Injection -2022/02/28 11:16:55 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2cc0 160 [] false false map[] 0xc00037e700 0xc000fc2000} -2022/02/28 11:16:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 {"id":"621c61ca1b00007908fd0c22","name":"acctest_buuat","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:16:55 [DEBUG] Exit from do method -2022/02/28 11:16:55 [DEBUG] 621c61ca1b00007908fd0c22: Read finished successfully -2022/02/28 11:16:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd3340 1363 [] false false map[] 0xc00037e900 0xc00079a160} -2022/02/28 11:16:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:55 [DEBUG] Exit from do method -2022/02/28 11:16:55 currentvrfname acctest_buuat -2022/02/28 11:16:55 found correct vrfname -2022/02/28 11:16:55 [DEBUG] acctest_buuat: Read finished successfully -2022/02/28 11:16:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:16:55 [DEBUG] acctest_buuat: Beginning Read -2022/02/28 11:16:55 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:55 [DEBUG] Begin Injection -2022/02/28 11:16:55 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd3780 1363 [] false false map[] 0xc000930500 0xc00079a160} -2022/02/28 11:16:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:55 [DEBUG] Exit from do method -2022/02/28 11:16:55 [DEBUG] acctest_buuat: Read finished successfully -2022/02/28 11:16:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:16:55 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat: Beginning Read -2022/02/28 11:16:55 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:55 [DEBUG] Begin Injection -2022/02/28 11:16:55 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:56 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00020c840 1363 [] false false map[] 0xc00037e300 0xc00079a160} -2022/02/28 11:16:56 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"id":"621c61b91d000069624fb9a1","displayName":"acctest_0d8iu","description":"","templates":[{"name":"acctest_0d8iu","displayName":"acctest_0d8iu","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_buuat","displayName":"acctest_buuat","vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_buuat","displayName":"acctest_buuat","bdRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/vrfs/acctest_buuat","dhcpLabel":{"name":"acctest_buuat","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_buuat","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:16:56 [DEBUG] Exit from do method -2022/02/28 11:16:56 [DEBUG] /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat: Read finished successfully -2022/02/28 11:16:56 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:56 [DEBUG] New state was assigned lineage "fda4c44d-9394-6955-a5c9-675028e2c0ad" -2022/02/28 11:16:56 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:16:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:56 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:16:56 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c61ca1b00007908fd0c22" => "" - name: "acctest_buuat" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c61b91d000069624fb9a1" => "" - name: "acctest_0d8iu" => "" - template_name: "acctest_0d8iu" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_buuat" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_buuat" => "" - id: "acctest_buuat" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_buuat" => "" - schema_id: "621c61b91d000069624fb9a1" => "" - template_name: "acctest_0d8iu" => "" - vrf_name: "acctest_buuat" => "" - vrf_schema_id: "621c61b91d000069624fb9a1" => "" - vrf_template_name: "acctest_0d8iu" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_buuat" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat" => "" - name: "acctest_buuat" => "" - schema_id: "621c61b91d000069624fb9a1" => "" - template_name: "acctest_0d8iu" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_buuat" => "" - id: "acctest_buuat" => "" - layer3_multicast: "false" => "" - name: "acctest_buuat" => "" - schema_id: "621c61b91d000069624fb9a1" => "" - template: "acctest_0d8iu" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c61ca1b00007908fd0c22 - provider = provider.mso - description = - name = acctest_buuat - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c61b91d000069624fb9a1 - provider = provider.mso - name = acctest_0d8iu - template_name = acctest_0d8iu - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_buuat - provider = provider.mso - dhcp_policy.name = acctest_buuat - dhcp_policy.version = 0 - display_name = acctest_buuat - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_buuat - schema_id = 621c61b91d000069624fb9a1 - template_name = acctest_0d8iu - vrf_name = acctest_buuat - vrf_schema_id = 621c61b91d000069624fb9a1 - vrf_template_name = acctest_0d8iu - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c61b91d000069624fb9a1/templates/acctest_0d8iu/bds/acctest_buuat/dhcpLabels/acctest_buuat - provider = provider.mso - bd_name = acctest_buuat - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_buuat - schema_id = 621c61b91d000069624fb9a1 - template_name = acctest_0d8iu - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_buuat - provider = provider.mso - display_name = acctest_buuat - layer3_multicast = false - name = acctest_buuat - schema_id = 621c61b91d000069624fb9a1 - template = acctest_0d8iu - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:16:56 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:16:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:16:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:16:56 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:16:56 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:16:56 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:16:56 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:16:56 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:16:56 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:16:56 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:16:56 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:16:56 [DEBUG] Template BD: Beginning Update -2022/02/28 11:16:56 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:56 [DEBUG] Begin Injection -2022/02/28 11:16:56 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:56 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:56 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00130e600 0xc00079a160} -2022/02/28 11:16:56 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:56 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:16:56 [DEBUG] 621c61ca1b00007908fd0c22: Beginning Read -2022/02/28 11:16:56 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:56 [DEBUG] Begin Injection -2022/02/28 11:16:56 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:56 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:16:56 [DEBUG] Template BD: Beginning Update -2022/02/28 11:16:56 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:56 [DEBUG] Begin Injection -2022/02/28 11:16:56 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:56 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:56 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00130ee00 0xc00079a160} -2022/02/28 11:16:56 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c61ca1b00007908fd0c22 -2022/02/28 11:16:56 [DEBUG] : Read finished successfully -2022/02/28 11:16:56 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:56 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000420200 0xc000fc2000} -2022/02/28 11:16:56 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:56 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:16:56 [DEBUG] acctest_buuat: Beginning Destroy -2022/02/28 11:16:56 HTTP request PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:56 [DEBUG] Begin Injection -2022/02/28 11:16:56 HTTP request after injection PATCH mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:57 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000930600 0xc000fc2000} -2022/02/28 11:16:57 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1?validate=false -2022/02/28 11:16:57 [DEBUG] acctest_buuat: Destroy finished successfully -2022/02/28 11:16:57 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:16:57 [DEBUG] 621c61b91d000069624fb9a1: Beginning Destroy -2022/02/28 11:16:57 HTTP request DELETE mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:57 [DEBUG] Begin Injection -2022/02/28 11:16:57 HTTP request after injection DELETE mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:57 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:46:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00037e400 0xc000fc2000} -2022/02/28 11:16:57 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:57 [DEBUG] 621c61b91d000069624fb9a1: Destroy finished successfully -2022/02/28 11:16:57 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:57 [DEBUG] New state was assigned lineage "de3f1463-346a-0537-60f6-6f011550c49a" -2022/02/28 11:16:57 HTTP request GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:57 [DEBUG] Begin Injection -2022/02/28 11:16:57 HTTP request after injection GET mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:57 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 -2022/02/28 11:16:57 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:57 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00126e240 39 [] false false map[] 0xc000930100 0xc000fc2000} -2022/02/28 11:16:57 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c61b91d000069624fb9a1 {"code":404,"message":"Item not found"} -2022/02/28 11:16:57 [DEBUG] Exit from do method -2022/02/28 11:16:57 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:16:57 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:16:57 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:16:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:16:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:57 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:16:57 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:16:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:57 [DEBUG] : Beginning Read -2022/02/28 11:16:57 HTTP request GET mso/api/v1/tenants -2022/02/28 11:16:57 [DEBUG] Begin Injection -2022/02/28 11:16:57 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:16:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:58 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:16:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:46:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd2a40 5563 [] false false map[] 0xc00037e500 0xc000fc2000} -2022/02/28 11:16:58 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:16:58 [DEBUG] Exit from do method -2022/02/28 11:16:58 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:16:58 [DEBUG] provider has no plugin.Client -2022/02/28 11:16:58 [DEBUG] New state was assigned lineage "21eeee34-9ba6-a86d-f072-6ae204ae1d18" -2022/02/28 11:16:58 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:16:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:16:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:16:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:16:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:16:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:16:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:16:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:16:58 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:19:32 [DEBUG] Test: Executing step 0 -2022/02/28 11:19:32 [DEBUG] Test: Executing step 0 -2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:19:32 [DEBUG] Test: Executing step 1 -2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:32 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:32 [DEBUG] : Beginning Read -2022/02/28 11:19:32 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:32 [DEBUG] Begin Injection -2022/02/28 11:19:32 HTTP request POST /login -2022/02/28 11:19:32 HTTP request after injection POST /login -2022/02/28 11:19:32 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:19:32 [DEBUG] Test: Executing step 2 -2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:19:32 [DEBUG] Test: Executing step 3 -2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:19:32 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:19:32 [DEBUG] Test: Executing step 4 -2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:32 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:32 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:32 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:32 [DEBUG] : Beginning Read -2022/02/28 11:19:32 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:32 [DEBUG] Begin Injection -2022/02/28 11:19:32 HTTP request POST /login -2022/02/28 11:19:32 HTTP request after injection POST /login -2022/02/28 11:19:32 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:19:33 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:19:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:33 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiV1dXd3BJPWpFN25oQ0RzZ2xubXk2TENQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.niHV_mDpCY0JapdpDOCEMvUGSsTTmMpeL9_3IxqjLOwfDVFhYMNg_OdO_E_atLak0P1YAJxB24j3veUis6whsjyhzdBRVZ3F1xvp-MOOow2pfjb86Io3AF4H5ezaz4deZMJ1v2O2aTz30b4tQl5Q7yB610J7ietBZEJL17X-_cbkv0mNDjdNYrX7F8xTP5kago_k1zHktztwEs69J3pSYD-4YBFZSXbN8rupD7dk2WvPq-YrIYcqH1FCWEZzx5uN38vf2fnGszm4GEg8vim_NI4wIFBZuDiNb8JpQUdi0UWxJc1j-_7xyF6zj2qja-SCm95iG3HZxwwWKeF3b5372g; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00061a6c0 -1 [chunked] false false map[] 0xc0001c8e00 0xc0007d0000} -2022/02/28 11:19:33 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiV1dXd3BJPWpFN25oQ0RzZ2xubXk2TENQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.niHV_mDpCY0JapdpDOCEMvUGSsTTmMpeL9_3IxqjLOwfDVFhYMNg_OdO_E_atLak0P1YAJxB24j3veUis6whsjyhzdBRVZ3F1xvp-MOOow2pfjb86Io3AF4H5ezaz4deZMJ1v2O2aTz30b4tQl5Q7yB610J7ietBZEJL17X-_cbkv0mNDjdNYrX7F8xTP5kago_k1zHktztwEs69J3pSYD-4YBFZSXbN8rupD7dk2WvPq-YrIYcqH1FCWEZzx5uN38vf2fnGszm4GEg8vim_NI4wIFBZuDiNb8JpQUdi0UWxJc1j-_7xyF6zj2qja-SCm95iG3HZxwwWKeF3b5372g","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiV1dXd3BJPWpFN25oQ0RzZ2xubXk2TENQIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.niHV_mDpCY0JapdpDOCEMvUGSsTTmMpeL9_3IxqjLOwfDVFhYMNg_OdO_E_atLak0P1YAJxB24j3veUis6whsjyhzdBRVZ3F1xvp-MOOow2pfjb86Io3AF4H5ezaz4deZMJ1v2O2aTz30b4tQl5Q7yB610J7ietBZEJL17X-_cbkv0mNDjdNYrX7F8xTP5kago_k1zHktztwEs69J3pSYD-4YBFZSXbN8rupD7dk2WvPq-YrIYcqH1FCWEZzx5uN38vf2fnGszm4GEg8vim_NI4wIFBZuDiNb8JpQUdi0UWxJc1j-_7xyF6zj2qja-SCm95iG3HZxwwWKeF3b5372g"} -2022/02/28 11:19:33 [DEBUG] Exit from do method -2022/02/28 11:19:33 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:33 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:19:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:33 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000af6100 -1 [chunked] false false map[] 0xc000e2e200 0xc0005da0b0} -2022/02/28 11:19:33 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ"} -2022/02/28 11:19:33 [DEBUG] Exit from do method -2022/02/28 11:19:33 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00061a880 5563 [] false false map[] 0xc0001c8d00 0xc0007d0000} -2022/02/28 11:19:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:34 [DEBUG] Exit from do method -2022/02/28 11:19:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:34 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:34 [DEBUG] New state was assigned lineage "48e76066-c1f7-8845-c6f5-c8464ab1b3c5" -2022/02/28 11:19:34 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:34 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:34 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:34 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_nscpw" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_mxqpk" - template_name: "" => "acctest_mxqpk" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_nscpw" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_nscpw" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_mxqpk" - vrf_name: "" => "acctest_nscpw" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_nscpw" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_nscpw" - schema_id: "" => "" - template_name: "" => "acctest_mxqpk" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_nscpw" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_nscpw" - schema_id: "" => "" - template: "" => "acctest_mxqpk" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:19:34 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:19:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:34 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:19:34 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:19:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:19:34 [DEBUG] Schema: Beginning Creation -2022/02/28 11:19:34 HTTP request POST mso/api/v1/schemas -2022/02/28 11:19:34 [DEBUG] Begin Injection -2022/02/28 11:19:34 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:19:34 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ] Content-Type:[application/json]] {{"displayName":"acctest_mxqpk","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_mxqpk","externalEpgs":[],"filters":[],"name":"acctest_mxqpk","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x1107ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 11:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:19:34 [DEBUG] : Beginning Create -2022/02/28 11:19:34 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:19:34 [DEBUG] Begin Injection -2022/02/28 11:19:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:19:34 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_nscpw","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x1107ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 11:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:19:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af7940 5563 [] false false map[] 0xc000e2e000 0xc0005da0b0} -2022/02/28 11:19:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:34 [DEBUG] Exit from do method -2022/02/28 11:19:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:34 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:34 [DEBUG] New state was assigned lineage "c59caae0-c880-a5d5-cafd-3894217eefe1" -2022/02/28 11:19:34 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:34 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:34 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:34 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:34 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_7lxka" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_pphhx" - template_name: "" => "acctest_pphhx" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_7lxka" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_7lxka" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_pphhx" - vrf_name: "" => "acctest_7lxka" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_7lxka_invalid" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_7lxka" - schema_id: "" => "" - template_name: "" => "acctest_pphhx" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_7lxka" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_7lxka" - schema_id: "" => "" - template: "" => "acctest_pphhx" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:19:34 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:19:34 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:19:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:19:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:19:34 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:19:34 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:19:34 [DEBUG] Schema: Beginning Creation -2022/02/28 11:19:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:19:34 HTTP request POST mso/api/v1/schemas -2022/02/28 11:19:34 [DEBUG] Begin Injection -2022/02/28 11:19:34 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:19:34 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ] Content-Type:[application/json]] {{"displayName":"acctest_pphhx","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_pphhx","externalEpgs":[],"filters":[],"name":"acctest_pphhx","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x1107ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 11:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:19:34 [DEBUG] : Beginning Create -2022/02/28 11:19:34 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:19:34 [DEBUG] Begin Injection -2022/02/28 11:19:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:19:34 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_7lxka","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x1107ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 11:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:19:34 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:19:34 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c626e1d000085624fb9b0] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e3a40 400 [] false false map[] 0xc00015c800 0xc0007d0000} -2022/02/28 11:19:34 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:19:34 [DEBUG] Exit from do method -2022/02/28 11:19:34 [DEBUG] 621c626e1d000085624fb9b0: Schema Creation finished successfully -2022/02/28 11:19:34 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read -2022/02/28 11:19:34 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:34 [DEBUG] Begin Injection -2022/02/28 11:19:34 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:34 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:19:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e3b40 160 [] false false map[] 0xc000494c00 0xc0005da0b0} -2022/02/28 11:19:34 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:34 [DEBUG] Exit from do method -2022/02/28 11:19:34 [DEBUG] 621c626e1b0000a308fd0c23: Creation finished successfully -2022/02/28 11:19:34 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read -2022/02/28 11:19:34 id: 621c626e1b0000a308fd0c23 -2022/02/28 11:19:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:34 [DEBUG] Begin Injection -2022/02/28 11:19:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:35 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:19:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af62c0 160 [] false false map[] 0xc000830b00 0xc0005da0b0} -2022/02/28 11:19:35 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c626e1b0000b408fd0c24","name":"acctest_7lxka","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:35 [DEBUG] Exit from do method -2022/02/28 11:19:35 [DEBUG] 621c626e1b0000b408fd0c24: Creation finished successfully -2022/02/28 11:19:35 [DEBUG] 621c626e1b0000b408fd0c24: Beginning Read -2022/02/28 11:19:35 id: 621c626e1b0000b408fd0c24 -2022/02/28 11:19:35 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:35 [DEBUG] Begin Injection -2022/02/28 11:19:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:35 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:19:35 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c626e1d000081624fb9b2] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ae200 400 [] false false map[] 0xc000e2e700 0xc0007d0000} -2022/02/28 11:19:35 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:19:35 [DEBUG] Exit from do method -2022/02/28 11:19:35 [DEBUG] 621c626e1d000081624fb9b2: Schema Creation finished successfully -2022/02/28 11:19:35 [DEBUG] 621c626e1d000081624fb9b2: Beginning Read -2022/02/28 11:19:35 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:35 [DEBUG] Begin Injection -2022/02/28 11:19:35 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ae480 400 [] false false map[] 0xc000e2ed00 0xc0001ac000} -2022/02/28 11:19:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:19:35 [DEBUG] Exit from do method -2022/02/28 11:19:35 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully -2022/02/28 11:19:35 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:19:35 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:19:35 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:35 [DEBUG] Begin Injection -2022/02/28 11:19:35 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706680 160 [] false false map[] 0xc0001c8200 0xc0005da0b0} -2022/02/28 11:19:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c0700 400 [] false false map[] 0xc000494100 0xc0007d0000} -2022/02/28 11:19:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 {"id":"621c626e1b0000b408fd0c24","name":"acctest_7lxka","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:19:35 [DEBUG] Exit from do method -2022/02/28 11:19:35 [DEBUG] Exit from do method -2022/02/28 11:19:35 [DEBUG] 621c626e1d000081624fb9b2: Read finished successfully -2022/02/28 11:19:35 [DEBUG] 621c626e1b0000b408fd0c24: Read finished successfully -2022/02/28 11:19:35 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:19:35 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:19:35 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:35 [DEBUG] Begin Injection -2022/02/28 11:19:35 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ae640 160 [] false false map[] 0xc000e2ee00 0xc0014dc000} -2022/02/28 11:19:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:35 [DEBUG] Exit from do method -2022/02/28 11:19:35 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully -2022/02/28 11:19:35 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000e2f000 0xc0001ac000} -2022/02/28 11:19:35 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:35 [DEBUG] acctest_nscpw: Creation finished successfully -2022/02/28 11:19:35 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:35 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:35 [DEBUG] Begin Injection -2022/02/28 11:19:35 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:35 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001c8f00 0xc0007d0000} -2022/02/28 11:19:35 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:35 [DEBUG] acctest_7lxka: Creation finished successfully -2022/02/28 11:19:35 [DEBUG] acctest_7lxka: Beginning Read -2022/02/28 11:19:35 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:35 [DEBUG] Begin Injection -2022/02/28 11:19:35 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005aeb40 768 [] false false map[] 0xc000494300 0xc0014dc000} -2022/02/28 11:19:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:19:36 [DEBUG] Exit from do method -2022/02/28 11:19:36 currentvrfname acctest_nscpw -2022/02/28 11:19:36 found correct vrfname -2022/02/28 11:19:36 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:36 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:19:36 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:19:36 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:19:36 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:36 [DEBUG] Begin Injection -2022/02/28 11:19:36 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cab2c0 768 [] false false map[] 0xc000e2f200 0xc0007d0000} -2022/02/28 11:19:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:19:36 [DEBUG] Exit from do method -2022/02/28 11:19:36 currentvrfname acctest_7lxka -2022/02/28 11:19:36 found correct vrfname -2022/02/28 11:19:36 [DEBUG] acctest_7lxka: Read finished successfully -2022/02/28 11:19:36 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:19:36 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:19:36 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:19:36 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:36 [DEBUG] Begin Injection -2022/02/28 11:19:36 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:36 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:36 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000494f00 0xc0014dc000} -2022/02/28 11:19:36 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:36 [DEBUG] : Beginning Read -2022/02/28 11:19:36 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:36 [DEBUG] Begin Injection -2022/02/28 11:19:36 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:36 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:36 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000495400 0xc0007d0000} -2022/02/28 11:19:36 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:36 [DEBUG] : Beginning Read -2022/02/28 11:19:36 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:36 [DEBUG] Begin Injection -2022/02/28 11:19:36 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706040 1277 [] false false map[] 0xc0001c9800 0xc0014dc000} -2022/02/28 11:19:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:19:36 [DEBUG] Exit from do method -2022/02/28 11:19:36 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:36 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:19:36 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:19:36 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:36 [DEBUG] Begin Injection -2022/02/28 11:19:36 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c1a00 1277 [] false false map[] 0xc0001c9900 0xc0007d0000} -2022/02/28 11:19:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:19:36 [DEBUG] Exit from do method -2022/02/28 11:19:36 [DEBUG] acctest_7lxka: Read finished successfully -2022/02/28 11:19:36 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:19:36 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:19:36 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:36 [DEBUG] Begin Injection -2022/02/28 11:19:36 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:37 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000830100 0xc0014dc000} -2022/02/28 11:19:37 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:37 [DEBUG] Creation Complete -2022/02/28 11:19:37 [DEBUG] : Beginning Read -2022/02/28 11:19:37 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:37 [DEBUG] Begin Injection -2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:37 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:37 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[112] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:36 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc000706a80 112 [] false false map[] 0xc000494900 0xc0007d0000} -2022/02/28 11:19:37 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false {"code":141,"message":"Resource Not Found: Bd with name acctest_7lxka_invalid not found in List(acctest_7lxka)"} -2022/02/28 11:19:37 [DEBUG] Exit from do method -2022/02/28 11:19:37 [DEBUG] mso_schema_template_bd_dhcp_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Resource Not Found: Bd with name acctest_7lxka_invalid not found in List(acctest_7lxka)"{} -2022/02/28 11:19:37 [ERROR] : eval: *terraform.EvalApplyPost, err: "Resource Not Found: Bd with name acctest_7lxka_invalid not found in List(acctest_7lxka)"{} -2022/02/28 11:19:37 [ERROR] : eval: *terraform.EvalSequence, err: "Resource Not Found: Bd with name acctest_7lxka_invalid not found in List(acctest_7lxka)"{} -2022/02/28 11:19:37 [DEBUG] New state was assigned lineage "a78d9f90-3867-c53f-3697-2fdff0c7e3e6" -2022/02/28 11:19:37 [DEBUG] Test: Executing step 1 -2022/02/28 11:19:37 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:37 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:37 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:37 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "ljbsv" is not expected here. -2022/02/28 11:19:37 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "ljbsv" is not expected here. -2022/02/28 11:19:37 [DEBUG] Test: Executing step 2 -2022/02/28 11:19:37 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:37 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:37 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:37 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:37 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:37 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:37 [DEBUG] : Beginning Read -2022/02/28 11:19:37 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:37 [DEBUG] Begin Injection -2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ae380 1362 [] false false map[] 0xc0001c8100 0xc0014dc000} -2022/02/28 11:19:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:37 [DEBUG] Exit from do method -2022/02/28 11:19:37 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully -2022/02/28 11:19:37 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:37 [DEBUG] New state was assigned lineage "66de2800-a8ce-8abe-232d-dabf8629b152" -2022/02/28 11:19:37 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:37 [DEBUG] Begin Injection -2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af6180 5563 [] false false map[] 0xc000831400 0xc0007d0000} -2022/02/28 11:19:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:37 [DEBUG] Exit from do method -2022/02/28 11:19:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:37 [DEBUG] 621c626e1d000081624fb9b2: Beginning Read -2022/02/28 11:19:37 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:37 [DEBUG] Begin Injection -2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:37 [DEBUG] 621c626e1b0000b408fd0c24: Beginning Read -2022/02/28 11:19:37 id: 621c626e1b0000b408fd0c24 -2022/02/28 11:19:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:37 [DEBUG] Begin Injection -2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e2700 1362 [] false false map[] 0xc00015c000 0xc0014dc000} -2022/02/28 11:19:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:37 [DEBUG] Exit from do method -2022/02/28 11:19:37 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:37 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:37 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:37 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:37 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:37 [DEBUG] : Beginning Read -2022/02/28 11:19:37 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:37 [DEBUG] Begin Injection -2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c0100 1277 [] false false map[] 0xc00015c500 0xc0007d0000} -2022/02/28 11:19:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:19:37 [DEBUG] Exit from do method -2022/02/28 11:19:37 [DEBUG] 621c626e1d000081624fb9b2: Read finished successfully -2022/02/28 11:19:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:37 [DEBUG] acctest_7lxka: Beginning Read -2022/02/28 11:19:37 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:37 [DEBUG] Begin Injection -2022/02/28 11:19:37 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4580 160 [] false false map[] 0xc000830300 0xc0005da0b0} -2022/02/28 11:19:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 {"id":"621c626e1b0000b408fd0c24","name":"acctest_7lxka","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:37 [DEBUG] Exit from do method -2022/02/28 11:19:37 [DEBUG] 621c626e1b0000b408fd0c24: Read finished successfully -2022/02/28 11:19:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4a00 5563 [] false false map[] 0xc000831100 0xc0014dc000} -2022/02/28 11:19:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:38 [DEBUG] Exit from do method -2022/02/28 11:19:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:38 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read -2022/02/28 11:19:38 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 [DEBUG] Begin Injection -2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read -2022/02/28 11:19:38 id: 621c626e1b0000a308fd0c23 -2022/02/28 11:19:38 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:38 [DEBUG] Begin Injection -2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c1d40 1277 [] false false map[] 0xc000831300 0xc0007d0000} -2022/02/28 11:19:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:19:38 [DEBUG] Exit from do method -2022/02/28 11:19:38 currentvrfname acctest_7lxka -2022/02/28 11:19:38 found correct vrfname -2022/02/28 11:19:38 [DEBUG] acctest_7lxka: Read finished successfully -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:38 [DEBUG] acctest_7lxka: Beginning Read -2022/02/28 11:19:38 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:38 [DEBUG] Begin Injection -2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091d80 1362 [] false false map[] 0xc000e2f200 0xc0014dc000} -2022/02/28 11:19:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:38 [DEBUG] Exit from do method -2022/02/28 11:19:38 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:38 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:38 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 [DEBUG] Begin Injection -2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e2140 160 [] false false map[] 0xc000831700 0xc0005da0b0} -2022/02/28 11:19:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:38 [DEBUG] Exit from do method -2022/02/28 11:19:38 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully -2022/02/28 11:19:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4200 1277 [] false false map[] 0xc000e2f600 0xc0007d0000} -2022/02/28 11:19:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:19:38 [DEBUG] Exit from do method -2022/02/28 11:19:38 [DEBUG] acctest_7lxka: Read finished successfully -2022/02/28 11:19:38 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:38 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:38 [DEBUG] New state was assigned lineage "6435b94a-8daa-9e22-4dcd-3f30a99534d3" -2022/02/28 11:19:38 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:38 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:38 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:38 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:38 [WARN] Test: Step plan: DIFF: - -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_7lxka" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_7lxka" - schema_id: "" => "621c626e1d000081624fb9b2" - template_name: "" => "acctest_pphhx" - version: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c626e1b0000b408fd0c24 - provider = provider.mso - description = - name = acctest_7lxka - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c626e1d000081624fb9b2 - provider = provider.mso - name = acctest_pphhx - template_name = acctest_pphhx - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_7lxka - provider = provider.mso - display_name = acctest_7lxka - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_7lxka - schema_id = 621c626e1d000081624fb9b2 - template_name = acctest_pphhx - vrf_name = acctest_7lxka - vrf_schema_id = 621c626e1d000081624fb9b2 - vrf_template_name = acctest_pphhx - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_7lxka - provider = provider.mso - display_name = acctest_7lxka - layer3_multicast = false - name = acctest_7lxka - schema_id = 621c626e1d000081624fb9b2 - template = acctest_pphhx - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:19:38 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:19:38 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:19:38 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:19:38 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:19:38 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:19:38 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:38 [DEBUG] Begin Injection -2022/02/28 11:19:38 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4a40 1362 [] false false map[] 0xc000e2e500 0xc0014dc000} -2022/02/28 11:19:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:38 [DEBUG] Exit from do method -2022/02/28 11:19:38 currentvrfname acctest_nscpw -2022/02/28 11:19:38 found correct vrfname -2022/02/28 11:19:38 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:38 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:38 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 [DEBUG] Begin Injection -2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001c8300 0xc0007d0000} -2022/02/28 11:19:38 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:38 [DEBUG] Creation Complete -2022/02/28 11:19:38 [DEBUG] : Beginning Read -2022/02/28 11:19:38 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:38 [DEBUG] Begin Injection -2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4100 1362 [] false false map[] 0xc0001c8700 0xc0014dc000} -2022/02/28 11:19:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:38 [DEBUG] Exit from do method -2022/02/28 11:19:38 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:38 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Read -2022/02/28 11:19:38 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 [DEBUG] Begin Injection -2022/02/28 11:19:38 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae5a40 1362 [] false false map[] 0xc000495500 0xc0007d0000} -2022/02/28 11:19:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:39 [DEBUG] Exit from do method -2022/02/28 11:19:39 [DEBUG] /schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka: Read finished successfully -2022/02/28 11:19:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:39 [DEBUG] New state was assigned lineage "d25e3411-5838-8c5f-87f5-88af1e319f3a" -2022/02/28 11:19:39 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:39 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:39 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:39 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:39 [DEBUG] : Beginning Read -2022/02/28 11:19:39 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:39 [DEBUG] Begin Injection -2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d8040 1362 [] false false map[] 0xc00015c400 0xc0014dc000} -2022/02/28 11:19:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:39 [DEBUG] Exit from do method -2022/02/28 11:19:39 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully -2022/02/28 11:19:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:39 [DEBUG] New state was assigned lineage "17b86aa0-7399-da14-8c59-8fde34011bca" -2022/02/28 11:19:39 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:39 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:39 [DEBUG] Test: Executing step 5 -2022/02/28 11:19:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:39 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:39 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:39 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:39 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:39 [DEBUG] : Beginning Read -2022/02/28 11:19:39 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:39 [DEBUG] Begin Injection -2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091cc0 5563 [] false false map[] 0xc000e2e800 0xc0007d0000} -2022/02/28 11:19:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:39 [DEBUG] Exit from do method -2022/02/28 11:19:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:39 [DEBUG] 621c626e1d000081624fb9b2: Beginning Read -2022/02/28 11:19:39 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:39 [DEBUG] Begin Injection -2022/02/28 11:19:39 [DEBUG] 621c626e1b0000b408fd0c24: Beginning Read -2022/02/28 11:19:39 id: 621c626e1b0000b408fd0c24 -2022/02/28 11:19:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:39 [DEBUG] Begin Injection -2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c0440 5563 [] false false map[] 0xc00015c100 0xc0014dc000} -2022/02/28 11:19:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:39 [DEBUG] Exit from do method -2022/02/28 11:19:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:39 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:39 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read -2022/02/28 11:19:39 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:39 [DEBUG] Begin Injection -2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:39 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read -2022/02/28 11:19:39 id: 621c626e1b0000a308fd0c23 -2022/02/28 11:19:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:39 [DEBUG] Begin Injection -2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c1140 160 [] false false map[] 0xc0001c8300 0xc0007d0000} -2022/02/28 11:19:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 {"id":"621c626e1b0000b408fd0c24","name":"acctest_7lxka","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:39 [DEBUG] Exit from do method -2022/02/28 11:19:39 [DEBUG] 621c626e1b0000b408fd0c24: Read finished successfully -2022/02/28 11:19:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c1680 1362 [] false false map[] 0xc000495000 0xc0005da0b0} -2022/02/28 11:19:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:39 [DEBUG] Exit from do method -2022/02/28 11:19:39 [DEBUG] 621c626e1d000081624fb9b2: Read finished successfully -2022/02/28 11:19:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:39 [DEBUG] acctest_7lxka: Beginning Read -2022/02/28 11:19:39 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:39 [DEBUG] Begin Injection -2022/02/28 11:19:39 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d85c0 1362 [] false false map[] 0xc000830600 0xc0014dc000} -2022/02/28 11:19:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:40 [DEBUG] Exit from do method -2022/02/28 11:19:40 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:40 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:40 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 [DEBUG] Begin Injection -2022/02/28 11:19:40 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d89c0 160 [] false false map[] 0xc0001c8800 0xc0007d0000} -2022/02/28 11:19:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:40 [DEBUG] Exit from do method -2022/02/28 11:19:40 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully -2022/02/28 11:19:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d9280 1362 [] false false map[] 0xc000830a00 0xc0005da0b0} -2022/02/28 11:19:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:40 [DEBUG] Exit from do method -2022/02/28 11:19:40 currentvrfname acctest_7lxka -2022/02/28 11:19:40 found correct vrfname -2022/02/28 11:19:40 [DEBUG] acctest_7lxka: Read finished successfully -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:40 [DEBUG] acctest_7lxka: Beginning Read -2022/02/28 11:19:40 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:40 [DEBUG] Begin Injection -2022/02/28 11:19:40 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af6200 1362 [] false false map[] 0xc000495700 0xc0014dc000} -2022/02/28 11:19:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:40 [DEBUG] Exit from do method -2022/02/28 11:19:40 currentvrfname acctest_nscpw -2022/02/28 11:19:40 found correct vrfname -2022/02/28 11:19:40 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:40 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:40 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 [DEBUG] Begin Injection -2022/02/28 11:19:40 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af6840 1362 [] false false map[] 0xc0001c9500 0xc0005da0b0} -2022/02/28 11:19:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:40 [DEBUG] Exit from do method -2022/02/28 11:19:40 [DEBUG] acctest_7lxka: Read finished successfully -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:40 [DEBUG] /schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka: Beginning Read -2022/02/28 11:19:40 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:40 [DEBUG] Begin Injection -2022/02/28 11:19:40 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af7c80 1362 [] false false map[] 0xc00015c300 0xc0014dc000} -2022/02/28 11:19:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:40 [DEBUG] Exit from do method -2022/02/28 11:19:40 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:40 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Read -2022/02/28 11:19:40 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 [DEBUG] Begin Injection -2022/02/28 11:19:40 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00061ae80 1362 [] false false map[] 0xc001182300 0xc0005da0b0} -2022/02/28 11:19:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:40 [DEBUG] Exit from do method -2022/02/28 11:19:40 [DEBUG] /schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka: Read finished successfully -2022/02/28 11:19:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:40 [DEBUG] New state was assigned lineage "31f7cfc5-b944-3b3c-b451-d139f0724655" -2022/02/28 11:19:40 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:40 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:40 [WARN] Test: Executing destroy step -2022/02/28 11:19:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:40 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:40 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:40 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:19:40 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:40 [DEBUG] : Beginning Read -2022/02/28 11:19:40 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:40 [DEBUG] Begin Injection -2022/02/28 11:19:40 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008343c0 1362 [] false false map[] 0xc00015c700 0xc00144a370} -2022/02/28 11:19:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:40 [DEBUG] Exit from do method -2022/02/28 11:19:40 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully -2022/02/28 11:19:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:40 [DEBUG] New state was assigned lineage "580b20ec-4a4e-505c-b87a-56c0a4d0e461" -2022/02/28 11:19:40 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:40 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:40 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:40 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.test - description: "" => "" - id: "" => "" - name: "" => "acctest_3rqkz" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -UPDATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_nscpw" => "acctest_nscpw" - dhcp_option_name: "" => "acctest_3rqkz" - dhcp_option_version: "0" => "1" - id: "/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw" => "/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw" - name: "acctest_nscpw" => "acctest_nscpw" - schema_id: "621c626e1d000085624fb9b0" => "621c626e1d000085624fb9b0" - template_name: "acctest_mxqpk" => "acctest_mxqpk" - version: "0" => "1" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c626e1b0000a308fd0c23 - provider = provider.mso - description = - name = acctest_nscpw - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c626e1d000085624fb9b0 - provider = provider.mso - name = acctest_mxqpk - template_name = acctest_mxqpk - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_nscpw - provider = provider.mso - dhcp_policy.name = acctest_nscpw - dhcp_policy.version = 0 - display_name = acctest_nscpw - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_nscpw - schema_id = 621c626e1d000085624fb9b0 - template_name = acctest_mxqpk - vrf_name = acctest_nscpw - vrf_schema_id = 621c626e1d000085624fb9b0 - vrf_template_name = acctest_mxqpk - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw - provider = provider.mso - bd_name = acctest_nscpw - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_nscpw - schema_id = 621c626e1d000085624fb9b0 - template_name = acctest_mxqpk - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_nscpw - provider = provider.mso - display_name = acctest_nscpw - layer3_multicast = false - name = acctest_nscpw - schema_id = 621c626e1d000085624fb9b0 - template = acctest_mxqpk - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:19:40 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:19:40 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:19:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_option_policy.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:19:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:40 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:19:40 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change -2022/02/28 11:19:40 [DEBUG] : Beginning Create -2022/02/28 11:19:40 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 11:19:40 [DEBUG] Begin Injection -2022/02/28 11:19:40 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 11:19:40 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_3rqkz","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x1107ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 11:19:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:19:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000834340 5563 [] false false map[] 0xc000e2e400 0xc0005da0b0} -2022/02/28 11:19:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:41 [DEBUG] Exit from do method -2022/02/28 11:19:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:41 [DEBUG] 621c626e1d000081624fb9b2: Beginning Read -2022/02/28 11:19:41 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:41 [DEBUG] Begin Injection -2022/02/28 11:19:41 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:41 [DEBUG] 621c626e1b0000b408fd0c24: Beginning Read -2022/02/28 11:19:41 id: 621c626e1b0000b408fd0c24 -2022/02/28 11:19:41 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:41 [DEBUG] Begin Injection -2022/02/28 11:19:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:41 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:19:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706200 161 [] false false map[] 0xc000861b00 0xc00144a370} -2022/02/28 11:19:41 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c62751b0000b208fd0c25","name":"acctest_3rqkz","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:41 [DEBUG] Exit from do method -2022/02/28 11:19:41 [DEBUG] 621c62751b0000b208fd0c25: Creation finished successfully -2022/02/28 11:19:41 [DEBUG] 621c62751b0000b208fd0c25: Beginning Read -2022/02/28 11:19:41 id: 621c62751b0000b208fd0c25 -2022/02/28 11:19:41 HTTP request GET mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:41 [DEBUG] Begin Injection -2022/02/28 11:19:41 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007062c0 160 [] false false map[] 0xc000cc6100 0xc0007d0000} -2022/02/28 11:19:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 {"id":"621c626e1b0000b408fd0c24","name":"acctest_7lxka","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:41 [DEBUG] Exit from do method -2022/02/28 11:19:41 [DEBUG] 621c626e1b0000b408fd0c24: Read finished successfully -2022/02/28 11:19:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706740 1362 [] false false map[] 0xc000e2ef00 0xc0005da0b0} -2022/02/28 11:19:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:41 [DEBUG] Exit from do method -2022/02/28 11:19:41 [DEBUG] 621c626e1d000081624fb9b2: Read finished successfully -2022/02/28 11:19:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:41 [DEBUG] acctest_7lxka: Beginning Read -2022/02/28 11:19:41 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:41 [DEBUG] Begin Injection -2022/02/28 11:19:41 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007079c0 161 [] false false map[] 0xc0001c8300 0xc00144a370} -2022/02/28 11:19:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 {"id":"621c62751b0000b208fd0c25","name":"acctest_3rqkz","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:41 [DEBUG] Exit from do method -2022/02/28 11:19:41 [DEBUG] 621c62751b0000b208fd0c25: Read finished successfully -2022/02/28 11:19:41 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change -2022/02/28 11:19:41 [DEBUG] Template BD: Beginning Update -2022/02/28 11:19:41 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:41 [DEBUG] Begin Injection -2022/02/28 11:19:41 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4180 1362 [] false false map[] 0xc0014c6a00 0xc0005da0b0} -2022/02/28 11:19:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:41 [DEBUG] Exit from do method -2022/02/28 11:19:41 currentvrfname acctest_7lxka -2022/02/28 11:19:41 found correct vrfname -2022/02/28 11:19:41 [DEBUG] acctest_7lxka: Read finished successfully -2022/02/28 11:19:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:41 [DEBUG] acctest_7lxka: Beginning Read -2022/02/28 11:19:41 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:41 [DEBUG] Begin Injection -2022/02/28 11:19:41 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:41 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001c8c00 0xc00144a370} -2022/02/28 11:19:41 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:41 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Read -2022/02/28 11:19:41 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:41 [DEBUG] Begin Injection -2022/02/28 11:19:41 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000caa140 1362 [] false false map[] 0xc000e2e400 0xc0005da0b0} -2022/02/28 11:19:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:42 [DEBUG] Exit from do method -2022/02/28 11:19:42 [DEBUG] acctest_7lxka: Read finished successfully -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:42 [DEBUG] /schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka: Beginning Read -2022/02/28 11:19:42 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:42 [DEBUG] Begin Injection -2022/02/28 11:19:42 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005afc80 1472 [] false false map[] 0xc000e2e500 0xc00144a370} -2022/02/28 11:19:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:19:42 [DEBUG] Exit from do method -2022/02/28 11:19:42 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully -2022/02/28 11:19:42 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:42 [DEBUG] New state was assigned lineage "d614f920-8833-956d-f8df-0a49f2ea29ac" -2022/02/28 11:19:42 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:42 [DEBUG] Begin Injection -2022/02/28 11:19:42 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4800 1362 [] false false map[] 0xc0001c8600 0xc0005da0b0} -2022/02/28 11:19:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"id":"621c626e1d000081624fb9b2","displayName":"acctest_pphhx","description":"","templates":[{"name":"acctest_pphhx","displayName":"acctest_pphhx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7lxka","displayName":"acctest_7lxka","bdRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/vrfs/acctest_7lxka","dhcpLabel":{"name":"acctest_7lxka","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7lxka","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:19:42 [DEBUG] Exit from do method -2022/02/28 11:19:42 [DEBUG] /schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka: Read finished successfully -2022/02/28 11:19:42 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:42 [DEBUG] New state was assigned lineage "65ef0d82-16f6-ebfd-7f9b-0c7a8ae30f03" -2022/02/28 11:19:42 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:19:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:19:42 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:19:42 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c626e1b0000b408fd0c24" => "" - name: "acctest_7lxka" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c626e1d000081624fb9b2" => "" - name: "acctest_pphhx" => "" - template_name: "acctest_pphhx" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_7lxka" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_7lxka" => "" - id: "acctest_7lxka" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_7lxka" => "" - schema_id: "621c626e1d000081624fb9b2" => "" - template_name: "acctest_pphhx" => "" - vrf_name: "acctest_7lxka" => "" - vrf_schema_id: "621c626e1d000081624fb9b2" => "" - vrf_template_name: "acctest_pphhx" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_7lxka" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka" => "" - name: "acctest_7lxka" => "" - schema_id: "621c626e1d000081624fb9b2" => "" - template_name: "acctest_pphhx" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_7lxka" => "" - id: "acctest_7lxka" => "" - layer3_multicast: "false" => "" - name: "acctest_7lxka" => "" - schema_id: "621c626e1d000081624fb9b2" => "" - template: "acctest_pphhx" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c626e1b0000b408fd0c24 - provider = provider.mso - description = - name = acctest_7lxka - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c626e1d000081624fb9b2 - provider = provider.mso - name = acctest_pphhx - template_name = acctest_pphhx - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_7lxka - provider = provider.mso - dhcp_policy.name = acctest_7lxka - dhcp_policy.version = 0 - display_name = acctest_7lxka - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_7lxka - schema_id = 621c626e1d000081624fb9b2 - template_name = acctest_pphhx - vrf_name = acctest_7lxka - vrf_schema_id = 621c626e1d000081624fb9b2 - vrf_template_name = acctest_pphhx - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c626e1d000081624fb9b2/templates/acctest_pphhx/bds/acctest_7lxka/dhcpLabels/acctest_7lxka - provider = provider.mso - bd_name = acctest_7lxka - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_7lxka - schema_id = 621c626e1d000081624fb9b2 - template_name = acctest_pphhx - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_7lxka - provider = provider.mso - display_name = acctest_7lxka - layer3_multicast = false - name = acctest_7lxka - schema_id = 621c626e1d000081624fb9b2 - template = acctest_pphhx - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:19:42 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:19:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:19:42 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:19:42 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:19:42 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:19:42 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:19:42 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:19:42 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:19:42 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:19:42 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:19:42 [DEBUG] Template BD: Beginning Update -2022/02/28 11:19:42 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:42 [DEBUG] Begin Injection -2022/02/28 11:19:42 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ae980 1472 [] false false map[] 0xc0001c8900 0xc00144a370} -2022/02/28 11:19:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:19:42 [DEBUG] Exit from do method -2022/02/28 11:19:42 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:42 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:42 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:42 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:42 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:42 [DEBUG] : Beginning Read -2022/02/28 11:19:42 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:42 [DEBUG] Begin Injection -2022/02/28 11:19:42 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:42 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000860000 0xc0005da0b0} -2022/02/28 11:19:42 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:42 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:19:42 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:19:42 [DEBUG] 621c626e1b0000b408fd0c24: Beginning Read -2022/02/28 11:19:42 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:42 [DEBUG] Begin Injection -2022/02/28 11:19:42 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:42 [DEBUG] Template BD: Beginning Update -2022/02/28 11:19:42 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:42 [DEBUG] Begin Injection -2022/02/28 11:19:42 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706580 5563 [] false false map[] 0xc0012d8f00 0xc00144a370} -2022/02/28 11:19:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:43 [DEBUG] Exit from do method -2022/02/28 11:19:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:19:43 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read -2022/02/28 11:19:43 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:43 [DEBUG] Begin Injection -2022/02/28 11:19:43 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:43 [DEBUG] 621c62751b0000b208fd0c25: Beginning Read -2022/02/28 11:19:43 id: 621c62751b0000b208fd0c25 -2022/02/28 11:19:43 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read -2022/02/28 11:19:43 id: 621c626e1b0000a308fd0c23 -2022/02/28 11:19:43 HTTP request GET mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:43 [DEBUG] Begin Injection -2022/02/28 11:19:43 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:43 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:43 [DEBUG] Begin Injection -2022/02/28 11:19:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:43 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001a48300 0xc0007d0000} -2022/02/28 11:19:43 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:43 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:19:43 [DEBUG] acctest_7lxka: Beginning Destroy -2022/02/28 11:19:43 HTTP request PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:43 [DEBUG] Begin Injection -2022/02/28 11:19:43 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:43 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0012d9500 0xc0005da0b0} -2022/02/28 11:19:43 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000b408fd0c24 -2022/02/28 11:19:43 [DEBUG] : Read finished successfully -2022/02/28 11:19:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4e40 1472 [] false false map[] 0xc000860500 0xc00144a370} -2022/02/28 11:19:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:19:43 [DEBUG] Exit from do method -2022/02/28 11:19:43 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully -2022/02/28 11:19:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:43 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:43 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:43 [DEBUG] Begin Injection -2022/02/28 11:19:43 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af6680 161 [] false false map[] 0xc0012d9d00 0xc0007d0000} -2022/02/28 11:19:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 {"id":"621c62751b0000b208fd0c25","name":"acctest_3rqkz","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:43 [DEBUG] Exit from do method -2022/02/28 11:19:43 [DEBUG] 621c62751b0000b208fd0c25: Read finished successfully -2022/02/28 11:19:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae5a80 160 [] false false map[] 0xc0001c8200 0xc0005da0b0} -2022/02/28 11:19:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:43 [DEBUG] Exit from do method -2022/02/28 11:19:43 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully -2022/02/28 11:19:43 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000860e00 0xc00144a370} -2022/02/28 11:19:43 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2?validate=false -2022/02/28 11:19:43 [DEBUG] acctest_7lxka: Destroy finished successfully -2022/02/28 11:19:43 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:19:43 [DEBUG] 621c626e1d000081624fb9b2: Beginning Destroy -2022/02/28 11:19:43 HTTP request DELETE mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:43 [DEBUG] Begin Injection -2022/02/28 11:19:43 HTTP request after injection DELETE mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af7280 1472 [] false false map[] 0xc001a48900 0xc0007d0000} -2022/02/28 11:19:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:19:43 [DEBUG] Exit from do method -2022/02/28 11:19:43 currentvrfname acctest_nscpw -2022/02/28 11:19:43 found correct vrfname -2022/02/28 11:19:43 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:43 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:43 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:43 [DEBUG] Begin Injection -2022/02/28 11:19:43 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:44 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000494800 0xc00144a370} -2022/02/28 11:19:44 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:44 [DEBUG] 621c626e1d000081624fb9b2: Destroy finished successfully -2022/02/28 11:19:44 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:44 [DEBUG] New state was assigned lineage "a4985528-4219-daa4-a721-3b53fa4e7f68" -2022/02/28 11:19:44 HTTP request GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:44 [DEBUG] Begin Injection -2022/02/28 11:19:44 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00061a6c0 1472 [] false false map[] 0xc000860400 0xc0007d0000} -2022/02/28 11:19:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:19:44 [DEBUG] Exit from do method -2022/02/28 11:19:44 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:44 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Read -2022/02/28 11:19:44 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:44 [DEBUG] Begin Injection -2022/02/28 11:19:44 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 -2022/02/28 11:19:44 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:44 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706c80 39 [] false false map[] 0xc0001c8300 0xc0005c8bb0} -2022/02/28 11:19:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000081624fb9b2 {"code":404,"message":"Item not found"} -2022/02/28 11:19:44 [DEBUG] Exit from do method -2022/02/28 11:19:44 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:19:44 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:19:44 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:44 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:44 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:44 [DEBUG] : Beginning Read -2022/02/28 11:19:44 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:44 [DEBUG] Begin Injection -2022/02/28 11:19:44 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004df00 1472 [] false false map[] 0xc000861000 0xc0007d0000} -2022/02/28 11:19:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:19:44 [DEBUG] Exit from do method -2022/02/28 11:19:44 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully -2022/02/28 11:19:44 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:44 [DEBUG] New state was assigned lineage "be04b6a3-bb19-5914-23de-d37617f67229" -2022/02/28 11:19:44 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:44 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:44 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:44 [DEBUG] Test: Executing step 6 -2022/02/28 11:19:44 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw\")" (*terraform.graphNodeImportState) needs provider.mso -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw\")" references: [] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:44 [DEBUG] Starting graph walk: walkImport -2022/02/28 11:19:44 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Import -2022/02/28 11:19:44 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:44 [DEBUG] Begin Injection -2022/02/28 11:19:44 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c0080 5563 [] false false map[] 0xc000494200 0xc0014dc160} -2022/02/28 11:19:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:44 [DEBUG] Exit from do method -2022/02/28 11:19:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:44 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:44 [DEBUG] New state was assigned lineage "9d1e9816-ecac-e6b0-622a-4b48e14a2fbc" -2022/02/28 11:19:44 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:19:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:19:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:44 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:19:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d8340 1472 [] false false map[] 0xc000495700 0xc0007d0000} -2022/02/28 11:19:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:19:44 [DEBUG] Exit from do method -2022/02/28 11:19:44 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Import finished successfully -2022/02/28 11:19:44 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Read -2022/02/28 11:19:44 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:44 [DEBUG] Begin Injection -2022/02/28 11:19:44 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004db40 1472 [] false false map[] 0xc000494500 0xc0014dc160} -2022/02/28 11:19:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:19:45 [DEBUG] Exit from do method -2022/02/28 11:19:45 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully -2022/02/28 11:19:45 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:45 [DEBUG] New state was assigned lineage "ad8328c1-7dd1-6d96-52af-f7d1b67b735a" -2022/02/28 11:19:45 [DEBUG] Test: Executing step 7 -2022/02/28 11:19:45 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:45 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:45 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:45 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config -2022/02/28 11:19:45 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config -2022/02/28 11:19:45 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:45 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:45 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:45 [DEBUG] : Beginning Read -2022/02/28 11:19:45 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:45 [DEBUG] Begin Injection -2022/02/28 11:19:45 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c00c0 5563 [] false false map[] 0xc001300200 0xc0014dc160} -2022/02/28 11:19:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:45 [DEBUG] Exit from do method -2022/02/28 11:19:45 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:45 [DEBUG] 621c62751b0000b208fd0c25: Beginning Read -2022/02/28 11:19:45 id: 621c62751b0000b208fd0c25 -2022/02/28 11:19:45 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read -2022/02/28 11:19:45 id: 621c626e1b0000a308fd0c23 -2022/02/28 11:19:45 HTTP request GET mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:45 [DEBUG] Begin Injection -2022/02/28 11:19:45 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:45 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:45 [DEBUG] Begin Injection -2022/02/28 11:19:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:45 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read -2022/02/28 11:19:45 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:45 [DEBUG] Begin Injection -2022/02/28 11:19:45 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001b4380 161 [] false false map[] 0xc0015ce100 0xc0014dc160} -2022/02/28 11:19:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 {"id":"621c62751b0000b208fd0c25","name":"acctest_3rqkz","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:45 [DEBUG] Exit from do method -2022/02/28 11:19:45 [DEBUG] 621c62751b0000b208fd0c25: Read finished successfully -2022/02/28 11:19:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000707300 160 [] false false map[] 0xc000914200 0xc0005da0b0} -2022/02/28 11:19:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:45 [DEBUG] Exit from do method -2022/02/28 11:19:45 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully -2022/02/28 11:19:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007078c0 1472 [] false false map[] 0xc000914400 0xc0014dc160} -2022/02/28 11:19:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:19:46 [DEBUG] Exit from do method -2022/02/28 11:19:46 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully -2022/02/28 11:19:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:46 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:46 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:46 [DEBUG] Begin Injection -2022/02/28 11:19:46 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706040 1472 [] false false map[] 0xc0001c8800 0xc0014dc160} -2022/02/28 11:19:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:19:46 [DEBUG] Exit from do method -2022/02/28 11:19:46 currentvrfname acctest_nscpw -2022/02/28 11:19:46 found correct vrfname -2022/02/28 11:19:46 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:46 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:46 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:46 [DEBUG] Begin Injection -2022/02/28 11:19:46 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706180 1472 [] false false map[] 0xc000494500 0xc000395550} -2022/02/28 11:19:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:19:46 [DEBUG] Exit from do method -2022/02/28 11:19:46 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:46 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Beginning Read -2022/02/28 11:19:46 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:46 [DEBUG] Begin Injection -2022/02/28 11:19:46 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000706d80 1472 [] false false map[] 0xc001300500 0xc000395550} -2022/02/28 11:19:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","dhcpLabel":{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_nscpw","dhcpOptionLabel":{"name":"acctest_3rqkz","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:19:47 [DEBUG] Exit from do method -2022/02/28 11:19:47 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw: Read finished successfully -2022/02/28 11:19:47 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:47 [DEBUG] New state was assigned lineage "1d6ac587-7798-af68-9515-c6db677e5793" -2022/02/28 11:19:47 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:47 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:47 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:47 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.test - description: "" => "" - id: "621c62751b0000b208fd0c25" => "" - name: "acctest_3rqkz" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_nscpw" => "" - dhcp_option_name: "acctest_3rqkz" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw" => "" - name: "acctest_nscpw" => "" - schema_id: "621c626e1d000085624fb9b0" => "" - template_name: "acctest_mxqpk" => "" - version: "1" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.test: - ID = 621c62751b0000b208fd0c25 - provider = provider.mso - description = - name = acctest_3rqkz - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c626e1b0000a308fd0c23 - provider = provider.mso - description = - name = acctest_nscpw - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c626e1d000085624fb9b0 - provider = provider.mso - name = acctest_mxqpk - template_name = acctest_mxqpk - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_nscpw - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_3rqkz - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_nscpw - dhcp_policy.version = 1 - display_name = acctest_nscpw - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_nscpw - schema_id = 621c626e1d000085624fb9b0 - template_name = acctest_mxqpk - vrf_name = acctest_nscpw - vrf_schema_id = 621c626e1d000085624fb9b0 - vrf_template_name = acctest_mxqpk - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw/dhcpLabels/acctest_nscpw - provider = provider.mso - bd_name = acctest_nscpw - dhcp_option_name = acctest_3rqkz - dhcp_option_version = 1 - name = acctest_nscpw - schema_id = 621c626e1d000085624fb9b0 - template_name = acctest_mxqpk - version = 1 - - Dependencies: - mso_dhcp_option_policy.test - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_nscpw - provider = provider.mso - display_name = acctest_nscpw - layer3_multicast = false - name = acctest_nscpw - schema_id = 621c626e1d000085624fb9b0 - template = acctest_mxqpk - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:19:47 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:19:47 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:19:47 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:19:47 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:19:47 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:19:47 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:19:47 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:19:47 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:19:47 [DEBUG] Template BD: Beginning Update -2022/02/28 11:19:47 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:47 [DEBUG] Begin Injection -2022/02/28 11:19:47 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:47 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0009b6200 0xc000395550} -2022/02/28 11:19:47 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:47 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change -2022/02/28 11:19:47 [DEBUG] 621c62751b0000b208fd0c25: Beginning Read -2022/02/28 11:19:47 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:47 [DEBUG] Begin Injection -2022/02/28 11:19:47 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:47 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0013a7f00 0xc000395550} -2022/02/28 11:19:47 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62751b0000b208fd0c25 -2022/02/28 11:19:47 [DEBUG] : Read finished successfully -2022/02/28 11:19:47 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:47 [DEBUG] New state was assigned lineage "5ce084be-56b6-457e-c54d-844170c3b986" -2022/02/28 11:19:47 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:47 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:47 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:47 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:47 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:47 [DEBUG] : Beginning Read -2022/02/28 11:19:47 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:47 [DEBUG] Begin Injection -2022/02/28 11:19:47 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00061a580 5563 [] false false map[] 0xc000495300 0xc000395550} -2022/02/28 11:19:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:48 [DEBUG] Exit from do method -2022/02/28 11:19:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:48 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read -2022/02/28 11:19:48 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:48 [DEBUG] Begin Injection -2022/02/28 11:19:48 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read -2022/02/28 11:19:48 id: 621c626e1b0000a308fd0c23 -2022/02/28 11:19:48 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:48 [DEBUG] Begin Injection -2022/02/28 11:19:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:48 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c00c0 160 [] false false map[] 0xc000495a00 0xc000395550} -2022/02/28 11:19:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:48 [DEBUG] Exit from do method -2022/02/28 11:19:48 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully -2022/02/28 11:19:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ae180 1277 [] false false map[] 0xc0001c8400 0xc0005da0b0} -2022/02/28 11:19:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:19:48 [DEBUG] Exit from do method -2022/02/28 11:19:48 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully -2022/02/28 11:19:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:48 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:48 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:48 [DEBUG] Begin Injection -2022/02/28 11:19:48 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005af140 1277 [] false false map[] 0xc0001c8900 0xc0005da0b0} -2022/02/28 11:19:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:19:48 [DEBUG] Exit from do method -2022/02/28 11:19:48 currentvrfname acctest_nscpw -2022/02/28 11:19:48 found correct vrfname -2022/02/28 11:19:48 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:48 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:48 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:48 [DEBUG] Begin Injection -2022/02/28 11:19:48 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4840 1277 [] false false map[] 0xc0003dc700 0xc0005da0b0} -2022/02/28 11:19:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:19:49 [DEBUG] Exit from do method -2022/02/28 11:19:49 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:49 [DEBUG] New state was assigned lineage "af053317-44ac-1eeb-c15d-efa9cba08296" -2022/02/28 11:19:49 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:49 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:49 [DEBUG] Test: Executing step 8 -2022/02/28 11:19:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:49 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:49 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:49 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:49 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:49 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:49 [DEBUG] : Beginning Read -2022/02/28 11:19:49 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:49 [DEBUG] Begin Injection -2022/02/28 11:19:49 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4800 5563 [] false false map[] 0xc000494300 0xc0005da0b0} -2022/02/28 11:19:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:49 [DEBUG] Exit from do method -2022/02/28 11:19:49 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:49 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read -2022/02/28 11:19:49 id: 621c626e1b0000a308fd0c23 -2022/02/28 11:19:49 HTTP request GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:49 [DEBUG] Begin Injection -2022/02/28 11:19:49 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:49 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read -2022/02/28 11:19:49 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:49 [DEBUG] Begin Injection -2022/02/28 11:19:49 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00061a580 160 [] false false map[] 0xc000494600 0xc0005da0b0} -2022/02/28 11:19:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 {"id":"621c626e1b0000a308fd0c23","name":"acctest_nscpw","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:49 [DEBUG] Exit from do method -2022/02/28 11:19:49 [DEBUG] 621c626e1b0000a308fd0c23: Read finished successfully -2022/02/28 11:19:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005af880 1277 [] false false map[] 0xc0001c8600 0xc000395550} -2022/02/28 11:19:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:19:49 [DEBUG] Exit from do method -2022/02/28 11:19:49 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully -2022/02/28 11:19:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:49 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:49 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:49 [DEBUG] Begin Injection -2022/02/28 11:19:49 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af6140 1277 [] false false map[] 0xc000494900 0xc000395550} -2022/02/28 11:19:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:19:50 [DEBUG] Exit from do method -2022/02/28 11:19:50 currentvrfname acctest_nscpw -2022/02/28 11:19:50 found correct vrfname -2022/02/28 11:19:50 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:50 [DEBUG] acctest_nscpw: Beginning Read -2022/02/28 11:19:50 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:50 [DEBUG] Begin Injection -2022/02/28 11:19:50 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af67c0 1277 [] false false map[] 0xc0001c8500 0xc000395550} -2022/02/28 11:19:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_nscpw","displayName":"acctest_nscpw","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_nscpw","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_nscpw","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:19:50 [DEBUG] Exit from do method -2022/02/28 11:19:50 [DEBUG] acctest_nscpw: Read finished successfully -2022/02/28 11:19:50 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:50 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:50 [DEBUG] New state was assigned lineage "d7b00c3a-b956-1860-f821-6d4cf2a48f78" -2022/02/28 11:19:50 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:50 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:50 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:50 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:50 [WARN] Test: Step plan: DIFF: - -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c626e1b0000a308fd0c23" => "" - name: "acctest_nscpw" => "acctest_sl4ce" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "acctest_nscpw" => "acctest_sl4ce" (forces new resource) - id: "acctest_nscpw" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_nscpw" => "acctest_sl4ce" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c626e1d000085624fb9b0" => "621c626e1d000085624fb9b0" - template_name: "acctest_mxqpk" => "acctest_mxqpk" - vrf_name: "acctest_nscpw" => "acctest_sl4ce" - vrf_schema_id: "621c626e1d000085624fb9b0" => "" - vrf_template_name: "acctest_mxqpk" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_sl4ce" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_sl4ce" - schema_id: "" => "621c626e1d000085624fb9b0" - template_name: "" => "acctest_mxqpk" - version: "" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_nscpw" => "acctest_sl4ce" - id: "acctest_nscpw" => "" - layer3_multicast: "false" => "" - name: "acctest_nscpw" => "acctest_sl4ce" (forces new resource) - schema_id: "621c626e1d000085624fb9b0" => "621c626e1d000085624fb9b0" - template: "acctest_mxqpk" => "acctest_mxqpk" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c626e1b0000a308fd0c23 - provider = provider.mso - description = - name = acctest_nscpw - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c626e1d000085624fb9b0 - provider = provider.mso - name = acctest_mxqpk - template_name = acctest_mxqpk - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_nscpw - provider = provider.mso - display_name = acctest_nscpw - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_nscpw - schema_id = 621c626e1d000085624fb9b0 - template_name = acctest_mxqpk - vrf_name = acctest_nscpw - vrf_schema_id = 621c626e1d000085624fb9b0 - vrf_template_name = acctest_mxqpk - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_nscpw - provider = provider.mso - display_name = acctest_nscpw - layer3_multicast = false - name = acctest_nscpw - schema_id = 621c626e1d000085624fb9b0 - template = acctest_mxqpk - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:19:50 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:19:50 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:19:50 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:19:50 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:19:50 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:19:50 [DEBUG] 621c626e1b0000a308fd0c23: Beginning Read -2022/02/28 11:19:50 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:50 [DEBUG] Begin Injection -2022/02/28 11:19:50 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:50 [DEBUG] Template BD: Beginning Update -2022/02/28 11:19:50 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:50 [DEBUG] Begin Injection -2022/02/28 11:19:50 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:50 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000828800 0xc000395550} -2022/02/28 11:19:50 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c626e1b0000a308fd0c23 -2022/02/28 11:19:50 [DEBUG] : Read finished successfully -2022/02/28 11:19:50 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:19:50 [DEBUG] : Beginning Create -2022/02/28 11:19:50 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:19:50 [DEBUG] Begin Injection -2022/02/28 11:19:50 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:19:50 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NTczLCJpYXQiOjE2NDYwMjczNzMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiOEpvZWk4RE5DYktwRHFMRmxpR29xOVBkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.I4IFfgf40yiqCRQJsSYdd8M8CEtg_C_NzIGLZ2NEKcP0DxaF2385sBV3OEGOanD80-tW6xAT5mwSUYnzwrmVb_ngwRgleC6mQ_71iHoDPawbktZkImFI9h18KGlUx0lxA3e17UqzDTO6nsB2OHsfHQmmDUcAFa9VSKx4PvvqHeozyhz-d1-OEGcpXzhX2ErSff9C49QQI3G4EDvKh_IZQG9zK511qPEOn-Mi46EBYiNwxtYnAd5Pumqynv7moQBqkb9LEwqbu_gNJXbjTBQxEp9HeCKD_1z-ups88urJy8eeXQo8WrTIGWC42ht87hf4nkNYPnJgPCcBDxI9GW0HmQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_sl4ce","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x1107ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 11:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:19:50 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000724300 0xc0005da0b0} -2022/02/28 11:19:50 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:50 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:19:50 [DEBUG] acctest_nscpw: Beginning Destroy -2022/02/28 11:19:50 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:50 [DEBUG] Begin Injection -2022/02/28 11:19:50 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:51 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000724800 0xc0005da0b0} -2022/02/28 11:19:51 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:51 [DEBUG] acctest_nscpw: Destroy finished successfully -2022/02/28 11:19:51 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:19:51 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:19:51 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:51 [DEBUG] Begin Injection -2022/02/28 11:19:51 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:51 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:19:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d9f00 160 [] false false map[] 0xc000828500 0xc000395550} -2022/02/28 11:19:51 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c627f1b0000aa08fd0c26","name":"acctest_sl4ce","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:51 [DEBUG] Exit from do method -2022/02/28 11:19:51 [DEBUG] 621c627f1b0000aa08fd0c26: Creation finished successfully -2022/02/28 11:19:51 [DEBUG] 621c627f1b0000aa08fd0c26: Beginning Read -2022/02/28 11:19:51 id: 621c627f1b0000aa08fd0c26 -2022/02/28 11:19:51 HTTP request GET mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:51 [DEBUG] Begin Injection -2022/02/28 11:19:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:51 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001c9300 0xc0005da0b0} -2022/02/28 11:19:51 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:51 [DEBUG] acctest_sl4ce: Creation finished successfully -2022/02/28 11:19:51 [DEBUG] acctest_sl4ce: Beginning Read -2022/02/28 11:19:51 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:51 [DEBUG] Begin Injection -2022/02/28 11:19:51 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c0dc0 160 [] false false map[] 0xc0001c9500 0xc000395550} -2022/02/28 11:19:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 {"id":"621c627f1b0000aa08fd0c26","name":"acctest_sl4ce","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:51 [DEBUG] Exit from do method -2022/02/28 11:19:51 [DEBUG] 621c627f1b0000aa08fd0c26: Read finished successfully -2022/02/28 11:19:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae4400 768 [] false false map[] 0xc000724a00 0xc0005da0b0} -2022/02/28 11:19:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 11:19:51 [DEBUG] Exit from do method -2022/02/28 11:19:51 currentvrfname acctest_sl4ce -2022/02/28 11:19:51 found correct vrfname -2022/02/28 11:19:51 [DEBUG] acctest_sl4ce: Read finished successfully -2022/02/28 11:19:51 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:19:51 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:19:51 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:19:51 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:51 [DEBUG] Begin Injection -2022/02/28 11:19:51 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:52 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000725000 0xc0005da0b0} -2022/02/28 11:19:52 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:52 [DEBUG] : Beginning Read -2022/02/28 11:19:52 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:52 [DEBUG] Begin Injection -2022/02/28 11:19:52 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:52 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000caa0c0 1278 [] false false map[] 0xc0007ac000 0xc0005da0b0} -2022/02/28 11:19:52 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 11:19:52 [DEBUG] Exit from do method -2022/02/28 11:19:52 [DEBUG] acctest_sl4ce: Read finished successfully -2022/02/28 11:19:52 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:19:52 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:19:52 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:52 [DEBUG] Begin Injection -2022/02/28 11:19:52 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:52 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001c8600 0xc0005da0b0} -2022/02/28 11:19:52 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:52 [DEBUG] Creation Complete -2022/02/28 11:19:52 [DEBUG] : Beginning Read -2022/02/28 11:19:52 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:52 [DEBUG] Begin Injection -2022/02/28 11:19:52 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d8700 1363 [] false false map[] 0xc0007ac100 0xc0005da0b0} -2022/02/28 11:19:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:19:53 [DEBUG] Exit from do method -2022/02/28 11:19:53 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce: Read finished successfully -2022/02/28 11:19:53 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:53 [DEBUG] New state was assigned lineage "27fc70ff-f174-6b6a-f908-2cf05d5fa4ea" -2022/02/28 11:19:53 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:53 [DEBUG] Begin Injection -2022/02/28 11:19:53 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d8f40 1363 [] false false map[] 0xc000724400 0xc0005da0b0} -2022/02/28 11:19:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:19:53 [DEBUG] Exit from do method -2022/02/28 11:19:53 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:53 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:53 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:53 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:53 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:53 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:53 [DEBUG] : Beginning Read -2022/02/28 11:19:53 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:53 [DEBUG] Begin Injection -2022/02/28 11:19:53 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000caa9c0 5563 [] false false map[] 0xc000920700 0xc0005da0b0} -2022/02/28 11:19:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:53 [DEBUG] Exit from do method -2022/02/28 11:19:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:53 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read -2022/02/28 11:19:53 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:53 [DEBUG] Begin Injection -2022/02/28 11:19:53 [DEBUG] 621c627f1b0000aa08fd0c26: Beginning Read -2022/02/28 11:19:53 id: 621c627f1b0000aa08fd0c26 -2022/02/28 11:19:53 HTTP request GET mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:53 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:53 [DEBUG] Begin Injection -2022/02/28 11:19:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:54 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c0080 160 [] false false map[] 0xc000494a00 0xc000395550} -2022/02/28 11:19:54 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 {"id":"621c627f1b0000aa08fd0c26","name":"acctest_sl4ce","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:54 [DEBUG] Exit from do method -2022/02/28 11:19:54 [DEBUG] 621c627f1b0000aa08fd0c26: Read finished successfully -2022/02/28 11:19:54 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000834140 1363 [] false false map[] 0xc000a1c600 0xc0005da0b0} -2022/02/28 11:19:54 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:19:54 [DEBUG] Exit from do method -2022/02/28 11:19:54 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully -2022/02/28 11:19:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:54 [DEBUG] acctest_sl4ce: Beginning Read -2022/02/28 11:19:54 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:54 [DEBUG] Begin Injection -2022/02/28 11:19:54 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:54 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000caa280 1363 [] false false map[] 0xc000a1c300 0xc0005da0b0} -2022/02/28 11:19:54 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:19:54 [DEBUG] Exit from do method -2022/02/28 11:19:54 currentvrfname acctest_sl4ce -2022/02/28 11:19:54 found correct vrfname -2022/02/28 11:19:54 [DEBUG] acctest_sl4ce: Read finished successfully -2022/02/28 11:19:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:54 [DEBUG] acctest_sl4ce: Beginning Read -2022/02/28 11:19:54 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:54 [DEBUG] Begin Injection -2022/02/28 11:19:54 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:54 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c0d00 1363 [] false false map[] 0xc000494600 0xc0005da0b0} -2022/02/28 11:19:54 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:19:54 [DEBUG] Exit from do method -2022/02/28 11:19:54 [DEBUG] acctest_sl4ce: Read finished successfully -2022/02/28 11:19:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:54 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce: Beginning Read -2022/02/28 11:19:54 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:54 [DEBUG] Begin Injection -2022/02/28 11:19:54 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015c13c0 1363 [] false false map[] 0xc000494b00 0xc0005da0b0} -2022/02/28 11:19:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:19:55 [DEBUG] Exit from do method -2022/02/28 11:19:55 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce: Read finished successfully -2022/02/28 11:19:55 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:55 [DEBUG] New state was assigned lineage "034e1c12-b4d5-3c51-39c2-61594b9397ca" -2022/02/28 11:19:55 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:19:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:19:55 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:55 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:55 [WARN] Test: Executing destroy step -2022/02/28 11:19:55 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:55 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:19:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:55 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:19:55 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:55 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:19:55 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:55 [DEBUG] : Beginning Read -2022/02/28 11:19:55 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:55 [DEBUG] Begin Injection -2022/02/28 11:19:55 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d9e40 5563 [] false false map[] 0xc0013d9200 0xc0005da0b0} -2022/02/28 11:19:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:55 [DEBUG] Exit from do method -2022/02/28 11:19:55 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:19:55 [DEBUG] 621c627f1b0000aa08fd0c26: Beginning Read -2022/02/28 11:19:55 id: 621c627f1b0000aa08fd0c26 -2022/02/28 11:19:55 HTTP request GET mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:55 [DEBUG] Begin Injection -2022/02/28 11:19:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:55 [DEBUG] 621c626e1d000085624fb9b0: Beginning Read -2022/02/28 11:19:55 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:55 [DEBUG] Begin Injection -2022/02/28 11:19:55 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001b42c0 1363 [] false false map[] 0xc000494d00 0xc000395550} -2022/02/28 11:19:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:19:55 [DEBUG] Exit from do method -2022/02/28 11:19:55 [DEBUG] 621c626e1d000085624fb9b0: Read finished successfully -2022/02/28 11:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:19:55 [DEBUG] acctest_sl4ce: Beginning Read -2022/02/28 11:19:55 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:55 [DEBUG] Begin Injection -2022/02/28 11:19:55 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001b4980 160 [] false false map[] 0xc0001c9700 0xc0005da0b0} -2022/02/28 11:19:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 {"id":"621c627f1b0000aa08fd0c26","name":"acctest_sl4ce","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:19:55 [DEBUG] Exit from do method -2022/02/28 11:19:55 [DEBUG] 621c627f1b0000aa08fd0c26: Read finished successfully -2022/02/28 11:19:56 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c1200 1363 [] false false map[] 0xc000494500 0xc000395550} -2022/02/28 11:19:56 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:19:56 [DEBUG] Exit from do method -2022/02/28 11:19:56 currentvrfname acctest_sl4ce -2022/02/28 11:19:56 found correct vrfname -2022/02/28 11:19:56 [DEBUG] acctest_sl4ce: Read finished successfully -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:19:56 [DEBUG] acctest_sl4ce: Beginning Read -2022/02/28 11:19:56 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:56 [DEBUG] Begin Injection -2022/02/28 11:19:56 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:56 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00175adc0 1363 [] false false map[] 0xc000494a00 0xc000395550} -2022/02/28 11:19:56 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:19:56 [DEBUG] Exit from do method -2022/02/28 11:19:56 [DEBUG] acctest_sl4ce: Read finished successfully -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:19:56 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce: Beginning Read -2022/02/28 11:19:56 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:56 [DEBUG] Begin Injection -2022/02/28 11:19:56 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:56 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007063c0 1363 [] false false map[] 0xc000495100 0xc000395550} -2022/02/28 11:19:56 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"id":"621c626e1d000085624fb9b0","displayName":"acctest_mxqpk","description":"","templates":[{"name":"acctest_mxqpk","displayName":"acctest_mxqpk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_sl4ce","displayName":"acctest_sl4ce","bdRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/vrfs/acctest_sl4ce","dhcpLabel":{"name":"acctest_sl4ce","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_sl4ce","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:19:56 [DEBUG] Exit from do method -2022/02/28 11:19:56 [DEBUG] /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce: Read finished successfully -2022/02/28 11:19:56 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:56 [DEBUG] New state was assigned lineage "24a40166-c874-c33e-0e3f-a5a65aa3acea" -2022/02/28 11:19:56 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:19:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:56 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:19:56 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c627f1b0000aa08fd0c26" => "" - name: "acctest_sl4ce" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c626e1d000085624fb9b0" => "" - name: "acctest_mxqpk" => "" - template_name: "acctest_mxqpk" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_sl4ce" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_sl4ce" => "" - id: "acctest_sl4ce" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_sl4ce" => "" - schema_id: "621c626e1d000085624fb9b0" => "" - template_name: "acctest_mxqpk" => "" - vrf_name: "acctest_sl4ce" => "" - vrf_schema_id: "621c626e1d000085624fb9b0" => "" - vrf_template_name: "acctest_mxqpk" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_sl4ce" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce" => "" - name: "acctest_sl4ce" => "" - schema_id: "621c626e1d000085624fb9b0" => "" - template_name: "acctest_mxqpk" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_sl4ce" => "" - id: "acctest_sl4ce" => "" - layer3_multicast: "false" => "" - name: "acctest_sl4ce" => "" - schema_id: "621c626e1d000085624fb9b0" => "" - template: "acctest_mxqpk" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c627f1b0000aa08fd0c26 - provider = provider.mso - description = - name = acctest_sl4ce - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c626e1d000085624fb9b0 - provider = provider.mso - name = acctest_mxqpk - template_name = acctest_mxqpk - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_sl4ce - provider = provider.mso - dhcp_policy.name = acctest_sl4ce - dhcp_policy.version = 0 - display_name = acctest_sl4ce - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_sl4ce - schema_id = 621c626e1d000085624fb9b0 - template_name = acctest_mxqpk - vrf_name = acctest_sl4ce - vrf_schema_id = 621c626e1d000085624fb9b0 - vrf_template_name = acctest_mxqpk - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c626e1d000085624fb9b0/templates/acctest_mxqpk/bds/acctest_sl4ce/dhcpLabels/acctest_sl4ce - provider = provider.mso - bd_name = acctest_sl4ce - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_sl4ce - schema_id = 621c626e1d000085624fb9b0 - template_name = acctest_mxqpk - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_sl4ce - provider = provider.mso - display_name = acctest_sl4ce - layer3_multicast = false - name = acctest_sl4ce - schema_id = 621c626e1d000085624fb9b0 - template = acctest_mxqpk - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:19:56 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:19:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:19:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:19:56 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:19:56 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:19:56 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:19:56 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:19:56 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:19:56 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:19:56 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:19:56 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:19:56 [DEBUG] Template BD: Beginning Update -2022/02/28 11:19:56 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:56 [DEBUG] Begin Injection -2022/02/28 11:19:56 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000494600 0xc000395550} -2022/02/28 11:19:57 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:19:57 [DEBUG] 621c627f1b0000aa08fd0c26: Beginning Read -2022/02/28 11:19:57 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:57 [DEBUG] Begin Injection -2022/02/28 11:19:57 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:19:57 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:57 [DEBUG] Template BD: Beginning Update -2022/02/28 11:19:57 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 [DEBUG] Begin Injection -2022/02/28 11:19:57 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000258200 0xc0005da0b0} -2022/02/28 11:19:57 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:19:57 [DEBUG] acctest_sl4ce: Beginning Destroy -2022/02/28 11:19:57 HTTP request PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 [DEBUG] Begin Injection -2022/02/28 11:19:57 HTTP request after injection PATCH mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000495000 0xc000395550} -2022/02/28 11:19:57 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c627f1b0000aa08fd0c26 -2022/02/28 11:19:57 [DEBUG] : Read finished successfully -2022/02/28 11:19:57 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000258900 0xc0005da0b0} -2022/02/28 11:19:57 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0?validate=false -2022/02/28 11:19:57 [DEBUG] acctest_sl4ce: Destroy finished successfully -2022/02/28 11:19:57 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:19:57 [DEBUG] 621c626e1d000085624fb9b0: Beginning Destroy -2022/02/28 11:19:57 HTTP request DELETE mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:57 [DEBUG] Begin Injection -2022/02/28 11:19:57 HTTP request after injection DELETE mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:58 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:49:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000495b00 0xc0005da0b0} -2022/02/28 11:19:58 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:58 [DEBUG] 621c626e1d000085624fb9b0: Destroy finished successfully -2022/02/28 11:19:58 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:58 [DEBUG] New state was assigned lineage "6c0dcb5d-6b45-ce2f-b745-33dfa6719de9" -2022/02/28 11:19:58 HTTP request GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:58 [DEBUG] Begin Injection -2022/02/28 11:19:58 HTTP request after injection GET mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:58 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 -2022/02/28 11:19:58 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:58 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001b4140 39 [] false false map[] 0xc001356300 0xc0005da0b0} -2022/02/28 11:19:58 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c626e1d000085624fb9b0 {"code":404,"message":"Item not found"} -2022/02/28 11:19:58 [DEBUG] Exit from do method -2022/02/28 11:19:58 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:19:58 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:19:58 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:19:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:19:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:58 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:19:58 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:19:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:58 [DEBUG] : Beginning Read -2022/02/28 11:19:58 HTTP request GET mso/api/v1/tenants -2022/02/28 11:19:58 [DEBUG] Begin Injection -2022/02/28 11:19:58 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:19:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:58 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:19:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:49:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001b4380 5563 [] false false map[] 0xc000e00100 0xc0005da0b0} -2022/02/28 11:19:58 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:19:58 [DEBUG] Exit from do method -2022/02/28 11:19:58 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:19:58 [DEBUG] provider has no plugin.Client -2022/02/28 11:19:58 [DEBUG] New state was assigned lineage "ae8d6c3c-050b-9ae3-fbb3-ead9c0e6140f" -2022/02/28 11:19:58 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:19:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:19:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:19:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:19:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:19:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:19:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:19:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:19:58 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:20:15 [DEBUG] Test: Executing step 0 -2022/02/28 11:20:15 [DEBUG] Test: Executing step 0 -2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:20:15 [DEBUG] Test: Executing step 1 -2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:15 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:15 [DEBUG] : Beginning Read -2022/02/28 11:20:15 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:15 [DEBUG] Begin Injection -2022/02/28 11:20:15 HTTP request POST /login -2022/02/28 11:20:15 HTTP request after injection POST /login -2022/02/28 11:20:15 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:20:15 [DEBUG] Test: Executing step 2 -2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:20:15 [DEBUG] Test: Executing step 3 -2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:20:15 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:20:15 [DEBUG] Test: Executing step 4 -2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:15 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:15 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:20:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:15 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:15 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:20:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:15 [DEBUG] : Beginning Read -2022/02/28 11:20:15 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:15 [DEBUG] Begin Injection -2022/02/28 11:20:15 HTTP request POST /login -2022/02/28 11:20:15 HTTP request after injection POST /login -2022/02/28 11:20:15 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:20:17 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:20:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:16 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUkxXNnR5WTBhYkRkQjNnaWx6VnhQd2tOIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.e1Pvv1fr9RCCZQNO3uMHm31rFiSG4dCyaY0jKy5mkd5A80-CRirGj-E6uEjbjdVHWeO8NVMv-iJ1Ua2HV8juq4KEUMjzgmyBbYG6hwAAMH8NthSWqTlpQ62M3MfICFhgWxgYUlyn3c1_SXHqvsC1DAWSzUISEBuW-YkjMIhSkq28IAapWAxQXRS7V_HxawsKxI99ft6SwaGN6i5290oqVADuKopvY6DmDr0PsJ3WYdsarbCWZxup5QOnOBVoKqPrYjEIMe57boeQRnq3y-xdSiVoYUTq91OjCpEJi6difhQS15evtKybEChivHCs-DP4xH4zKp_DXn_Z3cZ0HM-ehg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0000b01c0 -1 [chunked] false false map[] 0xc000510400 0xc00091c000} -2022/02/28 11:20:17 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUkxXNnR5WTBhYkRkQjNnaWx6VnhQd2tOIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.e1Pvv1fr9RCCZQNO3uMHm31rFiSG4dCyaY0jKy5mkd5A80-CRirGj-E6uEjbjdVHWeO8NVMv-iJ1Ua2HV8juq4KEUMjzgmyBbYG6hwAAMH8NthSWqTlpQ62M3MfICFhgWxgYUlyn3c1_SXHqvsC1DAWSzUISEBuW-YkjMIhSkq28IAapWAxQXRS7V_HxawsKxI99ft6SwaGN6i5290oqVADuKopvY6DmDr0PsJ3WYdsarbCWZxup5QOnOBVoKqPrYjEIMe57boeQRnq3y-xdSiVoYUTq91OjCpEJi6difhQS15evtKybEChivHCs-DP4xH4zKp_DXn_Z3cZ0HM-ehg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUkxXNnR5WTBhYkRkQjNnaWx6VnhQd2tOIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.e1Pvv1fr9RCCZQNO3uMHm31rFiSG4dCyaY0jKy5mkd5A80-CRirGj-E6uEjbjdVHWeO8NVMv-iJ1Ua2HV8juq4KEUMjzgmyBbYG6hwAAMH8NthSWqTlpQ62M3MfICFhgWxgYUlyn3c1_SXHqvsC1DAWSzUISEBuW-YkjMIhSkq28IAapWAxQXRS7V_HxawsKxI99ft6SwaGN6i5290oqVADuKopvY6DmDr0PsJ3WYdsarbCWZxup5QOnOBVoKqPrYjEIMe57boeQRnq3y-xdSiVoYUTq91OjCpEJi6difhQS15evtKybEChivHCs-DP4xH4zKp_DXn_Z3cZ0HM-ehg"} -2022/02/28 11:20:17 [DEBUG] Exit from do method -2022/02/28 11:20:17 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:17 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:20:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:16 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0000b03c0 -1 [chunked] false false map[] 0xc000510800 0xc0009a00b0} -2022/02/28 11:20:17 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw"} -2022/02/28 11:20:17 [DEBUG] Exit from do method -2022/02/28 11:20:17 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b0540 5563 [] false false map[] 0xc000510700 0xc0009a00b0} -2022/02/28 11:20:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:17 [DEBUG] Exit from do method -2022/02/28 11:20:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:17 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:17 [DEBUG] New state was assigned lineage "47cf79d8-fb38-b171-42cd-b819a9750277" -2022/02/28 11:20:17 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:17 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:17 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:17 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_0qbd3" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_g44b1" - template_name: "" => "acctest_g44b1" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_0qbd3" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_0qbd3" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_g44b1" - vrf_name: "" => "acctest_0qbd3" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_0qbd3" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_0qbd3" - schema_id: "" => "" - template_name: "" => "acctest_g44b1" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_0qbd3" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_0qbd3" - schema_id: "" => "" - template: "" => "acctest_g44b1" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:20:17 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:20:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000883740 5563 [] false false map[] 0xc000510300 0xc00091c000} -2022/02/28 11:20:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:17 [DEBUG] Exit from do method -2022/02/28 11:20:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:17 [DEBUG] New state was assigned lineage "9d7ebc84-d850-8166-8589-28a952e76425" -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:20:17 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state)] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:20:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:17 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:20:17 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:17 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:20:17 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:20:17 [DEBUG] Schema: Beginning Creation -2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:20:17 [DEBUG] : Beginning Create -2022/02/28 11:20:17 HTTP request POST mso/api/v1/schemas -2022/02/28 11:20:17 [DEBUG] Begin Injection -2022/02/28 11:20:17 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:20:17 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:20:17 [DEBUG] Begin Injection -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:17 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:20:17 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw] Content-Type:[application/json]] {{"displayName":"acctest_g44b1","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_g44b1","externalEpgs":[],"filters":[],"name":"acctest_g44b1","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xaf7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:20:17 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw] Content-Type:[application/json]] {{"desc":"","name":"acctest_0qbd3","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xaf7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:17 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:17 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:17 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_l789w" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_dt4xf" - template_name: "" => "acctest_dt4xf" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_l789w" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_l789w" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_dt4xf" - vrf_name: "" => "acctest_l789w" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_l789w_invalid" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_l789w" - schema_id: "" => "" - template_name: "" => "acctest_dt4xf" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_l789w" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_l789w" - schema_id: "" => "" - template: "" => "acctest_dt4xf" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:20:17 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:20:17 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:20:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:20:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:20:17 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:20:17 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:20:17 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:20:17 [DEBUG] : Beginning Create -2022/02/28 11:20:17 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:20:17 [DEBUG] Begin Injection -2022/02/28 11:20:17 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:20:17 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw] Content-Type:[application/json]] {{"desc":"","name":"acctest_l789w","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xaf7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:20:17 [DEBUG] Schema: Beginning Creation -2022/02/28 11:20:17 HTTP request POST mso/api/v1/schemas -2022/02/28 11:20:17 [DEBUG] Begin Injection -2022/02/28 11:20:17 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:20:17 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw] Content-Type:[application/json]] {{"displayName":"acctest_dt4xf","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_dt4xf","externalEpgs":[],"filters":[],"name":"acctest_dt4xf","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xaf7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:20:17 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:20:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001364100 160 [] false false map[] 0xc000510e00 0xc0009a00b0} -2022/02/28 11:20:17 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:17 [DEBUG] Exit from do method -2022/02/28 11:20:17 [DEBUG] 621c62991b0000af08fd0c27: Creation finished successfully -2022/02/28 11:20:17 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read -2022/02/28 11:20:17 id: 621c62991b0000af08fd0c27 -2022/02/28 11:20:17 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:17 [DEBUG] Begin Injection -2022/02/28 11:20:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:17 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:20:17 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c62991d000080624fb9c7] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba4240 400 [] false false map[] 0xc000914100 0xc00091c000} -2022/02/28 11:20:17 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:20:17 [DEBUG] Exit from do method -2022/02/28 11:20:17 [DEBUG] 621c62991d000080624fb9c7: Schema Creation finished successfully -2022/02/28 11:20:17 [DEBUG] 621c62991d000080624fb9c7: Beginning Read -2022/02/28 11:20:17 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:17 [DEBUG] Begin Injection -2022/02/28 11:20:17 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:18 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:20:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001428240 160 [] false false map[] 0xc000a9e200 0xc0009a00b0} -2022/02/28 11:20:18 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c629a1b0000aa08fd0c28","name":"acctest_l789w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:18 [DEBUG] Exit from do method -2022/02/28 11:20:18 [DEBUG] 621c629a1b0000aa08fd0c28: Creation finished successfully -2022/02/28 11:20:18 [DEBUG] 621c629a1b0000aa08fd0c28: Beginning Read -2022/02/28 11:20:18 id: 621c629a1b0000aa08fd0c28 -2022/02/28 11:20:18 HTTP request GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:18 [DEBUG] Begin Injection -2022/02/28 11:20:18 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:18 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:20:18 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c629a1d000095624fb9c9] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001428400 400 [] false false map[] 0xc000887900 0xc00091c000} -2022/02/28 11:20:18 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:20:18 [DEBUG] Exit from do method -2022/02/28 11:20:18 [DEBUG] 621c629a1d000095624fb9c9: Schema Creation finished successfully -2022/02/28 11:20:18 [DEBUG] 621c629a1d000095624fb9c9: Beginning Read -2022/02/28 11:20:18 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:18 [DEBUG] Begin Injection -2022/02/28 11:20:18 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a5c0 160 [] false false map[] 0xc0010dc000 0xc0009a00b0} -2022/02/28 11:20:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:18 [DEBUG] Exit from do method -2022/02/28 11:20:18 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully -2022/02/28 11:20:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a040 400 [] false false map[] 0xc000886000 0xc0009a0160} -2022/02/28 11:20:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:20:18 [DEBUG] Exit from do method -2022/02/28 11:20:18 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully -2022/02/28 11:20:18 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:20:18 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:20:18 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:18 [DEBUG] Begin Injection -2022/02/28 11:20:18 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000882100 160 [] false false map[] 0xc000a9e500 0xc000d000b0} -2022/02/28 11:20:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 {"id":"621c629a1b0000aa08fd0c28","name":"acctest_l789w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:18 [DEBUG] Exit from do method -2022/02/28 11:20:18 [DEBUG] 621c629a1b0000aa08fd0c28: Read finished successfully -2022/02/28 11:20:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a2c0 400 [] false false map[] 0xc000a9e600 0xc00091c000} -2022/02/28 11:20:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:20:18 [DEBUG] Exit from do method -2022/02/28 11:20:18 [DEBUG] 621c629a1d000095624fb9c9: Read finished successfully -2022/02/28 11:20:18 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:20:18 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:20:18 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:18 [DEBUG] Begin Injection -2022/02/28 11:20:18 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:18 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:18 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000510e00 0xc0009a0160} -2022/02/28 11:20:18 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:18 [DEBUG] acctest_0qbd3: Creation finished successfully -2022/02/28 11:20:18 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:18 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:18 [DEBUG] Begin Injection -2022/02/28 11:20:18 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:19 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000886400 0xc000d000b0} -2022/02/28 11:20:19 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:19 [DEBUG] acctest_l789w: Creation finished successfully -2022/02/28 11:20:19 [DEBUG] acctest_l789w: Beginning Read -2022/02/28 11:20:19 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:19 [DEBUG] Begin Injection -2022/02/28 11:20:19 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007720c0 768 [] false false map[] 0xc0010dc100 0xc0009a0210} -2022/02/28 11:20:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:20:19 [DEBUG] Exit from do method -2022/02/28 11:20:19 currentvrfname acctest_0qbd3 -2022/02/28 11:20:19 found correct vrfname -2022/02/28 11:20:19 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:19 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:20:19 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:20:19 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:20:19 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:19 [DEBUG] Begin Injection -2022/02/28 11:20:19 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050a800 768 [] false false map[] 0xc0010dc400 0xc000d000b0} -2022/02/28 11:20:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:20:19 [DEBUG] Exit from do method -2022/02/28 11:20:19 currentvrfname acctest_l789w -2022/02/28 11:20:19 found correct vrfname -2022/02/28 11:20:19 [DEBUG] acctest_l789w: Read finished successfully -2022/02/28 11:20:19 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:20:19 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:20:19 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:20:19 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:19 [DEBUG] Begin Injection -2022/02/28 11:20:19 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:19 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a9e900 0xc0009a0370} -2022/02/28 11:20:19 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:19 [DEBUG] : Beginning Read -2022/02/28 11:20:19 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:19 [DEBUG] Begin Injection -2022/02/28 11:20:19 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:19 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a9f400 0xc000d000b0} -2022/02/28 11:20:19 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:19 [DEBUG] : Beginning Read -2022/02/28 11:20:19 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:19 [DEBUG] Begin Injection -2022/02/28 11:20:19 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001365900 1277 [] false false map[] 0xc000a9f600 0xc0009a0370} -2022/02/28 11:20:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:20:19 [DEBUG] Exit from do method -2022/02/28 11:20:19 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:19 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:20:19 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:20:19 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:19 [DEBUG] Begin Injection -2022/02/28 11:20:19 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000338780 1277 [] false false map[] 0xc000a9f700 0xc000d000b0} -2022/02/28 11:20:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:20:19 [DEBUG] Exit from do method -2022/02/28 11:20:19 [DEBUG] acctest_l789w: Read finished successfully -2022/02/28 11:20:20 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:20:20 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:20:20 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:20 [DEBUG] Begin Injection -2022/02/28 11:20:20 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:20 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000887200 0xc0009a0370} -2022/02/28 11:20:20 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:20 [DEBUG] Creation Complete -2022/02/28 11:20:20 [DEBUG] : Beginning Read -2022/02/28 11:20:20 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:20 [DEBUG] Begin Injection -2022/02/28 11:20:20 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:20 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:20 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[112] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc000377280 112 [] false false map[] 0xc000a9f900 0xc000d000b0} -2022/02/28 11:20:20 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false {"code":141,"message":"Resource Not Found: Bd with name acctest_l789w_invalid not found in List(acctest_l789w)"} -2022/02/28 11:20:20 [DEBUG] Exit from do method -2022/02/28 11:20:20 [DEBUG] mso_schema_template_bd_dhcp_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Resource Not Found: Bd with name acctest_l789w_invalid not found in List(acctest_l789w)"{} -2022/02/28 11:20:20 [ERROR] : eval: *terraform.EvalApplyPost, err: "Resource Not Found: Bd with name acctest_l789w_invalid not found in List(acctest_l789w)"{} -2022/02/28 11:20:20 [ERROR] : eval: *terraform.EvalSequence, err: "Resource Not Found: Bd with name acctest_l789w_invalid not found in List(acctest_l789w)"{} -2022/02/28 11:20:20 [DEBUG] New state was assigned lineage "16733663-d774-f37c-b13f-0650d2755b4f" -2022/02/28 11:20:20 [DEBUG] Test: Executing step 1 -2022/02/28 11:20:20 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:20 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:20 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:20 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "uylbv" is not expected here. -2022/02/28 11:20:20 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "uylbv" is not expected here. -2022/02/28 11:20:20 [DEBUG] Test: Executing step 2 -2022/02/28 11:20:20 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:20 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:20 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:20 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:20 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:20 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:20 [DEBUG] : Beginning Read -2022/02/28 11:20:20 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:20 [DEBUG] Begin Injection -2022/02/28 11:20:20 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b0100 1362 [] false false map[] 0xc0010dd500 0xc0009a0370} -2022/02/28 11:20:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:20 [DEBUG] Exit from do method -2022/02/28 11:20:20 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully -2022/02/28 11:20:20 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:20 [DEBUG] New state was assigned lineage "e0f54b91-f66c-8f84-b6df-852de9e7af0c" -2022/02/28 11:20:20 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:20 [DEBUG] Begin Injection -2022/02/28 11:20:20 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772100 5563 [] false false map[] 0xc0010ddb00 0xc000d000b0} -2022/02/28 11:20:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:20 [DEBUG] Exit from do method -2022/02/28 11:20:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:20 [DEBUG] 621c629a1d000095624fb9c9: Beginning Read -2022/02/28 11:20:20 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:20 [DEBUG] Begin Injection -2022/02/28 11:20:20 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:20 [DEBUG] 621c629a1b0000aa08fd0c28: Beginning Read -2022/02/28 11:20:20 id: 621c629a1b0000aa08fd0c28 -2022/02/28 11:20:20 HTTP request GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:20 [DEBUG] Begin Injection -2022/02/28 11:20:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000773a40 1362 [] false false map[] 0xc000510100 0xc0009a0370} -2022/02/28 11:20:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:20 [DEBUG] Exit from do method -2022/02/28 11:20:20 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:20 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:20 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:20 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:20 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:20 [DEBUG] : Beginning Read -2022/02/28 11:20:20 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:20 [DEBUG] Begin Injection -2022/02/28 11:20:20 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013b0540 1277 [] false false map[] 0xc000d68200 0xc000d000b0} -2022/02/28 11:20:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:20:21 [DEBUG] Exit from do method -2022/02/28 11:20:21 [DEBUG] 621c629a1d000095624fb9c9: Read finished successfully -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:21 [DEBUG] acctest_l789w: Beginning Read -2022/02/28 11:20:21 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:21 [DEBUG] Begin Injection -2022/02/28 11:20:21 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013b0b40 160 [] false false map[] 0xc000886400 0xc0009a00b0} -2022/02/28 11:20:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 {"id":"621c629a1b0000aa08fd0c28","name":"acctest_l789w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:21 [DEBUG] Exit from do method -2022/02/28 11:20:21 [DEBUG] 621c629a1b0000aa08fd0c28: Read finished successfully -2022/02/28 11:20:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012d7bc0 5563 [] false false map[] 0xc000886500 0xc0009a0370} -2022/02/28 11:20:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:21 [DEBUG] Exit from do method -2022/02/28 11:20:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:21 [DEBUG] 621c62991d000080624fb9c7: Beginning Read -2022/02/28 11:20:21 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:21 [DEBUG] Begin Injection -2022/02/28 11:20:21 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:21 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read -2022/02/28 11:20:21 id: 621c62991b0000af08fd0c27 -2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:21 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:21 [DEBUG] Begin Injection -2022/02/28 11:20:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013b1800 1277 [] false false map[] 0xc0010c1100 0xc000d000b0} -2022/02/28 11:20:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:20:21 [DEBUG] Exit from do method -2022/02/28 11:20:21 currentvrfname acctest_l789w -2022/02/28 11:20:21 found correct vrfname -2022/02/28 11:20:21 [DEBUG] acctest_l789w: Read finished successfully -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:21 [DEBUG] acctest_l789w: Beginning Read -2022/02/28 11:20:21 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:21 [DEBUG] Begin Injection -2022/02/28 11:20:21 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba4080 1362 [] false false map[] 0xc0010c1300 0xc0009a0370} -2022/02/28 11:20:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:21 [DEBUG] Exit from do method -2022/02/28 11:20:21 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:21 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:21 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:21 [DEBUG] Begin Injection -2022/02/28 11:20:21 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001428100 160 [] false false map[] 0xc000d69700 0xc0009a00b0} -2022/02/28 11:20:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:21 [DEBUG] Exit from do method -2022/02/28 11:20:21 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully -2022/02/28 11:20:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772180 1277 [] false false map[] 0xc000d69c00 0xc000d000b0} -2022/02/28 11:20:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:20:21 [DEBUG] Exit from do method -2022/02/28 11:20:21 [DEBUG] acctest_l789w: Read finished successfully -2022/02/28 11:20:21 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:21 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:21 [DEBUG] New state was assigned lineage "39eb78f0-1271-a5fd-44db-fedb69c517ae" -2022/02/28 11:20:21 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:21 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:21 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:21 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:21 [WARN] Test: Step plan: DIFF: - -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_l789w" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_l789w" - schema_id: "" => "621c629a1d000095624fb9c9" - template_name: "" => "acctest_dt4xf" - version: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c629a1b0000aa08fd0c28 - provider = provider.mso - description = - name = acctest_l789w - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c629a1d000095624fb9c9 - provider = provider.mso - name = acctest_dt4xf - template_name = acctest_dt4xf - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_l789w - provider = provider.mso - display_name = acctest_l789w - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_l789w - schema_id = 621c629a1d000095624fb9c9 - template_name = acctest_dt4xf - vrf_name = acctest_l789w - vrf_schema_id = 621c629a1d000095624fb9c9 - vrf_template_name = acctest_dt4xf - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_l789w - provider = provider.mso - display_name = acctest_l789w - layer3_multicast = false - name = acctest_l789w - schema_id = 621c629a1d000095624fb9c9 - template = acctest_dt4xf - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:20:21 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:20:21 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:20:21 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:20:21 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:20:21 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:20:21 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:21 [DEBUG] Begin Injection -2022/02/28 11:20:21 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001517e40 1362 [] false false map[] 0xc0010c0500 0xc0009a0370} -2022/02/28 11:20:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:21 [DEBUG] Exit from do method -2022/02/28 11:20:21 currentvrfname acctest_0qbd3 -2022/02/28 11:20:21 found correct vrfname -2022/02/28 11:20:21 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:21 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:21 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:21 [DEBUG] Begin Injection -2022/02/28 11:20:21 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:22 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001005c00 0xc000d000b0} -2022/02/28 11:20:22 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:22 [DEBUG] Creation Complete -2022/02/28 11:20:22 [DEBUG] : Beginning Read -2022/02/28 11:20:22 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:22 [DEBUG] Begin Injection -2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001364140 1362 [] false false map[] 0xc00112e200 0xc0009a0370} -2022/02/28 11:20:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:22 [DEBUG] Exit from do method -2022/02/28 11:20:22 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:22 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Read -2022/02/28 11:20:22 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:22 [DEBUG] Begin Injection -2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9bc00 1362 [] false false map[] 0xc00112e400 0xc000d000b0} -2022/02/28 11:20:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:22 [DEBUG] Exit from do method -2022/02/28 11:20:22 [DEBUG] /schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w: Read finished successfully -2022/02/28 11:20:22 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:22 [DEBUG] New state was assigned lineage "f5a51075-d508-5717-128e-37b106d0d21f" -2022/02/28 11:20:22 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:20:22 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:22 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:22 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:22 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:22 [DEBUG] : Beginning Read -2022/02/28 11:20:22 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:22 [DEBUG] Begin Injection -2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba40c0 1362 [] false false map[] 0xc000d68300 0xc0009a0370} -2022/02/28 11:20:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:22 [DEBUG] Exit from do method -2022/02/28 11:20:22 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully -2022/02/28 11:20:22 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:22 [DEBUG] New state was assigned lineage "d5463eba-a551-4cae-970c-33fc1738a03d" -2022/02/28 11:20:22 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:22 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:22 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:22 [DEBUG] Test: Executing step 5 -2022/02/28 11:20:22 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:22 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:22 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:22 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:22 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:22 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:22 [DEBUG] : Beginning Read -2022/02/28 11:20:22 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:22 [DEBUG] Begin Injection -2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a980 5563 [] false false map[] 0xc000cda700 0xc000d000b0} -2022/02/28 11:20:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:22 [DEBUG] Exit from do method -2022/02/28 11:20:22 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:22 [DEBUG] 621c629a1d000095624fb9c9: Beginning Read -2022/02/28 11:20:22 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:22 [DEBUG] Begin Injection -2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:22 [DEBUG] 621c629a1b0000aa08fd0c28: Beginning Read -2022/02/28 11:20:22 id: 621c629a1b0000aa08fd0c28 -2022/02/28 11:20:22 HTTP request GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:22 [DEBUG] Begin Injection -2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001364680 5563 [] false false map[] 0xc000cdbf00 0xc0009a0370} -2022/02/28 11:20:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:22 [DEBUG] Exit from do method -2022/02/28 11:20:22 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:22 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:20:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:20:22 [DEBUG] 621c62991d000080624fb9c7: Beginning Read -2022/02/28 11:20:22 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:22 [DEBUG] Begin Injection -2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:22 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read -2022/02/28 11:20:22 id: 621c62991b0000af08fd0c27 -2022/02/28 11:20:22 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:22 [DEBUG] Begin Injection -2022/02/28 11:20:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc2980 1362 [] false false map[] 0xc000b74a00 0xc000d000b0} -2022/02/28 11:20:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:23 [DEBUG] Exit from do method -2022/02/28 11:20:23 [DEBUG] 621c629a1d000095624fb9c9: Read finished successfully -2022/02/28 11:20:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:23 [DEBUG] acctest_l789w: Beginning Read -2022/02/28 11:20:23 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:23 [DEBUG] Begin Injection -2022/02/28 11:20:23 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc2a80 160 [] false false map[] 0xc000510600 0xc0009a00b0} -2022/02/28 11:20:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 {"id":"621c629a1b0000aa08fd0c28","name":"acctest_l789w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:23 [DEBUG] Exit from do method -2022/02/28 11:20:23 [DEBUG] 621c629a1b0000aa08fd0c28: Read finished successfully -2022/02/28 11:20:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba42c0 1362 [] false false map[] 0xc000cda900 0xc0009a0370} -2022/02/28 11:20:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:23 [DEBUG] Exit from do method -2022/02/28 11:20:23 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully -2022/02/28 11:20:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:23 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:23 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:23 [DEBUG] Begin Injection -2022/02/28 11:20:23 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376dc0 160 [] false false map[] 0xc000510c00 0xc000d000b0} -2022/02/28 11:20:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:23 [DEBUG] Exit from do method -2022/02/28 11:20:23 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully -2022/02/28 11:20:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba4880 1362 [] false false map[] 0xc000cdac00 0xc0009a00b0} -2022/02/28 11:20:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:23 [DEBUG] Exit from do method -2022/02/28 11:20:23 currentvrfname acctest_l789w -2022/02/28 11:20:23 found correct vrfname -2022/02/28 11:20:23 [DEBUG] acctest_l789w: Read finished successfully -2022/02/28 11:20:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:23 [DEBUG] acctest_l789w: Beginning Read -2022/02/28 11:20:23 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:23 [DEBUG] Begin Injection -2022/02/28 11:20:23 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc3100 1362 [] false false map[] 0xc000510f00 0xc0009a0370} -2022/02/28 11:20:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:23 [DEBUG] Exit from do method -2022/02/28 11:20:23 currentvrfname acctest_0qbd3 -2022/02/28 11:20:23 found correct vrfname -2022/02/28 11:20:23 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:23 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:23 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:23 [DEBUG] Begin Injection -2022/02/28 11:20:23 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba5d80 1362 [] false false map[] 0xc000cdaf00 0xc0009a00b0} -2022/02/28 11:20:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:23 [DEBUG] Exit from do method -2022/02/28 11:20:23 [DEBUG] acctest_l789w: Read finished successfully -2022/02/28 11:20:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:23 [DEBUG] /schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w: Beginning Read -2022/02/28 11:20:23 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:23 [DEBUG] Begin Injection -2022/02/28 11:20:23 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377900 1362 [] false false map[] 0xc0010c0500 0xc0009a0370} -2022/02/28 11:20:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:23 [DEBUG] Exit from do method -2022/02/28 11:20:23 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:23 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Read -2022/02/28 11:20:23 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:23 [DEBUG] Begin Injection -2022/02/28 11:20:23 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012d6040 1362 [] false false map[] 0xc000b75500 0xc000d006e0} -2022/02/28 11:20:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:24 [DEBUG] Exit from do method -2022/02/28 11:20:24 [DEBUG] /schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w: Read finished successfully -2022/02/28 11:20:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:24 [DEBUG] New state was assigned lineage "f75baee5-a6bc-653f-c52f-cde77330c9fc" -2022/02/28 11:20:24 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:24 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001429f00 1362 [] false false map[] 0xc000cdb400 0xc0009a0370} -2022/02/28 11:20:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:24 [DEBUG] Exit from do method -2022/02/28 11:20:24 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:24 [DEBUG] New state was assigned lineage "a27cb301-cf16-a5ab-55ee-22b71229970b" -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:24 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:24 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:24 [WARN] Test: Executing destroy step -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:24 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:24 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.test - description: "" => "" - id: "" => "" - name: "" => "acctest_qhr63" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -UPDATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_0qbd3" => "acctest_0qbd3" - dhcp_option_name: "" => "acctest_qhr63" - dhcp_option_version: "0" => "1" - id: "/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3" => "/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3" - name: "acctest_0qbd3" => "acctest_0qbd3" - schema_id: "621c62991d000080624fb9c7" => "621c62991d000080624fb9c7" - template_name: "acctest_g44b1" => "acctest_g44b1" - version: "0" => "1" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c62991b0000af08fd0c27 - provider = provider.mso - description = - name = acctest_0qbd3 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c62991d000080624fb9c7 - provider = provider.mso - name = acctest_g44b1 - template_name = acctest_g44b1 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_0qbd3 - provider = provider.mso - dhcp_policy.name = acctest_0qbd3 - dhcp_policy.version = 0 - display_name = acctest_0qbd3 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_0qbd3 - schema_id = 621c62991d000080624fb9c7 - template_name = acctest_g44b1 - vrf_name = acctest_0qbd3 - vrf_schema_id = 621c62991d000080624fb9c7 - vrf_template_name = acctest_g44b1 - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3 - provider = provider.mso - bd_name = acctest_0qbd3 - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_0qbd3 - schema_id = 621c62991d000080624fb9c7 - template_name = acctest_g44b1 - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_0qbd3 - provider = provider.mso - display_name = acctest_0qbd3 - layer3_multicast = false - name = acctest_0qbd3 - schema_id = 621c62991d000080624fb9c7 - template = acctest_g44b1 - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:20:24 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:20:24 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:20:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test (prepare state) -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test] -2022/02/28 11:20:24 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:20:24 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change -2022/02/28 11:20:24 [DEBUG] : Beginning Create -2022/02/28 11:20:24 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 11:20:24 [DEBUG] Begin Injection -2022/02/28 11:20:24 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 11:20:24 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_qhr63","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xaf7ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:20:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:24 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:24 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:24 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:24 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:24 [DEBUG] : Beginning Read -2022/02/28 11:20:24 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:24 [DEBUG] Begin Injection -2022/02/28 11:20:24 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:24 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:20:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104bc0 161 [] false false map[] 0xc000d68700 0xc000d009a0} -2022/02/28 11:20:24 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c62a01b0000b108fd0c29","name":"acctest_qhr63","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:24 [DEBUG] Exit from do method -2022/02/28 11:20:24 [DEBUG] 621c62a01b0000b108fd0c29: Creation finished successfully -2022/02/28 11:20:24 [DEBUG] 621c62a01b0000b108fd0c29: Beginning Read -2022/02/28 11:20:24 id: 621c62a01b0000b108fd0c29 -2022/02/28 11:20:24 HTTP request GET mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:24 [DEBUG] Begin Injection -2022/02/28 11:20:24 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a0c0 5563 [] false false map[] 0xc000d68200 0xc000d000b0} -2022/02/28 11:20:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:24 [DEBUG] Exit from do method -2022/02/28 11:20:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:24 [DEBUG] 621c629a1d000095624fb9c9: Beginning Read -2022/02/28 11:20:24 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:24 [DEBUG] Begin Injection -2022/02/28 11:20:24 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:24 [DEBUG] 621c629a1b0000aa08fd0c28: Beginning Read -2022/02/28 11:20:24 id: 621c629a1b0000aa08fd0c28 -2022/02/28 11:20:24 HTTP request GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:24 [DEBUG] Begin Injection -2022/02/28 11:20:24 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011050c0 161 [] false false map[] 0xc000b74700 0xc000d009a0} -2022/02/28 11:20:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 {"id":"621c62a01b0000b108fd0c29","name":"acctest_qhr63","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:24 [DEBUG] Exit from do method -2022/02/28 11:20:24 [DEBUG] 621c62a01b0000b108fd0c29: Read finished successfully -2022/02/28 11:20:24 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change -2022/02/28 11:20:24 [DEBUG] Template BD: Beginning Update -2022/02/28 11:20:24 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:24 [DEBUG] Begin Injection -2022/02/28 11:20:24 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000339d80 1362 [] false false map[] 0xc0016f4500 0xc000d000b0} -2022/02/28 11:20:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:24 [DEBUG] Exit from do method -2022/02/28 11:20:24 [DEBUG] 621c629a1d000095624fb9c9: Read finished successfully -2022/02/28 11:20:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:24 [DEBUG] acctest_l789w: Beginning Read -2022/02/28 11:20:24 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:24 [DEBUG] Begin Injection -2022/02/28 11:20:24 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772040 160 [] false false map[] 0xc000d68800 0xc000d009a0} -2022/02/28 11:20:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 {"id":"621c629a1b0000aa08fd0c28","name":"acctest_l789w","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:25 [DEBUG] Exit from do method -2022/02/28 11:20:25 [DEBUG] 621c629a1b0000aa08fd0c28: Read finished successfully -2022/02/28 11:20:25 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0016f4b00 0xc000d000b0} -2022/02/28 11:20:25 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:25 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Read -2022/02/28 11:20:25 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:25 [DEBUG] Begin Injection -2022/02/28 11:20:25 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba4580 1362 [] false false map[] 0xc000b75200 0xc000d009a0} -2022/02/28 11:20:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:25 [DEBUG] Exit from do method -2022/02/28 11:20:25 currentvrfname acctest_l789w -2022/02/28 11:20:25 found correct vrfname -2022/02/28 11:20:25 [DEBUG] acctest_l789w: Read finished successfully -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:25 [DEBUG] acctest_l789w: Beginning Read -2022/02/28 11:20:25 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:25 [DEBUG] Begin Injection -2022/02/28 11:20:25 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014289c0 1472 [] false false map[] 0xc000510700 0xc000d000b0} -2022/02/28 11:20:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:20:25 [DEBUG] Exit from do method -2022/02/28 11:20:25 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully -2022/02/28 11:20:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:25 [DEBUG] New state was assigned lineage "f0957ca7-2bac-40ad-a516-1b4aca0da073" -2022/02/28 11:20:25 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:25 [DEBUG] Begin Injection -2022/02/28 11:20:25 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376d80 1362 [] false false map[] 0xc000510a00 0xc000d009a0} -2022/02/28 11:20:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:25 [DEBUG] Exit from do method -2022/02/28 11:20:25 [DEBUG] acctest_l789w: Read finished successfully -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:25 [DEBUG] /schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w: Beginning Read -2022/02/28 11:20:25 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:25 [DEBUG] Begin Injection -2022/02/28 11:20:25 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377480 1472 [] false false map[] 0xc0016f4000 0xc000d000b0} -2022/02/28 11:20:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:20:25 [DEBUG] Exit from do method -2022/02/28 11:20:25 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:25 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:25 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:25 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:25 [DEBUG] : Beginning Read -2022/02/28 11:20:25 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:25 [DEBUG] Begin Injection -2022/02/28 11:20:25 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001429d40 1362 [] false false map[] 0xc0016f4300 0xc000520210} -2022/02/28 11:20:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"id":"621c629a1d000095624fb9c9","displayName":"acctest_dt4xf","description":"","templates":[{"name":"acctest_dt4xf","displayName":"acctest_dt4xf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_l789w","displayName":"acctest_l789w","vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_l789w","displayName":"acctest_l789w","bdRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/vrfs/acctest_l789w","dhcpLabel":{"name":"acctest_l789w","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_l789w","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:20:26 [DEBUG] Exit from do method -2022/02/28 11:20:26 [DEBUG] /schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w: Read finished successfully -2022/02/28 11:20:26 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:26 [DEBUG] New state was assigned lineage "9fe35f6e-8a87-ec65-97d9-9cf8e07650b5" -2022/02/28 11:20:26 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:20:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:20:26 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c629a1b0000aa08fd0c28" => "" - name: "acctest_l789w" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c629a1d000095624fb9c9" => "" - name: "acctest_dt4xf" => "" - template_name: "acctest_dt4xf" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_l789w" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_l789w" => "" - id: "acctest_l789w" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_l789w" => "" - schema_id: "621c629a1d000095624fb9c9" => "" - template_name: "acctest_dt4xf" => "" - vrf_name: "acctest_l789w" => "" - vrf_schema_id: "621c629a1d000095624fb9c9" => "" - vrf_template_name: "acctest_dt4xf" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_l789w" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w" => "" - name: "acctest_l789w" => "" - schema_id: "621c629a1d000095624fb9c9" => "" - template_name: "acctest_dt4xf" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_l789w" => "" - id: "acctest_l789w" => "" - layer3_multicast: "false" => "" - name: "acctest_l789w" => "" - schema_id: "621c629a1d000095624fb9c9" => "" - template: "acctest_dt4xf" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c629a1b0000aa08fd0c28 - provider = provider.mso - description = - name = acctest_l789w - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c629a1d000095624fb9c9 - provider = provider.mso - name = acctest_dt4xf - template_name = acctest_dt4xf - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_l789w - provider = provider.mso - dhcp_policy.name = acctest_l789w - dhcp_policy.version = 0 - display_name = acctest_l789w - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_l789w - schema_id = 621c629a1d000095624fb9c9 - template_name = acctest_dt4xf - vrf_name = acctest_l789w - vrf_schema_id = 621c629a1d000095624fb9c9 - vrf_template_name = acctest_dt4xf - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c629a1d000095624fb9c9/templates/acctest_dt4xf/bds/acctest_l789w/dhcpLabels/acctest_l789w - provider = provider.mso - bd_name = acctest_l789w - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_l789w - schema_id = 621c629a1d000095624fb9c9 - template_name = acctest_dt4xf - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_l789w - provider = provider.mso - display_name = acctest_l789w - layer3_multicast = false - name = acctest_l789w - schema_id = 621c629a1d000095624fb9c9 - template = acctest_dt4xf - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:20:26 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:20:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:20:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:26 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:20:26 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:20:26 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:20:26 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:20:26 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:20:26 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:20:26 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:20:26 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:20:26 [DEBUG] Template BD: Beginning Update -2022/02/28 11:20:26 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:26 [DEBUG] Begin Injection -2022/02/28 11:20:26 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104080 5563 [] false false map[] 0xc000eacc00 0xc000d000b0} -2022/02/28 11:20:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:26 [DEBUG] Exit from do method -2022/02/28 11:20:26 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:26 [DEBUG] 621c62991d000080624fb9c7: Beginning Read -2022/02/28 11:20:26 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:26 [DEBUG] Begin Injection -2022/02/28 11:20:26 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:26 [DEBUG] 621c62a01b0000b108fd0c29: Beginning Read -2022/02/28 11:20:26 id: 621c62a01b0000b108fd0c29 -2022/02/28 11:20:26 HTTP request GET mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:26 [DEBUG] Begin Injection -2022/02/28 11:20:26 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:26 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read -2022/02/28 11:20:26 id: 621c62991b0000af08fd0c27 -2022/02/28 11:20:26 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:26 [DEBUG] Begin Injection -2022/02/28 11:20:26 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:26 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000511200 0xc000520210} -2022/02/28 11:20:26 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:26 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:20:26 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:20:26 [DEBUG] 621c629a1b0000aa08fd0c28: Beginning Read -2022/02/28 11:20:26 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:26 [DEBUG] Begin Injection -2022/02/28 11:20:26 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:26 [DEBUG] Template BD: Beginning Update -2022/02/28 11:20:26 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:26 [DEBUG] Begin Injection -2022/02/28 11:20:26 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012d6b00 1472 [] false false map[] 0xc000b74900 0xc000d000b0} -2022/02/28 11:20:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:20:26 [DEBUG] Exit from do method -2022/02/28 11:20:26 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully -2022/02/28 11:20:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:26 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:26 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:26 [DEBUG] Begin Injection -2022/02/28 11:20:26 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377800 161 [] false false map[] 0xc000eacd00 0xc0005200b0} -2022/02/28 11:20:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 {"id":"621c62a01b0000b108fd0c29","name":"acctest_qhr63","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:26 [DEBUG] Exit from do method -2022/02/28 11:20:26 [DEBUG] 621c62a01b0000b108fd0c29: Read finished successfully -2022/02/28 11:20:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377d80 160 [] false false map[] 0xc0018c6300 0xc000520210} -2022/02/28 11:20:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:26 [DEBUG] Exit from do method -2022/02/28 11:20:26 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully -2022/02/28 11:20:26 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000511600 0xc000d000b0} -2022/02/28 11:20:26 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c629a1b0000aa08fd0c28 -2022/02/28 11:20:26 [DEBUG] : Read finished successfully -2022/02/28 11:20:26 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ead200 0xc0005200b0} -2022/02/28 11:20:26 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:26 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:20:26 [DEBUG] acctest_l789w: Beginning Destroy -2022/02/28 11:20:26 HTTP request PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:26 [DEBUG] Begin Injection -2022/02/28 11:20:26 HTTP request after injection PATCH mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050a600 1472 [] false false map[] 0xc000ead800 0xc000520210} -2022/02/28 11:20:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:20:27 [DEBUG] Exit from do method -2022/02/28 11:20:27 currentvrfname acctest_0qbd3 -2022/02/28 11:20:27 found correct vrfname -2022/02/28 11:20:27 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:27 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:27 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:27 [DEBUG] Begin Injection -2022/02/28 11:20:27 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:27 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000b75100 0xc0005200b0} -2022/02/28 11:20:27 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9?validate=false -2022/02/28 11:20:27 [DEBUG] acctest_l789w: Destroy finished successfully -2022/02/28 11:20:27 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:20:27 [DEBUG] 621c629a1d000095624fb9c9: Beginning Destroy -2022/02/28 11:20:27 HTTP request DELETE mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:27 [DEBUG] Begin Injection -2022/02/28 11:20:27 HTTP request after injection DELETE mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a080 1472 [] false false map[] 0xc0018c6900 0xc000d00a50} -2022/02/28 11:20:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:20:27 [DEBUG] Exit from do method -2022/02/28 11:20:27 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:27 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Read -2022/02/28 11:20:27 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:27 [DEBUG] Begin Injection -2022/02/28 11:20:27 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:27 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000511f00 0xc0005200b0} -2022/02/28 11:20:27 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:27 [DEBUG] 621c629a1d000095624fb9c9: Destroy finished successfully -2022/02/28 11:20:27 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:27 [DEBUG] New state was assigned lineage "c904134d-dc5a-880a-3258-12829552715f" -2022/02/28 11:20:27 HTTP request GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:27 [DEBUG] Begin Injection -2022/02/28 11:20:27 HTTP request after injection GET mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001364ac0 1472 [] false false map[] 0xc000510c00 0xc0018c8000} -2022/02/28 11:20:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:20:27 [DEBUG] Exit from do method -2022/02/28 11:20:27 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully -2022/02/28 11:20:27 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:27 [DEBUG] New state was assigned lineage "c0826343-808c-df61-b7c8-5b2279c5712a" -2022/02/28 11:20:27 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:27 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:27 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:27 [DEBUG] Test: Executing step 6 -2022/02/28 11:20:27 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3\")" (*terraform.graphNodeImportState) needs provider.mso -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3\")" references: [] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:27 [DEBUG] Starting graph walk: walkImport -2022/02/28 11:20:27 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Import -2022/02/28 11:20:27 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:27 [DEBUG] Begin Injection -2022/02/28 11:20:27 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 -2022/02/28 11:20:27 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:27 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9ab00 39 [] false false map[] 0xc000510e00 0xc0005200b0} -2022/02/28 11:20:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c629a1d000095624fb9c9 {"code":404,"message":"Item not found"} -2022/02/28 11:20:27 [DEBUG] Exit from do method -2022/02/28 11:20:27 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:20:27 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:20:27 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:20:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:27 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:27 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:20:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:27 [DEBUG] : Beginning Read -2022/02/28 11:20:27 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:27 [DEBUG] Begin Injection -2022/02/28 11:20:27 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050b4c0 1472 [] false false map[] 0xc0004fc100 0xc0018c8000} -2022/02/28 11:20:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:20:28 [DEBUG] Exit from do method -2022/02/28 11:20:28 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Import finished successfully -2022/02/28 11:20:28 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Read -2022/02/28 11:20:28 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:28 [DEBUG] Begin Injection -2022/02/28 11:20:28 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377380 5563 [] false false map[] 0xc0004fce00 0xc0005200b0} -2022/02/28 11:20:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:28 [DEBUG] Exit from do method -2022/02/28 11:20:28 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:28 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:28 [DEBUG] New state was assigned lineage "fb3bba47-d618-ecd7-76e1-359e81b68138" -2022/02/28 11:20:28 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:20:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:20:28 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:20:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a040 1472 [] false false map[] 0xc000ead100 0xc0018c8000} -2022/02/28 11:20:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:20:28 [DEBUG] Exit from do method -2022/02/28 11:20:28 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully -2022/02/28 11:20:28 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:28 [DEBUG] New state was assigned lineage "89b276ec-ca63-1558-36bc-529c929eec52" -2022/02/28 11:20:28 [DEBUG] Test: Executing step 7 -2022/02/28 11:20:28 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:28 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:28 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:28 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:28 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config -2022/02/28 11:20:28 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config -2022/02/28 11:20:28 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:28 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:28 [DEBUG] : Beginning Read -2022/02/28 11:20:28 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:28 [DEBUG] Begin Injection -2022/02/28 11:20:28 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376a00 5563 [] false false map[] 0xc0016eee00 0xc0005200b0} -2022/02/28 11:20:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:28 [DEBUG] Exit from do method -2022/02/28 11:20:28 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:28 [DEBUG] 621c62991d000080624fb9c7: Beginning Read -2022/02/28 11:20:28 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read -2022/02/28 11:20:28 id: 621c62991b0000af08fd0c27 -2022/02/28 11:20:28 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:28 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:28 [DEBUG] Begin Injection -2022/02/28 11:20:28 [DEBUG] Begin Injection -2022/02/28 11:20:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:28 [DEBUG] 621c62a01b0000b108fd0c29: Beginning Read -2022/02/28 11:20:28 id: 621c62a01b0000b108fd0c29 -2022/02/28 11:20:28 HTTP request GET mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:28 [DEBUG] Begin Injection -2022/02/28 11:20:28 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:28 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc2780 161 [] false false map[] 0xc000510400 0xc000d000b0} -2022/02/28 11:20:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 {"id":"621c62a01b0000b108fd0c29","name":"acctest_qhr63","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:29 [DEBUG] Exit from do method -2022/02/28 11:20:29 [DEBUG] 621c62a01b0000b108fd0c29: Read finished successfully -2022/02/28 11:20:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000377f40 160 [] false false map[] 0xc0017b8100 0xc0005200b0} -2022/02/28 11:20:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:29 [DEBUG] Exit from do method -2022/02/28 11:20:29 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully -2022/02/28 11:20:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008824c0 1472 [] false false map[] 0xc0016ee500 0xc000d000b0} -2022/02/28 11:20:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:20:29 [DEBUG] Exit from do method -2022/02/28 11:20:29 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully -2022/02/28 11:20:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:29 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:29 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:29 [DEBUG] Begin Injection -2022/02/28 11:20:29 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d219c0 1472 [] false false map[] 0xc000510800 0xc000d000b0} -2022/02/28 11:20:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:20:29 [DEBUG] Exit from do method -2022/02/28 11:20:29 currentvrfname acctest_0qbd3 -2022/02/28 11:20:29 found correct vrfname -2022/02/28 11:20:29 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:29 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:29 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:29 [DEBUG] Begin Injection -2022/02/28 11:20:29 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000338b40 1472 [] false false map[] 0xc000eace00 0xc000d00840} -2022/02/28 11:20:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:20:30 [DEBUG] Exit from do method -2022/02/28 11:20:30 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:30 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Beginning Read -2022/02/28 11:20:30 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:30 [DEBUG] Begin Injection -2022/02/28 11:20:30 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001364040 1472 [] false false map[] 0xc000876300 0xc000d00840} -2022/02/28 11:20:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","dhcpLabel":{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_0qbd3","dhcpOptionLabel":{"name":"acctest_qhr63","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:20:30 [DEBUG] Exit from do method -2022/02/28 11:20:30 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3: Read finished successfully -2022/02/28 11:20:30 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:30 [DEBUG] New state was assigned lineage "846f9ea9-9bc5-be49-491c-2f1275290303" -2022/02/28 11:20:30 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:30 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:30 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:30 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.test - description: "" => "" - id: "621c62a01b0000b108fd0c29" => "" - name: "acctest_qhr63" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_0qbd3" => "" - dhcp_option_name: "acctest_qhr63" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3" => "" - name: "acctest_0qbd3" => "" - schema_id: "621c62991d000080624fb9c7" => "" - template_name: "acctest_g44b1" => "" - version: "1" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.test: - ID = 621c62a01b0000b108fd0c29 - provider = provider.mso - description = - name = acctest_qhr63 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c62991b0000af08fd0c27 - provider = provider.mso - description = - name = acctest_0qbd3 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c62991d000080624fb9c7 - provider = provider.mso - name = acctest_g44b1 - template_name = acctest_g44b1 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_0qbd3 - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_qhr63 - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_0qbd3 - dhcp_policy.version = 1 - display_name = acctest_0qbd3 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_0qbd3 - schema_id = 621c62991d000080624fb9c7 - template_name = acctest_g44b1 - vrf_name = acctest_0qbd3 - vrf_schema_id = 621c62991d000080624fb9c7 - vrf_template_name = acctest_g44b1 - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3/dhcpLabels/acctest_0qbd3 - provider = provider.mso - bd_name = acctest_0qbd3 - dhcp_option_name = acctest_qhr63 - dhcp_option_version = 1 - name = acctest_0qbd3 - schema_id = 621c62991d000080624fb9c7 - template_name = acctest_g44b1 - version = 1 - - Dependencies: - mso_dhcp_option_policy.test - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_0qbd3 - provider = provider.mso - display_name = acctest_0qbd3 - layer3_multicast = false - name = acctest_0qbd3 - schema_id = 621c62991d000080624fb9c7 - template = acctest_g44b1 - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:20:30 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:20:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] -2022/02/28 11:20:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:20:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:30 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:20:30 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:20:30 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:20:30 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:20:30 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:20:30 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:20:30 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:20:30 [DEBUG] Template BD: Beginning Update -2022/02/28 11:20:30 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:30 [DEBUG] Begin Injection -2022/02/28 11:20:30 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:30 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000eac800 0xc000d00840} -2022/02/28 11:20:30 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:30 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change -2022/02/28 11:20:30 [DEBUG] 621c62a01b0000b108fd0c29: Beginning Read -2022/02/28 11:20:30 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:30 [DEBUG] Begin Injection -2022/02/28 11:20:30 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:31 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000877c00 0xc000d00840} -2022/02/28 11:20:31 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62a01b0000b108fd0c29 -2022/02/28 11:20:31 [DEBUG] : Read finished successfully -2022/02/28 11:20:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:31 [DEBUG] New state was assigned lineage "91b33a37-903c-0c60-1ae2-ed13127431b1" -2022/02/28 11:20:31 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:31 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:31 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:31 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:31 [DEBUG] : Beginning Read -2022/02/28 11:20:31 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:31 [DEBUG] Begin Injection -2022/02/28 11:20:31 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d20140 5563 [] false false map[] 0xc000876500 0xc000d00840} -2022/02/28 11:20:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:31 [DEBUG] Exit from do method -2022/02/28 11:20:31 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:31 [DEBUG] 621c62991d000080624fb9c7: Beginning Read -2022/02/28 11:20:31 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:31 [DEBUG] Begin Injection -2022/02/28 11:20:31 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:31 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read -2022/02/28 11:20:31 id: 621c62991b0000af08fd0c27 -2022/02/28 11:20:31 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:31 [DEBUG] Begin Injection -2022/02/28 11:20:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d20780 1277 [] false false map[] 0xc000dec300 0xc000d00840} -2022/02/28 11:20:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:20:31 [DEBUG] Exit from do method -2022/02/28 11:20:31 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully -2022/02/28 11:20:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b0240 160 [] false false map[] 0xc000876e00 0xc0005200b0} -2022/02/28 11:20:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:31 [DEBUG] Exit from do method -2022/02/28 11:20:31 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully -2022/02/28 11:20:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:31 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:31 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:31 [DEBUG] Begin Injection -2022/02/28 11:20:31 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376ac0 1277 [] false false map[] 0xc000dec800 0xc0005200b0} -2022/02/28 11:20:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:20:32 [DEBUG] Exit from do method -2022/02/28 11:20:32 currentvrfname acctest_0qbd3 -2022/02/28 11:20:32 found correct vrfname -2022/02/28 11:20:32 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:32 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:32 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:32 [DEBUG] Begin Injection -2022/02/28 11:20:32 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba4080 1277 [] false false map[] 0xc000877300 0xc0005200b0} -2022/02/28 11:20:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:20:32 [DEBUG] Exit from do method -2022/02/28 11:20:32 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:32 [DEBUG] New state was assigned lineage "05971024-481f-bab8-3db2-3227fe1404eb" -2022/02/28 11:20:32 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:32 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:32 [DEBUG] Test: Executing step 8 -2022/02/28 11:20:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:32 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:32 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:32 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:32 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:32 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:32 [DEBUG] : Beginning Read -2022/02/28 11:20:32 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:32 [DEBUG] Begin Injection -2022/02/28 11:20:32 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001364b00 5563 [] false false map[] 0xc001b24f00 0xc0005200b0} -2022/02/28 11:20:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:33 [DEBUG] Exit from do method -2022/02/28 11:20:33 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:33 [DEBUG] 621c62991d000080624fb9c7: Beginning Read -2022/02/28 11:20:33 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:33 [DEBUG] Begin Injection -2022/02/28 11:20:33 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:33 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read -2022/02/28 11:20:33 id: 621c62991b0000af08fd0c27 -2022/02/28 11:20:33 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:33 [DEBUG] Begin Injection -2022/02/28 11:20:33 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d200c0 1277 [] false false map[] 0xc001b25400 0xc0005200b0} -2022/02/28 11:20:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:20:33 [DEBUG] Exit from do method -2022/02/28 11:20:33 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully -2022/02/28 11:20:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d207c0 160 [] false false map[] 0xc0017aa900 0xc000d00840} -2022/02/28 11:20:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 {"id":"621c62991b0000af08fd0c27","name":"acctest_0qbd3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:33 [DEBUG] Exit from do method -2022/02/28 11:20:33 [DEBUG] 621c62991b0000af08fd0c27: Read finished successfully -2022/02/28 11:20:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:33 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:33 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:33 [DEBUG] Begin Injection -2022/02/28 11:20:33 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00132e740 1277 [] false false map[] 0xc000510500 0xc000d00840} -2022/02/28 11:20:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:20:33 [DEBUG] Exit from do method -2022/02/28 11:20:33 currentvrfname acctest_0qbd3 -2022/02/28 11:20:33 found correct vrfname -2022/02/28 11:20:33 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:33 [DEBUG] acctest_0qbd3: Beginning Read -2022/02/28 11:20:33 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:33 [DEBUG] Begin Injection -2022/02/28 11:20:33 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104240 1277 [] false false map[] 0xc000510e00 0xc000d00840} -2022/02/28 11:20:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_0qbd3","displayName":"acctest_0qbd3","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_0qbd3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_0qbd3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:20:34 [DEBUG] Exit from do method -2022/02/28 11:20:34 [DEBUG] acctest_0qbd3: Read finished successfully -2022/02/28 11:20:34 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:34 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:34 [DEBUG] New state was assigned lineage "b37c3187-1881-f1bb-5ac8-3929105740ad" -2022/02/28 11:20:34 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:20:34 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:34 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:34 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:34 [WARN] Test: Step plan: DIFF: - -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c62991b0000af08fd0c27" => "" - name: "acctest_0qbd3" => "acctest_3hr40" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "acctest_0qbd3" => "acctest_3hr40" (forces new resource) - id: "acctest_0qbd3" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_0qbd3" => "acctest_3hr40" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c62991d000080624fb9c7" => "621c62991d000080624fb9c7" - template_name: "acctest_g44b1" => "acctest_g44b1" - vrf_name: "acctest_0qbd3" => "acctest_3hr40" - vrf_schema_id: "621c62991d000080624fb9c7" => "" - vrf_template_name: "acctest_g44b1" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_3hr40" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_3hr40" - schema_id: "" => "621c62991d000080624fb9c7" - template_name: "" => "acctest_g44b1" - version: "" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_0qbd3" => "acctest_3hr40" - id: "acctest_0qbd3" => "" - layer3_multicast: "false" => "" - name: "acctest_0qbd3" => "acctest_3hr40" (forces new resource) - schema_id: "621c62991d000080624fb9c7" => "621c62991d000080624fb9c7" - template: "acctest_g44b1" => "acctest_g44b1" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c62991b0000af08fd0c27 - provider = provider.mso - description = - name = acctest_0qbd3 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c62991d000080624fb9c7 - provider = provider.mso - name = acctest_g44b1 - template_name = acctest_g44b1 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_0qbd3 - provider = provider.mso - display_name = acctest_0qbd3 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_0qbd3 - schema_id = 621c62991d000080624fb9c7 - template_name = acctest_g44b1 - vrf_name = acctest_0qbd3 - vrf_schema_id = 621c62991d000080624fb9c7 - vrf_template_name = acctest_g44b1 - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_0qbd3 - provider = provider.mso - display_name = acctest_0qbd3 - layer3_multicast = false - name = acctest_0qbd3 - schema_id = 621c62991d000080624fb9c7 - template = acctest_g44b1 - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:20:34 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:20:34 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy)] -2022/02/28 11:20:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:20:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:34 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:20:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:20:34 [DEBUG] 621c62991b0000af08fd0c27: Beginning Read -2022/02/28 11:20:34 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:34 [DEBUG] Begin Injection -2022/02/28 11:20:34 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:34 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:20:34 [DEBUG] Template BD: Beginning Update -2022/02/28 11:20:34 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 [DEBUG] Begin Injection -2022/02/28 11:20:34 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000510600 0xc0005200b0} -2022/02/28 11:20:34 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0013a6700 0xc000d00840} -2022/02/28 11:20:34 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62991b0000af08fd0c27 -2022/02/28 11:20:34 [DEBUG] : Read finished successfully -2022/02/28 11:20:34 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:20:34 [DEBUG] acctest_0qbd3: Beginning Destroy -2022/02/28 11:20:34 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 [DEBUG] Begin Injection -2022/02/28 11:20:34 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:20:34 [DEBUG] : Beginning Create -2022/02/28 11:20:34 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:20:34 [DEBUG] Begin Injection -2022/02/28 11:20:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:20:34 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjE2LCJpYXQiOjE2NDYwMjc0MTYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoieXBJbWhIZkdhU2Z6cEJMVHpoeGk3bWhjIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.SuiYH75E0sIR_B3rASeVESnCGpAiI4yjH-KJboxZjDT0fUFPbzz7nW6i-Y3AyU7VWQPF33h7Pz8AUT6NsmqT6rzCrrv_zBYR7idkZFykjUxJ347c0w59WGDMCXNI2u65swmP6wtQSqvaeYdD2LhCEVmxudoQ3M8xVwCCcuMEOdfxOyiytjLBMArGkEjd7HMIslFVbrc-rP6D8g7BYPX3qJluE_CT_OhxQcTTWaIWJ79VeF9wrt2FHVYjxDOnNPgS5mUJ51BSZOHSo8uipJJPUOhRXxZAP3QX-vrjmTvxoUCztG2b4cjPBJ0_5tpeIgf_qvOrIblTQjzLssrZY45lSw] Content-Type:[application/json]] {{"desc":"","name":"acctest_3hr40","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xaf7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:20:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:20:34 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000cfa500 0xc000d00840} -2022/02/28 11:20:34 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 [DEBUG] acctest_0qbd3: Destroy finished successfully -2022/02/28 11:20:34 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:20:34 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:20:34 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 [DEBUG] Begin Injection -2022/02/28 11:20:34 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:34 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:20:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001428180 160 [] false false map[] 0xc001b24f00 0xc0005200b0} -2022/02/28 11:20:34 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c62aa1b0000c408fd0c2a","name":"acctest_3hr40","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:34 [DEBUG] Exit from do method -2022/02/28 11:20:34 [DEBUG] 621c62aa1b0000c408fd0c2a: Creation finished successfully -2022/02/28 11:20:34 [DEBUG] 621c62aa1b0000c408fd0c2a: Beginning Read -2022/02/28 11:20:34 id: 621c62aa1b0000c408fd0c2a -2022/02/28 11:20:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:34 [DEBUG] Begin Injection -2022/02/28 11:20:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:35 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0013a7900 0xc000d00840} -2022/02/28 11:20:35 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:35 [DEBUG] acctest_3hr40: Creation finished successfully -2022/02/28 11:20:35 [DEBUG] acctest_3hr40: Beginning Read -2022/02/28 11:20:35 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:35 [DEBUG] Begin Injection -2022/02/28 11:20:35 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc31c0 160 [] false false map[] 0xc000e2e000 0xc0005200b0} -2022/02/28 11:20:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a {"id":"621c62aa1b0000c408fd0c2a","name":"acctest_3hr40","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:35 [DEBUG] Exit from do method -2022/02/28 11:20:35 [DEBUG] 621c62aa1b0000c408fd0c2a: Read finished successfully -2022/02/28 11:20:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc2040 768 [] false false map[] 0xc0013a7b00 0xc000d00840} -2022/02/28 11:20:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 11:20:35 [DEBUG] Exit from do method -2022/02/28 11:20:35 currentvrfname acctest_3hr40 -2022/02/28 11:20:35 found correct vrfname -2022/02/28 11:20:35 [DEBUG] acctest_3hr40: Read finished successfully -2022/02/28 11:20:35 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:20:35 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:20:35 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:20:35 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:35 [DEBUG] Begin Injection -2022/02/28 11:20:35 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:35 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000e2e800 0xc000d00840} -2022/02/28 11:20:35 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:35 [DEBUG] : Beginning Read -2022/02/28 11:20:35 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:35 [DEBUG] Begin Injection -2022/02/28 11:20:35 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc2180 1278 [] false false map[] 0xc0013a6200 0xc000d00840} -2022/02/28 11:20:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 11:20:36 [DEBUG] Exit from do method -2022/02/28 11:20:36 [DEBUG] acctest_3hr40: Read finished successfully -2022/02/28 11:20:36 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:20:36 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:20:36 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:36 [DEBUG] Begin Injection -2022/02/28 11:20:36 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:36 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:36 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000510800 0xc000d00840} -2022/02/28 11:20:36 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:36 [DEBUG] Creation Complete -2022/02/28 11:20:36 [DEBUG] : Beginning Read -2022/02/28 11:20:36 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:36 [DEBUG] Begin Injection -2022/02/28 11:20:36 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d210c0 1363 [] false false map[] 0xc0013a6400 0xc000d00840} -2022/02/28 11:20:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:20:36 [DEBUG] Exit from do method -2022/02/28 11:20:36 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40: Read finished successfully -2022/02/28 11:20:36 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:36 [DEBUG] New state was assigned lineage "9a5f448f-8c81-0dc7-bcab-0c8f77915cac" -2022/02/28 11:20:36 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:36 [DEBUG] Begin Injection -2022/02/28 11:20:36 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050bb80 1363 [] false false map[] 0xc001b24000 0xc000d00840} -2022/02/28 11:20:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:20:37 [DEBUG] Exit from do method -2022/02/28 11:20:37 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:37 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:37 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:37 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:37 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:37 [DEBUG] : Beginning Read -2022/02/28 11:20:37 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:37 [DEBUG] Begin Injection -2022/02/28 11:20:37 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772440 5563 [] false false map[] 0xc000510600 0xc000d00840} -2022/02/28 11:20:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:37 [DEBUG] Exit from do method -2022/02/28 11:20:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:37 [DEBUG] 621c62991d000080624fb9c7: Beginning Read -2022/02/28 11:20:37 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:37 [DEBUG] Begin Injection -2022/02/28 11:20:37 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:37 [DEBUG] 621c62aa1b0000c408fd0c2a: Beginning Read -2022/02/28 11:20:37 id: 621c62aa1b0000c408fd0c2a -2022/02/28 11:20:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:37 [DEBUG] Begin Injection -2022/02/28 11:20:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014280c0 160 [] false false map[] 0xc000cd4a00 0xc0005200b0} -2022/02/28 11:20:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a {"id":"621c62aa1b0000c408fd0c2a","name":"acctest_3hr40","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:37 [DEBUG] Exit from do method -2022/02/28 11:20:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:37 [DEBUG] 621c62aa1b0000c408fd0c2a: Read finished successfully -2022/02/28 11:20:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b0500 1363 [] false false map[] 0xc000cd4700 0xc000d00840} -2022/02/28 11:20:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:20:37 [DEBUG] Exit from do method -2022/02/28 11:20:37 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully -2022/02/28 11:20:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:37 [DEBUG] acctest_3hr40: Beginning Read -2022/02/28 11:20:37 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:37 [DEBUG] Begin Injection -2022/02/28 11:20:37 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104180 1363 [] false false map[] 0xc001b24a00 0xc000d00840} -2022/02/28 11:20:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:20:38 [DEBUG] Exit from do method -2022/02/28 11:20:38 currentvrfname acctest_3hr40 -2022/02/28 11:20:38 found correct vrfname -2022/02/28 11:20:38 [DEBUG] acctest_3hr40: Read finished successfully -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:38 [DEBUG] acctest_3hr40: Beginning Read -2022/02/28 11:20:38 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:38 [DEBUG] Begin Injection -2022/02/28 11:20:38 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a0c0 1363 [] false false map[] 0xc000cd4400 0xc000d00840} -2022/02/28 11:20:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:20:38 [DEBUG] Exit from do method -2022/02/28 11:20:38 [DEBUG] acctest_3hr40: Read finished successfully -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:38 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40: Beginning Read -2022/02/28 11:20:38 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:38 [DEBUG] Begin Injection -2022/02/28 11:20:38 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000338280 1363 [] false false map[] 0xc001b24e00 0xc000d00840} -2022/02/28 11:20:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:20:38 [DEBUG] Exit from do method -2022/02/28 11:20:38 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40: Read finished successfully -2022/02/28 11:20:38 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:38 [DEBUG] New state was assigned lineage "ff9481f9-e9bf-f301-21ca-a9d4daac0b4d" -2022/02/28 11:20:38 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:20:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:20:38 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:38 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:38 [WARN] Test: Executing destroy step -2022/02/28 11:20:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:39 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:20:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:39 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:20:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:39 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:39 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:39 [DEBUG] : Beginning Read -2022/02/28 11:20:39 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:39 [DEBUG] Begin Injection -2022/02/28 11:20:39 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050a040 5563 [] false false map[] 0xc00056f000 0xc000d00840} -2022/02/28 11:20:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:39 [DEBUG] Exit from do method -2022/02/28 11:20:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:20:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:20:39 [DEBUG] 621c62aa1b0000c408fd0c2a: Beginning Read -2022/02/28 11:20:39 id: 621c62aa1b0000c408fd0c2a -2022/02/28 11:20:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:39 [DEBUG] Begin Injection -2022/02/28 11:20:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:39 [DEBUG] 621c62991d000080624fb9c7: Beginning Read -2022/02/28 11:20:39 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:39 [DEBUG] Begin Injection -2022/02/28 11:20:39 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba53c0 1363 [] false false map[] 0xc001b24b00 0xc0005200b0} -2022/02/28 11:20:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:20:40 [DEBUG] Exit from do method -2022/02/28 11:20:40 [DEBUG] 621c62991d000080624fb9c7: Read finished successfully -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:20:40 [DEBUG] acctest_3hr40: Beginning Read -2022/02/28 11:20:40 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 [DEBUG] Begin Injection -2022/02/28 11:20:40 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772340 160 [] false false map[] 0xc001b24a00 0xc000d00840} -2022/02/28 11:20:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a {"id":"621c62aa1b0000c408fd0c2a","name":"acctest_3hr40","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:20:40 [DEBUG] Exit from do method -2022/02/28 11:20:40 [DEBUG] 621c62aa1b0000c408fd0c2a: Read finished successfully -2022/02/28 11:20:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000882440 1363 [] false false map[] 0xc00056e500 0xc0005200b0} -2022/02/28 11:20:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:20:40 [DEBUG] Exit from do method -2022/02/28 11:20:40 currentvrfname acctest_3hr40 -2022/02/28 11:20:40 found correct vrfname -2022/02/28 11:20:40 [DEBUG] acctest_3hr40: Read finished successfully -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:20:40 [DEBUG] acctest_3hr40: Beginning Read -2022/02/28 11:20:40 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 [DEBUG] Begin Injection -2022/02/28 11:20:40 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ba5a40 1363 [] false false map[] 0xc000510500 0xc0005200b0} -2022/02/28 11:20:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:20:40 [DEBUG] Exit from do method -2022/02/28 11:20:40 [DEBUG] acctest_3hr40: Read finished successfully -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:20:40 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40: Beginning Read -2022/02/28 11:20:40 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 [DEBUG] Begin Injection -2022/02/28 11:20:40 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c9a5c0 1363 [] false false map[] 0xc001b25000 0xc0005200b0} -2022/02/28 11:20:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"id":"621c62991d000080624fb9c7","displayName":"acctest_g44b1","description":"","templates":[{"name":"acctest_g44b1","displayName":"acctest_g44b1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_3hr40","displayName":"acctest_3hr40","bdRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/vrfs/acctest_3hr40","dhcpLabel":{"name":"acctest_3hr40","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_3hr40","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:20:40 [DEBUG] Exit from do method -2022/02/28 11:20:40 [DEBUG] /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40: Read finished successfully -2022/02/28 11:20:40 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:40 [DEBUG] New state was assigned lineage "0acad888-65b5-fbb6-bb9b-28b4cd209405" -2022/02/28 11:20:40 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:20:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:20:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:40 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:20:41 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c62aa1b0000c408fd0c2a" => "" - name: "acctest_3hr40" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c62991d000080624fb9c7" => "" - name: "acctest_g44b1" => "" - template_name: "acctest_g44b1" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_3hr40" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_3hr40" => "" - id: "acctest_3hr40" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_3hr40" => "" - schema_id: "621c62991d000080624fb9c7" => "" - template_name: "acctest_g44b1" => "" - vrf_name: "acctest_3hr40" => "" - vrf_schema_id: "621c62991d000080624fb9c7" => "" - vrf_template_name: "acctest_g44b1" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_3hr40" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40" => "" - name: "acctest_3hr40" => "" - schema_id: "621c62991d000080624fb9c7" => "" - template_name: "acctest_g44b1" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_3hr40" => "" - id: "acctest_3hr40" => "" - layer3_multicast: "false" => "" - name: "acctest_3hr40" => "" - schema_id: "621c62991d000080624fb9c7" => "" - template: "acctest_g44b1" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c62aa1b0000c408fd0c2a - provider = provider.mso - description = - name = acctest_3hr40 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c62991d000080624fb9c7 - provider = provider.mso - name = acctest_g44b1 - template_name = acctest_g44b1 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_3hr40 - provider = provider.mso - dhcp_policy.name = acctest_3hr40 - dhcp_policy.version = 0 - display_name = acctest_3hr40 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_3hr40 - schema_id = 621c62991d000080624fb9c7 - template_name = acctest_g44b1 - vrf_name = acctest_3hr40 - vrf_schema_id = 621c62991d000080624fb9c7 - vrf_template_name = acctest_g44b1 - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c62991d000080624fb9c7/templates/acctest_g44b1/bds/acctest_3hr40/dhcpLabels/acctest_3hr40 - provider = provider.mso - bd_name = acctest_3hr40 - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_3hr40 - schema_id = 621c62991d000080624fb9c7 - template_name = acctest_g44b1 - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_3hr40 - provider = provider.mso - display_name = acctest_3hr40 - layer3_multicast = false - name = acctest_3hr40 - schema_id = 621c62991d000080624fb9c7 - template = acctest_g44b1 - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:20:41 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:20:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:20:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:20:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:20:41 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:20:41 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:20:41 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:20:41 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:20:41 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:20:41 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:20:41 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:20:41 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:20:41 [DEBUG] Template BD: Beginning Update -2022/02/28 11:20:41 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 [DEBUG] Begin Injection -2022/02/28 11:20:41 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001b24700 0xc0005200b0} -2022/02/28 11:20:41 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:20:41 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:20:41 [DEBUG] 621c62aa1b0000c408fd0c2a: Beginning Read -2022/02/28 11:20:41 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:41 [DEBUG] Begin Injection -2022/02/28 11:20:41 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:41 [DEBUG] Template BD: Beginning Update -2022/02/28 11:20:41 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 [DEBUG] Begin Injection -2022/02/28 11:20:41 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000511000 0xc000d00840} -2022/02/28 11:20:41 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:20:41 [DEBUG] acctest_3hr40: Beginning Destroy -2022/02/28 11:20:41 HTTP request PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 [DEBUG] Begin Injection -2022/02/28 11:20:41 HTTP request after injection PATCH mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:41 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00056e300 0xc0005200b0} -2022/02/28 11:20:41 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62aa1b0000c408fd0c2a -2022/02/28 11:20:41 [DEBUG] : Read finished successfully -2022/02/28 11:20:42 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00137c400 0xc000d00840} -2022/02/28 11:20:42 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7?validate=false -2022/02/28 11:20:42 [DEBUG] acctest_3hr40: Destroy finished successfully -2022/02/28 11:20:42 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:20:42 [DEBUG] 621c62991d000080624fb9c7: Beginning Destroy -2022/02/28 11:20:42 HTTP request DELETE mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:42 [DEBUG] Begin Injection -2022/02/28 11:20:42 HTTP request after injection DELETE mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:42 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:50:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00137cc00 0xc000d00840} -2022/02/28 11:20:42 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:42 [DEBUG] 621c62991d000080624fb9c7: Destroy finished successfully -2022/02/28 11:20:42 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:42 [DEBUG] New state was assigned lineage "d87086ec-cf34-01d4-38f5-3ea2fe0cfe4d" -2022/02/28 11:20:42 HTTP request GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:42 [DEBUG] Begin Injection -2022/02/28 11:20:42 HTTP request after injection GET mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 -2022/02/28 11:20:42 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:42 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001104040 39 [] false false map[] 0xc000511400 0xc000d00840} -2022/02/28 11:20:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62991d000080624fb9c7 {"code":404,"message":"Item not found"} -2022/02/28 11:20:42 [DEBUG] Exit from do method -2022/02/28 11:20:42 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:20:42 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:20:42 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:20:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:20:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:20:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:42 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:20:42 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:20:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:42 [DEBUG] : Beginning Read -2022/02/28 11:20:42 HTTP request GET mso/api/v1/tenants -2022/02/28 11:20:42 [DEBUG] Begin Injection -2022/02/28 11:20:42 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:20:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:20:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:50:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000376040 5563 [] false false map[] 0xc001b25c00 0xc000d00840} -2022/02/28 11:20:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:20:43 [DEBUG] Exit from do method -2022/02/28 11:20:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:20:43 [DEBUG] provider has no plugin.Client -2022/02/28 11:20:43 [DEBUG] New state was assigned lineage "cddec7eb-b283-1a29-e66b-372df14ce7ec" -2022/02/28 11:20:43 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:20:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:20:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:20:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) -2022/02/28 11:20:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:20:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:20:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:20:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:20:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:20:43 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:21:01 [DEBUG] Test: Executing step 0 -2022/02/28 11:21:01 [DEBUG] Test: Executing step 0 -2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:21:01 [DEBUG] Test: Executing step 1 -2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:01 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:01 [DEBUG] : Beginning Read -2022/02/28 11:21:01 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:01 [DEBUG] Begin Injection -2022/02/28 11:21:01 HTTP request POST /login -2022/02/28 11:21:01 HTTP request after injection POST /login -2022/02/28 11:21:01 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:21:01 [DEBUG] Test: Executing step 2 -2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:21:01 [DEBUG] Test: Executing step 3 -2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:21:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:21:01 [DEBUG] Test: Executing step 4 -2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:01 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:01 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:01 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:21:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:01 [DEBUG] : Beginning Read -2022/02/28 11:21:01 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:01 [DEBUG] Begin Injection -2022/02/28 11:21:01 HTTP request POST /login -2022/02/28 11:21:01 HTTP request after injection POST /login -2022/02/28 11:21:01 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:21:03 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:21:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:03 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0x3OXVVaXdDSHlERlRoWlVLaXJxTnQwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.lBgh_RRUHHkbGWvWW1Z-fvNYAiHpvDxyf6CfTf7ZISgDCnI7wnfOyx0_gsAPL-TUvgNjFC8naZIEGip9M3EyfXLZcaXryh-mjVR64-hnEhyrpCcvO2idmA7tPLi3jsBl1RbsZanXcuaS95zmfnl_oBxS_IRpMX8JDEA7XWH5riUZq9hiFnenDN3ZH8RH5wnxdSUdzvBnXlZjuA9dgcYxUX1zwd-Q19A1m5ICOpHh2tZnwZITqrK0-e5x6-rpmj5wqtxNS89p0Yfpc75zc2nBtEOJFQXlTIN8ivb_na1E0P8-r8m-Tx6aaXPsVQzccWgssfY9LcAdWQmSSp-nWm6gMw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00036ea40 -1 [chunked] false false map[] 0xc00032f200 0xc000b6e000} -2022/02/28 11:21:03 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0x3OXVVaXdDSHlERlRoWlVLaXJxTnQwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.lBgh_RRUHHkbGWvWW1Z-fvNYAiHpvDxyf6CfTf7ZISgDCnI7wnfOyx0_gsAPL-TUvgNjFC8naZIEGip9M3EyfXLZcaXryh-mjVR64-hnEhyrpCcvO2idmA7tPLi3jsBl1RbsZanXcuaS95zmfnl_oBxS_IRpMX8JDEA7XWH5riUZq9hiFnenDN3ZH8RH5wnxdSUdzvBnXlZjuA9dgcYxUX1zwd-Q19A1m5ICOpHh2tZnwZITqrK0-e5x6-rpmj5wqtxNS89p0Yfpc75zc2nBtEOJFQXlTIN8ivb_na1E0P8-r8m-Tx6aaXPsVQzccWgssfY9LcAdWQmSSp-nWm6gMw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ0x3OXVVaXdDSHlERlRoWlVLaXJxTnQwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.lBgh_RRUHHkbGWvWW1Z-fvNYAiHpvDxyf6CfTf7ZISgDCnI7wnfOyx0_gsAPL-TUvgNjFC8naZIEGip9M3EyfXLZcaXryh-mjVR64-hnEhyrpCcvO2idmA7tPLi3jsBl1RbsZanXcuaS95zmfnl_oBxS_IRpMX8JDEA7XWH5riUZq9hiFnenDN3ZH8RH5wnxdSUdzvBnXlZjuA9dgcYxUX1zwd-Q19A1m5ICOpHh2tZnwZITqrK0-e5x6-rpmj5wqtxNS89p0Yfpc75zc2nBtEOJFQXlTIN8ivb_na1E0P8-r8m-Tx6aaXPsVQzccWgssfY9LcAdWQmSSp-nWm6gMw"} -2022/02/28 11:21:03 [DEBUG] Exit from do method -2022/02/28 11:21:03 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:03 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:21:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:03 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000b84240 -1 [chunked] false false map[] 0xc000f7e600 0xc000272000} -2022/02/28 11:21:03 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg"} -2022/02/28 11:21:03 [DEBUG] Exit from do method -2022/02/28 11:21:03 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036ec40 5563 [] false false map[] 0xc000f7e500 0xc000272000} -2022/02/28 11:21:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:03 [DEBUG] Exit from do method -2022/02/28 11:21:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:03 [DEBUG] New state was assigned lineage "5b4ad76b-d17a-e444-81a5-23f892e610a8" -2022/02/28 11:21:03 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:21:03 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b84080 5563 [] false false map[] 0xc00032f100 0xc000b6e000} -2022/02/28 11:21:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:03 [DEBUG] Exit from do method -2022/02/28 11:21:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:03 [DEBUG] New state was assigned lineage "f6654e98-4454-b767-1b83-cb3f94e2c6f0" -2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:03 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:21:03 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:03 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_u6xd0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_sy1l1" - template_name: "" => "acctest_sy1l1" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_u6xd0" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_u6xd0" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_sy1l1" - vrf_name: "" => "acctest_u6xd0" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_u6xd0" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_u6xd0" - schema_id: "" => "" - template_name: "" => "acctest_sy1l1" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_u6xd0" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_u6xd0" - schema_id: "" => "" - template: "" => "acctest_sy1l1" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:21:03 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:21:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:21:03 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:03 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:21:03 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:21:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:03 [DEBUG] Schema: Beginning Creation -2022/02/28 11:21:03 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_603zk" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_cn2xx" - template_name: "" => "acctest_cn2xx" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_603zk" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_603zk" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_cn2xx" - vrf_name: "" => "acctest_603zk" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_603zk_invalid" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_603zk" - schema_id: "" => "" - template_name: "" => "acctest_cn2xx" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_603zk" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_603zk" - schema_id: "" => "" - template: "" => "acctest_cn2xx" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:21:03 [DEBUG] : Beginning Create -2022/02/28 11:21:03 HTTP request POST mso/api/v1/schemas -2022/02/28 11:21:03 [DEBUG] Begin Injection -2022/02/28 11:21:03 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:21:03 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:21:03 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg] Content-Type:[application/json]] {{"displayName":"acctest_sy1l1","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_sy1l1","externalEpgs":[],"filters":[],"name":"acctest_sy1l1","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xc77ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:21:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:21:03 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:21:03 [DEBUG] Begin Injection -2022/02/28 11:21:03 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:21:03 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg] Content-Type:[application/json]] {{"desc":"","name":"acctest_u6xd0","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xc77ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:21:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:03 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:21:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state)] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:21:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:21:03 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:21:03 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:21:03 [DEBUG] Schema: Beginning Creation -2022/02/28 11:21:03 HTTP request POST mso/api/v1/schemas -2022/02/28 11:21:03 [DEBUG] Begin Injection -2022/02/28 11:21:03 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:21:03 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg] Content-Type:[application/json]] {{"displayName":"acctest_cn2xx","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_cn2xx","externalEpgs":[],"filters":[],"name":"acctest_cn2xx","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xc77ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:21:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:21:03 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:21:03 [DEBUG] : Beginning Create -2022/02/28 11:21:03 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:21:03 [DEBUG] Begin Injection -2022/02/28 11:21:03 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:21:03 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg] Content-Type:[application/json]] {{"desc":"","name":"acctest_603zk","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xc77ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:21:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:21:04 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:21:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6a40 160 [] false false map[] 0xc000d0a900 0xc000272000} -2022/02/28 11:21:04 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:04 [DEBUG] Exit from do method -2022/02/28 11:21:04 [DEBUG] 621c62c71b0000c408fd0c2b: Creation finished successfully -2022/02/28 11:21:04 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read -2022/02/28 11:21:04 id: 621c62c71b0000c408fd0c2b -2022/02/28 11:21:04 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:04 [DEBUG] Begin Injection -2022/02/28 11:21:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:04 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:21:04 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c62c71d000094624fb9de] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b84180 400 [] false false map[] 0xc000512100 0xc000b6e000} -2022/02/28 11:21:04 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:21:04 [DEBUG] Exit from do method -2022/02/28 11:21:04 [DEBUG] 621c62c71d000094624fb9de: Schema Creation finished successfully -2022/02/28 11:21:04 [DEBUG] 621c62c71d000094624fb9de: Beginning Read -2022/02/28 11:21:04 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:04 [DEBUG] Begin Injection -2022/02/28 11:21:04 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:04 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:21:04 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c62c81d000094624fb9e0] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036e640 400 [] false false map[] 0xc000accd00 0xc000272000} -2022/02/28 11:21:04 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:21:04 [DEBUG] Exit from do method -2022/02/28 11:21:04 [DEBUG] 621c62c81d000094624fb9e0: Schema Creation finished successfully -2022/02/28 11:21:04 [DEBUG] 621c62c81d000094624fb9e0: Beginning Read -2022/02/28 11:21:04 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:04 [DEBUG] Begin Injection -2022/02/28 11:21:04 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:04 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:21:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036e940 160 [] false false map[] 0xc000513400 0xc000b6e000} -2022/02/28 11:21:04 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c62c81b0000aa08fd0c2c","name":"acctest_603zk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:04 [DEBUG] Exit from do method -2022/02/28 11:21:04 [DEBUG] 621c62c81b0000aa08fd0c2c: Creation finished successfully -2022/02/28 11:21:04 [DEBUG] 621c62c81b0000aa08fd0c2c: Beginning Read -2022/02/28 11:21:04 id: 621c62c81b0000aa08fd0c2c -2022/02/28 11:21:04 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:04 [DEBUG] Begin Injection -2022/02/28 11:21:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:04 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036ec00 160 [] false false map[] 0xc000d0a400 0xc000272000} -2022/02/28 11:21:04 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:04 [DEBUG] Exit from do method -2022/02/28 11:21:04 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully -2022/02/28 11:21:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036ecc0 160 [] false false map[] 0xc0013d4100 0xc000b6e000} -2022/02/28 11:21:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c {"id":"621c62c81b0000aa08fd0c2c","name":"acctest_603zk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b84500 400 [] false false map[] 0xc0013d4000 0xc0003f14a0} -2022/02/28 11:21:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:05 [DEBUG] Exit from do method -2022/02/28 11:21:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:21:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090c00 400 [] false false map[] 0xc000d0a500 0xc000786000} -2022/02/28 11:21:05 [DEBUG] Exit from do method -2022/02/28 11:21:05 [DEBUG] 621c62c81d000094624fb9e0: Read finished successfully -2022/02/28 11:21:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:21:05 [DEBUG] Exit from do method -2022/02/28 11:21:05 [DEBUG] 621c62c81b0000aa08fd0c2c: Read finished successfully -2022/02/28 11:21:05 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully -2022/02/28 11:21:05 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:21:05 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:21:05 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:21:05 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:21:05 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:05 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:05 [DEBUG] Begin Injection -2022/02/28 11:21:05 [DEBUG] Begin Injection -2022/02/28 11:21:05 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:05 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:05 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:05 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c7c800 0xc0002720b0} -2022/02/28 11:21:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d0ae00 0xc000272000} -2022/02/28 11:21:05 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:05 [DEBUG] acctest_u6xd0: Creation finished successfully -2022/02/28 11:21:05 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:05 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:05 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:05 [DEBUG] Begin Injection -2022/02/28 11:21:05 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:05 [DEBUG] acctest_603zk: Creation finished successfully -2022/02/28 11:21:05 [DEBUG] acctest_603zk: Beginning Read -2022/02/28 11:21:05 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:05 [DEBUG] Begin Injection -2022/02/28 11:21:05 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090640 768 [] false false map[] 0xc000acc000 0xc000272000} -2022/02/28 11:21:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ce2100 768 [] false false map[] 0xc000f7e200 0xc000272160} -2022/02/28 11:21:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:21:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:21:05 [DEBUG] Exit from do method -2022/02/28 11:21:05 [DEBUG] Exit from do method -2022/02/28 11:21:05 currentvrfname acctest_u6xd0 -2022/02/28 11:21:05 found correct vrfname -2022/02/28 11:21:05 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:05 currentvrfname acctest_603zk -2022/02/28 11:21:05 found correct vrfname -2022/02/28 11:21:05 [DEBUG] acctest_603zk: Read finished successfully -2022/02/28 11:21:05 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:21:05 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:21:05 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:21:05 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:21:05 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:05 [DEBUG] Begin Injection -2022/02/28 11:21:05 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:05 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:21:05 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:21:05 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:05 [DEBUG] Begin Injection -2022/02/28 11:21:05 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:06 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0013d4800 0xc000272160} -2022/02/28 11:21:06 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:06 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:06 [DEBUG] : Beginning Read -2022/02/28 11:21:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c7d000 0xc000272000} -2022/02/28 11:21:06 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:06 [DEBUG] : Beginning Read -2022/02/28 11:21:06 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:06 [DEBUG] Begin Injection -2022/02/28 11:21:06 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:06 [DEBUG] Begin Injection -2022/02/28 11:21:06 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:06 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000654240 1277 [] false false map[] 0xc000c7d300 0xc000272160} -2022/02/28 11:21:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036e640 1277 [] false false map[] 0xc000512700 0xc000272000} -2022/02/28 11:21:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:21:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:21:07 [DEBUG] Exit from do method -2022/02/28 11:21:07 [DEBUG] Exit from do method -2022/02/28 11:21:07 [DEBUG] acctest_603zk: Read finished successfully -2022/02/28 11:21:07 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:07 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:21:07 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:21:07 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:21:07 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:07 [DEBUG] Begin Injection -2022/02/28 11:21:07 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:07 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:21:07 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:07 [DEBUG] Begin Injection -2022/02/28 11:21:07 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:08 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:08 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[112] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:07 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc0001e79c0 112 [] false false map[] 0xc000c7c100 0xc000272160} -2022/02/28 11:21:08 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false {"code":141,"message":"Resource Not Found: Bd with name acctest_603zk_invalid not found in List(acctest_603zk)"} -2022/02/28 11:21:08 [DEBUG] Exit from do method -2022/02/28 11:21:08 [DEBUG] mso_schema_template_bd_dhcp_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Resource Not Found: Bd with name acctest_603zk_invalid not found in List(acctest_603zk)"{} -2022/02/28 11:21:08 [ERROR] : eval: *terraform.EvalApplyPost, err: "Resource Not Found: Bd with name acctest_603zk_invalid not found in List(acctest_603zk)"{} -2022/02/28 11:21:08 [ERROR] : eval: *terraform.EvalSequence, err: "Resource Not Found: Bd with name acctest_603zk_invalid not found in List(acctest_603zk)"{} -2022/02/28 11:21:08 [DEBUG] New state was assigned lineage "743441ba-b402-7e7a-facf-b0b4db47dbf0" -2022/02/28 11:21:08 [DEBUG] Test: Executing step 1 -2022/02/28 11:21:08 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:08 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f7e900 0xc000272000} -2022/02/28 11:21:08 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:08 [DEBUG] Creation Complete -2022/02/28 11:21:08 [DEBUG] : Beginning Read -2022/02/28 11:21:08 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:08 [DEBUG] Begin Injection -2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:08 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:08 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:08 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "dsqmm" is not expected here. -2022/02/28 11:21:08 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "dsqmm" is not expected here. -2022/02/28 11:21:08 [DEBUG] Test: Executing step 2 -2022/02/28 11:21:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:08 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:08 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:08 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:08 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:08 [DEBUG] : Beginning Read -2022/02/28 11:21:08 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:08 [DEBUG] Begin Injection -2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c180 1362 [] false false map[] 0xc000c7c300 0xc000272000} -2022/02/28 11:21:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:08 [DEBUG] Exit from do method -2022/02/28 11:21:08 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully -2022/02/28 11:21:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:08 [DEBUG] New state was assigned lineage "000edbe9-7335-3888-68a1-0fb69c7ba357" -2022/02/28 11:21:08 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:08 [DEBUG] Begin Injection -2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7700 5563 [] false false map[] 0xc000512e00 0xc000272160} -2022/02/28 11:21:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:08 [DEBUG] Exit from do method -2022/02/28 11:21:08 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:08 [DEBUG] 621c62c81b0000aa08fd0c2c: Beginning Read -2022/02/28 11:21:08 [DEBUG] 621c62c81d000094624fb9e0: Beginning Read -2022/02/28 11:21:08 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:08 [DEBUG] Begin Injection -2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:08 id: 621c62c81b0000aa08fd0c2c -2022/02/28 11:21:08 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:08 [DEBUG] Begin Injection -2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000906c0 1362 [] false false map[] 0xc000512f00 0xc000272000} -2022/02/28 11:21:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:08 [DEBUG] Exit from do method -2022/02/28 11:21:08 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:08 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:08 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:08 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:08 [DEBUG] : Beginning Read -2022/02/28 11:21:08 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:08 [DEBUG] Begin Injection -2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000654800 1277 [] false false map[] 0xc000c7c100 0xc000272160} -2022/02/28 11:21:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:21:08 [DEBUG] Exit from do method -2022/02/28 11:21:08 [DEBUG] 621c62c81d000094624fb9e0: Read finished successfully -2022/02/28 11:21:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:08 [DEBUG] acctest_603zk: Beginning Read -2022/02/28 11:21:08 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:08 [DEBUG] Begin Injection -2022/02/28 11:21:08 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a9a00 160 [] false false map[] 0xc000d0a700 0xc000272000} -2022/02/28 11:21:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c {"id":"621c62c81b0000aa08fd0c2c","name":"acctest_603zk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:09 [DEBUG] Exit from do method -2022/02/28 11:21:09 [DEBUG] 621c62c81b0000aa08fd0c2c: Read finished successfully -2022/02/28 11:21:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a9e80 5563 [] false false map[] 0xc000d0a100 0xc000272160} -2022/02/28 11:21:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:09 [DEBUG] Exit from do method -2022/02/28 11:21:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:09 [DEBUG] 621c62c71d000094624fb9de: Beginning Read -2022/02/28 11:21:09 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:09 [DEBUG] Begin Injection -2022/02/28 11:21:09 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:09 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read -2022/02/28 11:21:09 id: 621c62c71b0000c408fd0c2b -2022/02/28 11:21:09 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:09 [DEBUG] Begin Injection -2022/02/28 11:21:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036ed00 1277 [] false false map[] 0xc00032e700 0xc000272000} -2022/02/28 11:21:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:21:09 [DEBUG] Exit from do method -2022/02/28 11:21:09 currentvrfname acctest_603zk -2022/02/28 11:21:09 found correct vrfname -2022/02/28 11:21:09 [DEBUG] acctest_603zk: Read finished successfully -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:09 [DEBUG] acctest_603zk: Beginning Read -2022/02/28 11:21:09 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:09 [DEBUG] Begin Injection -2022/02/28 11:21:09 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f880 1362 [] false false map[] 0xc00032f200 0xc000272160} -2022/02/28 11:21:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:09 [DEBUG] Exit from do method -2022/02/28 11:21:09 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:09 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:09 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:09 [DEBUG] Begin Injection -2022/02/28 11:21:09 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000994340 160 [] false false map[] 0xc000f7e300 0xc0003f1d90} -2022/02/28 11:21:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:09 [DEBUG] Exit from do method -2022/02/28 11:21:09 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully -2022/02/28 11:21:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013a1c80 1277 [] false false map[] 0xc000f7f100 0xc000272000} -2022/02/28 11:21:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:21:09 [DEBUG] Exit from do method -2022/02/28 11:21:09 [DEBUG] acctest_603zk: Read finished successfully -2022/02/28 11:21:09 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:09 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:09 [DEBUG] New state was assigned lineage "a209a0c8-c0fa-6a3b-6c24-7c0f36656b4d" -2022/02/28 11:21:09 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:09 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:09 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:09 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:09 [WARN] Test: Step plan: DIFF: - -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_603zk" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_603zk" - schema_id: "" => "621c62c81d000094624fb9e0" - template_name: "" => "acctest_cn2xx" - version: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c62c81b0000aa08fd0c2c - provider = provider.mso - description = - name = acctest_603zk - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c62c81d000094624fb9e0 - provider = provider.mso - name = acctest_cn2xx - template_name = acctest_cn2xx - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_603zk - provider = provider.mso - display_name = acctest_603zk - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_603zk - schema_id = 621c62c81d000094624fb9e0 - template_name = acctest_cn2xx - vrf_name = acctest_603zk - vrf_schema_id = 621c62c81d000094624fb9e0 - vrf_template_name = acctest_cn2xx - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_603zk - provider = provider.mso - display_name = acctest_603zk - layer3_multicast = false - name = acctest_603zk - schema_id = 621c62c81d000094624fb9e0 - template = acctest_cn2xx - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:21:09 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:21:09 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:21:09 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:21:09 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:21:09 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:21:09 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:09 [DEBUG] Begin Injection -2022/02/28 11:21:09 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086d6c0 1362 [] false false map[] 0xc000512900 0xc000272160} -2022/02/28 11:21:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:09 [DEBUG] Exit from do method -2022/02/28 11:21:09 currentvrfname acctest_u6xd0 -2022/02/28 11:21:09 found correct vrfname -2022/02/28 11:21:09 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:09 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:09 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:09 [DEBUG] Begin Injection -2022/02/28 11:21:09 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:10 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00032e800 0xc000908000} -2022/02/28 11:21:10 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:10 [DEBUG] Creation Complete -2022/02/28 11:21:10 [DEBUG] : Beginning Read -2022/02/28 11:21:10 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:10 [DEBUG] Begin Injection -2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e400 1362 [] false false map[] 0xc00032f400 0xc000272160} -2022/02/28 11:21:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:10 [DEBUG] Exit from do method -2022/02/28 11:21:10 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:10 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Read -2022/02/28 11:21:10 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:10 [DEBUG] Begin Injection -2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000916c0 1362 [] false false map[] 0xc00032f500 0xc000b6e000} -2022/02/28 11:21:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:10 [DEBUG] Exit from do method -2022/02/28 11:21:10 [DEBUG] /schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk: Read finished successfully -2022/02/28 11:21:10 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:10 [DEBUG] New state was assigned lineage "243953e0-6cac-cb3f-f896-fdaddbe52c34" -2022/02/28 11:21:10 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:10 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:10 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:10 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:10 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:10 [DEBUG] : Beginning Read -2022/02/28 11:21:10 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:10 [DEBUG] Begin Injection -2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086dcc0 1362 [] false false map[] 0xc000d0a600 0xc000272160} -2022/02/28 11:21:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:10 [DEBUG] Exit from do method -2022/02/28 11:21:10 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully -2022/02/28 11:21:10 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:10 [DEBUG] New state was assigned lineage "cb1da283-e7d6-044f-5599-1c3345d78ca1" -2022/02/28 11:21:10 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:10 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:10 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:10 [DEBUG] Test: Executing step 5 -2022/02/28 11:21:10 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:10 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:10 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:10 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:10 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:10 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:10 [DEBUG] : Beginning Read -2022/02/28 11:21:10 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:10 [DEBUG] Begin Injection -2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086c200 5563 [] false false map[] 0xc000512100 0xc000b6e000} -2022/02/28 11:21:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:10 [DEBUG] Exit from do method -2022/02/28 11:21:10 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:10 [DEBUG] 621c62c81d000094624fb9e0: Beginning Read -2022/02/28 11:21:10 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:10 [DEBUG] Begin Injection -2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:10 [DEBUG] 621c62c81b0000aa08fd0c2c: Beginning Read -2022/02/28 11:21:10 id: 621c62c81b0000aa08fd0c2c -2022/02/28 11:21:10 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:10 [DEBUG] Begin Injection -2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086d180 5563 [] false false map[] 0xc000cb5300 0xc000272160} -2022/02/28 11:21:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:10 [DEBUG] Exit from do method -2022/02/28 11:21:10 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:10 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:21:10 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:21:10 [DEBUG] 621c62c71d000094624fb9de: Beginning Read -2022/02/28 11:21:10 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:10 [DEBUG] Begin Injection -2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:10 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read -2022/02/28 11:21:10 id: 621c62c71b0000c408fd0c2b -2022/02/28 11:21:10 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:10 [DEBUG] Begin Injection -2022/02/28 11:21:10 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086db00 1362 [] false false map[] 0xc000f7e700 0xc000b6e000} -2022/02/28 11:21:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d52700 160 [] false false map[] 0xc000cb4000 0xc000136790} -2022/02/28 11:21:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c {"id":"621c62c81b0000aa08fd0c2c","name":"acctest_603zk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:11 [DEBUG] Exit from do method -2022/02/28 11:21:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:11 [DEBUG] Exit from do method -2022/02/28 11:21:11 [DEBUG] 621c62c81d000094624fb9e0: Read finished successfully -2022/02/28 11:21:11 [DEBUG] 621c62c81b0000aa08fd0c2c: Read finished successfully -2022/02/28 11:21:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:11 [DEBUG] acctest_603zk: Beginning Read -2022/02/28 11:21:11 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:11 [DEBUG] Begin Injection -2022/02/28 11:21:11 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013a1ec0 1362 [] false false map[] 0xc000f7e900 0xc000272160} -2022/02/28 11:21:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:11 [DEBUG] Exit from do method -2022/02/28 11:21:11 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully -2022/02/28 11:21:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:11 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:11 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:11 [DEBUG] Begin Injection -2022/02/28 11:21:11 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000995500 160 [] false false map[] 0xc000d0a200 0xc000b6e000} -2022/02/28 11:21:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:11 [DEBUG] Exit from do method -2022/02/28 11:21:11 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully -2022/02/28 11:21:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000995700 1362 [] false false map[] 0xc000f7ed00 0xc000272160} -2022/02/28 11:21:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:11 [DEBUG] Exit from do method -2022/02/28 11:21:11 currentvrfname acctest_u6xd0 -2022/02/28 11:21:11 found correct vrfname -2022/02/28 11:21:11 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:11 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:11 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:11 [DEBUG] Begin Injection -2022/02/28 11:21:11 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d52ac0 1362 [] false false map[] 0xc000d0a200 0xc000272160} -2022/02/28 11:21:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:11 [DEBUG] Exit from do method -2022/02/28 11:21:11 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:11 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Read -2022/02/28 11:21:11 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:11 [DEBUG] Begin Injection -2022/02/28 11:21:11 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e340 1362 [] false false map[] 0xc000cb4300 0xc000c5a420} -2022/02/28 11:21:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:12 [DEBUG] Exit from do method -2022/02/28 11:21:12 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully -2022/02/28 11:21:12 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:12 [DEBUG] New state was assigned lineage "380f1747-b3e4-ee2e-0822-3f8d2de9ecae" -2022/02/28 11:21:12 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:12 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:12 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:12 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:12 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.test - description: "" => "" - id: "" => "" - name: "" => "acctest_k1ism" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -UPDATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_u6xd0" => "acctest_u6xd0" - dhcp_option_name: "" => "acctest_k1ism" - dhcp_option_version: "0" => "1" - id: "/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0" => "/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0" - name: "acctest_u6xd0" => "acctest_u6xd0" - schema_id: "621c62c71d000094624fb9de" => "621c62c71d000094624fb9de" - template_name: "acctest_sy1l1" => "acctest_sy1l1" - version: "0" => "1" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c62c71b0000c408fd0c2b - provider = provider.mso - description = - name = acctest_u6xd0 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c62c71d000094624fb9de - provider = provider.mso - name = acctest_sy1l1 - template_name = acctest_sy1l1 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_u6xd0 - provider = provider.mso - dhcp_policy.name = acctest_u6xd0 - dhcp_policy.version = 0 - display_name = acctest_u6xd0 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_u6xd0 - schema_id = 621c62c71d000094624fb9de - template_name = acctest_sy1l1 - vrf_name = acctest_u6xd0 - vrf_schema_id = 621c62c71d000094624fb9de - vrf_template_name = acctest_sy1l1 - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0 - provider = provider.mso - bd_name = acctest_u6xd0 - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_u6xd0 - schema_id = 621c62c71d000094624fb9de - template_name = acctest_sy1l1 - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_u6xd0 - provider = provider.mso - display_name = acctest_u6xd0 - layer3_multicast = false - name = acctest_u6xd0 - schema_id = 621c62c71d000094624fb9de - template = acctest_sy1l1 - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:21:12 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:21:12 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:21:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:21:12 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:21:12 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change -2022/02/28 11:21:12 [DEBUG] : Beginning Create -2022/02/28 11:21:12 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 11:21:12 [DEBUG] Begin Injection -2022/02/28 11:21:12 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 11:21:12 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_k1ism","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xc77ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:21:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:21:12 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:21:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000504040 161 [] false false map[] 0xc000513100 0xc000c5a420} -2022/02/28 11:21:12 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c62d01b0000cb08fd0c2d","name":"acctest_k1ism","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:12 [DEBUG] Exit from do method -2022/02/28 11:21:12 [DEBUG] 621c62d01b0000cb08fd0c2d: Creation finished successfully -2022/02/28 11:21:12 [DEBUG] 621c62d01b0000cb08fd0c2d: Beginning Read -2022/02/28 11:21:12 id: 621c62d01b0000cb08fd0c2d -2022/02/28 11:21:12 HTTP request GET mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:12 [DEBUG] Begin Injection -2022/02/28 11:21:12 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6080 1362 [] false false map[] 0xc000c7d100 0xc000136790} -2022/02/28 11:21:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:12 [DEBUG] Exit from do method -2022/02/28 11:21:12 currentvrfname acctest_603zk -2022/02/28 11:21:12 found correct vrfname -2022/02/28 11:21:12 [DEBUG] acctest_603zk: Read finished successfully -2022/02/28 11:21:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:12 [DEBUG] acctest_603zk: Beginning Read -2022/02/28 11:21:12 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:12 [DEBUG] Begin Injection -2022/02/28 11:21:12 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000994840 161 [] false false map[] 0xc000cb4000 0xc000c5a420} -2022/02/28 11:21:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d {"id":"621c62d01b0000cb08fd0c2d","name":"acctest_k1ism","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:12 [DEBUG] Exit from do method -2022/02/28 11:21:12 [DEBUG] 621c62d01b0000cb08fd0c2d: Read finished successfully -2022/02/28 11:21:12 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change -2022/02/28 11:21:12 [DEBUG] Template BD: Beginning Update -2022/02/28 11:21:12 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:12 [DEBUG] Begin Injection -2022/02/28 11:21:12 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000504900 1362 [] false false map[] 0xc000512500 0xc000136790} -2022/02/28 11:21:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:13 [DEBUG] Exit from do method -2022/02/28 11:21:13 [DEBUG] acctest_603zk: Read finished successfully -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:13 [DEBUG] /schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk: Beginning Read -2022/02/28 11:21:13 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:13 [DEBUG] Begin Injection -2022/02/28 11:21:13 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:13 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c7ce00 0xc000c5a420} -2022/02/28 11:21:13 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:13 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Read -2022/02/28 11:21:13 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:13 [DEBUG] Begin Injection -2022/02/28 11:21:13 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ce3400 1362 [] false false map[] 0xc0012fa300 0xc000136790} -2022/02/28 11:21:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:13 [DEBUG] Exit from do method -2022/02/28 11:21:13 [DEBUG] /schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk: Read finished successfully -2022/02/28 11:21:13 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:13 [DEBUG] New state was assigned lineage "6ac0dc22-987b-9cd7-3d3d-c03e9cf41344" -2022/02/28 11:21:13 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:13 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:13 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:13 [WARN] Test: Executing destroy step -2022/02/28 11:21:13 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:13 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:13 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:13 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:13 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:13 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:13 [DEBUG] : Beginning Read -2022/02/28 11:21:13 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:13 [DEBUG] Begin Injection -2022/02/28 11:21:13 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013ad500 1472 [] false false map[] 0xc000f7e000 0xc000c5a420} -2022/02/28 11:21:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:21:13 [DEBUG] Exit from do method -2022/02/28 11:21:13 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully -2022/02/28 11:21:13 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:13 [DEBUG] New state was assigned lineage "b5aac9c6-dec0-e18b-1059-2d577206e298" -2022/02/28 11:21:13 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:13 [DEBUG] Begin Injection -2022/02/28 11:21:13 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e240 1472 [] false false map[] 0xc0010c6000 0xc000c5a420} -2022/02/28 11:21:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:21:14 [DEBUG] Exit from do method -2022/02/28 11:21:14 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:14 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:14 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:14 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:14 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:14 [DEBUG] : Beginning Read -2022/02/28 11:21:14 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:14 [DEBUG] Begin Injection -2022/02/28 11:21:14 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcfe00 5563 [] false false map[] 0xc000512800 0xc000136790} -2022/02/28 11:21:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013a0100 5563 [] false false map[] 0xc000d5ae00 0xc000c5a420} -2022/02/28 11:21:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:14 [DEBUG] Exit from do method -2022/02/28 11:21:14 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:14 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:21:14 [DEBUG] 621c62c71d000094624fb9de: Beginning Read -2022/02/28 11:21:14 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read -2022/02/28 11:21:14 id: 621c62c71b0000c408fd0c2b -2022/02/28 11:21:14 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:14 [DEBUG] Begin Injection -2022/02/28 11:21:14 [DEBUG] 621c62d01b0000cb08fd0c2d: Beginning Read -2022/02/28 11:21:14 id: 621c62d01b0000cb08fd0c2d -2022/02/28 11:21:14 HTTP request GET mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:14 [DEBUG] Begin Injection -2022/02/28 11:21:14 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:14 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:14 [DEBUG] Begin Injection -2022/02/28 11:21:14 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:15 [DEBUG] Exit from do method -2022/02/28 11:21:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:15 [DEBUG] 621c62c81d000094624fb9e0: Beginning Read -2022/02/28 11:21:15 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:15 [DEBUG] Begin Injection -2022/02/28 11:21:15 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:15 [DEBUG] 621c62c81b0000aa08fd0c2c: Beginning Read -2022/02/28 11:21:15 id: 621c62c81b0000aa08fd0c2c -2022/02/28 11:21:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:15 [DEBUG] Begin Injection -2022/02/28 11:21:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090d80 161 [] false false map[] 0xc000f7fb00 0xc000c5a420} -2022/02/28 11:21:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d {"id":"621c62d01b0000cb08fd0c2d","name":"acctest_k1ism","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:15 [DEBUG] Exit from do method -2022/02/28 11:21:15 [DEBUG] 621c62d01b0000cb08fd0c2d: Read finished successfully -2022/02/28 11:21:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091480 1472 [] false false map[] 0xc0010c6700 0xc000b6e000} -2022/02/28 11:21:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:21:15 [DEBUG] Exit from do method -2022/02/28 11:21:15 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully -2022/02/28 11:21:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:15 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:15 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:15 [DEBUG] Begin Injection -2022/02/28 11:21:15 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036ef00 160 [] false false map[] 0xc000f7fa00 0xc000136790} -2022/02/28 11:21:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:15 [DEBUG] Exit from do method -2022/02/28 11:21:15 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully -2022/02/28 11:21:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f380 1362 [] false false map[] 0xc000c04300 0xc000c5a420} -2022/02/28 11:21:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:15 [DEBUG] Exit from do method -2022/02/28 11:21:15 [DEBUG] 621c62c81d000094624fb9e0: Read finished successfully -2022/02/28 11:21:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:15 [DEBUG] acctest_603zk: Beginning Read -2022/02/28 11:21:15 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:15 [DEBUG] Begin Injection -2022/02/28 11:21:15 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ce2880 160 [] false false map[] 0xc000d5b000 0xc000b6e000} -2022/02/28 11:21:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c {"id":"621c62c81b0000aa08fd0c2c","name":"acctest_603zk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:15 [DEBUG] Exit from do method -2022/02/28 11:21:15 [DEBUG] 621c62c81b0000aa08fd0c2c: Read finished successfully -2022/02/28 11:21:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7840 1472 [] false false map[] 0xc000d5b600 0xc000136790} -2022/02/28 11:21:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:21:15 [DEBUG] Exit from do method -2022/02/28 11:21:15 currentvrfname acctest_u6xd0 -2022/02/28 11:21:15 found correct vrfname -2022/02/28 11:21:15 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:15 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:15 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:15 [DEBUG] Begin Injection -2022/02/28 11:21:15 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000994840 1362 [] false false map[] 0xc000c04100 0xc000c5a420} -2022/02/28 11:21:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:15 [DEBUG] Exit from do method -2022/02/28 11:21:15 currentvrfname acctest_603zk -2022/02/28 11:21:15 found correct vrfname -2022/02/28 11:21:15 [DEBUG] acctest_603zk: Read finished successfully -2022/02/28 11:21:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:15 [DEBUG] acctest_603zk: Beginning Read -2022/02/28 11:21:15 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:15 [DEBUG] Begin Injection -2022/02/28 11:21:15 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a80c0 1472 [] false false map[] 0xc000cb4300 0xc000c5a0b0} -2022/02/28 11:21:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:21:16 [DEBUG] Exit from do method -2022/02/28 11:21:16 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:16 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Read -2022/02/28 11:21:16 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:16 [DEBUG] Begin Injection -2022/02/28 11:21:16 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013ac540 1362 [] false false map[] 0xc000cb4800 0xc000c5a420} -2022/02/28 11:21:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:16 [DEBUG] Exit from do method -2022/02/28 11:21:16 [DEBUG] acctest_603zk: Read finished successfully -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:16 [DEBUG] /schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk: Beginning Read -2022/02/28 11:21:16 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:16 [DEBUG] Begin Injection -2022/02/28 11:21:16 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce0c0 1472 [] false false map[] 0xc000512700 0xc0008c0000} -2022/02/28 11:21:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:21:16 [DEBUG] Exit from do method -2022/02/28 11:21:16 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully -2022/02/28 11:21:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:16 [DEBUG] New state was assigned lineage "2ce6ee2d-971c-cc8e-6227-58bc4448736a" -2022/02/28 11:21:16 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:16 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:16 [DEBUG] Test: Executing step 6 -2022/02/28 11:21:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0\")" (*terraform.graphNodeImportState) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0\")" references: [] -2022/02/28 11:21:16 [DEBUG] Starting graph walk: walkImport -2022/02/28 11:21:16 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Import -2022/02/28 11:21:16 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:16 [DEBUG] Begin Injection -2022/02/28 11:21:16 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000654040 1362 [] false false map[] 0xc000c04900 0xc000c5a420} -2022/02/28 11:21:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"id":"621c62c81d000094624fb9e0","displayName":"acctest_cn2xx","description":"","templates":[{"name":"acctest_cn2xx","displayName":"acctest_cn2xx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_603zk","displayName":"acctest_603zk","vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_603zk","displayName":"acctest_603zk","bdRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/vrfs/acctest_603zk","dhcpLabel":{"name":"acctest_603zk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_603zk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:21:16 [DEBUG] Exit from do method -2022/02/28 11:21:16 [DEBUG] /schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk: Read finished successfully -2022/02/28 11:21:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:16 [DEBUG] New state was assigned lineage "f59a7aa0-f718-00e3-20ae-7188cf46b525" -2022/02/28 11:21:16 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:21:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:21:16 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:21:16 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c62c81b0000aa08fd0c2c" => "" - name: "acctest_603zk" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c62c81d000094624fb9e0" => "" - name: "acctest_cn2xx" => "" - template_name: "acctest_cn2xx" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_603zk" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_603zk" => "" - id: "acctest_603zk" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_603zk" => "" - schema_id: "621c62c81d000094624fb9e0" => "" - template_name: "acctest_cn2xx" => "" - vrf_name: "acctest_603zk" => "" - vrf_schema_id: "621c62c81d000094624fb9e0" => "" - vrf_template_name: "acctest_cn2xx" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_603zk" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk" => "" - name: "acctest_603zk" => "" - schema_id: "621c62c81d000094624fb9e0" => "" - template_name: "acctest_cn2xx" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_603zk" => "" - id: "acctest_603zk" => "" - layer3_multicast: "false" => "" - name: "acctest_603zk" => "" - schema_id: "621c62c81d000094624fb9e0" => "" - template: "acctest_cn2xx" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c62c81b0000aa08fd0c2c - provider = provider.mso - description = - name = acctest_603zk - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c62c81d000094624fb9e0 - provider = provider.mso - name = acctest_cn2xx - template_name = acctest_cn2xx - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_603zk - provider = provider.mso - dhcp_policy.name = acctest_603zk - dhcp_policy.version = 0 - display_name = acctest_603zk - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_603zk - schema_id = 621c62c81d000094624fb9e0 - template_name = acctest_cn2xx - vrf_name = acctest_603zk - vrf_schema_id = 621c62c81d000094624fb9e0 - vrf_template_name = acctest_cn2xx - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c62c81d000094624fb9e0/templates/acctest_cn2xx/bds/acctest_603zk/dhcpLabels/acctest_603zk - provider = provider.mso - bd_name = acctest_603zk - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_603zk - schema_id = 621c62c81d000094624fb9e0 - template_name = acctest_cn2xx - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_603zk - provider = provider.mso - display_name = acctest_603zk - layer3_multicast = false - name = acctest_603zk - schema_id = 621c62c81d000094624fb9e0 - template = acctest_cn2xx - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:21:16 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:21:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:21:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:21:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:21:16 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:21:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:21:16 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:21:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:21:16 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:21:16 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:21:16 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:21:16 [DEBUG] Template BD: Beginning Update -2022/02/28 11:21:16 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:16 [DEBUG] Begin Injection -2022/02/28 11:21:16 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000655700 1472 [] false false map[] 0xc000512c00 0xc0008c0000} -2022/02/28 11:21:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:21:16 [DEBUG] Exit from do method -2022/02/28 11:21:16 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Import finished successfully -2022/02/28 11:21:16 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Read -2022/02/28 11:21:16 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:16 [DEBUG] Begin Injection -2022/02/28 11:21:16 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:16 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:16 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000512500 0xc000c5a420} -2022/02/28 11:21:16 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:16 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:21:16 [DEBUG] 621c62c81b0000aa08fd0c2c: Beginning Read -2022/02/28 11:21:16 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:21:16 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:16 [DEBUG] Begin Injection -2022/02/28 11:21:16 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:16 [DEBUG] Template BD: Beginning Update -2022/02/28 11:21:16 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:16 [DEBUG] Begin Injection -2022/02/28 11:21:16 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a8900 1472 [] false false map[] 0xc000f7fc00 0xc0008c0000} -2022/02/28 11:21:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:21:17 [DEBUG] Exit from do method -2022/02/28 11:21:17 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully -2022/02/28 11:21:17 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:17 [DEBUG] New state was assigned lineage "e0522e9a-3669-565b-81b9-29e41269eb0e" -2022/02/28 11:21:17 [DEBUG] Test: Executing step 7 -2022/02/28 11:21:17 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d5a100 0xc000c5a420} -2022/02/28 11:21:17 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c81b0000aa08fd0c2c -2022/02/28 11:21:17 [DEBUG] : Read finished successfully -2022/02/28 11:21:17 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000cb4400 0xc000b6e000} -2022/02/28 11:21:17 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:17 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:21:17 [DEBUG] acctest_603zk: Beginning Destroy -2022/02/28 11:21:17 HTTP request PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:17 [DEBUG] Begin Injection -2022/02/28 11:21:17 HTTP request after injection PATCH mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:17 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:17 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:17 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:17 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config -2022/02/28 11:21:17 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config -2022/02/28 11:21:17 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:17 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:17 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:17 [DEBUG] : Beginning Read -2022/02/28 11:21:17 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:17 [DEBUG] Begin Injection -2022/02/28 11:21:17 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:17 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000cb4a00 0xc000c5a420} -2022/02/28 11:21:17 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0?validate=false -2022/02/28 11:21:17 [DEBUG] acctest_603zk: Destroy finished successfully -2022/02/28 11:21:17 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:21:17 [DEBUG] 621c62c81d000094624fb9e0: Beginning Destroy -2022/02/28 11:21:17 HTTP request DELETE mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:17 [DEBUG] Begin Injection -2022/02/28 11:21:17 HTTP request after injection DELETE mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019f240 5563 [] false false map[] 0xc000512200 0xc0008c0000} -2022/02/28 11:21:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:17 [DEBUG] Exit from do method -2022/02/28 11:21:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:17 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read -2022/02/28 11:21:17 [DEBUG] 621c62c71d000094624fb9de: Beginning Read -2022/02/28 11:21:17 [DEBUG] 621c62d01b0000cb08fd0c2d: Beginning Read -2022/02/28 11:21:17 id: 621c62d01b0000cb08fd0c2d -2022/02/28 11:21:17 HTTP request GET mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:17 [DEBUG] Begin Injection -2022/02/28 11:21:17 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:17 id: 621c62c71b0000c408fd0c2b -2022/02/28 11:21:17 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:17 [DEBUG] Begin Injection -2022/02/28 11:21:17 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:17 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:17 [DEBUG] Begin Injection -2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:17 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000512900 0xc000c5a420} -2022/02/28 11:21:17 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:17 [DEBUG] 621c62c81d000094624fb9e0: Destroy finished successfully -2022/02/28 11:21:17 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:17 [DEBUG] New state was assigned lineage "0d94ef19-874f-510a-ff52-46fac7e52628" -2022/02/28 11:21:17 HTTP request GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:17 [DEBUG] Begin Injection -2022/02/28 11:21:17 HTTP request after injection GET mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013aca80 161 [] false false map[] 0xc000c04700 0xc0008c0000} -2022/02/28 11:21:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d {"id":"621c62d01b0000cb08fd0c2d","name":"acctest_k1ism","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:17 [DEBUG] Exit from do method -2022/02/28 11:21:17 [DEBUG] 621c62d01b0000cb08fd0c2d: Read finished successfully -2022/02/28 11:21:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a8780 1472 [] false false map[] 0xc000d5a500 0xc000c5a420} -2022/02/28 11:21:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:21:18 [DEBUG] Exit from do method -2022/02/28 11:21:18 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully -2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:18 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:18 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:18 [DEBUG] Begin Injection -2022/02/28 11:21:18 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcfa00 160 [] false false map[] 0xc000d5a600 0xc0008c0000} -2022/02/28 11:21:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:18 [DEBUG] Exit from do method -2022/02/28 11:21:18 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully -2022/02/28 11:21:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 -2022/02/28 11:21:18 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:18 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcfc00 39 [] false false map[] 0xc000cb4300 0xc000c5a420} -2022/02/28 11:21:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c81d000094624fb9e0 {"code":404,"message":"Item not found"} -2022/02/28 11:21:18 [DEBUG] Exit from do method -2022/02/28 11:21:18 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:21:18 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:21:18 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:18 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:18 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:18 [DEBUG] : Beginning Read -2022/02/28 11:21:18 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:18 [DEBUG] Begin Injection -2022/02/28 11:21:18 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086c5c0 1472 [] false false map[] 0xc000f7e400 0xc0008c0000} -2022/02/28 11:21:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:21:18 [DEBUG] Exit from do method -2022/02/28 11:21:18 currentvrfname acctest_u6xd0 -2022/02/28 11:21:18 found correct vrfname -2022/02/28 11:21:18 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:18 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:18 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:18 [DEBUG] Begin Injection -2022/02/28 11:21:18 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f3c0 1472 [] false false map[] 0xc000cb4200 0xc0008c0000} -2022/02/28 11:21:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:21:18 [DEBUG] Exit from do method -2022/02/28 11:21:18 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:18 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Beginning Read -2022/02/28 11:21:18 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:18 [DEBUG] Begin Injection -2022/02/28 11:21:18 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f440 5563 [] false false map[] 0xc000d5ae00 0xc000c5a6e0} -2022/02/28 11:21:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:18 [DEBUG] Exit from do method -2022/02/28 11:21:18 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:18 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:18 [DEBUG] New state was assigned lineage "8b27addc-35ea-06aa-7dc8-27dfe48578b6" -2022/02/28 11:21:18 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:21:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:21:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:18 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:21:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ce2040 1472 [] false false map[] 0xc000c04900 0xc0008c0840} -2022/02/28 11:21:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","dhcpLabel":{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_u6xd0","dhcpOptionLabel":{"name":"acctest_k1ism","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 11:21:19 [DEBUG] Exit from do method -2022/02/28 11:21:19 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0: Read finished successfully -2022/02/28 11:21:19 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:19 [DEBUG] New state was assigned lineage "4ce56150-7798-7d31-43ba-9b6551a51de2" -2022/02/28 11:21:19 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:19 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:19 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:19 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.test - description: "" => "" - id: "621c62d01b0000cb08fd0c2d" => "" - name: "acctest_k1ism" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_u6xd0" => "" - dhcp_option_name: "acctest_k1ism" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0" => "" - name: "acctest_u6xd0" => "" - schema_id: "621c62c71d000094624fb9de" => "" - template_name: "acctest_sy1l1" => "" - version: "1" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.test: - ID = 621c62d01b0000cb08fd0c2d - provider = provider.mso - description = - name = acctest_k1ism - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c62c71b0000c408fd0c2b - provider = provider.mso - description = - name = acctest_u6xd0 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c62c71d000094624fb9de - provider = provider.mso - name = acctest_sy1l1 - template_name = acctest_sy1l1 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_u6xd0 - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_k1ism - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_u6xd0 - dhcp_policy.version = 1 - display_name = acctest_u6xd0 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_u6xd0 - schema_id = 621c62c71d000094624fb9de - template_name = acctest_sy1l1 - vrf_name = acctest_u6xd0 - vrf_schema_id = 621c62c71d000094624fb9de - vrf_template_name = acctest_sy1l1 - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0/dhcpLabels/acctest_u6xd0 - provider = provider.mso - bd_name = acctest_u6xd0 - dhcp_option_name = acctest_k1ism - dhcp_option_version = 1 - name = acctest_u6xd0 - schema_id = 621c62c71d000094624fb9de - template_name = acctest_sy1l1 - version = 1 - - Dependencies: - mso_dhcp_option_policy.test - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_u6xd0 - provider = provider.mso - display_name = acctest_u6xd0 - layer3_multicast = false - name = acctest_u6xd0 - schema_id = 621c62c71d000094624fb9de - template = acctest_sy1l1 - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:21:19 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:21:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:21:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] -2022/02/28 11:21:19 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:21:19 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:21:19 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:21:19 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:21:19 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:21:19 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:21:19 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:21:19 [DEBUG] Template BD: Beginning Update -2022/02/28 11:21:19 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:19 [DEBUG] Begin Injection -2022/02/28 11:21:19 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:19 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c04c00 0xc000c5a6e0} -2022/02/28 11:21:19 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:19 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change -2022/02/28 11:21:19 [DEBUG] 621c62d01b0000cb08fd0c2d: Beginning Read -2022/02/28 11:21:19 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:19 [DEBUG] Begin Injection -2022/02/28 11:21:19 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:19 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000c04e00 0xc000c5a6e0} -2022/02/28 11:21:19 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c62d01b0000cb08fd0c2d -2022/02/28 11:21:19 [DEBUG] : Read finished successfully -2022/02/28 11:21:19 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:19 [DEBUG] New state was assigned lineage "31809cea-104c-9f0b-f629-dde1b1a43ad8" -2022/02/28 11:21:19 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:19 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:19 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:19 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:19 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:19 [DEBUG] : Beginning Read -2022/02/28 11:21:19 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:19 [DEBUG] Begin Injection -2022/02/28 11:21:19 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000994a00 5563 [] false false map[] 0xc0010cf200 0xc000c5a6e0} -2022/02/28 11:21:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:20 [DEBUG] Exit from do method -2022/02/28 11:21:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:20 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read -2022/02/28 11:21:20 [DEBUG] 621c62c71d000094624fb9de: Beginning Read -2022/02/28 11:21:20 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:20 [DEBUG] Begin Injection -2022/02/28 11:21:20 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:20 id: 621c62c71b0000c408fd0c2b -2022/02/28 11:21:20 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:20 [DEBUG] Begin Injection -2022/02/28 11:21:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000994a80 160 [] false false map[] 0xc000d5a500 0xc000b6e580} -2022/02/28 11:21:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:20 [DEBUG] Exit from do method -2022/02/28 11:21:20 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully -2022/02/28 11:21:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000654400 1277 [] false false map[] 0xc0010ce400 0xc000c5a6e0} -2022/02/28 11:21:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:21:20 [DEBUG] Exit from do method -2022/02/28 11:21:20 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully -2022/02/28 11:21:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:20 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:20 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:20 [DEBUG] Begin Injection -2022/02/28 11:21:20 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ce2300 1277 [] false false map[] 0xc000512400 0xc000c5a6e0} -2022/02/28 11:21:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:21:20 [DEBUG] Exit from do method -2022/02/28 11:21:20 currentvrfname acctest_u6xd0 -2022/02/28 11:21:20 found correct vrfname -2022/02/28 11:21:20 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:20 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:20 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:20 [DEBUG] Begin Injection -2022/02/28 11:21:20 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f240 1277 [] false false map[] 0xc0010ceb00 0xc000c5a6e0} -2022/02/28 11:21:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:21:21 [DEBUG] Exit from do method -2022/02/28 11:21:21 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:21 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:21 [DEBUG] New state was assigned lineage "16558fa7-7778-85c4-89df-e24f39f769f3" -2022/02/28 11:21:21 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:21 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:21 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:21 [DEBUG] Test: Executing step 8 -2022/02/28 11:21:21 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:21 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:21 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:21 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:21 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:21 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:21 [DEBUG] : Beginning Read -2022/02/28 11:21:21 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:21 [DEBUG] Begin Injection -2022/02/28 11:21:21 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a9f00 5563 [] false false map[] 0xc000512200 0xc000c5a6e0} -2022/02/28 11:21:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:21 [DEBUG] Exit from do method -2022/02/28 11:21:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:21 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read -2022/02/28 11:21:21 [DEBUG] 621c62c71d000094624fb9de: Beginning Read -2022/02/28 11:21:21 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:21 [DEBUG] Begin Injection -2022/02/28 11:21:21 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:21 id: 621c62c71b0000c408fd0c2b -2022/02/28 11:21:21 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:21 [DEBUG] Begin Injection -2022/02/28 11:21:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000504780 160 [] false false map[] 0xc000cb4200 0xc000b6e580} -2022/02/28 11:21:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b {"id":"621c62c71b0000c408fd0c2b","name":"acctest_u6xd0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:21 [DEBUG] Exit from do method -2022/02/28 11:21:21 [DEBUG] 621c62c71b0000c408fd0c2b: Read finished successfully -2022/02/28 11:21:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036e680 1277 [] false false map[] 0xc000512700 0xc000c5a6e0} -2022/02/28 11:21:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:21:21 [DEBUG] Exit from do method -2022/02/28 11:21:21 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully -2022/02/28 11:21:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:21 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:21 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:21 [DEBUG] Begin Injection -2022/02/28 11:21:21 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019f4c0 1277 [] false false map[] 0xc000d5a400 0xc000c5a6e0} -2022/02/28 11:21:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:21:22 [DEBUG] Exit from do method -2022/02/28 11:21:22 currentvrfname acctest_u6xd0 -2022/02/28 11:21:22 found correct vrfname -2022/02/28 11:21:22 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:22 [DEBUG] acctest_u6xd0: Beginning Read -2022/02/28 11:21:22 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:22 [DEBUG] Begin Injection -2022/02/28 11:21:22 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000504040 1277 [] false false map[] 0xc000512b00 0xc000c5a6e0} -2022/02/28 11:21:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_u6xd0","displayName":"acctest_u6xd0","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_u6xd0","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_u6xd0","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 11:21:22 [DEBUG] Exit from do method -2022/02/28 11:21:22 [DEBUG] acctest_u6xd0: Read finished successfully -2022/02/28 11:21:22 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:22 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:22 [DEBUG] New state was assigned lineage "5adb64b4-f491-e9a6-b103-59257252f7e9" -2022/02/28 11:21:22 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:22 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:22 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:22 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:22 [WARN] Test: Step plan: DIFF: - -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c62c71b0000c408fd0c2b" => "" - name: "acctest_u6xd0" => "acctest_joxs1" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "acctest_u6xd0" => "acctest_joxs1" (forces new resource) - id: "acctest_u6xd0" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_u6xd0" => "acctest_joxs1" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c62c71d000094624fb9de" => "621c62c71d000094624fb9de" - template_name: "acctest_sy1l1" => "acctest_sy1l1" - vrf_name: "acctest_u6xd0" => "acctest_joxs1" - vrf_schema_id: "621c62c71d000094624fb9de" => "" - vrf_template_name: "acctest_sy1l1" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_joxs1" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_joxs1" - schema_id: "" => "621c62c71d000094624fb9de" - template_name: "" => "acctest_sy1l1" - version: "" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_u6xd0" => "acctest_joxs1" - id: "acctest_u6xd0" => "" - layer3_multicast: "false" => "" - name: "acctest_u6xd0" => "acctest_joxs1" (forces new resource) - schema_id: "621c62c71d000094624fb9de" => "621c62c71d000094624fb9de" - template: "acctest_sy1l1" => "acctest_sy1l1" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c62c71b0000c408fd0c2b - provider = provider.mso - description = - name = acctest_u6xd0 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c62c71d000094624fb9de - provider = provider.mso - name = acctest_sy1l1 - template_name = acctest_sy1l1 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_u6xd0 - provider = provider.mso - display_name = acctest_u6xd0 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_u6xd0 - schema_id = 621c62c71d000094624fb9de - template_name = acctest_sy1l1 - vrf_name = acctest_u6xd0 - vrf_schema_id = 621c62c71d000094624fb9de - vrf_template_name = acctest_sy1l1 - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_u6xd0 - provider = provider.mso - display_name = acctest_u6xd0 - layer3_multicast = false - name = acctest_u6xd0 - schema_id = 621c62c71d000094624fb9de - template = acctest_sy1l1 - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:21:22 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:21:22 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:21:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:21:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:22 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:21:22 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:21:22 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:21:22 [DEBUG] 621c62c71b0000c408fd0c2b: Beginning Read -2022/02/28 11:21:22 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:22 [DEBUG] Begin Injection -2022/02/28 11:21:22 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:22 [DEBUG] Template BD: Beginning Update -2022/02/28 11:21:22 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:22 [DEBUG] Begin Injection -2022/02/28 11:21:22 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:22 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d5b300 0xc000c5a6e0} -2022/02/28 11:21:22 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:22 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62c71b0000c408fd0c2b -2022/02/28 11:21:22 [DEBUG] : Read finished successfully -2022/02/28 11:21:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000eb8400 0xc000b6e580} -2022/02/28 11:21:22 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:22 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:21:22 [DEBUG] acctest_u6xd0: Beginning Destroy -2022/02/28 11:21:22 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:22 [DEBUG] Begin Injection -2022/02/28 11:21:22 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:22 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:21:22 [DEBUG] : Beginning Create -2022/02/28 11:21:22 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:21:22 [DEBUG] Begin Injection -2022/02/28 11:21:22 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:21:22 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI4NjYzLCJpYXQiOjE2NDYwMjc0NjMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ25IMkV4PUtIdGpHQkF3YUdwbjRhaXJsIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tNUWOf1-Kus5pzoK2yv8KwoaG8qbBwLOVVrQIR7DH9_EOD0pzSHDMbAaIHPaT4U_zD9WGFfwaJmmvmB9ZRd8V8Mf994tjjpx9o9HqN9FUMTXgqLly41DA8N7L0rM8WvOxpOeMetYha2mUeyxPcY_vruXIW-4FP9DoTKz2IbkLFsZpUiJMbw9g9k0moyjBEDndQ5KiU3bVLRyB26zatlGjNPhYSIIaHcSEScTgcx9EwwkBui5Y0PJMJXdTLPNgKx7bf3kiw-Q8-mfLcd-IFfvQ2-MOsZ65jNLxlDvYv5qozgn1JVl4WZcs3jzfQBA5KFo0lZgSzNruUXBYrRtIyLONg] Content-Type:[application/json]] {{"desc":"","name":"acctest_joxs1","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xc77ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:21:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:21:23 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000eb8900 0xc000b6e580} -2022/02/28 11:21:23 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:23 [DEBUG] acctest_u6xd0: Destroy finished successfully -2022/02/28 11:21:23 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:21:23 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:21:23 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:23 [DEBUG] Begin Injection -2022/02/28 11:21:23 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:23 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:21:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019ecc0 160 [] false false map[] 0xc000cb4a00 0xc000c5a6e0} -2022/02/28 11:21:23 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c62db1b0000ca08fd0c2e","name":"acctest_joxs1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:23 [DEBUG] Exit from do method -2022/02/28 11:21:23 [DEBUG] 621c62db1b0000ca08fd0c2e: Creation finished successfully -2022/02/28 11:21:23 [DEBUG] 621c62db1b0000ca08fd0c2e: Beginning Read -2022/02/28 11:21:23 id: 621c62db1b0000ca08fd0c2e -2022/02/28 11:21:23 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:23 [DEBUG] Begin Injection -2022/02/28 11:21:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:23 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000eb9400 0xc000b6e580} -2022/02/28 11:21:23 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:23 [DEBUG] acctest_joxs1: Creation finished successfully -2022/02/28 11:21:23 [DEBUG] acctest_joxs1: Beginning Read -2022/02/28 11:21:23 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:23 [DEBUG] Begin Injection -2022/02/28 11:21:23 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e340 160 [] false false map[] 0xc000d5b400 0xc000c5a6e0} -2022/02/28 11:21:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e {"id":"621c62db1b0000ca08fd0c2e","name":"acctest_joxs1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:23 [DEBUG] Exit from do method -2022/02/28 11:21:23 [DEBUG] 621c62db1b0000ca08fd0c2e: Read finished successfully -2022/02/28 11:21:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013f2080 768 [] false false map[] 0xc000cb4000 0xc000b6e580} -2022/02/28 11:21:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 11:21:23 [DEBUG] Exit from do method -2022/02/28 11:21:23 currentvrfname acctest_joxs1 -2022/02/28 11:21:23 found correct vrfname -2022/02/28 11:21:23 [DEBUG] acctest_joxs1: Read finished successfully -2022/02/28 11:21:23 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:21:23 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:21:23 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:21:23 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:23 [DEBUG] Begin Injection -2022/02/28 11:21:23 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:24 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:24 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d5af00 0xc000b6e580} -2022/02/28 11:21:24 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:24 [DEBUG] : Beginning Read -2022/02/28 11:21:24 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:24 [DEBUG] Begin Injection -2022/02/28 11:21:24 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010b6200 1278 [] false false map[] 0xc000eb8000 0xc000b6e580} -2022/02/28 11:21:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 11:21:24 [DEBUG] Exit from do method -2022/02/28 11:21:24 [DEBUG] acctest_joxs1: Read finished successfully -2022/02/28 11:21:24 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:21:24 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:21:24 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:24 [DEBUG] Begin Injection -2022/02/28 11:21:24 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:24 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:24 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0007fa300 0xc000b6e580} -2022/02/28 11:21:24 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:24 [DEBUG] Creation Complete -2022/02/28 11:21:24 [DEBUG] : Beginning Read -2022/02/28 11:21:24 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:24 [DEBUG] Begin Injection -2022/02/28 11:21:24 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015921c0 1363 [] false false map[] 0xc000eb8000 0xc000b6e580} -2022/02/28 11:21:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:21:25 [DEBUG] Exit from do method -2022/02/28 11:21:25 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1: Read finished successfully -2022/02/28 11:21:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:25 [DEBUG] New state was assigned lineage "b45fd664-08e0-fadb-b9c3-59965f4073d2" -2022/02/28 11:21:25 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:25 [DEBUG] Begin Injection -2022/02/28 11:21:25 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013ac4c0 1363 [] false false map[] 0xc000cb4000 0xc000b6e580} -2022/02/28 11:21:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:21:25 [DEBUG] Exit from do method -2022/02/28 11:21:25 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:25 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:25 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:25 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:25 [DEBUG] : Beginning Read -2022/02/28 11:21:25 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:25 [DEBUG] Begin Injection -2022/02/28 11:21:25 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010b72c0 5563 [] false false map[] 0xc0007d3100 0xc000b6e580} -2022/02/28 11:21:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:25 [DEBUG] Exit from do method -2022/02/28 11:21:25 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:25 [DEBUG] 621c62db1b0000ca08fd0c2e: Beginning Read -2022/02/28 11:21:25 id: 621c62db1b0000ca08fd0c2e -2022/02/28 11:21:25 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:25 [DEBUG] Begin Injection -2022/02/28 11:21:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:25 [DEBUG] 621c62c71d000094624fb9de: Beginning Read -2022/02/28 11:21:25 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:25 [DEBUG] Begin Injection -2022/02/28 11:21:25 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013ac4c0 160 [] false false map[] 0xc000cb4b00 0xc000b6e580} -2022/02/28 11:21:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e {"id":"621c62db1b0000ca08fd0c2e","name":"acctest_joxs1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:26 [DEBUG] Exit from do method -2022/02/28 11:21:26 [DEBUG] 621c62db1b0000ca08fd0c2e: Read finished successfully -2022/02/28 11:21:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a8040 1363 [] false false map[] 0xc00028db00 0xc000c5a6e0} -2022/02/28 11:21:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:21:26 [DEBUG] Exit from do method -2022/02/28 11:21:26 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully -2022/02/28 11:21:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:26 [DEBUG] acctest_joxs1: Beginning Read -2022/02/28 11:21:26 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:26 [DEBUG] Begin Injection -2022/02/28 11:21:26 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013f2b00 1363 [] false false map[] 0xc000cb4200 0xc000c5a6e0} -2022/02/28 11:21:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:21:26 [DEBUG] Exit from do method -2022/02/28 11:21:26 currentvrfname acctest_joxs1 -2022/02/28 11:21:26 found correct vrfname -2022/02/28 11:21:26 [DEBUG] acctest_joxs1: Read finished successfully -2022/02/28 11:21:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:26 [DEBUG] acctest_joxs1: Beginning Read -2022/02/28 11:21:26 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:26 [DEBUG] Begin Injection -2022/02/28 11:21:26 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013acf40 1363 [] false false map[] 0xc00028c500 0xc000c5a6e0} -2022/02/28 11:21:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:21:26 [DEBUG] Exit from do method -2022/02/28 11:21:26 [DEBUG] acctest_joxs1: Read finished successfully -2022/02/28 11:21:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:26 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1: Beginning Read -2022/02/28 11:21:26 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:26 [DEBUG] Begin Injection -2022/02/28 11:21:26 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013a0040 1363 [] false false map[] 0xc000cb4600 0xc000c5a6e0} -2022/02/28 11:21:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:21:27 [DEBUG] Exit from do method -2022/02/28 11:21:27 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1: Read finished successfully -2022/02/28 11:21:27 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:27 [DEBUG] New state was assigned lineage "b6663c98-96dd-e199-5f81-ad6742e0d38b" -2022/02/28 11:21:27 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:21:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:27 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:27 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:27 [WARN] Test: Executing destroy step -2022/02/28 11:21:27 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:27 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:21:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:27 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:21:27 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:27 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:27 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:27 [DEBUG] : Beginning Read -2022/02/28 11:21:27 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:27 [DEBUG] Begin Injection -2022/02/28 11:21:27 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013f2640 5563 [] false false map[] 0xc000d5a100 0xc000c5a6e0} -2022/02/28 11:21:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:27 [DEBUG] Exit from do method -2022/02/28 11:21:27 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:21:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:21:27 [DEBUG] 621c62c71d000094624fb9de: Beginning Read -2022/02/28 11:21:27 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:27 [DEBUG] Begin Injection -2022/02/28 11:21:27 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:27 [DEBUG] 621c62db1b0000ca08fd0c2e: Beginning Read -2022/02/28 11:21:27 id: 621c62db1b0000ca08fd0c2e -2022/02/28 11:21:27 HTTP request GET mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:27 [DEBUG] Begin Injection -2022/02/28 11:21:27 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013ad340 1363 [] false false map[] 0xc000cb4300 0xc000c5a6e0} -2022/02/28 11:21:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:21:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013f3b80 160 [] false false map[] 0xc000710200 0xc000b6e580} -2022/02/28 11:21:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e {"id":"621c62db1b0000ca08fd0c2e","name":"acctest_joxs1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:21:28 [DEBUG] Exit from do method -2022/02/28 11:21:28 [DEBUG] Exit from do method -2022/02/28 11:21:28 [DEBUG] 621c62c71d000094624fb9de: Read finished successfully -2022/02/28 11:21:28 [DEBUG] 621c62db1b0000ca08fd0c2e: Read finished successfully -2022/02/28 11:21:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:21:28 [DEBUG] acctest_joxs1: Beginning Read -2022/02/28 11:21:28 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:28 [DEBUG] Begin Injection -2022/02/28 11:21:28 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce1c0 1363 [] false false map[] 0xc0018a2400 0xc000b6e580} -2022/02/28 11:21:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:21:28 [DEBUG] Exit from do method -2022/02/28 11:21:28 currentvrfname acctest_joxs1 -2022/02/28 11:21:28 found correct vrfname -2022/02/28 11:21:28 [DEBUG] acctest_joxs1: Read finished successfully -2022/02/28 11:21:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:21:28 [DEBUG] acctest_joxs1: Beginning Read -2022/02/28 11:21:28 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:28 [DEBUG] Begin Injection -2022/02/28 11:21:28 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015920c0 1363 [] false false map[] 0xc000d5a400 0xc000b6e580} -2022/02/28 11:21:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:21:28 [DEBUG] Exit from do method -2022/02/28 11:21:28 [DEBUG] acctest_joxs1: Read finished successfully -2022/02/28 11:21:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:21:28 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1: Beginning Read -2022/02/28 11:21:28 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:28 [DEBUG] Begin Injection -2022/02/28 11:21:28 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015921c0 1363 [] false false map[] 0xc000512500 0xc000b6e580} -2022/02/28 11:21:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"id":"621c62c71d000094624fb9de","displayName":"acctest_sy1l1","description":"","templates":[{"name":"acctest_sy1l1","displayName":"acctest_sy1l1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_joxs1","displayName":"acctest_joxs1","bdRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/vrfs/acctest_joxs1","dhcpLabel":{"name":"acctest_joxs1","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_joxs1","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 11:21:29 [DEBUG] Exit from do method -2022/02/28 11:21:29 [DEBUG] /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1: Read finished successfully -2022/02/28 11:21:29 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:29 [DEBUG] New state was assigned lineage "9b3685d8-7ebc-1200-e14f-4c645db5d915" -2022/02/28 11:21:29 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:21:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:29 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:21:29 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c62db1b0000ca08fd0c2e" => "" - name: "acctest_joxs1" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c62c71d000094624fb9de" => "" - name: "acctest_sy1l1" => "" - template_name: "acctest_sy1l1" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_joxs1" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_joxs1" => "" - id: "acctest_joxs1" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_joxs1" => "" - schema_id: "621c62c71d000094624fb9de" => "" - template_name: "acctest_sy1l1" => "" - vrf_name: "acctest_joxs1" => "" - vrf_schema_id: "621c62c71d000094624fb9de" => "" - vrf_template_name: "acctest_sy1l1" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_joxs1" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1" => "" - name: "acctest_joxs1" => "" - schema_id: "621c62c71d000094624fb9de" => "" - template_name: "acctest_sy1l1" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_joxs1" => "" - id: "acctest_joxs1" => "" - layer3_multicast: "false" => "" - name: "acctest_joxs1" => "" - schema_id: "621c62c71d000094624fb9de" => "" - template: "acctest_sy1l1" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c62db1b0000ca08fd0c2e - provider = provider.mso - description = - name = acctest_joxs1 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c62c71d000094624fb9de - provider = provider.mso - name = acctest_sy1l1 - template_name = acctest_sy1l1 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_joxs1 - provider = provider.mso - dhcp_policy.name = acctest_joxs1 - dhcp_policy.version = 0 - display_name = acctest_joxs1 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_joxs1 - schema_id = 621c62c71d000094624fb9de - template_name = acctest_sy1l1 - vrf_name = acctest_joxs1 - vrf_schema_id = 621c62c71d000094624fb9de - vrf_template_name = acctest_sy1l1 - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c62c71d000094624fb9de/templates/acctest_sy1l1/bds/acctest_joxs1/dhcpLabels/acctest_joxs1 - provider = provider.mso - bd_name = acctest_joxs1 - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_joxs1 - schema_id = 621c62c71d000094624fb9de - template_name = acctest_sy1l1 - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_joxs1 - provider = provider.mso - display_name = acctest_joxs1 - layer3_multicast = false - name = acctest_joxs1 - schema_id = 621c62c71d000094624fb9de - template = acctest_sy1l1 - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:21:29 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:21:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:21:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:21:29 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:21:29 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:21:29 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:21:29 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:21:29 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:21:29 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:21:29 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:21:29 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:21:29 [DEBUG] Template BD: Beginning Update -2022/02/28 11:21:29 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:29 [DEBUG] Begin Injection -2022/02/28 11:21:29 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:29 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:29 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000cb4500 0xc000b6e580} -2022/02/28 11:21:29 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:29 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:21:29 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:21:29 [DEBUG] 621c62db1b0000ca08fd0c2e: Beginning Read -2022/02/28 11:21:29 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:29 [DEBUG] Begin Injection -2022/02/28 11:21:29 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:29 [DEBUG] Template BD: Beginning Update -2022/02/28 11:21:29 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:29 [DEBUG] Begin Injection -2022/02/28 11:21:29 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:29 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:29 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000cb4000 0xc000b6e580} -2022/02/28 11:21:29 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c62db1b0000ca08fd0c2e -2022/02/28 11:21:29 [DEBUG] : Read finished successfully -2022/02/28 11:21:29 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:29 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d5a100 0xc000c5a6e0} -2022/02/28 11:21:29 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:29 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:21:29 [DEBUG] acctest_joxs1: Beginning Destroy -2022/02/28 11:21:29 HTTP request PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:29 [DEBUG] Begin Injection -2022/02/28 11:21:29 HTTP request after injection PATCH mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:30 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000cb4600 0xc000c5a6e0} -2022/02/28 11:21:30 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de?validate=false -2022/02/28 11:21:30 [DEBUG] acctest_joxs1: Destroy finished successfully -2022/02/28 11:21:30 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:21:30 [DEBUG] 621c62c71d000094624fb9de: Beginning Destroy -2022/02/28 11:21:30 HTTP request DELETE mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:30 [DEBUG] Begin Injection -2022/02/28 11:21:30 HTTP request after injection DELETE mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:30 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 05:51:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0018a2700 0xc000c5a6e0} -2022/02/28 11:21:30 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:30 [DEBUG] 621c62c71d000094624fb9de: Destroy finished successfully -2022/02/28 11:21:30 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:30 [DEBUG] New state was assigned lineage "e9bec437-f0c0-232f-1aa5-3b1e83c29073" -2022/02/28 11:21:30 HTTP request GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:30 [DEBUG] Begin Injection -2022/02/28 11:21:30 HTTP request after injection GET mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de -2022/02/28 11:21:30 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:30 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcee40 39 [] false false map[] 0xc000d5a400 0xc000c5a6e0} -2022/02/28 11:21:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c62c71d000094624fb9de {"code":404,"message":"Item not found"} -2022/02/28 11:21:30 [DEBUG] Exit from do method -2022/02/28 11:21:30 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:21:30 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:21:30 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:21:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:21:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:30 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:21:30 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:21:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:30 [DEBUG] : Beginning Read -2022/02/28 11:21:30 HTTP request GET mso/api/v1/tenants -2022/02/28 11:21:30 [DEBUG] Begin Injection -2022/02/28 11:21:30 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:21:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:21:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 05:51:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00086c580 5563 [] false false map[] 0xc000d5a600 0xc000c5a6e0} -2022/02/28 11:21:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:21:31 [DEBUG] Exit from do method -2022/02/28 11:21:31 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:21:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:21:31 [DEBUG] New state was assigned lineage "db511c02-7027-367e-ca1e-265cd6a83c76" -2022/02/28 11:21:31 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:21:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:21:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:21:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:21:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:21:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:21:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:21:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:21:31 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:33:18 [DEBUG] Test: Executing step 0 -2022/02/28 11:33:18 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:18 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:33:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:33:18 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:33:18 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:33:18 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:33:18 [DEBUG] Test: Executing step 1 -2022/02/28 11:33:18 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:18 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:33:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:33:18 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:33:19 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:33:19 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:33:19 [DEBUG] Test: Executing step 2 -2022/02/28 11:33:19 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:19 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:33:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:33:19 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:33:19 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:33:19 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:33:19 [DEBUG] Test: Executing step 3 -2022/02/28 11:33:19 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:19 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:33:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:33:19 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:33:19 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:33:19 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:33:19 [DEBUG] Test: Executing step 4 -2022/02/28 11:33:19 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:19 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:33:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:19 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:33:19 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:19 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:33:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:33:19 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:33:19 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:33:19 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:33:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:19 [DEBUG] : Beginning Read -2022/02/28 11:33:19 HTTP request GET mso/api/v1/tenants -2022/02/28 11:33:19 [DEBUG] Begin Injection -2022/02/28 11:33:19 HTTP request POST /login -2022/02/28 11:33:19 HTTP request after injection POST /login -2022/02/28 11:33:19 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:33:20 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:33:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:20 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDAwLCJpYXQiOjE2NDYwMjgyMDAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiME56aGYyU252TTFWQjBKMldmeDdZQjJMIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tB8wfRESuP6CPYke2CAFs46yQpr0MIa57zcxBQO32b65PBX-q50u74I0ykOTb2T-dzYA6977qAjX0LLgBVhNjhC7oXBmL_GZnke4eqofKUs19hq5T2Ooli_QUY57kWzxB-j11alA_OVfK9vBr-QP0MrgPROOuj4ZiZPLFE1YmGUkaV1QLiZS2jiysFTD847j5JPDhNHERyr11-jZciDWP9q0FckvPBhF47o2eNCU_5EiVwmFayGOWfXRW_fpR-3wy2ENPXW_SxFdgsYL5e3ubHcUb0wH-JOf3ZbtZvlck2rTdh-kU8AvwXDQS3zNePQlFFqdIum7PjUiGFF1RVCAMw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000091280 -1 [chunked] false false map[] 0xc00056aa00 0xc0003f1550} -2022/02/28 11:33:20 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDAwLCJpYXQiOjE2NDYwMjgyMDAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiME56aGYyU252TTFWQjBKMldmeDdZQjJMIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tB8wfRESuP6CPYke2CAFs46yQpr0MIa57zcxBQO32b65PBX-q50u74I0ykOTb2T-dzYA6977qAjX0LLgBVhNjhC7oXBmL_GZnke4eqofKUs19hq5T2Ooli_QUY57kWzxB-j11alA_OVfK9vBr-QP0MrgPROOuj4ZiZPLFE1YmGUkaV1QLiZS2jiysFTD847j5JPDhNHERyr11-jZciDWP9q0FckvPBhF47o2eNCU_5EiVwmFayGOWfXRW_fpR-3wy2ENPXW_SxFdgsYL5e3ubHcUb0wH-JOf3ZbtZvlck2rTdh-kU8AvwXDQS3zNePQlFFqdIum7PjUiGFF1RVCAMw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDAwLCJpYXQiOjE2NDYwMjgyMDAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiME56aGYyU252TTFWQjBKMldmeDdZQjJMIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tB8wfRESuP6CPYke2CAFs46yQpr0MIa57zcxBQO32b65PBX-q50u74I0ykOTb2T-dzYA6977qAjX0LLgBVhNjhC7oXBmL_GZnke4eqofKUs19hq5T2Ooli_QUY57kWzxB-j11alA_OVfK9vBr-QP0MrgPROOuj4ZiZPLFE1YmGUkaV1QLiZS2jiysFTD847j5JPDhNHERyr11-jZciDWP9q0FckvPBhF47o2eNCU_5EiVwmFayGOWfXRW_fpR-3wy2ENPXW_SxFdgsYL5e3ubHcUb0wH-JOf3ZbtZvlck2rTdh-kU8AvwXDQS3zNePQlFFqdIum7PjUiGFF1RVCAMw"} -2022/02/28 11:33:20 [DEBUG] Exit from do method -2022/02/28 11:33:20 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:33:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:33:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:33:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000612e80 5563 [] false false map[] 0xc00056a900 0xc0003f1550} -2022/02/28 11:33:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:33:20 [DEBUG] Exit from do method -2022/02/28 11:33:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:33:20 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:20 [DEBUG] New state was assigned lineage "b79eb022-4261-789a-0f53-bd6f05cc85ba" -2022/02/28 11:33:20 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:33:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:20 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:20 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:33:20 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:33:20 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:33:20 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:33:20 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:33:20 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:33:20 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:20 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_dzvjg" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_dzvjg" - schema_id: "" => "" - template_name: "" => "acctest_v4nn7" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_dzvjg" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_v4nn7" - template_name: "" => "acctest_v4nn7" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_dzvjg" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_dzvjg" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_v4nn7" - vrf_name: "" => "acctest_dzvjg" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_dzvjg" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_dzvjg" - schema_id: "" => "" - template_name: "" => "acctest_v4nn7" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_dzvjg" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_dzvjg" - schema_id: "" => "" - template: "" => "acctest_v4nn7" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:33:20 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:33:20 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:33:20 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:33:20 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:33:20 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:33:20 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:33:20 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:33:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:33:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:33:20 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:33:20 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:33:20 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:33:20 [DEBUG] Schema: Beginning Creation -2022/02/28 11:33:20 [DEBUG] : Beginning Create -2022/02/28 11:33:20 HTTP request POST mso/api/v1/schemas -2022/02/28 11:33:20 [DEBUG] Begin Injection -2022/02/28 11:33:20 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:33:20 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:33:20 [DEBUG] Begin Injection -2022/02/28 11:33:20 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDAwLCJpYXQiOjE2NDYwMjgyMDAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiME56aGYyU252TTFWQjBKMldmeDdZQjJMIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tB8wfRESuP6CPYke2CAFs46yQpr0MIa57zcxBQO32b65PBX-q50u74I0ykOTb2T-dzYA6977qAjX0LLgBVhNjhC7oXBmL_GZnke4eqofKUs19hq5T2Ooli_QUY57kWzxB-j11alA_OVfK9vBr-QP0MrgPROOuj4ZiZPLFE1YmGUkaV1QLiZS2jiysFTD847j5JPDhNHERyr11-jZciDWP9q0FckvPBhF47o2eNCU_5EiVwmFayGOWfXRW_fpR-3wy2ENPXW_SxFdgsYL5e3ubHcUb0wH-JOf3ZbtZvlck2rTdh-kU8AvwXDQS3zNePQlFFqdIum7PjUiGFF1RVCAMw] Content-Type:[application/json]] {{"displayName":"acctest_v4nn7","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_v4nn7","externalEpgs":[],"filters":[],"name":"acctest_v4nn7","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x12b7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:33:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:33:20 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:33:20 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDAwLCJpYXQiOjE2NDYwMjgyMDAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiME56aGYyU252TTFWQjBKMldmeDdZQjJMIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tB8wfRESuP6CPYke2CAFs46yQpr0MIa57zcxBQO32b65PBX-q50u74I0ykOTb2T-dzYA6977qAjX0LLgBVhNjhC7oXBmL_GZnke4eqofKUs19hq5T2Ooli_QUY57kWzxB-j11alA_OVfK9vBr-QP0MrgPROOuj4ZiZPLFE1YmGUkaV1QLiZS2jiysFTD847j5JPDhNHERyr11-jZciDWP9q0FckvPBhF47o2eNCU_5EiVwmFayGOWfXRW_fpR-3wy2ENPXW_SxFdgsYL5e3ubHcUb0wH-JOf3ZbtZvlck2rTdh-kU8AvwXDQS3zNePQlFFqdIum7PjUiGFF1RVCAMw] Content-Type:[application/json]] {{"desc":"","name":"acctest_dzvjg","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x12b7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:33:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:33:21 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:33:21 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c65a91d0000f9624fb9f5] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050c600 400 [] false false map[] 0xc000d2c200 0xc0003f1550} -2022/02/28 11:33:21 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:33:21 [DEBUG] Exit from do method -2022/02/28 11:33:21 [DEBUG] 621c65a91d0000f9624fb9f5: Schema Creation finished successfully -2022/02/28 11:33:21 [DEBUG] 621c65a91d0000f9624fb9f5: Beginning Read -2022/02/28 11:33:21 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:21 [DEBUG] Begin Injection -2022/02/28 11:33:21 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:21 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:33:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bcb480 160 [] false false map[] 0xc000dde300 0xc0003f1550} -2022/02/28 11:33:21 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c65a91b00005809fd0c2f","name":"acctest_dzvjg","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:33:21 [DEBUG] Exit from do method -2022/02/28 11:33:21 [DEBUG] 621c65a91b00005809fd0c2f: Creation finished successfully -2022/02/28 11:33:21 [DEBUG] 621c65a91b00005809fd0c2f: Beginning Read -2022/02/28 11:33:21 id: 621c65a91b00005809fd0c2f -2022/02/28 11:33:21 HTTP request GET mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:21 [DEBUG] Begin Injection -2022/02/28 11:33:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090b80 400 [] false false map[] 0xc000374300 0xc000d4a580} -2022/02/28 11:33:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:33:22 [DEBUG] Exit from do method -2022/02/28 11:33:22 [DEBUG] 621c65a91d0000f9624fb9f5: Read finished successfully -2022/02/28 11:33:22 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:33:22 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:33:22 HTTP request PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:22 [DEBUG] Begin Injection -2022/02/28 11:33:22 HTTP request after injection PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bcb640 160 [] false false map[] 0xc000d2c500 0xc0003f1550} -2022/02/28 11:33:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f {"id":"621c65a91b00005809fd0c2f","name":"acctest_dzvjg","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:33:22 [DEBUG] Exit from do method -2022/02/28 11:33:22 [DEBUG] 621c65a91b00005809fd0c2f: Read finished successfully -2022/02/28 11:33:22 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ddef00 0xc000d4a580} -2022/02/28 11:33:22 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:22 [DEBUG] acctest_dzvjg: Creation finished successfully -2022/02/28 11:33:22 [DEBUG] acctest_dzvjg: Beginning Read -2022/02/28 11:33:22 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:22 [DEBUG] Begin Injection -2022/02/28 11:33:22 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000613700 768 [] false false map[] 0xc000374700 0xc0001366e0} -2022/02/28 11:33:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:33:22 [DEBUG] Exit from do method -2022/02/28 11:33:22 currentvrfname acctest_dzvjg -2022/02/28 11:33:22 found correct vrfname -2022/02/28 11:33:22 [DEBUG] acctest_dzvjg: Read finished successfully -2022/02/28 11:33:22 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:33:22 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:33:22 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:33:22 HTTP request PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:22 [DEBUG] Begin Injection -2022/02/28 11:33:22 HTTP request after injection PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:23 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ddfa00 0xc0001366e0} -2022/02/28 11:33:23 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:23 [DEBUG] : Beginning Read -2022/02/28 11:33:23 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:23 [DEBUG] Begin Injection -2022/02/28 11:33:23 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007bee40 1277 [] false false map[] 0xc000374900 0xc0001366e0} -2022/02/28 11:33:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:33:23 [DEBUG] Exit from do method -2022/02/28 11:33:23 [DEBUG] acctest_dzvjg: Read finished successfully -2022/02/28 11:33:23 [DEBUG] : Beginning Read -2022/02/28 11:33:23 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:23 [DEBUG] Begin Injection -2022/02/28 11:33:23 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:23 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:33:23 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:33:23 HTTP request PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:23 [DEBUG] Begin Injection -2022/02/28 11:33:23 HTTP request after injection PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006acfc0 1277 [] false false map[] 0xc000375200 0xc0001366e0} -2022/02/28 11:33:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:33:23 [DEBUG] Exit from do method -2022/02/28 11:33:23 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 11:33:23 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 11:33:23 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000374200 0xc0003f1550} -2022/02/28 11:33:23 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:23 [DEBUG] Creation Complete -2022/02/28 11:33:23 [DEBUG] : Beginning Read -2022/02/28 11:33:23 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:23 [DEBUG] Begin Injection -2022/02/28 11:33:23 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00123e040 1362 [] false false map[] 0xc000d32800 0xc0003f1550} -2022/02/28 11:33:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","dhcpLabel":{"name":"acctest_dzvjg","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_dzvjg","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:33:24 [DEBUG] Exit from do method -2022/02/28 11:33:24 [DEBUG] /schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg: Read finished successfully -2022/02/28 11:33:24 [DEBUG] New state was assigned lineage "836f2e95-c1dd-aeae-f53f-365f6117f0bd" -2022/02/28 11:33:24 [WARN] Test: Executing destroy step -2022/02/28 11:33:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:24 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:33:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:24 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:33:24 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:24 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:33:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:33:24 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:24 [DEBUG] : Beginning Read -2022/02/28 11:33:24 HTTP request GET mso/api/v1/tenants -2022/02/28 11:33:24 [DEBUG] Begin Injection -2022/02/28 11:33:24 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:33:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:33:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:33:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b0440 5563 [] false false map[] 0xc000d2c200 0xc0003f1550} -2022/02/28 11:33:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:33:24 [DEBUG] Exit from do method -2022/02/28 11:33:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:33:24 [DEBUG] 621c65a91b00005809fd0c2f: Beginning Read -2022/02/28 11:33:24 id: 621c65a91b00005809fd0c2f -2022/02/28 11:33:24 HTTP request GET mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:24 [DEBUG] Begin Injection -2022/02/28 11:33:24 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:24 [DEBUG] 621c65a91d0000f9624fb9f5: Beginning Read -2022/02/28 11:33:24 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:24 [DEBUG] Begin Injection -2022/02/28 11:33:24 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001274700 1362 [] false false map[] 0xc000d32400 0xc0001366e0} -2022/02/28 11:33:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","dhcpLabel":{"name":"acctest_dzvjg","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_dzvjg","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:33:24 [DEBUG] Exit from do method -2022/02/28 11:33:24 [DEBUG] 621c65a91d0000f9624fb9f5: Read finished successfully -2022/02/28 11:33:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:33:24 [DEBUG] acctest_dzvjg: Beginning Read -2022/02/28 11:33:24 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:24 [DEBUG] Begin Injection -2022/02/28 11:33:24 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050d100 160 [] false false map[] 0xc000d2c600 0xc0003f1550} -2022/02/28 11:33:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f {"id":"621c65a91b00005809fd0c2f","name":"acctest_dzvjg","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:33:24 [DEBUG] Exit from do method -2022/02/28 11:33:24 [DEBUG] 621c65a91b00005809fd0c2f: Read finished successfully -2022/02/28 11:33:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ddc0 1362 [] false false map[] 0xc000bfad00 0xc0001366e0} -2022/02/28 11:33:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","dhcpLabel":{"name":"acctest_dzvjg","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_dzvjg","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:33:25 [DEBUG] Exit from do method -2022/02/28 11:33:25 currentvrfname acctest_dzvjg -2022/02/28 11:33:25 found correct vrfname -2022/02/28 11:33:25 [DEBUG] acctest_dzvjg: Read finished successfully -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:33:25 [DEBUG] acctest_dzvjg: Beginning Read -2022/02/28 11:33:25 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 [DEBUG] Begin Injection -2022/02/28 11:33:25 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00123ea80 1362 [] false false map[] 0xc000374800 0xc0001366e0} -2022/02/28 11:33:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","dhcpLabel":{"name":"acctest_dzvjg","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_dzvjg","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:33:25 [DEBUG] Exit from do method -2022/02/28 11:33:25 [DEBUG] acctest_dzvjg: Read finished successfully -2022/02/28 11:33:25 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:33:25 [DEBUG] /schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg: Beginning Read -2022/02/28 11:33:25 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 [DEBUG] Begin Injection -2022/02/28 11:33:25 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 [DEBUG] : Beginning Read -2022/02/28 11:33:25 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 [DEBUG] Begin Injection -2022/02/28 11:33:25 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001275f00 1362 [] false false map[] 0xc000584300 0xc0003f1550} -2022/02/28 11:33:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","dhcpLabel":{"name":"acctest_dzvjg","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_dzvjg","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:33:25 [DEBUG] Exit from do method -2022/02/28 11:33:25 [DEBUG] /schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg: Read finished successfully -2022/02/28 11:33:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bcba40 1362 [] false false map[] 0xc000374a00 0xc0001366e0} -2022/02/28 11:33:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"id":"621c65a91d0000f9624fb9f5","displayName":"acctest_v4nn7","description":"","templates":[{"name":"acctest_v4nn7","displayName":"acctest_v4nn7","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_dzvjg","displayName":"acctest_dzvjg","bdRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/vrfs/acctest_dzvjg","dhcpLabel":{"name":"acctest_dzvjg","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_dzvjg","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:33:25 [DEBUG] Exit from do method -2022/02/28 11:33:25 [DEBUG] /schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg: Read finished successfully -2022/02/28 11:33:25 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:25 [DEBUG] New state was assigned lineage "09f36312-50f9-7906-30ac-c4e75df32fad" -2022/02/28 11:33:25 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:33:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (destroy) -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:33:25 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_dzvjg" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg" => "" - name: "acctest_dzvjg" => "" - schema_id: "621c65a91d0000f9624fb9f5" => "" - template_name: "acctest_v4nn7" => "" - version: "0" => "" -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c65a91b00005809fd0c2f" => "" - name: "acctest_dzvjg" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c65a91d0000f9624fb9f5" => "" - name: "acctest_v4nn7" => "" - template_name: "acctest_v4nn7" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_dzvjg" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_dzvjg" => "" - id: "acctest_dzvjg" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_dzvjg" => "" - schema_id: "621c65a91d0000f9624fb9f5" => "" - template_name: "acctest_v4nn7" => "" - vrf_name: "acctest_dzvjg" => "" - vrf_schema_id: "621c65a91d0000f9624fb9f5" => "" - vrf_template_name: "acctest_v4nn7" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_dzvjg" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg" => "" - name: "acctest_dzvjg" => "" - schema_id: "621c65a91d0000f9624fb9f5" => "" - template_name: "acctest_v4nn7" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_dzvjg" => "" - id: "acctest_dzvjg" => "" - layer3_multicast: "false" => "" - name: "acctest_dzvjg" => "" - schema_id: "621c65a91d0000f9624fb9f5" => "" - template: "acctest_v4nn7" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg - provider = provider.mso - bd_name = acctest_dzvjg - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_dzvjg - schema_id = 621c65a91d0000f9624fb9f5 - template_name = acctest_v4nn7 - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c65a91b00005809fd0c2f - provider = provider.mso - description = - name = acctest_dzvjg - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c65a91d0000f9624fb9f5 - provider = provider.mso - name = acctest_v4nn7 - template_name = acctest_v4nn7 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_dzvjg - provider = provider.mso - dhcp_policy.name = acctest_dzvjg - dhcp_policy.version = 0 - display_name = acctest_dzvjg - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_dzvjg - schema_id = 621c65a91d0000f9624fb9f5 - template_name = acctest_v4nn7 - vrf_name = acctest_dzvjg - vrf_schema_id = 621c65a91d0000f9624fb9f5 - vrf_template_name = acctest_v4nn7 - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c65a91d0000f9624fb9f5/templates/acctest_v4nn7/bds/acctest_dzvjg/dhcpLabels/acctest_dzvjg - provider = provider.mso - bd_name = acctest_dzvjg - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_dzvjg - schema_id = 621c65a91d0000f9624fb9f5 - template_name = acctest_v4nn7 - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_dzvjg - provider = provider.mso - display_name = acctest_dzvjg - layer3_multicast = false - name = acctest_dzvjg - schema_id = 621c65a91d0000f9624fb9f5 - template = acctest_v4nn7 - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:33:25 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:33:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:33:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:33:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:33:25 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:33:25 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:33:25 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:33:25 [DEBUG] Template BD: Beginning Update -2022/02/28 11:33:25 HTTP request PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:25 [DEBUG] Begin Injection -2022/02/28 11:33:25 HTTP request after injection PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000bfa900 0xc0001366e0} -2022/02/28 11:33:26 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:33:26 [DEBUG] 621c65a91b00005809fd0c2f: Beginning Read -2022/02/28 11:33:26 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:26 [DEBUG] Begin Injection -2022/02/28 11:33:26 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:26 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:33:26 [DEBUG] Template BD: Beginning Update -2022/02/28 11:33:26 HTTP request PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 [DEBUG] Begin Injection -2022/02/28 11:33:26 HTTP request after injection PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d33600 0xc0001366e0} -2022/02/28 11:33:26 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65a91b00005809fd0c2f -2022/02/28 11:33:26 [DEBUG] : Read finished successfully -2022/02/28 11:33:26 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000375000 0xc0003f1550} -2022/02/28 11:33:26 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:33:26 [DEBUG] acctest_dzvjg: Beginning Destroy -2022/02/28 11:33:26 HTTP request PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 [DEBUG] Begin Injection -2022/02/28 11:33:26 HTTP request after injection PATCH mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000374700 0xc0003f1550} -2022/02/28 11:33:26 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5?validate=false -2022/02/28 11:33:26 [DEBUG] acctest_dzvjg: Destroy finished successfully -2022/02/28 11:33:26 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:33:26 [DEBUG] 621c65a91d0000f9624fb9f5: Beginning Destroy -2022/02/28 11:33:26 HTTP request DELETE mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:26 [DEBUG] Begin Injection -2022/02/28 11:33:26 HTTP request after injection DELETE mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:27 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:03:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d32600 0xc0003f1550} -2022/02/28 11:33:27 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:27 [DEBUG] 621c65a91d0000f9624fb9f5: Destroy finished successfully -2022/02/28 11:33:27 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:27 [DEBUG] New state was assigned lineage "8c526da3-be1c-61d1-ba32-fa5fa121f509" -2022/02/28 11:33:27 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:27 [DEBUG] Begin Injection -2022/02/28 11:33:27 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:27 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:27 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00123ee80 39 [] false false map[] 0xc000bfa800 0xc0003f1550} -2022/02/28 11:33:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"code":404,"message":"Item not found"} -2022/02/28 11:33:27 [DEBUG] Exit from do method -2022/02/28 11:33:27 HTTP request GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:27 [DEBUG] Begin Injection -2022/02/28 11:33:27 HTTP request after injection GET mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 -2022/02/28 11:33:27 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:27 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bcad00 39 [] false false map[] 0xc000374900 0xc0003f1550} -2022/02/28 11:33:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65a91d0000f9624fb9f5 {"code":404,"message":"Item not found"} -2022/02/28 11:33:27 [DEBUG] Exit from do method -2022/02/28 11:33:27 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:33:27 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:33:27 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:33:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:33:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:33:27 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:33:27 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:33:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:27 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:33:27 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:33:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:27 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:33:27 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:33:27 [DEBUG] : Beginning Read -2022/02/28 11:33:27 HTTP request GET mso/api/v1/tenants -2022/02/28 11:33:27 [DEBUG] Begin Injection -2022/02/28 11:33:27 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:33:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:33:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:33:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:03:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00123e040 5563 [] false false map[] 0xc000bfab00 0xc0003f1550} -2022/02/28 11:33:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:33:28 [DEBUG] Exit from do method -2022/02/28 11:33:28 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:33:28 [DEBUG] provider has no plugin.Client -2022/02/28 11:33:28 [DEBUG] New state was assigned lineage "91600c7f-f885-51f9-fa25-b2e3d35ad808" -2022/02/28 11:33:28 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:33:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:33:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:33:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:33:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:33:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:33:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:33:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:33:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:33:28 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:34:09 [DEBUG] Test: Executing step 0 -2022/02/28 11:34:09 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:34:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:34:09 [DEBUG] Test: Executing step 1 -2022/02/28 11:34:09 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:34:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:34:09 [DEBUG] Test: Executing step 2 -2022/02/28 11:34:09 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:34:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:34:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:34:09 [DEBUG] Test: Executing step 3 -2022/02/28 11:34:09 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:34:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:34:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:34:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:34:09 [DEBUG] Test: Executing step 4 -2022/02/28 11:34:09 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:34:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:34:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:34:09 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:09 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:34:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:09 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:34:09 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:34:09 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:34:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:09 [DEBUG] : Beginning Read -2022/02/28 11:34:09 HTTP request GET mso/api/v1/tenants -2022/02/28 11:34:09 [DEBUG] Begin Injection -2022/02/28 11:34:09 HTTP request POST /login -2022/02/28 11:34:09 HTTP request after injection POST /login -2022/02/28 11:34:09 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:34:11 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:34:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:11 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDUxLCJpYXQiOjE2NDYwMjgyNTEsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZ011VXBBSHlVS2xUdkZKbz1mTTMzQ2RkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gUV5jeBAO-dZvR_95GJkfq0rkpG5X-vi1Fr6lLDpOvUHPEVcBNLOHk0oaUf-BQzmQJ-IMc6Pv9Bz52LWZYd7NtdWmTqUNhLd0PCceyzmYqERJnIKyFEGG4MHtShYWhj7OrPBkoF0eYcIp3eFlNJONTDjp7GYixMa3GM9x0ghp2AVIwfFfoldkji0Wf1HgWx9s4tzEZIh7z-KC3sU4REWt6aifF5f-HTXxh7sDRzKwJxzjaSu6Vp10BXysN9ulillJelcT-XTKL8_CPqSrRjeSuiIX9Rr5Dt-OavOLtfMdBRaB-SxzrZXTCGiBEAMDXM5S4-Z0WxFjGfEInTMCl7e4A; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00004c5c0 -1 [chunked] false false map[] 0xc000bc0c00 0xc000b58000} -2022/02/28 11:34:11 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDUxLCJpYXQiOjE2NDYwMjgyNTEsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZ011VXBBSHlVS2xUdkZKbz1mTTMzQ2RkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gUV5jeBAO-dZvR_95GJkfq0rkpG5X-vi1Fr6lLDpOvUHPEVcBNLOHk0oaUf-BQzmQJ-IMc6Pv9Bz52LWZYd7NtdWmTqUNhLd0PCceyzmYqERJnIKyFEGG4MHtShYWhj7OrPBkoF0eYcIp3eFlNJONTDjp7GYixMa3GM9x0ghp2AVIwfFfoldkji0Wf1HgWx9s4tzEZIh7z-KC3sU4REWt6aifF5f-HTXxh7sDRzKwJxzjaSu6Vp10BXysN9ulillJelcT-XTKL8_CPqSrRjeSuiIX9Rr5Dt-OavOLtfMdBRaB-SxzrZXTCGiBEAMDXM5S4-Z0WxFjGfEInTMCl7e4A","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDUxLCJpYXQiOjE2NDYwMjgyNTEsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZ011VXBBSHlVS2xUdkZKbz1mTTMzQ2RkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gUV5jeBAO-dZvR_95GJkfq0rkpG5X-vi1Fr6lLDpOvUHPEVcBNLOHk0oaUf-BQzmQJ-IMc6Pv9Bz52LWZYd7NtdWmTqUNhLd0PCceyzmYqERJnIKyFEGG4MHtShYWhj7OrPBkoF0eYcIp3eFlNJONTDjp7GYixMa3GM9x0ghp2AVIwfFfoldkji0Wf1HgWx9s4tzEZIh7z-KC3sU4REWt6aifF5f-HTXxh7sDRzKwJxzjaSu6Vp10BXysN9ulillJelcT-XTKL8_CPqSrRjeSuiIX9Rr5Dt-OavOLtfMdBRaB-SxzrZXTCGiBEAMDXM5S4-Z0WxFjGfEInTMCl7e4A"} -2022/02/28 11:34:11 [DEBUG] Exit from do method -2022/02/28 11:34:11 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:34:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:34:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:34:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000514040 5563 [] false false map[] 0xc000bc0b00 0xc000b58000} -2022/02/28 11:34:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:34:11 [DEBUG] Exit from do method -2022/02/28 11:34:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:34:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:11 [DEBUG] New state was assigned lineage "d396769d-dbae-be6e-d565-aeb2b08b2bfb" -2022/02/28 11:34:11 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:34:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:11 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:11 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:34:11 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:34:11 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:34:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:34:11 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:34:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:34:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:11 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_iuj2a" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_iuj2a" - schema_id: "" => "" - template_name: "" => "acctest_0jztx" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_iuj2a" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_0jztx" - template_name: "" => "acctest_0jztx" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_iuj2a" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_iuj2a" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_0jztx" - vrf_name: "" => "acctest_iuj2a" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_iuj2a" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_iuj2a" - schema_id: "" => "" - template_name: "" => "acctest_0jztx" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_iuj2a" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_iuj2a" - schema_id: "" => "" - template: "" => "acctest_0jztx" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:34:11 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:34:11 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:34:11 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:34:11 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:34:11 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:34:11 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:34:11 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:34:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:34:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:34:11 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:34:11 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:34:11 [DEBUG] Schema: Beginning Creation -2022/02/28 11:34:11 HTTP request POST mso/api/v1/schemas -2022/02/28 11:34:11 [DEBUG] Begin Injection -2022/02/28 11:34:11 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:34:11 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDUxLCJpYXQiOjE2NDYwMjgyNTEsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZ011VXBBSHlVS2xUdkZKbz1mTTMzQ2RkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gUV5jeBAO-dZvR_95GJkfq0rkpG5X-vi1Fr6lLDpOvUHPEVcBNLOHk0oaUf-BQzmQJ-IMc6Pv9Bz52LWZYd7NtdWmTqUNhLd0PCceyzmYqERJnIKyFEGG4MHtShYWhj7OrPBkoF0eYcIp3eFlNJONTDjp7GYixMa3GM9x0ghp2AVIwfFfoldkji0Wf1HgWx9s4tzEZIh7z-KC3sU4REWt6aifF5f-HTXxh7sDRzKwJxzjaSu6Vp10BXysN9ulillJelcT-XTKL8_CPqSrRjeSuiIX9Rr5Dt-OavOLtfMdBRaB-SxzrZXTCGiBEAMDXM5S4-Z0WxFjGfEInTMCl7e4A] Content-Type:[application/json]] {{"displayName":"acctest_0jztx","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_0jztx","externalEpgs":[],"filters":[],"name":"acctest_0jztx","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x4a7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} -2022/02/28 11:34:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:34:11 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:34:11 [DEBUG] : Beginning Create -2022/02/28 11:34:11 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:34:11 [DEBUG] Begin Injection -2022/02/28 11:34:11 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:34:12 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5NDUxLCJpYXQiOjE2NDYwMjgyNTEsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZ011VXBBSHlVS2xUdkZKbz1mTTMzQ2RkIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gUV5jeBAO-dZvR_95GJkfq0rkpG5X-vi1Fr6lLDpOvUHPEVcBNLOHk0oaUf-BQzmQJ-IMc6Pv9Bz52LWZYd7NtdWmTqUNhLd0PCceyzmYqERJnIKyFEGG4MHtShYWhj7OrPBkoF0eYcIp3eFlNJONTDjp7GYixMa3GM9x0ghp2AVIwfFfoldkji0Wf1HgWx9s4tzEZIh7z-KC3sU4REWt6aifF5f-HTXxh7sDRzKwJxzjaSu6Vp10BXysN9ulillJelcT-XTKL8_CPqSrRjeSuiIX9Rr5Dt-OavOLtfMdBRaB-SxzrZXTCGiBEAMDXM5S4-Z0WxFjGfEInTMCl7e4A] Content-Type:[application/json]] {{"desc":"","name":"acctest_iuj2a","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x4a7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} -2022/02/28 11:34:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:34:12 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:34:12 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c65dc1d0000fa624fb9fd] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e7280 400 [] false false map[] 0xc0000a6700 0xc000b58000} -2022/02/28 11:34:12 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:34:12 [DEBUG] Exit from do method -2022/02/28 11:34:12 [DEBUG] 621c65dc1d0000fa624fb9fd: Schema Creation finished successfully -2022/02/28 11:34:12 [DEBUG] 621c65dc1d0000fa624fb9fd: Beginning Read -2022/02/28 11:34:12 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:12 [DEBUG] Begin Injection -2022/02/28 11:34:12 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:12 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:34:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e74c0 160 [] false false map[] 0xc0007ea500 0xc000b58000} -2022/02/28 11:34:12 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c65dc1b00007109fd0c30","name":"acctest_iuj2a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:34:12 [DEBUG] Exit from do method -2022/02/28 11:34:12 [DEBUG] 621c65dc1b00007109fd0c30: Creation finished successfully -2022/02/28 11:34:12 [DEBUG] 621c65dc1b00007109fd0c30: Beginning Read -2022/02/28 11:34:12 id: 621c65dc1b00007109fd0c30 -2022/02/28 11:34:12 HTTP request GET mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:12 [DEBUG] Begin Injection -2022/02/28 11:34:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e7700 400 [] false false map[] 0xc0007eab00 0xc000b58000} -2022/02/28 11:34:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:34:13 [DEBUG] Exit from do method -2022/02/28 11:34:13 [DEBUG] 621c65dc1d0000fa624fb9fd: Read finished successfully -2022/02/28 11:34:13 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:34:13 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:34:13 HTTP request PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:13 [DEBUG] Begin Injection -2022/02/28 11:34:13 HTTP request after injection PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007fda00 160 [] false false map[] 0xc0007ead00 0xc000536dc0} -2022/02/28 11:34:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 {"id":"621c65dc1b00007109fd0c30","name":"acctest_iuj2a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:34:13 [DEBUG] Exit from do method -2022/02/28 11:34:13 [DEBUG] 621c65dc1b00007109fd0c30: Read finished successfully -2022/02/28 11:34:13 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000518300 0xc000b58000} -2022/02/28 11:34:13 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:13 [DEBUG] acctest_iuj2a: Creation finished successfully -2022/02/28 11:34:13 [DEBUG] acctest_iuj2a: Beginning Read -2022/02/28 11:34:13 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:13 [DEBUG] Begin Injection -2022/02/28 11:34:13 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000df200 768 [] false false map[] 0xc000518500 0xc000e8b1e0} -2022/02/28 11:34:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:34:13 [DEBUG] Exit from do method -2022/02/28 11:34:13 currentvrfname acctest_iuj2a -2022/02/28 11:34:13 found correct vrfname -2022/02/28 11:34:13 [DEBUG] acctest_iuj2a: Read finished successfully -2022/02/28 11:34:13 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:34:13 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:34:13 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:34:13 HTTP request PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:13 [DEBUG] Begin Injection -2022/02/28 11:34:13 HTTP request after injection PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:14 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a7700 0xc00040bce0} -2022/02/28 11:34:14 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:14 [DEBUG] : Beginning Read -2022/02/28 11:34:14 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:14 [DEBUG] Begin Injection -2022/02/28 11:34:14 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000514040 1277 [] false false map[] 0xc0007fa800 0xc00040bce0} -2022/02/28 11:34:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:34:14 [DEBUG] Exit from do method -2022/02/28 11:34:14 [DEBUG] acctest_iuj2a: Read finished successfully -2022/02/28 11:34:14 [DEBUG] : Beginning Read -2022/02/28 11:34:14 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:14 [DEBUG] Begin Injection -2022/02/28 11:34:14 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:14 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:34:14 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:34:14 HTTP request PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:14 [DEBUG] Begin Injection -2022/02/28 11:34:14 HTTP request after injection PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000848b40 1277 [] false false map[] 0xc000bc0300 0xc00040bce0} -2022/02/28 11:34:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:34:14 [DEBUG] Exit from do method -2022/02/28 11:34:14 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 11:34:14 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 11:34:14 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000518200 0xc000536dc0} -2022/02/28 11:34:14 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:14 [DEBUG] Creation Complete -2022/02/28 11:34:14 [DEBUG] : Beginning Read -2022/02/28 11:34:14 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:14 [DEBUG] Begin Injection -2022/02/28 11:34:14 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000848d40 1362 [] false false map[] 0xc0000a6400 0xc000536dc0} -2022/02/28 11:34:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","dhcpLabel":{"name":"acctest_iuj2a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_iuj2a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:34:15 [DEBUG] Exit from do method -2022/02/28 11:34:15 [DEBUG] /schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a: Read finished successfully -2022/02/28 11:34:15 [DEBUG] New state was assigned lineage "6b4b5d76-db35-21e3-b4d7-8ab6693ae6a7" -2022/02/28 11:34:15 [WARN] Test: Executing destroy step -2022/02/28 11:34:15 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:15 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:34:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:34:15 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:34:15 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:15 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:34:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:34:15 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:15 [DEBUG] : Beginning Read -2022/02/28 11:34:15 HTTP request GET mso/api/v1/tenants -2022/02/28 11:34:15 [DEBUG] Begin Injection -2022/02/28 11:34:15 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:34:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:34:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:34:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005158c0 5563 [] false false map[] 0xc000518400 0xc000536dc0} -2022/02/28 11:34:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:34:15 [DEBUG] Exit from do method -2022/02/28 11:34:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:34:15 [DEBUG] 621c65dc1d0000fa624fb9fd: Beginning Read -2022/02/28 11:34:15 [DEBUG] 621c65dc1b00007109fd0c30: Beginning Read -2022/02/28 11:34:15 id: 621c65dc1b00007109fd0c30 -2022/02/28 11:34:15 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:15 [DEBUG] Begin Injection -2022/02/28 11:34:15 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:15 [DEBUG] Begin Injection -2022/02/28 11:34:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d28840 1362 [] false false map[] 0xc0000a6c00 0xc000536dc0} -2022/02/28 11:34:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","dhcpLabel":{"name":"acctest_iuj2a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_iuj2a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:34:15 [DEBUG] Exit from do method -2022/02/28 11:34:15 [DEBUG] 621c65dc1d0000fa624fb9fd: Read finished successfully -2022/02/28 11:34:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:34:15 [DEBUG] acctest_iuj2a: Beginning Read -2022/02/28 11:34:15 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:15 [DEBUG] Begin Injection -2022/02/28 11:34:15 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000deec0 160 [] false false map[] 0xc000518800 0xc00040bce0} -2022/02/28 11:34:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 {"id":"621c65dc1b00007109fd0c30","name":"acctest_iuj2a","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:34:15 [DEBUG] Exit from do method -2022/02/28 11:34:15 [DEBUG] 621c65dc1b00007109fd0c30: Read finished successfully -2022/02/28 11:34:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00014bcc0 1362 [] false false map[] 0xc000bc0800 0xc000536dc0} -2022/02/28 11:34:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","dhcpLabel":{"name":"acctest_iuj2a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_iuj2a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:34:16 [DEBUG] Exit from do method -2022/02/28 11:34:16 currentvrfname acctest_iuj2a -2022/02/28 11:34:16 found correct vrfname -2022/02/28 11:34:16 [DEBUG] acctest_iuj2a: Read finished successfully -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:34:16 [DEBUG] acctest_iuj2a: Beginning Read -2022/02/28 11:34:16 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 [DEBUG] Begin Injection -2022/02/28 11:34:16 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000218b40 1362 [] false false map[] 0xc0007fa500 0xc000536dc0} -2022/02/28 11:34:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","dhcpLabel":{"name":"acctest_iuj2a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_iuj2a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:34:16 [DEBUG] Exit from do method -2022/02/28 11:34:16 [DEBUG] acctest_iuj2a: Read finished successfully -2022/02/28 11:34:16 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:34:16 [DEBUG] /schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a: Beginning Read -2022/02/28 11:34:16 [DEBUG] : Beginning Read -2022/02/28 11:34:16 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 [DEBUG] Begin Injection -2022/02/28 11:34:16 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 [DEBUG] Begin Injection -2022/02/28 11:34:16 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004d9800 1362 [] false false map[] 0xc0007fa600 0xc00040bce0} -2022/02/28 11:34:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","dhcpLabel":{"name":"acctest_iuj2a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_iuj2a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:34:16 [DEBUG] Exit from do method -2022/02/28 11:34:16 [DEBUG] /schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a: Read finished successfully -2022/02/28 11:34:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d29340 1362 [] false false map[] 0xc0000a7100 0xc000536dc0} -2022/02/28 11:34:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"id":"621c65dc1d0000fa624fb9fd","displayName":"acctest_0jztx","description":"","templates":[{"name":"acctest_0jztx","displayName":"acctest_0jztx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_iuj2a","displayName":"acctest_iuj2a","bdRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/vrfs/acctest_iuj2a","dhcpLabel":{"name":"acctest_iuj2a","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_iuj2a","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:34:16 [DEBUG] Exit from do method -2022/02/28 11:34:16 [DEBUG] /schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a: Read finished successfully -2022/02/28 11:34:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:16 [DEBUG] New state was assigned lineage "6864205d-cd8e-0226-6b83-c1d3473930ab" -2022/02/28 11:34:16 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:34:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:16 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:34:16 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_iuj2a" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a" => "" - name: "acctest_iuj2a" => "" - schema_id: "621c65dc1d0000fa624fb9fd" => "" - template_name: "acctest_0jztx" => "" - version: "0" => "" -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c65dc1b00007109fd0c30" => "" - name: "acctest_iuj2a" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c65dc1d0000fa624fb9fd" => "" - name: "acctest_0jztx" => "" - template_name: "acctest_0jztx" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_iuj2a" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_iuj2a" => "" - id: "acctest_iuj2a" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_iuj2a" => "" - schema_id: "621c65dc1d0000fa624fb9fd" => "" - template_name: "acctest_0jztx" => "" - vrf_name: "acctest_iuj2a" => "" - vrf_schema_id: "621c65dc1d0000fa624fb9fd" => "" - vrf_template_name: "acctest_0jztx" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_iuj2a" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a" => "" - name: "acctest_iuj2a" => "" - schema_id: "621c65dc1d0000fa624fb9fd" => "" - template_name: "acctest_0jztx" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_iuj2a" => "" - id: "acctest_iuj2a" => "" - layer3_multicast: "false" => "" - name: "acctest_iuj2a" => "" - schema_id: "621c65dc1d0000fa624fb9fd" => "" - template: "acctest_0jztx" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a - provider = provider.mso - bd_name = acctest_iuj2a - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_iuj2a - schema_id = 621c65dc1d0000fa624fb9fd - template_name = acctest_0jztx - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c65dc1b00007109fd0c30 - provider = provider.mso - description = - name = acctest_iuj2a - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c65dc1d0000fa624fb9fd - provider = provider.mso - name = acctest_0jztx - template_name = acctest_0jztx - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_iuj2a - provider = provider.mso - dhcp_policy.name = acctest_iuj2a - dhcp_policy.version = 0 - display_name = acctest_iuj2a - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_iuj2a - schema_id = 621c65dc1d0000fa624fb9fd - template_name = acctest_0jztx - vrf_name = acctest_iuj2a - vrf_schema_id = 621c65dc1d0000fa624fb9fd - vrf_template_name = acctest_0jztx - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c65dc1d0000fa624fb9fd/templates/acctest_0jztx/bds/acctest_iuj2a/dhcpLabels/acctest_iuj2a - provider = provider.mso - bd_name = acctest_iuj2a - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_iuj2a - schema_id = 621c65dc1d0000fa624fb9fd - template_name = acctest_0jztx - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_iuj2a - provider = provider.mso - display_name = acctest_iuj2a - layer3_multicast = false - name = acctest_iuj2a - schema_id = 621c65dc1d0000fa624fb9fd - template = acctest_0jztx - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:34:16 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:34:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:34:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:34:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:34:16 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:34:16 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:34:16 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:34:16 [DEBUG] Template BD: Beginning Update -2022/02/28 11:34:16 HTTP request PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:16 [DEBUG] Begin Injection -2022/02/28 11:34:16 HTTP request after injection PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0007ea800 0xc000536dc0} -2022/02/28 11:34:17 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:34:17 [DEBUG] 621c65dc1b00007109fd0c30: Beginning Read -2022/02/28 11:34:17 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:17 [DEBUG] Begin Injection -2022/02/28 11:34:17 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:17 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:34:17 [DEBUG] Template BD: Beginning Update -2022/02/28 11:34:17 HTTP request PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 [DEBUG] Begin Injection -2022/02/28 11:34:17 HTTP request after injection PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000dca000 0xc00040bce0} -2022/02/28 11:34:17 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:34:17 [DEBUG] acctest_iuj2a: Beginning Destroy -2022/02/28 11:34:17 HTTP request PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 [DEBUG] Begin Injection -2022/02/28 11:34:17 HTTP request after injection PATCH mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a6e00 0xc00040bce0} -2022/02/28 11:34:17 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd?validate=false -2022/02/28 11:34:17 [DEBUG] acctest_iuj2a: Destroy finished successfully -2022/02/28 11:34:17 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:34:17 [DEBUG] 621c65dc1d0000fa624fb9fd: Beginning Destroy -2022/02/28 11:34:17 HTTP request DELETE mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:17 [DEBUG] Begin Injection -2022/02/28 11:34:17 HTTP request after injection DELETE mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:17 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000bc1600 0xc000536dc0} -2022/02/28 11:34:17 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c65dc1b00007109fd0c30 -2022/02/28 11:34:17 [DEBUG] : Read finished successfully -2022/02/28 11:34:18 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:18 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:04:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000518800 0xc00040bce0} -2022/02/28 11:34:18 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:18 [DEBUG] 621c65dc1d0000fa624fb9fd: Destroy finished successfully -2022/02/28 11:34:18 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:18 [DEBUG] New state was assigned lineage "b62279e9-b215-e9d8-adc6-fdc0fb9bd280" -2022/02/28 11:34:18 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:18 [DEBUG] Begin Injection -2022/02/28 11:34:18 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:18 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:18 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f174c0 39 [] false false map[] 0xc000bc0200 0xc00040bce0} -2022/02/28 11:34:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"code":404,"message":"Item not found"} -2022/02/28 11:34:18 [DEBUG] Exit from do method -2022/02/28 11:34:18 HTTP request GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:18 [DEBUG] Begin Injection -2022/02/28 11:34:18 HTTP request after injection GET mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd -2022/02/28 11:34:18 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:18 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009126c0 39 [] false false map[] 0xc0000a7000 0xc00040bce0} -2022/02/28 11:34:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c65dc1d0000fa624fb9fd {"code":404,"message":"Item not found"} -2022/02/28 11:34:18 [DEBUG] Exit from do method -2022/02/28 11:34:18 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:34:18 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:34:18 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:34:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:34:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:34:18 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:34:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:34:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:18 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:34:18 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:34:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:18 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:34:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:34:18 [DEBUG] : Beginning Read -2022/02/28 11:34:18 HTTP request GET mso/api/v1/tenants -2022/02/28 11:34:18 [DEBUG] Begin Injection -2022/02/28 11:34:18 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:34:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:34:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:34:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:04:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dc1780 5563 [] false false map[] 0xc0000a6c00 0xc00040bce0} -2022/02/28 11:34:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:34:19 [DEBUG] Exit from do method -2022/02/28 11:34:19 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:34:19 [DEBUG] provider has no plugin.Client -2022/02/28 11:34:19 [DEBUG] New state was assigned lineage "7d6d00b4-61f0-91db-8aa7-8c8d9fee1eb3" -2022/02/28 11:34:19 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:34:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:34:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:34:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:34:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:34:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:34:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:34:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:34:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:34:19 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:40:31 [DEBUG] Test: Executing step 0 -2022/02/28 11:40:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:31 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:40:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:31 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:40:31 [DEBUG] Test: Executing step 1 -2022/02/28 11:40:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:31 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:40:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:40:31 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:40:31 [DEBUG] Test: Executing step 2 -2022/02/28 11:40:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:31 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:40:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:40:31 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:40:31 [DEBUG] Test: Executing step 3 -2022/02/28 11:40:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:31 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:40:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:40:31 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:40:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:40:31 [DEBUG] Test: Executing step 4 -2022/02/28 11:40:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:31 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:40:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:31 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:40:31 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:31 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:40:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:31 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:40:31 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:31 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:40:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:31 [DEBUG] : Beginning Read -2022/02/28 11:40:31 HTTP request GET mso/api/v1/tenants -2022/02/28 11:40:31 [DEBUG] Begin Injection -2022/02/28 11:40:31 HTTP request POST /login -2022/02/28 11:40:31 HTTP request after injection POST /login -2022/02/28 11:40:31 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:40:33 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:40:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:33 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5ODMyLCJpYXQiOjE2NDYwMjg2MzIsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSHFYYzBnc29OZ20wZ1lDRnlrTzhNUGtiIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.nyN1zDNdDtuphi3BsDqIqTGEe8596kAlNwFdP2NwsjvnB2MqFarl0l4S5hDtPHLyYrYJK2lEbMovrOj8yNpceURiqERD45WeQvzMdva5C0UaK9qUwOZAALK9TQYtzYdj--X1bzKR1JYxNiTZziPw7hCdxWKm73U0mv6LopWgGKFjMI7FI1KdWAuZQrckqn5BBrqJ3EAym17cDNJ5CELRbUwORj_PUR20hexXix9l1yeY1ZIDlLWEgrlBKiFFvMdVmO9sC0sIWztERaoBfrKqa1YTz6F2E4E-BlpNMVBl7ZAZ2wI1Uof97FCrkYjSryyAjURpd9aLlGCaIEfDfWHetA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0009b44c0 -1 [chunked] false false map[] 0xc00017f400 0xc000074000} -2022/02/28 11:40:33 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5ODMyLCJpYXQiOjE2NDYwMjg2MzIsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSHFYYzBnc29OZ20wZ1lDRnlrTzhNUGtiIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.nyN1zDNdDtuphi3BsDqIqTGEe8596kAlNwFdP2NwsjvnB2MqFarl0l4S5hDtPHLyYrYJK2lEbMovrOj8yNpceURiqERD45WeQvzMdva5C0UaK9qUwOZAALK9TQYtzYdj--X1bzKR1JYxNiTZziPw7hCdxWKm73U0mv6LopWgGKFjMI7FI1KdWAuZQrckqn5BBrqJ3EAym17cDNJ5CELRbUwORj_PUR20hexXix9l1yeY1ZIDlLWEgrlBKiFFvMdVmO9sC0sIWztERaoBfrKqa1YTz6F2E4E-BlpNMVBl7ZAZ2wI1Uof97FCrkYjSryyAjURpd9aLlGCaIEfDfWHetA","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5ODMyLCJpYXQiOjE2NDYwMjg2MzIsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSHFYYzBnc29OZ20wZ1lDRnlrTzhNUGtiIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.nyN1zDNdDtuphi3BsDqIqTGEe8596kAlNwFdP2NwsjvnB2MqFarl0l4S5hDtPHLyYrYJK2lEbMovrOj8yNpceURiqERD45WeQvzMdva5C0UaK9qUwOZAALK9TQYtzYdj--X1bzKR1JYxNiTZziPw7hCdxWKm73U0mv6LopWgGKFjMI7FI1KdWAuZQrckqn5BBrqJ3EAym17cDNJ5CELRbUwORj_PUR20hexXix9l1yeY1ZIDlLWEgrlBKiFFvMdVmO9sC0sIWztERaoBfrKqa1YTz6F2E4E-BlpNMVBl7ZAZ2wI1Uof97FCrkYjSryyAjURpd9aLlGCaIEfDfWHetA"} -2022/02/28 11:40:33 [DEBUG] Exit from do method -2022/02/28 11:40:33 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:40:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:40:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:40:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce1c0 5563 [] false false map[] 0xc00017f300 0xc000074000} -2022/02/28 11:40:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:40:33 [DEBUG] Exit from do method -2022/02/28 11:40:33 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:40:33 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:33 [DEBUG] New state was assigned lineage "a4e5752d-8289-c9f5-7596-8fbb9894f191" -2022/02/28 11:40:33 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:40:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:40:33 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:33 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:40:33 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:40:33 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:40:33 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:40:33 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:33 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:33 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:33 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_1l41q" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_1l41q" - schema_id: "" => "" - template_name: "" => "acctest_npsvz" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_1l41q" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_npsvz" - template_name: "" => "acctest_npsvz" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_1l41q" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_1l41q" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_npsvz" - vrf_name: "" => "acctest_1l41q" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_1l41q" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_1l41q" - schema_id: "" => "" - template_name: "" => "acctest_npsvz" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_1l41q" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_1l41q" - schema_id: "" => "" - template: "" => "acctest_npsvz" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:40:33 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:40:33 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:40:33 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:40:33 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:40:33 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:40:33 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:40:33 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:40:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:40:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:40:33 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:40:33 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:40:33 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:40:33 [DEBUG] Schema: Beginning Creation -2022/02/28 11:40:33 [DEBUG] : Beginning Create -2022/02/28 11:40:33 HTTP request POST mso/api/v1/schemas -2022/02/28 11:40:33 [DEBUG] Begin Injection -2022/02/28 11:40:33 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:40:33 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5ODMyLCJpYXQiOjE2NDYwMjg2MzIsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSHFYYzBnc29OZ20wZ1lDRnlrTzhNUGtiIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.nyN1zDNdDtuphi3BsDqIqTGEe8596kAlNwFdP2NwsjvnB2MqFarl0l4S5hDtPHLyYrYJK2lEbMovrOj8yNpceURiqERD45WeQvzMdva5C0UaK9qUwOZAALK9TQYtzYdj--X1bzKR1JYxNiTZziPw7hCdxWKm73U0mv6LopWgGKFjMI7FI1KdWAuZQrckqn5BBrqJ3EAym17cDNJ5CELRbUwORj_PUR20hexXix9l1yeY1ZIDlLWEgrlBKiFFvMdVmO9sC0sIWztERaoBfrKqa1YTz6F2E4E-BlpNMVBl7ZAZ2wI1Uof97FCrkYjSryyAjURpd9aLlGCaIEfDfWHetA] Content-Type:[application/json]] {{"displayName":"acctest_npsvz","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_npsvz","externalEpgs":[],"filters":[],"name":"acctest_npsvz","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xa37ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:40:33 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:40:33 [DEBUG] Begin Injection -2022/02/28 11:40:33 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:40:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:40:33 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDI5ODMyLCJpYXQiOjE2NDYwMjg2MzIsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSHFYYzBnc29OZ20wZ1lDRnlrTzhNUGtiIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.nyN1zDNdDtuphi3BsDqIqTGEe8596kAlNwFdP2NwsjvnB2MqFarl0l4S5hDtPHLyYrYJK2lEbMovrOj8yNpceURiqERD45WeQvzMdva5C0UaK9qUwOZAALK9TQYtzYdj--X1bzKR1JYxNiTZziPw7hCdxWKm73U0mv6LopWgGKFjMI7FI1KdWAuZQrckqn5BBrqJ3EAym17cDNJ5CELRbUwORj_PUR20hexXix9l1yeY1ZIDlLWEgrlBKiFFvMdVmO9sC0sIWztERaoBfrKqa1YTz6F2E4E-BlpNMVBl7ZAZ2wI1Uof97FCrkYjSryyAjURpd9aLlGCaIEfDfWHetA] Content-Type:[application/json]] {{"desc":"","name":"acctest_1l41q","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xa37ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:40:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:40:34 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:40:34 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c67591d000048634fba0e] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000328180 400 [] false false map[] 0xc00099e300 0xc000074000} -2022/02/28 11:40:34 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:40:34 [DEBUG] Exit from do method -2022/02/28 11:40:34 [DEBUG] 621c67591d000048634fba0e: Schema Creation finished successfully -2022/02/28 11:40:34 [DEBUG] 621c67591d000048634fba0e: Beginning Read -2022/02/28 11:40:34 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:34 [DEBUG] Begin Injection -2022/02/28 11:40:34 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:34 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:40:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000310380 160 [] false false map[] 0xc000c68600 0xc000074000} -2022/02/28 11:40:34 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c675a1b0000c309fd0c33","name":"acctest_1l41q","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:40:34 [DEBUG] Exit from do method -2022/02/28 11:40:34 [DEBUG] 621c675a1b0000c309fd0c33: Creation finished successfully -2022/02/28 11:40:34 [DEBUG] 621c675a1b0000c309fd0c33: Beginning Read -2022/02/28 11:40:34 id: 621c675a1b0000c309fd0c33 -2022/02/28 11:40:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:34 [DEBUG] Begin Injection -2022/02/28 11:40:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce100 160 [] false false map[] 0xc00099e400 0xc000074000} -2022/02/28 11:40:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 {"id":"621c675a1b0000c309fd0c33","name":"acctest_1l41q","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:40:34 [DEBUG] Exit from do method -2022/02/28 11:40:34 [DEBUG] 621c675a1b0000c309fd0c33: Read finished successfully -2022/02/28 11:40:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fce5c0 400 [] false false map[] 0xc0005b5400 0xc0000f40b0} -2022/02/28 11:40:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:40:34 [DEBUG] Exit from do method -2022/02/28 11:40:34 [DEBUG] 621c67591d000048634fba0e: Read finished successfully -2022/02/28 11:40:34 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:40:34 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:40:34 HTTP request PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:34 [DEBUG] Begin Injection -2022/02/28 11:40:34 HTTP request after injection PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:35 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005b4900 0xc0000f40b0} -2022/02/28 11:40:35 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:35 [DEBUG] acctest_1l41q: Creation finished successfully -2022/02/28 11:40:35 [DEBUG] acctest_1l41q: Beginning Read -2022/02/28 11:40:35 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:35 [DEBUG] Begin Injection -2022/02/28 11:40:35 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000328340 768 [] false false map[] 0xc0005b4b00 0xc0000749a0} -2022/02/28 11:40:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:40:35 [DEBUG] Exit from do method -2022/02/28 11:40:35 currentvrfname acctest_1l41q -2022/02/28 11:40:35 found correct vrfname -2022/02/28 11:40:35 [DEBUG] acctest_1l41q: Read finished successfully -2022/02/28 11:40:35 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:40:35 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:40:35 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:40:35 HTTP request PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:35 [DEBUG] Begin Injection -2022/02/28 11:40:35 HTTP request after injection PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:35 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005b4d00 0xc0000749a0} -2022/02/28 11:40:35 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:35 [DEBUG] : Beginning Read -2022/02/28 11:40:35 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:35 [DEBUG] Begin Injection -2022/02/28 11:40:35 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007ddb00 1277 [] false false map[] 0xc00017e700 0xc0000749a0} -2022/02/28 11:40:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:40:36 [DEBUG] Exit from do method -2022/02/28 11:40:36 [DEBUG] acctest_1l41q: Read finished successfully -2022/02/28 11:40:36 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:40:36 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:40:36 HTTP request PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:36 [DEBUG] Begin Injection -2022/02/28 11:40:36 HTTP request after injection PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:36 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:36 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017ec00 0xc0000749a0} -2022/02/28 11:40:36 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:36 [DEBUG] Creation Complete -2022/02/28 11:40:36 [DEBUG] : Beginning Read -2022/02/28 11:40:36 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:36 [DEBUG] Begin Injection -2022/02/28 11:40:36 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a140 1362 [] false false map[] 0xc00099e100 0xc0000749a0} -2022/02/28 11:40:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:36 [DEBUG] Exit from do method -2022/02/28 11:40:36 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Read finished successfully -2022/02/28 11:40:36 [DEBUG] : Beginning Read -2022/02/28 11:40:36 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:36 [DEBUG] Begin Injection -2022/02/28 11:40:36 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003115c0 1362 [] false false map[] 0xc00099ee00 0xc0000749a0} -2022/02/28 11:40:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:37 [DEBUG] Exit from do method -2022/02/28 11:40:37 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Read finished successfully -2022/02/28 11:40:37 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:37 [DEBUG] New state was assigned lineage "5ac8d1bc-35a1-f2a6-a21b-1949d9008eac" -2022/02/28 11:40:37 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 [DEBUG] Begin Injection -2022/02/28 11:40:37 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a5300 1362 [] false false map[] 0xc00099ef00 0xc0000749a0} -2022/02/28 11:40:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:37 [DEBUG] Exit from do method -2022/02/28 11:40:37 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:40:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:40:37 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:37 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:37 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:40:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:37 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:37 [DEBUG] : Beginning Read -2022/02/28 11:40:37 HTTP request GET mso/api/v1/tenants -2022/02/28 11:40:37 [DEBUG] Begin Injection -2022/02/28 11:40:37 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:40:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:40:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:40:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a46c0 5563 [] false false map[] 0xc000a6e100 0xc0000749a0} -2022/02/28 11:40:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:40:37 [DEBUG] Exit from do method -2022/02/28 11:40:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:40:37 [DEBUG] 621c67591d000048634fba0e: Beginning Read -2022/02/28 11:40:37 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 [DEBUG] Begin Injection -2022/02/28 11:40:37 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 [DEBUG] 621c675a1b0000c309fd0c33: Beginning Read -2022/02/28 11:40:37 id: 621c675a1b0000c309fd0c33 -2022/02/28 11:40:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:37 [DEBUG] Begin Injection -2022/02/28 11:40:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a0c0 1362 [] false false map[] 0xc000cce500 0xc0000749a0} -2022/02/28 11:40:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:37 [DEBUG] Exit from do method -2022/02/28 11:40:37 [DEBUG] 621c67591d000048634fba0e: Read finished successfully -2022/02/28 11:40:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:40:37 [DEBUG] acctest_1l41q: Beginning Read -2022/02/28 11:40:37 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 [DEBUG] Begin Injection -2022/02/28 11:40:37 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a180 160 [] false false map[] 0xc000a6e100 0xc000074000} -2022/02/28 11:40:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 {"id":"621c675a1b0000c309fd0c33","name":"acctest_1l41q","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:40:37 [DEBUG] Exit from do method -2022/02/28 11:40:37 [DEBUG] 621c675a1b0000c309fd0c33: Read finished successfully -2022/02/28 11:40:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000311640 1362 [] false false map[] 0xc000c68400 0xc0000749a0} -2022/02/28 11:40:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:38 [DEBUG] Exit from do method -2022/02/28 11:40:38 currentvrfname acctest_1l41q -2022/02/28 11:40:38 found correct vrfname -2022/02/28 11:40:38 [DEBUG] acctest_1l41q: Read finished successfully -2022/02/28 11:40:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:40:38 [DEBUG] acctest_1l41q: Beginning Read -2022/02/28 11:40:38 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:38 [DEBUG] Begin Injection -2022/02/28 11:40:38 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000373700 1362 [] false false map[] 0xc000c68900 0xc0000749a0} -2022/02/28 11:40:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:38 [DEBUG] Exit from do method -2022/02/28 11:40:38 [DEBUG] acctest_1l41q: Read finished successfully -2022/02/28 11:40:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:38 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Beginning Read -2022/02/28 11:40:38 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:38 [DEBUG] Begin Injection -2022/02/28 11:40:38 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcef00 1362 [] false false map[] 0xc000c69100 0xc0000749a0} -2022/02/28 11:40:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:38 [DEBUG] Exit from do method -2022/02/28 11:40:38 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Read finished successfully -2022/02/28 11:40:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:38 [DEBUG] : Beginning Read -2022/02/28 11:40:38 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:38 [DEBUG] Begin Injection -2022/02/28 11:40:38 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074b200 1362 [] false false map[] 0xc000c69400 0xc0000749a0} -2022/02/28 11:40:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:39 [DEBUG] Exit from do method -2022/02/28 11:40:39 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Read finished successfully -2022/02/28 11:40:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:39 [DEBUG] New state was assigned lineage "4174ce6f-b654-0eeb-defb-4ca042826360" -2022/02/28 11:40:39 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:40:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:39 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:39 [WARN] Test: Executing destroy step -2022/02/28 11:40:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:39 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:40:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:39 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:40:39 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:39 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:40:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:40:39 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:39 [DEBUG] : Beginning Read -2022/02/28 11:40:39 HTTP request GET mso/api/v1/tenants -2022/02/28 11:40:39 [DEBUG] Begin Injection -2022/02/28 11:40:39 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:40:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:40:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:40:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000372c00 5563 [] false false map[] 0xc00017e300 0xc0000749a0} -2022/02/28 11:40:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:40:39 [DEBUG] Exit from do method -2022/02/28 11:40:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:40:39 [DEBUG] 621c67591d000048634fba0e: Beginning Read -2022/02/28 11:40:39 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:39 [DEBUG] Begin Injection -2022/02/28 11:40:39 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:39 [DEBUG] 621c675a1b0000c309fd0c33: Beginning Read -2022/02/28 11:40:39 id: 621c675a1b0000c309fd0c33 -2022/02/28 11:40:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:39 [DEBUG] Begin Injection -2022/02/28 11:40:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fcf700 1362 [] false false map[] 0xc00099e500 0xc0000749a0} -2022/02/28 11:40:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:39 [DEBUG] Exit from do method -2022/02/28 11:40:39 [DEBUG] 621c67591d000048634fba0e: Read finished successfully -2022/02/28 11:40:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:40:39 [DEBUG] acctest_1l41q: Beginning Read -2022/02/28 11:40:39 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:39 [DEBUG] Begin Injection -2022/02/28 11:40:39 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007dc3c0 160 [] false false map[] 0xc000a6e900 0xc000074000} -2022/02/28 11:40:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 {"id":"621c675a1b0000c309fd0c33","name":"acctest_1l41q","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:40:39 [DEBUG] Exit from do method -2022/02/28 11:40:39 [DEBUG] 621c675a1b0000c309fd0c33: Read finished successfully -2022/02/28 11:40:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074af00 1362 [] false false map[] 0xc000d82900 0xc0000749a0} -2022/02/28 11:40:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:40 [DEBUG] Exit from do method -2022/02/28 11:40:40 currentvrfname acctest_1l41q -2022/02/28 11:40:40 found correct vrfname -2022/02/28 11:40:40 [DEBUG] acctest_1l41q: Read finished successfully -2022/02/28 11:40:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:40:40 [DEBUG] acctest_1l41q: Beginning Read -2022/02/28 11:40:40 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:40 [DEBUG] Begin Injection -2022/02/28 11:40:40 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a4040 1362 [] false false map[] 0xc00099eb00 0xc0000749a0} -2022/02/28 11:40:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:40 [DEBUG] Exit from do method -2022/02/28 11:40:40 [DEBUG] acctest_1l41q: Read finished successfully -2022/02/28 11:40:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:40 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Beginning Read -2022/02/28 11:40:40 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:40 [DEBUG] Begin Injection -2022/02/28 11:40:40 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090f80 1362 [] false false map[] 0xc000d82a00 0xc0000749a0} -2022/02/28 11:40:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:40 [DEBUG] Exit from do method -2022/02/28 11:40:40 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Read finished successfully -2022/02/28 11:40:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:40 [DEBUG] : Beginning Read -2022/02/28 11:40:40 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:40 [DEBUG] Begin Injection -2022/02/28 11:40:40 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a140 1362 [] false false map[] 0xc000d82f00 0xc0000749a0} -2022/02/28 11:40:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"id":"621c67591d000048634fba0e","displayName":"acctest_npsvz","description":"","templates":[{"name":"acctest_npsvz","displayName":"acctest_npsvz","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_1l41q","displayName":"acctest_1l41q","bdRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/vrfs/acctest_1l41q","dhcpLabel":{"name":"acctest_1l41q","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_1l41q","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:40:41 [DEBUG] Exit from do method -2022/02/28 11:40:41 [DEBUG] /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q: Read finished successfully -2022/02/28 11:40:41 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:41 [DEBUG] New state was assigned lineage "a9db49b9-3cbd-8691-62df-b0b8e0a09068" -2022/02/28 11:40:41 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:40:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:40:41 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:40:41 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_1l41q" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q" => "" - name: "acctest_1l41q" => "" - schema_id: "621c67591d000048634fba0e" => "" - template_name: "acctest_npsvz" => "" - version: "0" => "" -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c675a1b0000c309fd0c33" => "" - name: "acctest_1l41q" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c67591d000048634fba0e" => "" - name: "acctest_npsvz" => "" - template_name: "acctest_npsvz" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_1l41q" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_1l41q" => "" - id: "acctest_1l41q" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_1l41q" => "" - schema_id: "621c67591d000048634fba0e" => "" - template_name: "acctest_npsvz" => "" - vrf_name: "acctest_1l41q" => "" - vrf_schema_id: "621c67591d000048634fba0e" => "" - vrf_template_name: "acctest_npsvz" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_1l41q" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q" => "" - name: "acctest_1l41q" => "" - schema_id: "621c67591d000048634fba0e" => "" - template_name: "acctest_npsvz" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_1l41q" => "" - id: "acctest_1l41q" => "" - layer3_multicast: "false" => "" - name: "acctest_1l41q" => "" - schema_id: "621c67591d000048634fba0e" => "" - template: "acctest_npsvz" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q - provider = provider.mso - bd_name = acctest_1l41q - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_1l41q - schema_id = 621c67591d000048634fba0e - template_name = acctest_npsvz - version = 0 - - Dependencies: - mso_schema_template_bd_dhcp_policy.test -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c675a1b0000c309fd0c33 - provider = provider.mso - description = - name = acctest_1l41q - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c67591d000048634fba0e - provider = provider.mso - name = acctest_npsvz - template_name = acctest_npsvz - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_1l41q - provider = provider.mso - dhcp_policy.name = acctest_1l41q - dhcp_policy.version = 0 - display_name = acctest_1l41q - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_1l41q - schema_id = 621c67591d000048634fba0e - template_name = acctest_npsvz - vrf_name = acctest_1l41q - vrf_schema_id = 621c67591d000048634fba0e - vrf_template_name = acctest_npsvz - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c67591d000048634fba0e/templates/acctest_npsvz/bds/acctest_1l41q/dhcpLabels/acctest_1l41q - provider = provider.mso - bd_name = acctest_1l41q - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_1l41q - schema_id = 621c67591d000048634fba0e - template_name = acctest_npsvz - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_1l41q - provider = provider.mso - display_name = acctest_1l41q - layer3_multicast = false - name = acctest_1l41q - schema_id = 621c67591d000048634fba0e - template = acctest_npsvz - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 11:40:41 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:40:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:40:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 11:40:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:40:41 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:40:41 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:40:41 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 11:40:41 [DEBUG] Template BD: Beginning Update -2022/02/28 11:40:41 HTTP request PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:41 [DEBUG] Begin Injection -2022/02/28 11:40:41 HTTP request after injection PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:41 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017eb00 0xc0000749a0} -2022/02/28 11:40:41 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 11:40:41 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 11:40:41 [DEBUG] 621c675a1b0000c309fd0c33: Beginning Read -2022/02/28 11:40:41 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:41 [DEBUG] Begin Injection -2022/02/28 11:40:41 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:41 [DEBUG] Template BD: Beginning Update -2022/02/28 11:40:41 HTTP request PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:41 [DEBUG] Begin Injection -2022/02/28 11:40:41 HTTP request after injection PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:41 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d82f00 0xc0000749a0} -2022/02/28 11:40:41 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c675a1b0000c309fd0c33 -2022/02/28 11:40:41 [DEBUG] : Read finished successfully -2022/02/28 11:40:41 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001b4200 0xc000074000} -2022/02/28 11:40:41 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:41 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 11:40:41 [DEBUG] acctest_1l41q: Beginning Destroy -2022/02/28 11:40:41 HTTP request PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:41 [DEBUG] Begin Injection -2022/02/28 11:40:41 HTTP request after injection PATCH mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:42 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d83200 0xc000074000} -2022/02/28 11:40:42 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e?validate=false -2022/02/28 11:40:42 [DEBUG] acctest_1l41q: Destroy finished successfully -2022/02/28 11:40:42 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 11:40:42 [DEBUG] 621c67591d000048634fba0e: Beginning Destroy -2022/02/28 11:40:42 HTTP request DELETE mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:42 [DEBUG] Begin Injection -2022/02/28 11:40:42 HTTP request after injection DELETE mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:42 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:10:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0001b4c00 0xc000074000} -2022/02/28 11:40:42 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:42 [DEBUG] 621c67591d000048634fba0e: Destroy finished successfully -2022/02/28 11:40:42 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:42 [DEBUG] New state was assigned lineage "4ced18f8-0cd2-058a-d1bf-3005f31fa728" -2022/02/28 11:40:42 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:42 [DEBUG] Begin Injection -2022/02/28 11:40:42 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:42 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:42 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000372700 39 [] false false map[] 0xc000d83500 0xc000074000} -2022/02/28 11:40:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"code":404,"message":"Item not found"} -2022/02/28 11:40:42 [DEBUG] Exit from do method -2022/02/28 11:40:42 HTTP request GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:42 [DEBUG] Begin Injection -2022/02/28 11:40:42 HTTP request after injection GET mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e -2022/02/28 11:40:43 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:42 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a040 39 [] false false map[] 0xc00099e100 0xc000074000} -2022/02/28 11:40:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c67591d000048634fba0e {"code":404,"message":"Item not found"} -2022/02/28 11:40:43 [DEBUG] Exit from do method -2022/02/28 11:40:43 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:40:43 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:40:43 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:40:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:40:43 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:40:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:43 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:40:43 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:40:43 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:43 [DEBUG] : Beginning Read -2022/02/28 11:40:43 HTTP request GET mso/api/v1/tenants -2022/02/28 11:40:43 [DEBUG] Begin Injection -2022/02/28 11:40:43 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:40:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:40:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:40:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:10:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000310100 5563 [] false false map[] 0xc00099ef00 0xc000074000} -2022/02/28 11:40:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:40:43 [DEBUG] Exit from do method -2022/02/28 11:40:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:40:43 [DEBUG] provider has no plugin.Client -2022/02/28 11:40:43 [DEBUG] New state was assigned lineage "886aa9e5-4ef6-add0-1b36-4ca548110985" -2022/02/28 11:40:43 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:40:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:40:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:40:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:40:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:40:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:40:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:40:43 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:50:01 [DEBUG] Test: Executing step 0 -2022/02/28 11:50:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:01 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:50:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:01 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:50:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:50:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:50:01 [DEBUG] Test: Executing step 1 -2022/02/28 11:50:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:01 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:50:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:01 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:50:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:50:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:50:01 [DEBUG] Test: Executing step 2 -2022/02/28 11:50:01 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:01 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:50:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:50:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:01 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:50:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:50:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:50:01 [DEBUG] Test: Executing step 3 -2022/02/28 11:50:02 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:02 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:50:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:02 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:50:02 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:50:02 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:50:02 [DEBUG] Test: Executing step 4 -2022/02/28 11:50:02 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:02 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:50:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:02 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:50:02 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:02 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:50:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:02 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:50:02 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:02 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:02 [DEBUG] : Beginning Read -2022/02/28 11:50:02 HTTP request GET mso/api/v1/tenants -2022/02/28 11:50:02 [DEBUG] Begin Injection -2022/02/28 11:50:02 HTTP request POST /login -2022/02/28 11:50:02 HTTP request after injection POST /login -2022/02/28 11:50:02 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:50:03 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:50:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:03 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00004dcc0 -1 [chunked] false false map[] 0xc000968400 0xc0000d66e0} -2022/02/28 11:50:03 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw"} -2022/02/28 11:50:03 [DEBUG] Exit from do method -2022/02/28 11:50:03 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:50:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:50:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:50:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009943c0 5563 [] false false map[] 0xc000968300 0xc0000d66e0} -2022/02/28 11:50:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:50:03 [DEBUG] Exit from do method -2022/02/28 11:50:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:50:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:03 [DEBUG] New state was assigned lineage "7b927cc4-b926-4d69-fc79-7db9d77a99db" -2022/02/28 11:50:03 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:50:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:03 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:03 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:50:03 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:50:03 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:50:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:50:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:03 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:03 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_7siqy" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_7siqy" - schema_id: "" => "" - template_name: "" => "acctest_har8n" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_7siqy" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_har8n" - template_name: "" => "acctest_har8n" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_7siqy" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_7siqy" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_har8n" - vrf_name: "" => "acctest_7siqy" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_7siqy" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_7siqy" - schema_id: "" => "" - template_name: "" => "acctest_har8n" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_7siqy" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_7siqy" - schema_id: "" => "" - template: "" => "acctest_har8n" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:50:03 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:50:03 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:50:03 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:50:03 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:50:03 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:03 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:03 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:50:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:50:03 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:50:03 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:50:03 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:50:03 [DEBUG] Schema: Beginning Creation -2022/02/28 11:50:03 HTTP request POST mso/api/v1/schemas -2022/02/28 11:50:03 [DEBUG] Begin Injection -2022/02/28 11:50:03 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:50:03 [DEBUG] : Beginning Create -2022/02/28 11:50:03 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw] Content-Type:[application/json]] {{"displayName":"acctest_har8n","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_har8n","externalEpgs":[],"filters":[],"name":"acctest_har8n","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xab7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:50:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:50:03 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:50:03 [DEBUG] Begin Injection -2022/02/28 11:50:03 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:50:03 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw] Content-Type:[application/json]] {{"desc":"","name":"acctest_7siqy","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xab7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:50:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:50:04 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:50:04 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c69931d0000aa634fba16] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b52900 400 [] false false map[] 0xc00017e900 0xc0000d66e0} -2022/02/28 11:50:04 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:50:04 [DEBUG] Exit from do method -2022/02/28 11:50:04 [DEBUG] 621c69931d0000aa634fba16: Schema Creation finished successfully -2022/02/28 11:50:04 [DEBUG] 621c69931d0000aa634fba16: Beginning Read -2022/02/28 11:50:04 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:04 [DEBUG] Begin Injection -2022/02/28 11:50:04 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:04 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:50:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fa0500 160 [] false false map[] 0xc000b54300 0xc0000d66e0} -2022/02/28 11:50:04 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c69941b0000380afd0c34","name":"acctest_7siqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:50:04 [DEBUG] Exit from do method -2022/02/28 11:50:04 [DEBUG] 621c69941b0000380afd0c34: Creation finished successfully -2022/02/28 11:50:04 [DEBUG] 621c69941b0000380afd0c34: Beginning Read -2022/02/28 11:50:04 id: 621c69941b0000380afd0c34 -2022/02/28 11:50:04 HTTP request GET mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 -2022/02/28 11:50:04 [DEBUG] Begin Injection -2022/02/28 11:50:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 -2022/02/28 11:50:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 -2022/02/28 11:50:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000686a80 400 [] false false map[] 0xc000b54700 0xc0001a0370} -2022/02/28 11:50:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:50:05 [DEBUG] Exit from do method -2022/02/28 11:50:05 [DEBUG] 621c69931d0000aa634fba16: Read finished successfully -2022/02/28 11:50:05 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:50:05 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:50:05 HTTP request PATCH mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:05 [DEBUG] Begin Injection -2022/02/28 11:50:05 HTTP request after injection PATCH mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 -2022/02/28 11:50:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000595f80 160 [] false false map[] 0xc000b54900 0xc0000d66e0} -2022/02/28 11:50:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 {"id":"621c69941b0000380afd0c34","name":"acctest_7siqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:50:05 [DEBUG] Exit from do method -2022/02/28 11:50:05 [DEBUG] 621c69941b0000380afd0c34: Read finished successfully -2022/02/28 11:50:05 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:20:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000b54e00 0xc0001a0370} -2022/02/28 11:50:05 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:05 [DEBUG] acctest_7siqy: Creation finished successfully -2022/02/28 11:50:05 [DEBUG] acctest_7siqy: Beginning Read -2022/02/28 11:50:05 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:05 [DEBUG] Begin Injection -2022/02/28 11:50:05 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006860c0 768 [] false false map[] 0xc0000b6100 0xc0000d6000} -2022/02/28 11:50:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:50:05 [DEBUG] Exit from do method -2022/02/28 11:50:05 currentvrfname acctest_7siqy -2022/02/28 11:50:05 found correct vrfname -2022/02/28 11:50:05 [DEBUG] acctest_7siqy: Read finished successfully -2022/02/28 11:50:05 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:50:05 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:50:05 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:50:05 HTTP request PATCH mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:05 [DEBUG] Begin Injection -2022/02/28 11:50:05 HTTP request after injection PATCH mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:05 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:20:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000968c00 0xc0000d6000} -2022/02/28 11:50:05 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:05 [DEBUG] : Beginning Read -2022/02/28 11:50:05 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:05 [DEBUG] Begin Injection -2022/02/28 11:50:05 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073f180 1277 [] false false map[] 0xc0000b6900 0xc0000d6000} -2022/02/28 11:50:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:50:06 [DEBUG] Exit from do method -2022/02/28 11:50:06 [DEBUG] acctest_7siqy: Read finished successfully -2022/02/28 11:50:06 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:50:06 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:50:06 HTTP request PATCH mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:06 [DEBUG] Begin Injection -2022/02/28 11:50:06 HTTP request after injection PATCH mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:06 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:20:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000969600 0xc0000d6000} -2022/02/28 11:50:06 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16?validate=false -2022/02/28 11:50:06 [DEBUG] Creation Complete -2022/02/28 11:50:06 [DEBUG] : Beginning Read -2022/02/28 11:50:06 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:06 [DEBUG] Begin Injection -2022/02/28 11:50:06 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b52300 1362 [] false false map[] 0xc0006d8000 0xc0000d6000} -2022/02/28 11:50:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:06 [DEBUG] Exit from do method -2022/02/28 11:50:06 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Read finished successfully -2022/02/28 11:50:06 [DEBUG] : Beginning Read -2022/02/28 11:50:06 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:06 [DEBUG] Begin Injection -2022/02/28 11:50:06 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6300 1362 [] false false map[] 0xc0006d8700 0xc0000d6000} -2022/02/28 11:50:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:07 [DEBUG] Exit from do method -2022/02/28 11:50:07 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Read finished successfully -2022/02/28 11:50:07 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:07 [DEBUG] New state was assigned lineage "7d0d9ff1-03f7-dbc6-9eb4-e5f13f220a10" -2022/02/28 11:50:07 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:07 [DEBUG] Begin Injection -2022/02/28 11:50:07 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6080 1362 [] false false map[] 0xc0000b6100 0xc0000d6000} -2022/02/28 11:50:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:07 [DEBUG] Exit from do method -2022/02/28 11:50:07 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:50:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:50:07 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:07 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:07 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:50:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:07 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:07 [DEBUG] : Beginning Read -2022/02/28 11:50:07 HTTP request GET mso/api/v1/tenants -2022/02/28 11:50:07 [DEBUG] Begin Injection -2022/02/28 11:50:07 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:50:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:50:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:50:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000686680 5563 [] false false map[] 0xc000692200 0xc0000d6000} -2022/02/28 11:50:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:50:07 [DEBUG] Exit from do method -2022/02/28 11:50:07 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:50:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:50:07 [DEBUG] 621c69931d0000aa634fba16: Beginning Read -2022/02/28 11:50:07 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:07 [DEBUG] Begin Injection -2022/02/28 11:50:07 [DEBUG] 621c69941b0000380afd0c34: Beginning Read -2022/02/28 11:50:07 id: 621c69941b0000380afd0c34 -2022/02/28 11:50:07 HTTP request GET mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 -2022/02/28 11:50:07 [DEBUG] Begin Injection -2022/02/28 11:50:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 -2022/02/28 11:50:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 -2022/02/28 11:50:07 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b52040 1362 [] false false map[] 0xc0006d8700 0xc0000d66e0} -2022/02/28 11:50:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:08 [DEBUG] Exit from do method -2022/02/28 11:50:08 [DEBUG] 621c69931d0000aa634fba16: Read finished successfully -2022/02/28 11:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:50:08 [DEBUG] acctest_7siqy: Beginning Read -2022/02/28 11:50:08 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:08 [DEBUG] Begin Injection -2022/02/28 11:50:08 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 -2022/02/28 11:50:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b52580 160 [] false false map[] 0xc0000b6e00 0xc0000d6000} -2022/02/28 11:50:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 {"id":"621c69941b0000380afd0c34","name":"acctest_7siqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:50:08 [DEBUG] Exit from do method -2022/02/28 11:50:08 [DEBUG] 621c69941b0000380afd0c34: Read finished successfully -2022/02/28 11:50:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090740 1362 [] false false map[] 0xc0008a2100 0xc0000d66e0} -2022/02/28 11:50:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:08 [DEBUG] Exit from do method -2022/02/28 11:50:08 currentvrfname acctest_7siqy -2022/02/28 11:50:08 found correct vrfname -2022/02/28 11:50:08 [DEBUG] acctest_7siqy: Read finished successfully -2022/02/28 11:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:50:08 [DEBUG] acctest_7siqy: Beginning Read -2022/02/28 11:50:08 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:08 [DEBUG] Begin Injection -2022/02/28 11:50:08 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090c40 1362 [] false false map[] 0xc000692f00 0xc0000d66e0} -2022/02/28 11:50:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:08 [DEBUG] Exit from do method -2022/02/28 11:50:08 [DEBUG] acctest_7siqy: Read finished successfully -2022/02/28 11:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:08 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Beginning Read -2022/02/28 11:50:08 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:08 [DEBUG] Begin Injection -2022/02/28 11:50:08 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b530c0 1362 [] false false map[] 0xc000968600 0xc0000d66e0} -2022/02/28 11:50:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:09 [DEBUG] Exit from do method -2022/02/28 11:50:09 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Read finished successfully -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:09 [DEBUG] : Beginning Read -2022/02/28 11:50:09 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:09 [DEBUG] Begin Injection -2022/02/28 11:50:09 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000aebbc0 1362 [] false false map[] 0xc0008a2700 0xc0000d66e0} -2022/02/28 11:50:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:09 [DEBUG] Exit from do method -2022/02/28 11:50:09 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Read finished successfully -2022/02/28 11:50:09 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:09 [DEBUG] New state was assigned lineage "b75b1e40-3cfd-e83d-f51f-6233f04c759a" -2022/02/28 11:50:09 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:50:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:09 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:09 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:09 [DEBUG] Test: Executing step 5 -2022/02/28 11:50:09 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:50:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:50:09 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:09 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:50:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:50:09 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:09 [DEBUG] : Beginning Read -2022/02/28 11:50:09 HTTP request GET mso/api/v1/tenants -2022/02/28 11:50:09 [DEBUG] Begin Injection -2022/02/28 11:50:09 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:50:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:50:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:50:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b52100 5563 [] false false map[] 0xc0008a2100 0xc0000d66e0} -2022/02/28 11:50:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:50:09 [DEBUG] Exit from do method -2022/02/28 11:50:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:50:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:50:09 [DEBUG] 621c69941b0000380afd0c34: Beginning Read -2022/02/28 11:50:09 id: 621c69941b0000380afd0c34 -2022/02/28 11:50:09 [DEBUG] 621c69931d0000aa634fba16: Beginning Read -2022/02/28 11:50:09 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:09 [DEBUG] Begin Injection -2022/02/28 11:50:09 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:09 HTTP request GET mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 -2022/02/28 11:50:09 [DEBUG] Begin Injection -2022/02/28 11:50:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 -2022/02/28 11:50:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 -2022/02/28 11:50:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006820c0 1362 [] false false map[] 0xc000969100 0xc0000d66e0} -2022/02/28 11:50:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:10 [DEBUG] Exit from do method -2022/02/28 11:50:10 [DEBUG] 621c69931d0000aa634fba16: Read finished successfully -2022/02/28 11:50:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:50:10 [DEBUG] acctest_7siqy: Beginning Read -2022/02/28 11:50:10 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:10 [DEBUG] Begin Injection -2022/02/28 11:50:10 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 -2022/02/28 11:50:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b53a40 160 [] false false map[] 0xc0006d8600 0xc0000d6000} -2022/02/28 11:50:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c69941b0000380afd0c34 {"id":"621c69941b0000380afd0c34","name":"acctest_7siqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:50:10 [DEBUG] Exit from do method -2022/02/28 11:50:10 [DEBUG] 621c69941b0000380afd0c34: Read finished successfully -2022/02/28 11:50:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000970100 1362 [] false false map[] 0xc000969600 0xc0000d66e0} -2022/02/28 11:50:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:10 [DEBUG] Exit from do method -2022/02/28 11:50:10 currentvrfname acctest_7siqy -2022/02/28 11:50:10 found correct vrfname -2022/02/28 11:50:10 [DEBUG] acctest_7siqy: Read finished successfully -2022/02/28 11:50:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:50:10 [DEBUG] acctest_7siqy: Beginning Read -2022/02/28 11:50:10 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:10 [DEBUG] Begin Injection -2022/02/28 11:50:10 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b8100 1362 [] false false map[] 0xc000b0c100 0xc0000d66e0} -2022/02/28 11:50:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:10 [DEBUG] Exit from do method -2022/02/28 11:50:10 [DEBUG] acctest_7siqy: Read finished successfully -2022/02/28 11:50:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:10 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Beginning Read -2022/02/28 11:50:10 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:10 [DEBUG] Begin Injection -2022/02/28 11:50:10 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000594080 1362 [] false false map[] 0xc0008a2400 0xc0000d66e0} -2022/02/28 11:50:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:11 [DEBUG] Exit from do method -2022/02/28 11:50:11 [DEBUG] /schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy/dhcpLabels/acctest_7siqy: Read finished successfully -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:11 [DEBUG] : Beginning Read -2022/02/28 11:50:11 HTTP request GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:11 [DEBUG] Begin Injection -2022/02/28 11:50:11 HTTP request after injection GET mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 -2022/02/28 11:50:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b53580 1362 [] false false map[] 0xc0008a2600 0xc0000d66e0} -2022/02/28 11:50:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c69931d0000aa634fba16 {"id":"621c69931d0000aa634fba16","displayName":"acctest_har8n","description":"","templates":[{"name":"acctest_har8n","displayName":"acctest_har8n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_7siqy","displayName":"acctest_7siqy","bdRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/bds/acctest_7siqy","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c69931d0000aa634fba16/templates/acctest_har8n/vrfs/acctest_7siqy","dhcpLabel":{"name":"acctest_7siqy","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_7siqy","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:50:11 [DEBUG] Exit from do method -2022/02/28 11:50:11 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 11:50:11 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 11:50:11 [DEBUG] New state was assigned lineage "60fb44f3-e9bc-334c-0bf1-667012610353" -2022/02/28 11:50:11 [DEBUG] Test: Executing step 6 -2022/02/28 11:50:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:11 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:50:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:11 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:50:11 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "jlkdm" is not expected here. -2022/02/28 11:50:11 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "jlkdm" is not expected here. -2022/02/28 11:50:11 [DEBUG] Test: Executing step 7 -2022/02/28 11:50:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:11 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:50:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:11 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:50:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:11 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:50:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:11 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:50:11 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:11 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:11 [DEBUG] : Beginning Read -2022/02/28 11:50:11 HTTP request GET mso/api/v1/tenants -2022/02/28 11:50:11 [DEBUG] Begin Injection -2022/02/28 11:50:11 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:50:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:50:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:50:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000485140 5563 [] false false map[] 0xc0008a3a00 0xc0000d66e0} -2022/02/28 11:50:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:50:11 [DEBUG] Exit from do method -2022/02/28 11:50:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:50:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:11 [DEBUG] New state was assigned lineage "102f1550-69b4-6658-e738-13dda63377a9" -2022/02/28 11:50:11 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:50:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:11 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:11 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:50:11 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:50:11 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:50:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:50:12 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:50:12 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:12 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:12 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:12 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_7siqy" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_7siqy" - schema_id: "" => "" - template_name: "" => "acctest_har8n" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_7siqy" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_har8n" - template_name: "" => "acctest_har8n" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_7siqy" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_7siqy" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_har8n" - vrf_name: "" => "acctest_7siqy" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_7siqy" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_7siqy" - schema_id: "" => "" - template_name: "" => "acctest_har8n" - version: "" => "2" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_7siqy" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_7siqy" - schema_id: "" => "" - template: "" => "acctest_har8n" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:50:12 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:50:12 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:50:12 [DEBUG] Schema: Beginning Creation -2022/02/28 11:50:12 HTTP request POST mso/api/v1/schemas -2022/02/28 11:50:12 [DEBUG] Begin Injection -2022/02/28 11:50:12 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:50:12 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw] Content-Type:[application/json]] {{"displayName":"acctest_har8n","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_har8n","externalEpgs":[],"filters":[],"name":"acctest_har8n","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xab7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:50:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:50:12 [DEBUG] : Beginning Create -2022/02/28 11:50:12 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:50:12 [DEBUG] Begin Injection -2022/02/28 11:50:12 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:50:12 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNDAzLCJpYXQiOjE2NDYwMjkyMDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiTkxMMWh6RkdwNk81dXhsTU81cEFtbTJ4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.MSlQBIbz-TPunmaEV5ObBonUkEcrv5YJGhnkCdDbkHFYKwnaS8MBZyxRFQFgIA_0HYGSEp_Z7U4-zj5xNKJeki_XbczLxJdaIb31k7v0s1hXO5xv0iLUrOYHuMarYGH_QpyLt8Geri-ORw-fmcoK-03RIpUPAXIcEHnxaZhWtz3iOnpLB2pGzeOxaUfDqamfShj0ptVW0P2ROKrGD6THXi8zs3PzsYXOjr259Iu5hwBugxKouOS6a4gsfenoD5vVBGF5YEsb-Sd4EgzNJlxg0W-wx6d-T4c7sd50wims4b0QSp405UiVLduQyhEGLVopIjZgUd6XOZm4argD3iFeBw] Content-Type:[application/json]] {{"desc":"","name":"acctest_7siqy","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xab7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:50:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:50:12 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:50:12 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[122] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:12 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000484140 122 [] false false map[] 0xc0008a3900 0xc0000d66e0} -2022/02/28 11:50:12 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"code":140,"message":"Duplicate Resource: displayName","info":{"displayName":["Schema: 'acctest_har8n' already exists"]}} -2022/02/28 11:50:12 [DEBUG] Exit from do method -2022/02/28 11:50:12 [DEBUG] mso_schema.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_har8n' already exists"]} -2022/02/28 11:50:12 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_har8n' already exists"]} -2022/02/28 11:50:12 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_har8n' already exists"]} -2022/02/28 11:50:12 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:50:12 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[108] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:12 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004842c0 108 [] false false map[] 0xc0000b6600 0xc0000d6000} -2022/02/28 11:50:12 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":140,"message":"Duplicate Resource: name","info":{"name":["Policy: 'acctest_7siqy' already exists"]}} -2022/02/28 11:50:12 [DEBUG] Exit from do method -2022/02/28 11:50:12 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: name"{"name":["Policy: 'acctest_7siqy' already exists"]} -2022/02/28 11:50:12 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_7siqy' already exists"]} -2022/02/28 11:50:12 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_7siqy' already exists"]} -2022/02/28 11:50:12 [DEBUG] New state was assigned lineage "f6af6fb4-9ef5-968f-854e-f238755c66d2" -2022/02/28 11:50:12 [WARN] Test: Executing destroy step -2022/02/28 11:50:12 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:50:12 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:12 [DEBUG] : Beginning Read -2022/02/28 11:50:12 HTTP request GET mso/api/v1/tenants -2022/02/28 11:50:12 [DEBUG] Begin Injection -2022/02/28 11:50:12 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:50:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:50:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:50:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000686140 5563 [] false false map[] 0xc001231400 0xc0000d6000} -2022/02/28 11:50:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:50:12 [DEBUG] Exit from do method -2022/02/28 11:50:12 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:12 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:12 [DEBUG] New state was assigned lineage "ce8cee6d-6c38-6cdf-1f9c-f2eb64e22a9c" -2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:50:12 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:50:12 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:50:12 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:12 [DEBUG] New state was assigned lineage "eae4d62a-f7bb-f20e-16ab-2fd76c406a56" -2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:50:12 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:12 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:50:12 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:12 [DEBUG] : Beginning Read -2022/02/28 11:50:12 HTTP request GET mso/api/v1/tenants -2022/02/28 11:50:12 [DEBUG] Begin Injection -2022/02/28 11:50:12 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:50:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:50:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:50:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:20:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000484800 5563 [] false false map[] 0xc0000b6700 0xc0000d6000} -2022/02/28 11:50:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:50:13 [DEBUG] Exit from do method -2022/02/28 11:50:13 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:50:13 [DEBUG] provider has no plugin.Client -2022/02/28 11:50:13 [DEBUG] New state was assigned lineage "9a76075c-3489-7a9a-2642-d6d18f3eb9be" -2022/02/28 11:50:13 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:50:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:50:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:50:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:50:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:50:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:50:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:50:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:50:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:50:13 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:54:03 [DEBUG] Test: Executing step 0 -2022/02/28 11:54:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:03 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:54:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:54:03 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:54:03 [DEBUG] Test: Executing step 1 -2022/02/28 11:54:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:03 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:54:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:03 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:54:03 [DEBUG] Test: Executing step 2 -2022/02/28 11:54:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:03 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:54:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:03 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:54:03 [DEBUG] Test: Executing step 3 -2022/02/28 11:54:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:03 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:54:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:54:03 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:54:03 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:54:03 [DEBUG] Test: Executing step 4 -2022/02/28 11:54:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:03 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:54:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:03 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:54:03 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:03 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:54:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:03 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:54:03 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:03 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:54:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:54:03 [DEBUG] : Beginning Read -2022/02/28 11:54:03 HTTP request GET mso/api/v1/tenants -2022/02/28 11:54:03 [DEBUG] Begin Injection -2022/02/28 11:54:03 HTTP request POST /login -2022/02/28 11:54:03 HTTP request after injection POST /login -2022/02/28 11:54:03 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:54:04 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:54:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:04 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNjQ0LCJpYXQiOjE2NDYwMjk0NDQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZUFSbTBLSVRTYmprTElPazg2OFRHWW5EIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tmpClaBGRvYHIE8Z-pp9O0TeC35V1SseN8kkU3LMGS7SAKpCEADFj7jxpI3kxS4qSj-5ukgY7Kp4xsSNzGoaKokz4BDfC5Cam11ETlWPH7D748V1_gMysm9Ruco_7GaOStrUIutAYKR91FDNcoFUS9juWp28-Pwf9BWjAmWGMdbcdXHmlnW5ZL4ovCsxVSjjYbpmAdBIT_vJy4A93hSH-2Hw4ceh1e9iT6awQtvkGowZYFZFCx3hOHEKB8-nal5xxsOSDbqXRTWzQIp2kyonAq9j-FpTalKa74kXFl7y7SalKRNMBWhqYIBZQBM7LTk3Ubloy57BgiqFPm_3U_SolQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc001080180 -1 [chunked] false false map[] 0xc000128200 0xc000706000} -2022/02/28 11:54:04 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNjQ0LCJpYXQiOjE2NDYwMjk0NDQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZUFSbTBLSVRTYmprTElPazg2OFRHWW5EIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tmpClaBGRvYHIE8Z-pp9O0TeC35V1SseN8kkU3LMGS7SAKpCEADFj7jxpI3kxS4qSj-5ukgY7Kp4xsSNzGoaKokz4BDfC5Cam11ETlWPH7D748V1_gMysm9Ruco_7GaOStrUIutAYKR91FDNcoFUS9juWp28-Pwf9BWjAmWGMdbcdXHmlnW5ZL4ovCsxVSjjYbpmAdBIT_vJy4A93hSH-2Hw4ceh1e9iT6awQtvkGowZYFZFCx3hOHEKB8-nal5xxsOSDbqXRTWzQIp2kyonAq9j-FpTalKa74kXFl7y7SalKRNMBWhqYIBZQBM7LTk3Ubloy57BgiqFPm_3U_SolQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNjQ0LCJpYXQiOjE2NDYwMjk0NDQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZUFSbTBLSVRTYmprTElPazg2OFRHWW5EIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tmpClaBGRvYHIE8Z-pp9O0TeC35V1SseN8kkU3LMGS7SAKpCEADFj7jxpI3kxS4qSj-5ukgY7Kp4xsSNzGoaKokz4BDfC5Cam11ETlWPH7D748V1_gMysm9Ruco_7GaOStrUIutAYKR91FDNcoFUS9juWp28-Pwf9BWjAmWGMdbcdXHmlnW5ZL4ovCsxVSjjYbpmAdBIT_vJy4A93hSH-2Hw4ceh1e9iT6awQtvkGowZYFZFCx3hOHEKB8-nal5xxsOSDbqXRTWzQIp2kyonAq9j-FpTalKa74kXFl7y7SalKRNMBWhqYIBZQBM7LTk3Ubloy57BgiqFPm_3U_SolQ"} -2022/02/28 11:54:04 [DEBUG] Exit from do method -2022/02/28 11:54:04 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:54:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:54:05 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:54:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001080380 5563 [] false false map[] 0xc000128100 0xc000706000} -2022/02/28 11:54:05 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:54:05 [DEBUG] Exit from do method -2022/02/28 11:54:05 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:54:05 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:05 [DEBUG] New state was assigned lineage "145ab5df-6e99-d3a7-bfec-a35463d3997c" -2022/02/28 11:54:05 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:54:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:05 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:05 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:54:05 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:54:05 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:54:05 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:54:05 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:54:05 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:54:05 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:05 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_83brs" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_83brs" - schema_id: "" => "" - template_name: "" => "acctest_0sfyl" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_83brs" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_0sfyl" - template_name: "" => "acctest_0sfyl" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_83brs" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_83brs" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_0sfyl" - vrf_name: "" => "acctest_83brs" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_83brs" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_83brs" - schema_id: "" => "" - template_name: "" => "acctest_0sfyl" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_83brs" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_83brs" - schema_id: "" => "" - template: "" => "acctest_0sfyl" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:54:05 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:54:05 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:54:05 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:54:05 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:54:05 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:54:05 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:54:05 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:54:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:54:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:54:05 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:54:05 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:54:05 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:54:05 [DEBUG] Schema: Beginning Creation -2022/02/28 11:54:05 [DEBUG] : Beginning Create -2022/02/28 11:54:05 HTTP request POST mso/api/v1/schemas -2022/02/28 11:54:05 [DEBUG] Begin Injection -2022/02/28 11:54:05 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:54:05 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNjQ0LCJpYXQiOjE2NDYwMjk0NDQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZUFSbTBLSVRTYmprTElPazg2OFRHWW5EIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tmpClaBGRvYHIE8Z-pp9O0TeC35V1SseN8kkU3LMGS7SAKpCEADFj7jxpI3kxS4qSj-5ukgY7Kp4xsSNzGoaKokz4BDfC5Cam11ETlWPH7D748V1_gMysm9Ruco_7GaOStrUIutAYKR91FDNcoFUS9juWp28-Pwf9BWjAmWGMdbcdXHmlnW5ZL4ovCsxVSjjYbpmAdBIT_vJy4A93hSH-2Hw4ceh1e9iT6awQtvkGowZYFZFCx3hOHEKB8-nal5xxsOSDbqXRTWzQIp2kyonAq9j-FpTalKa74kXFl7y7SalKRNMBWhqYIBZQBM7LTk3Ubloy57BgiqFPm_3U_SolQ] Content-Type:[application/json]] {{"displayName":"acctest_0sfyl","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_0sfyl","externalEpgs":[],"filters":[],"name":"acctest_0sfyl","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x10b7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:54:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:54:05 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:54:05 [DEBUG] Begin Injection -2022/02/28 11:54:05 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:54:05 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNjQ0LCJpYXQiOjE2NDYwMjk0NDQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiZUFSbTBLSVRTYmprTElPazg2OFRHWW5EIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tmpClaBGRvYHIE8Z-pp9O0TeC35V1SseN8kkU3LMGS7SAKpCEADFj7jxpI3kxS4qSj-5ukgY7Kp4xsSNzGoaKokz4BDfC5Cam11ETlWPH7D748V1_gMysm9Ruco_7GaOStrUIutAYKR91FDNcoFUS9juWp28-Pwf9BWjAmWGMdbcdXHmlnW5ZL4ovCsxVSjjYbpmAdBIT_vJy4A93hSH-2Hw4ceh1e9iT6awQtvkGowZYFZFCx3hOHEKB8-nal5xxsOSDbqXRTWzQIp2kyonAq9j-FpTalKa74kXFl7y7SalKRNMBWhqYIBZQBM7LTk3Ubloy57BgiqFPm_3U_SolQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_83brs","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x10b7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:54:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:54:05 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:54:05 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6a851d0000d1634fba1b] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00082e240 400 [] false false map[] 0xc00009aa00 0xc000706000} -2022/02/28 11:54:05 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:54:05 [DEBUG] Exit from do method -2022/02/28 11:54:05 [DEBUG] 621c6a851d0000d1634fba1b: Schema Creation finished successfully -2022/02/28 11:54:05 [DEBUG] 621c6a851d0000d1634fba1b: Beginning Read -2022/02/28 11:54:05 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:05 [DEBUG] Begin Injection -2022/02/28 11:54:05 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:05 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:54:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000789180 160 [] false false map[] 0xc0005d0d00 0xc000706000} -2022/02/28 11:54:05 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6a851b0000650afd0c35","name":"acctest_83brs","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:54:05 [DEBUG] Exit from do method -2022/02/28 11:54:05 [DEBUG] 621c6a851b0000650afd0c35: Creation finished successfully -2022/02/28 11:54:05 [DEBUG] 621c6a851b0000650afd0c35: Beginning Read -2022/02/28 11:54:05 id: 621c6a851b0000650afd0c35 -2022/02/28 11:54:05 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 -2022/02/28 11:54:05 [DEBUG] Begin Injection -2022/02/28 11:54:05 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 -2022/02/28 11:54:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 -2022/02/28 11:54:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00082e580 400 [] false false map[] 0xc00009ad00 0xc000706000} -2022/02/28 11:54:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:54:06 [DEBUG] Exit from do method -2022/02/28 11:54:06 [DEBUG] 621c6a851d0000d1634fba1b: Read finished successfully -2022/02/28 11:54:06 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:54:06 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:54:06 HTTP request PATCH mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:06 [DEBUG] Begin Injection -2022/02/28 11:54:06 HTTP request after injection PATCH mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 -2022/02/28 11:54:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d8ac80 160 [] false false map[] 0xc0005d1000 0xc0001fa370} -2022/02/28 11:54:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 {"id":"621c6a851b0000650afd0c35","name":"acctest_83brs","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:54:06 [DEBUG] Exit from do method -2022/02/28 11:54:06 [DEBUG] 621c6a851b0000650afd0c35: Read finished successfully -2022/02/28 11:54:06 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:24:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005d1600 0xc000706000} -2022/02/28 11:54:06 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:06 [DEBUG] acctest_83brs: Creation finished successfully -2022/02/28 11:54:06 [DEBUG] acctest_83brs: Beginning Read -2022/02/28 11:54:06 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:06 [DEBUG] Begin Injection -2022/02/28 11:54:06 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:06 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d8b1c0 768 [] false false map[] 0xc0010e8200 0xc0005fc000} -2022/02/28 11:54:06 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:54:06 [DEBUG] Exit from do method -2022/02/28 11:54:06 currentvrfname acctest_83brs -2022/02/28 11:54:06 found correct vrfname -2022/02/28 11:54:06 [DEBUG] acctest_83brs: Read finished successfully -2022/02/28 11:54:06 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:54:06 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:54:06 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:54:06 HTTP request PATCH mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:06 [DEBUG] Begin Injection -2022/02/28 11:54:06 HTTP request after injection PATCH mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:07 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:24:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00085a200 0xc0001fa840} -2022/02/28 11:54:07 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:07 [DEBUG] : Beginning Read -2022/02/28 11:54:07 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:07 [DEBUG] Begin Injection -2022/02/28 11:54:07 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ee8c0 1277 [] false false map[] 0xc00009b400 0xc0001fa840} -2022/02/28 11:54:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:54:07 [DEBUG] Exit from do method -2022/02/28 11:54:07 [DEBUG] acctest_83brs: Read finished successfully -2022/02/28 11:54:07 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:54:07 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:54:07 HTTP request PATCH mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:07 [DEBUG] Begin Injection -2022/02/28 11:54:07 HTTP request after injection PATCH mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:07 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:24:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0010e8200 0xc0001fa840} -2022/02/28 11:54:07 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b?validate=false -2022/02/28 11:54:07 [DEBUG] Creation Complete -2022/02/28 11:54:07 [DEBUG] : Beginning Read -2022/02/28 11:54:07 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:07 [DEBUG] Begin Injection -2022/02/28 11:54:07 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000626040 1362 [] false false map[] 0xc00009a100 0xc0001fa840} -2022/02/28 11:54:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:08 [DEBUG] Exit from do method -2022/02/28 11:54:08 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Read finished successfully -2022/02/28 11:54:08 [DEBUG] : Beginning Read -2022/02/28 11:54:08 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:08 [DEBUG] Begin Injection -2022/02/28 11:54:08 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049e840 1362 [] false false map[] 0xc0010e8a00 0xc0001fa840} -2022/02/28 11:54:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:08 [DEBUG] Exit from do method -2022/02/28 11:54:08 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Read finished successfully -2022/02/28 11:54:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:08 [DEBUG] New state was assigned lineage "4d97eacf-ffe7-7b8e-04b4-bbba926a7fd2" -2022/02/28 11:54:08 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:08 [DEBUG] Begin Injection -2022/02/28 11:54:08 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049f040 1362 [] false false map[] 0xc00085a000 0xc0001fa840} -2022/02/28 11:54:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:08 [DEBUG] Exit from do method -2022/02/28 11:54:08 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:54:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:08 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:54:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:08 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:54:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:54:08 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:54:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:08 [DEBUG] : Beginning Read -2022/02/28 11:54:08 HTTP request GET mso/api/v1/tenants -2022/02/28 11:54:08 [DEBUG] Begin Injection -2022/02/28 11:54:08 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:54:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:54:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:54:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049e1c0 5563 [] false false map[] 0xc00009a300 0xc0001fa840} -2022/02/28 11:54:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:54:09 [DEBUG] Exit from do method -2022/02/28 11:54:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:54:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:54:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:54:09 [DEBUG] 621c6a851d0000d1634fba1b: Beginning Read -2022/02/28 11:54:09 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:09 [DEBUG] Begin Injection -2022/02/28 11:54:09 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:09 [DEBUG] 621c6a851b0000650afd0c35: Beginning Read -2022/02/28 11:54:09 id: 621c6a851b0000650afd0c35 -2022/02/28 11:54:09 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 -2022/02/28 11:54:09 [DEBUG] Begin Injection -2022/02/28 11:54:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 -2022/02/28 11:54:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 -2022/02/28 11:54:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 -2022/02/28 11:54:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00082e480 160 [] false false map[] 0xc0005d1300 0xc0001fa840} -2022/02/28 11:54:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 {"id":"621c6a851b0000650afd0c35","name":"acctest_83brs","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:54:09 [DEBUG] Exit from do method -2022/02/28 11:54:09 [DEBUG] 621c6a851b0000650afd0c35: Read finished successfully -2022/02/28 11:54:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00082e980 1362 [] false false map[] 0xc00009a900 0xc0001fa370} -2022/02/28 11:54:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:09 [DEBUG] Exit from do method -2022/02/28 11:54:09 [DEBUG] 621c6a851d0000d1634fba1b: Read finished successfully -2022/02/28 11:54:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:54:09 [DEBUG] acctest_83brs: Beginning Read -2022/02/28 11:54:09 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:09 [DEBUG] Begin Injection -2022/02/28 11:54:09 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001080140 1362 [] false false map[] 0xc0005d1a00 0xc0001fa370} -2022/02/28 11:54:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:09 [DEBUG] Exit from do method -2022/02/28 11:54:09 currentvrfname acctest_83brs -2022/02/28 11:54:09 found correct vrfname -2022/02/28 11:54:09 [DEBUG] acctest_83brs: Read finished successfully -2022/02/28 11:54:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:54:09 [DEBUG] acctest_83brs: Beginning Read -2022/02/28 11:54:09 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:09 [DEBUG] Begin Injection -2022/02/28 11:54:09 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001081540 1362 [] false false map[] 0xc000294500 0xc0001fa370} -2022/02/28 11:54:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:10 [DEBUG] Exit from do method -2022/02/28 11:54:10 [DEBUG] acctest_83brs: Read finished successfully -2022/02/28 11:54:10 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:54:10 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Beginning Read -2022/02/28 11:54:10 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:10 [DEBUG] Begin Injection -2022/02/28 11:54:10 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006272c0 1362 [] false false map[] 0xc00063c600 0xc0001fa370} -2022/02/28 11:54:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:10 [DEBUG] Exit from do method -2022/02/28 11:54:10 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Read finished successfully -2022/02/28 11:54:10 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:54:10 [DEBUG] : Beginning Read -2022/02/28 11:54:10 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:10 [DEBUG] Begin Injection -2022/02/28 11:54:10 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001081680 1362 [] false false map[] 0xc00009ae00 0xc0001fa370} -2022/02/28 11:54:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:11 [DEBUG] Exit from do method -2022/02/28 11:54:11 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Read finished successfully -2022/02/28 11:54:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:11 [DEBUG] New state was assigned lineage "a88b68e3-753a-e0ef-125e-1a2f1e1fa8fb" -2022/02/28 11:54:11 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:54:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:11 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:54:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:11 [DEBUG] Test: Executing step 5 -2022/02/28 11:54:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:11 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:54:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:54:11 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:54:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:11 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:54:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:54:11 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:11 [DEBUG] : Beginning Read -2022/02/28 11:54:11 HTTP request GET mso/api/v1/tenants -2022/02/28 11:54:11 [DEBUG] Begin Injection -2022/02/28 11:54:11 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:54:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:54:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:54:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00029e240 5563 [] false false map[] 0xc000294600 0xc0001fa370} -2022/02/28 11:54:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:54:11 [DEBUG] Exit from do method -2022/02/28 11:54:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:54:11 [DEBUG] 621c6a851d0000d1634fba1b: Beginning Read -2022/02/28 11:54:11 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:11 [DEBUG] Begin Injection -2022/02/28 11:54:11 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:11 [DEBUG] 621c6a851b0000650afd0c35: Beginning Read -2022/02/28 11:54:11 id: 621c6a851b0000650afd0c35 -2022/02/28 11:54:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 -2022/02/28 11:54:11 [DEBUG] Begin Injection -2022/02/28 11:54:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 -2022/02/28 11:54:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 -2022/02/28 11:54:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 -2022/02/28 11:54:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00029fc40 160 [] false false map[] 0xc000858e00 0xc0001fa840} -2022/02/28 11:54:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6a851b0000650afd0c35 {"id":"621c6a851b0000650afd0c35","name":"acctest_83brs","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:54:11 [DEBUG] Exit from do method -2022/02/28 11:54:11 [DEBUG] 621c6a851b0000650afd0c35: Read finished successfully -2022/02/28 11:54:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006c0100 1362 [] false false map[] 0xc000294a00 0xc0001fa370} -2022/02/28 11:54:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:11 [DEBUG] Exit from do method -2022/02/28 11:54:11 [DEBUG] 621c6a851d0000d1634fba1b: Read finished successfully -2022/02/28 11:54:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:54:11 [DEBUG] acctest_83brs: Beginning Read -2022/02/28 11:54:11 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:11 [DEBUG] Begin Injection -2022/02/28 11:54:11 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00064f080 1362 [] false false map[] 0xc000e38400 0xc0001fa370} -2022/02/28 11:54:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:12 [DEBUG] Exit from do method -2022/02/28 11:54:12 currentvrfname acctest_83brs -2022/02/28 11:54:12 found correct vrfname -2022/02/28 11:54:12 [DEBUG] acctest_83brs: Read finished successfully -2022/02/28 11:54:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:54:12 [DEBUG] acctest_83brs: Beginning Read -2022/02/28 11:54:12 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:12 [DEBUG] Begin Injection -2022/02/28 11:54:12 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001080700 1362 [] false false map[] 0xc0005d0500 0xc0001fa370} -2022/02/28 11:54:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:12 [DEBUG] Exit from do method -2022/02/28 11:54:12 [DEBUG] acctest_83brs: Read finished successfully -2022/02/28 11:54:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:54:12 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Beginning Read -2022/02/28 11:54:12 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:12 [DEBUG] Begin Injection -2022/02/28 11:54:12 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006c0040 1362 [] false false map[] 0xc00009a100 0xc0001fa370} -2022/02/28 11:54:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:12 [DEBUG] Exit from do method -2022/02/28 11:54:12 [DEBUG] /schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs/dhcpLabels/acctest_83brs: Read finished successfully -2022/02/28 11:54:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:54:12 [DEBUG] : Beginning Read -2022/02/28 11:54:12 HTTP request GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:12 [DEBUG] Begin Injection -2022/02/28 11:54:12 HTTP request after injection GET mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b -2022/02/28 11:54:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:24:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d8a5c0 1362 [] false false map[] 0xc00080a300 0xc0001fa370} -2022/02/28 11:54:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6a851d0000d1634fba1b {"id":"621c6a851d0000d1634fba1b","displayName":"acctest_0sfyl","description":"","templates":[{"name":"acctest_0sfyl","displayName":"acctest_0sfyl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_83brs","displayName":"acctest_83brs","vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_83brs","displayName":"acctest_83brs","bdRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/bds/acctest_83brs","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6a851d0000d1634fba1b/templates/acctest_0sfyl/vrfs/acctest_83brs","dhcpLabel":{"name":"acctest_83brs","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_83brs","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:54:13 [DEBUG] Exit from do method -2022/02/28 11:54:13 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 11:54:13 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 11:54:13 [DEBUG] New state was assigned lineage "e22840fd-cfdb-f7d8-10f4-2e3a37037dca" -2022/02/28 11:54:13 [DEBUG] Test: Executing step 6 -2022/02/28 11:54:13 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:13 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:54:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:13 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:54:13 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "kqkiz" is not expected here. -2022/02/28 11:54:13 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "kqkiz" is not expected here. -2022/02/28 11:54:13 [DEBUG] Test: Executing step 7 -2022/02/28 11:54:13 [DEBUG] provider has no plugin.Client -2022/02/28 11:54:13 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:54:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:54:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:54:13 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:54:13 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: "dhcp_option_name": all of `dhcp_option_name,dhcp_option_version` must be specified -2022/02/28 11:54:13 [ERROR] : eval: *terraform.EvalSequence, err: "dhcp_option_name": all of `dhcp_option_name,dhcp_option_version` must be specified -2022/02/28 11:54:13 [WARN] Skipping destroy test since there is no state. -2022/02/28 11:55:06 [DEBUG] Test: Executing step 0 -2022/02/28 11:55:06 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:06 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:55:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:06 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 11:55:06 [DEBUG] Test: Executing step 1 -2022/02/28 11:55:06 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:06 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:55:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:06 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 11:55:06 [DEBUG] Test: Executing step 2 -2022/02/28 11:55:06 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:06 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:55:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:06 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 11:55:06 [DEBUG] Test: Executing step 3 -2022/02/28 11:55:06 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:06 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:55:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:55:06 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:55:06 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 11:55:06 [DEBUG] Test: Executing step 4 -2022/02/28 11:55:06 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:06 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:55:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:06 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:55:06 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:06 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:55:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:06 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:55:06 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:06 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:06 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:06 [DEBUG] : Beginning Read -2022/02/28 11:55:06 HTTP request GET mso/api/v1/tenants -2022/02/28 11:55:06 [DEBUG] Begin Injection -2022/02/28 11:55:06 HTTP request POST /login -2022/02/28 11:55:06 HTTP request after injection POST /login -2022/02/28 11:55:06 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 11:55:08 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 11:55:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:08 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000b2c480 -1 [chunked] false false map[] 0xc000d20200 0xc0007d4000} -2022/02/28 11:55:08 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg"} -2022/02/28 11:55:08 [DEBUG] Exit from do method -2022/02/28 11:55:08 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:55:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:55:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:55:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000998240 5563 [] false false map[] 0xc000d20100 0xc0007d4000} -2022/02/28 11:55:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:55:08 [DEBUG] Exit from do method -2022/02/28 11:55:08 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:55:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:08 [DEBUG] New state was assigned lineage "84e52b84-fda2-2761-2292-a0bedf5cdfd6" -2022/02/28 11:55:08 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:55:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:08 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:08 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:55:08 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:55:08 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:55:08 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:55:08 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:08 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:08 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:08 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_p9wer" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_p9wer" - schema_id: "" => "" - template_name: "" => "acctest_yqb2q" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_p9wer" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_yqb2q" - template_name: "" => "acctest_yqb2q" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_p9wer" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_p9wer" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_yqb2q" - vrf_name: "" => "acctest_p9wer" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_p9wer" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_p9wer" - schema_id: "" => "" - template_name: "" => "acctest_yqb2q" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_p9wer" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_p9wer" - schema_id: "" => "" - template: "" => "acctest_yqb2q" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:55:08 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:55:08 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:55:08 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:08 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:08 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:55:08 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:55:08 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:55:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 11:55:08 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state)] -2022/02/28 11:55:08 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:55:08 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:55:08 [DEBUG] Schema: Beginning Creation -2022/02/28 11:55:08 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:55:08 HTTP request POST mso/api/v1/schemas -2022/02/28 11:55:08 [DEBUG] Begin Injection -2022/02/28 11:55:08 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:55:08 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg] Content-Type:[application/json]] {{"displayName":"acctest_yqb2q","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_yqb2q","externalEpgs":[],"filters":[],"name":"acctest_yqb2q","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x957ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:55:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:55:08 [DEBUG] : Beginning Create -2022/02/28 11:55:08 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:55:08 [DEBUG] Begin Injection -2022/02/28 11:55:08 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:55:08 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg] Content-Type:[application/json]] {{"desc":"","name":"acctest_p9wer","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x957ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:55:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:55:09 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:55:09 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6ac41d0000d8634fba20] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a89280 400 [] false false map[] 0xc000d03100 0xc0007d4000} -2022/02/28 11:55:09 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:55:09 [DEBUG] Exit from do method -2022/02/28 11:55:09 [DEBUG] 621c6ac41d0000d8634fba20: Schema Creation finished successfully -2022/02/28 11:55:09 [DEBUG] 621c6ac41d0000d8634fba20: Beginning Read -2022/02/28 11:55:09 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:09 [DEBUG] Begin Injection -2022/02/28 11:55:09 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:09 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:55:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a89400 160 [] false false map[] 0xc0006bc500 0xc0007d4000} -2022/02/28 11:55:09 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6ac51b0000530afd0c36","name":"acctest_p9wer","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:55:09 [DEBUG] Exit from do method -2022/02/28 11:55:09 [DEBUG] 621c6ac51b0000530afd0c36: Creation finished successfully -2022/02/28 11:55:09 [DEBUG] 621c6ac51b0000530afd0c36: Beginning Read -2022/02/28 11:55:09 id: 621c6ac51b0000530afd0c36 -2022/02/28 11:55:09 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 -2022/02/28 11:55:09 [DEBUG] Begin Injection -2022/02/28 11:55:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 -2022/02/28 11:55:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 -2022/02/28 11:55:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007903c0 400 [] false false map[] 0xc0006bca00 0xc0006a2000} -2022/02/28 11:55:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 11:55:09 [DEBUG] Exit from do method -2022/02/28 11:55:09 [DEBUG] 621c6ac41d0000d8634fba20: Read finished successfully -2022/02/28 11:55:09 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 11:55:09 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 11:55:09 HTTP request PATCH mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:09 [DEBUG] Begin Injection -2022/02/28 11:55:09 HTTP request after injection PATCH mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 -2022/02/28 11:55:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000379940 160 [] false false map[] 0xc0006bcb00 0xc0007d4000} -2022/02/28 11:55:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 {"id":"621c6ac51b0000530afd0c36","name":"acctest_p9wer","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:55:09 [DEBUG] Exit from do method -2022/02/28 11:55:09 [DEBUG] 621c6ac51b0000530afd0c36: Read finished successfully -2022/02/28 11:55:10 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:25:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0008a7300 0xc0006a2000} -2022/02/28 11:55:10 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:10 [DEBUG] acctest_p9wer: Creation finished successfully -2022/02/28 11:55:10 [DEBUG] acctest_p9wer: Beginning Read -2022/02/28 11:55:10 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:10 [DEBUG] Begin Injection -2022/02/28 11:55:10 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000998040 768 [] false false map[] 0xc000512100 0xc0007d4630} -2022/02/28 11:55:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 11:55:10 [DEBUG] Exit from do method -2022/02/28 11:55:10 currentvrfname acctest_p9wer -2022/02/28 11:55:10 found correct vrfname -2022/02/28 11:55:10 [DEBUG] acctest_p9wer: Read finished successfully -2022/02/28 11:55:10 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 11:55:10 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 11:55:10 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:55:10 HTTP request PATCH mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:10 [DEBUG] Begin Injection -2022/02/28 11:55:10 HTTP request after injection PATCH mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:10 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:25:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0006bc300 0xc0007d4630} -2022/02/28 11:55:10 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:10 [DEBUG] : Beginning Read -2022/02/28 11:55:10 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:10 [DEBUG] Begin Injection -2022/02/28 11:55:10 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7e00 1277 [] false false map[] 0xc0008a6c00 0xc0007d4630} -2022/02/28 11:55:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 11:55:11 [DEBUG] Exit from do method -2022/02/28 11:55:11 [DEBUG] acctest_p9wer: Read finished successfully -2022/02/28 11:55:11 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 11:55:11 [DEBUG] Template BD: Beginning Creation -2022/02/28 11:55:11 HTTP request PATCH mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:11 [DEBUG] Begin Injection -2022/02/28 11:55:11 HTTP request after injection PATCH mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:11 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:11 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:25:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000610500 0xc0007d4630} -2022/02/28 11:55:11 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20?validate=false -2022/02/28 11:55:11 [DEBUG] Creation Complete -2022/02/28 11:55:11 [DEBUG] : Beginning Read -2022/02/28 11:55:11 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:11 [DEBUG] Begin Injection -2022/02/28 11:55:11 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000379840 1362 [] false false map[] 0xc0006bc900 0xc0007d4630} -2022/02/28 11:55:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:11 [DEBUG] Exit from do method -2022/02/28 11:55:11 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Read finished successfully -2022/02/28 11:55:11 [DEBUG] : Beginning Read -2022/02/28 11:55:11 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:11 [DEBUG] Begin Injection -2022/02/28 11:55:11 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000303440 1362 [] false false map[] 0xc000512600 0xc0007d4630} -2022/02/28 11:55:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:11 [DEBUG] Exit from do method -2022/02/28 11:55:11 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Read finished successfully -2022/02/28 11:55:11 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:11 [DEBUG] New state was assigned lineage "44aa9980-527a-c2d5-ead9-c47dc24e95f9" -2022/02/28 11:55:11 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:11 [DEBUG] Begin Injection -2022/02/28 11:55:11 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000378980 1362 [] false false map[] 0xc000610700 0xc0007d4630} -2022/02/28 11:55:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:12 [DEBUG] Exit from do method -2022/02/28 11:55:12 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:55:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:12 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:12 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:12 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:55:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:12 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:12 [DEBUG] : Beginning Read -2022/02/28 11:55:12 HTTP request GET mso/api/v1/tenants -2022/02/28 11:55:12 [DEBUG] Begin Injection -2022/02/28 11:55:12 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:55:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:55:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:55:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004dd00 5563 [] false false map[] 0xc000bdc400 0xc0007d4630} -2022/02/28 11:55:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:55:12 [DEBUG] Exit from do method -2022/02/28 11:55:12 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:55:12 [DEBUG] 621c6ac41d0000d8634fba20: Beginning Read -2022/02/28 11:55:12 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:12 [DEBUG] Begin Injection -2022/02/28 11:55:12 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:12 [DEBUG] 621c6ac51b0000530afd0c36: Beginning Read -2022/02/28 11:55:12 id: 621c6ac51b0000530afd0c36 -2022/02/28 11:55:12 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 -2022/02/28 11:55:12 [DEBUG] Begin Injection -2022/02/28 11:55:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 -2022/02/28 11:55:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 -2022/02/28 11:55:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b2d880 1362 [] false false map[] 0xc000f28e00 0xc0007d4000} -2022/02/28 11:55:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:12 [DEBUG] Exit from do method -2022/02/28 11:55:12 [DEBUG] 621c6ac41d0000d8634fba20: Read finished successfully -2022/02/28 11:55:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 -2022/02/28 11:55:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb4900 160 [] false false map[] 0xc0006bc400 0xc0007d4630} -2022/02/28 11:55:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 {"id":"621c6ac51b0000530afd0c36","name":"acctest_p9wer","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:55:12 [DEBUG] Exit from do method -2022/02/28 11:55:12 [DEBUG] 621c6ac51b0000530afd0c36: Read finished successfully -2022/02/28 11:55:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:55:12 [DEBUG] acctest_p9wer: Beginning Read -2022/02/28 11:55:12 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:12 [DEBUG] Begin Injection -2022/02/28 11:55:12 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb5540 1362 [] false false map[] 0xc000512700 0xc0007d4630} -2022/02/28 11:55:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:13 [DEBUG] Exit from do method -2022/02/28 11:55:13 currentvrfname acctest_p9wer -2022/02/28 11:55:13 found correct vrfname -2022/02/28 11:55:13 [DEBUG] acctest_p9wer: Read finished successfully -2022/02/28 11:55:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:55:13 [DEBUG] acctest_p9wer: Beginning Read -2022/02/28 11:55:13 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:13 [DEBUG] Begin Injection -2022/02/28 11:55:13 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008809c0 1362 [] false false map[] 0xc000512c00 0xc0007d4630} -2022/02/28 11:55:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:13 [DEBUG] Exit from do method -2022/02/28 11:55:13 [DEBUG] acctest_p9wer: Read finished successfully -2022/02/28 11:55:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:13 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Beginning Read -2022/02/28 11:55:13 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:13 [DEBUG] Begin Injection -2022/02/28 11:55:13 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000881940 1362 [] false false map[] 0xc0008a6b00 0xc0007d4630} -2022/02/28 11:55:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:13 [DEBUG] Exit from do method -2022/02/28 11:55:13 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Read finished successfully -2022/02/28 11:55:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:13 [DEBUG] : Beginning Read -2022/02/28 11:55:13 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:13 [DEBUG] Begin Injection -2022/02/28 11:55:13 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a88940 1362 [] false false map[] 0xc000513300 0xc0007d4630} -2022/02/28 11:55:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:14 [DEBUG] Exit from do method -2022/02/28 11:55:14 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Read finished successfully -2022/02/28 11:55:14 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:14 [DEBUG] New state was assigned lineage "c7b7f17a-9688-1f20-233f-bd8261ba5d7b" -2022/02/28 11:55:14 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:55:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:55:14 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:14 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:14 [DEBUG] Test: Executing step 5 -2022/02/28 11:55:14 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:14 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:55:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:55:14 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:55:14 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:14 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:55:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:55:14 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:14 [DEBUG] : Beginning Read -2022/02/28 11:55:14 HTTP request GET mso/api/v1/tenants -2022/02/28 11:55:14 [DEBUG] Begin Injection -2022/02/28 11:55:14 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:55:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:55:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:55:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cc2000 5563 [] false false map[] 0xc0006bc600 0xc0007d4630} -2022/02/28 11:55:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:55:14 [DEBUG] Exit from do method -2022/02/28 11:55:14 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:55:14 [DEBUG] 621c6ac41d0000d8634fba20: Beginning Read -2022/02/28 11:55:14 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:14 [DEBUG] Begin Injection -2022/02/28 11:55:14 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:14 [DEBUG] 621c6ac51b0000530afd0c36: Beginning Read -2022/02/28 11:55:14 id: 621c6ac51b0000530afd0c36 -2022/02/28 11:55:14 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 -2022/02/28 11:55:14 [DEBUG] Begin Injection -2022/02/28 11:55:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 -2022/02/28 11:55:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 -2022/02/28 11:55:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000302800 1362 [] false false map[] 0xc000318c00 0xc0007d4630} -2022/02/28 11:55:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:14 [DEBUG] Exit from do method -2022/02/28 11:55:14 [DEBUG] 621c6ac41d0000d8634fba20: Read finished successfully -2022/02/28 11:55:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:55:14 [DEBUG] acctest_p9wer: Beginning Read -2022/02/28 11:55:14 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:14 [DEBUG] Begin Injection -2022/02/28 11:55:14 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 -2022/02/28 11:55:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009991c0 160 [] false false map[] 0xc0008a6200 0xc0007d4000} -2022/02/28 11:55:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6ac51b0000530afd0c36 {"id":"621c6ac51b0000530afd0c36","name":"acctest_p9wer","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:55:14 [DEBUG] Exit from do method -2022/02/28 11:55:14 [DEBUG] 621c6ac51b0000530afd0c36: Read finished successfully -2022/02/28 11:55:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000302d40 1362 [] false false map[] 0xc000512e00 0xc0007d4630} -2022/02/28 11:55:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:15 [DEBUG] Exit from do method -2022/02/28 11:55:15 currentvrfname acctest_p9wer -2022/02/28 11:55:15 found correct vrfname -2022/02/28 11:55:15 [DEBUG] acctest_p9wer: Read finished successfully -2022/02/28 11:55:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:55:15 [DEBUG] acctest_p9wer: Beginning Read -2022/02/28 11:55:15 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:15 [DEBUG] Begin Injection -2022/02/28 11:55:15 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000880040 1362 [] false false map[] 0xc000319100 0xc0007d4630} -2022/02/28 11:55:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:15 [DEBUG] Exit from do method -2022/02/28 11:55:15 [DEBUG] acctest_p9wer: Read finished successfully -2022/02/28 11:55:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:15 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Beginning Read -2022/02/28 11:55:15 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:15 [DEBUG] Begin Injection -2022/02/28 11:55:15 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000881240 1362 [] false false map[] 0xc000318300 0xc0007d4630} -2022/02/28 11:55:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:15 [DEBUG] Exit from do method -2022/02/28 11:55:15 [DEBUG] /schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer/dhcpLabels/acctest_p9wer: Read finished successfully -2022/02/28 11:55:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:15 [DEBUG] : Beginning Read -2022/02/28 11:55:15 HTTP request GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:15 [DEBUG] Begin Injection -2022/02/28 11:55:15 HTTP request after injection GET mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 -2022/02/28 11:55:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cc28c0 1362 [] false false map[] 0xc000512600 0xc0007d4630} -2022/02/28 11:55:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6ac41d0000d8634fba20 {"id":"621c6ac41d0000d8634fba20","displayName":"acctest_yqb2q","description":"","templates":[{"name":"acctest_yqb2q","displayName":"acctest_yqb2q","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_p9wer","displayName":"acctest_p9wer","bdRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/bds/acctest_p9wer","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6ac41d0000d8634fba20/templates/acctest_yqb2q/vrfs/acctest_p9wer","dhcpLabel":{"name":"acctest_p9wer","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_p9wer","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 11:55:16 [DEBUG] Exit from do method -2022/02/28 11:55:16 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 11:55:16 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 11:55:16 [DEBUG] New state was assigned lineage "9efced3c-4466-24ee-0ff6-408c6e36aa91" -2022/02/28 11:55:16 [DEBUG] Test: Executing step 6 -2022/02/28 11:55:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:16 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:55:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 11:55:16 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:55:16 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "ozvql" is not expected here. -2022/02/28 11:55:16 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "ozvql" is not expected here. -2022/02/28 11:55:16 [DEBUG] Test: Executing step 7 -2022/02/28 11:55:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:16 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:55:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:16 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:55:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:16 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:55:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:16 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:55:16 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:16 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:16 [DEBUG] : Beginning Read -2022/02/28 11:55:16 HTTP request GET mso/api/v1/tenants -2022/02/28 11:55:16 [DEBUG] Begin Injection -2022/02/28 11:55:16 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:55:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:55:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:55:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000790040 5563 [] false false map[] 0xc0008a6f00 0xc0007d4630} -2022/02/28 11:55:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:55:16 [DEBUG] Exit from do method -2022/02/28 11:55:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:55:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:16 [DEBUG] New state was assigned lineage "e57b2bf3-2a58-606b-c338-0209c7f930ce" -2022/02/28 11:55:16 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 11:55:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:16 [DEBUG] Starting graph walk: walkPlan -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:16 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:16 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:16 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_p9wer" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_p9wer" - schema_id: "" => "" - template_name: "" => "acctest_yqb2q" - version: "" => "" -CREATE: mso_dhcp_option_policy.test - description: "" => "" - id: "" => "" - name: "" => "acctest_wjzo4" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_p9wer" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_yqb2q" - template_name: "" => "acctest_yqb2q" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_p9wer" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_p9wer" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_yqb2q" - vrf_name: "" => "acctest_p9wer" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_p9wer" - dhcp_option_name: "" => "acctest_wjzo4" - dhcp_option_version: "" => "1" - id: "" => "" - name: "" => "acctest_p9wer" - schema_id: "" => "" - template_name: "" => "acctest_yqb2q" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_p9wer" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_p9wer" - schema_id: "" => "" - template: "" => "acctest_yqb2q" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 11:55:16 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:55:16 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 11:55:16 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:16 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:55:16 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:55:16 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:55:16 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:16 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:55:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:55:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:55:16 [DEBUG] Starting graph walk: walkApply -2022/02/28 11:55:16 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 11:55:16 [DEBUG] Schema: Beginning Creation -2022/02/28 11:55:16 HTTP request POST mso/api/v1/schemas -2022/02/28 11:55:16 [DEBUG] Begin Injection -2022/02/28 11:55:16 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 11:55:16 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg] Content-Type:[application/json]] {{"displayName":"acctest_yqb2q","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_yqb2q","externalEpgs":[],"filters":[],"name":"acctest_yqb2q","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x957ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:55:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:55:16 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change -2022/02/28 11:55:16 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 11:55:16 [DEBUG] : Beginning Create -2022/02/28 11:55:16 [DEBUG] : Beginning Create -2022/02/28 11:55:16 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 11:55:16 [DEBUG] Begin Injection -2022/02/28 11:55:16 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 11:55:16 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_wjzo4","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x957ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:55:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:55:16 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:55:16 [DEBUG] Begin Injection -2022/02/28 11:55:16 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 11:55:16 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMwNzA4LCJpYXQiOjE2NDYwMjk1MDgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiVmlvUk0wMlRHeklNekU2cUlsQ2lVQlk4IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.o2YxoT876082ClnYvPRk6P8BWNMfhEa79r-Mar5PPhvkod01XGIAvLVgWuY_rz0UD9NdJRh_SacpJJO5ycH3mxscFro_po7sOyWywcbbueHonNJ3LHyDTgYkR4PN43s_AxO-WYubW8PZec-3BoO4fS3_uEnA8A8lJhL_VSYXl-1pvHDmAzWcuL24_FLGHB_nGZdnTuyNtqTCAu7lG_d3NlFijWrr0oGuy8JBYapVKN4WO_YWPxX3SQTt5ie7jzl15p6JJ0HUQyxRvexyCSekNYCEqdQvPA9Y7G9NyWg-tye6HJAi3qrUcg_zMNDZ5LlgVsutDjh1Oq9zviaLGpMvgg] Content-Type:[application/json]] {{"desc":"","name":"acctest_p9wer","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x957ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 11:55:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:55:16 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 11:55:16 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[122] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:16 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6340 122 [] false false map[] 0xc001092300 0xc0007d4630} -2022/02/28 11:55:16 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"code":140,"message":"Duplicate Resource: displayName","info":{"displayName":["Schema: 'acctest_yqb2q' already exists"]}} -2022/02/28 11:55:16 [DEBUG] Exit from do method -2022/02/28 11:55:16 [DEBUG] mso_schema.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_yqb2q' already exists"]} -2022/02/28 11:55:16 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_yqb2q' already exists"]} -2022/02/28 11:55:16 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_yqb2q' already exists"]} -2022/02/28 11:55:16 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 11:55:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a88540 161 [] false false map[] 0xc001092800 0xc0007d4000} -2022/02/28 11:55:16 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c6acc1b0000590afd0c37","name":"acctest_wjzo4","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:55:16 [DEBUG] Exit from do method -2022/02/28 11:55:16 [DEBUG] 621c6acc1b0000590afd0c37: Creation finished successfully -2022/02/28 11:55:16 [DEBUG] 621c6acc1b0000590afd0c37: Beginning Read -2022/02/28 11:55:16 id: 621c6acc1b0000590afd0c37 -2022/02/28 11:55:16 HTTP request GET mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:16 [DEBUG] Begin Injection -2022/02/28 11:55:16 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:17 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 11:55:17 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[108] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:17 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009984c0 108 [] false false map[] 0xc0008a6200 0xc0007d4630} -2022/02/28 11:55:17 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":140,"message":"Duplicate Resource: name","info":{"name":["Policy: 'acctest_p9wer' already exists"]}} -2022/02/28 11:55:17 [DEBUG] Exit from do method -2022/02/28 11:55:17 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: name"{"name":["Policy: 'acctest_p9wer' already exists"]} -2022/02/28 11:55:17 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_p9wer' already exists"]} -2022/02/28 11:55:17 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_p9wer' already exists"]} -2022/02/28 11:55:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a88780 161 [] false false map[] 0xc00109c000 0xc0007d4000} -2022/02/28 11:55:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 {"id":"621c6acc1b0000590afd0c37","name":"acctest_wjzo4","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:55:17 [DEBUG] Exit from do method -2022/02/28 11:55:17 [DEBUG] 621c6acc1b0000590afd0c37: Read finished successfully -2022/02/28 11:55:17 [DEBUG] New state was assigned lineage "d47dc467-f103-9ed6-2c58-4a9940b85f26" -2022/02/28 11:55:17 [WARN] Test: Executing destroy step -2022/02/28 11:55:17 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:17 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 11:55:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:17 [DEBUG] Starting graph walk: walkValidate -2022/02/28 11:55:17 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:17 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:55:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:17 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:17 [DEBUG] : Beginning Read -2022/02/28 11:55:17 HTTP request GET mso/api/v1/tenants -2022/02/28 11:55:17 [DEBUG] Begin Injection -2022/02/28 11:55:17 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:55:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:55:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:55:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e61c0 5563 [] false false map[] 0xc00130c100 0xc0007d4000} -2022/02/28 11:55:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:55:17 [DEBUG] Exit from do method -2022/02/28 11:55:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:55:17 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 11:55:17 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 11:55:17 [DEBUG] 621c6acc1b0000590afd0c37: Beginning Read -2022/02/28 11:55:17 id: 621c6acc1b0000590afd0c37 -2022/02/28 11:55:17 HTTP request GET mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:17 [DEBUG] Begin Injection -2022/02/28 11:55:17 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:17 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 11:55:17 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 11:55:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 11:55:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010ef9c0 161 [] false false map[] 0xc0008a7600 0xc0012f8c60} -2022/02/28 11:55:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 {"id":"621c6acc1b0000590afd0c37","name":"acctest_wjzo4","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 11:55:18 [DEBUG] Exit from do method -2022/02/28 11:55:18 [DEBUG] 621c6acc1b0000590afd0c37: Read finished successfully -2022/02/28 11:55:18 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:18 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:18 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:18 [DEBUG] New state was assigned lineage "9c6a2597-401b-32f4-ebc3-276fc8b84852" -2022/02/28 11:55:18 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:18 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:55:18 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_option_policy.test - description: "" => "" - id: "621c6acc1b0000590afd0c37" => "" - name: "acctest_wjzo4" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.test: - ID = 621c6acc1b0000590afd0c37 - provider = provider.mso - description = - name = acctest_wjzo4 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -2022/02/28 11:55:18 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_option_policy.test (prepare state) -2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 11:55:18 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 11:55:18 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 11:55:18 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change -2022/02/28 11:55:18 [DEBUG] 621c6acc1b0000590afd0c37: Beginning Read -2022/02/28 11:55:18 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:18 [DEBUG] Begin Injection -2022/02/28 11:55:18 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:18 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:18 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:25:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0006bcd00 0xc0012f8c60} -2022/02/28 11:55:18 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c6acc1b0000590afd0c37 -2022/02/28 11:55:18 [DEBUG] : Read finished successfully -2022/02/28 11:55:18 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:18 [DEBUG] New state was assigned lineage "6dfa990c-bc22-8759-e8ce-b2b7f0839b03" -2022/02/28 11:55:18 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:55:18 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 11:55:18 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:18 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 11:55:18 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 11:55:18 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:18 [DEBUG] : Beginning Read -2022/02/28 11:55:18 HTTP request GET mso/api/v1/tenants -2022/02/28 11:55:18 [DEBUG] Begin Injection -2022/02/28 11:55:18 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 11:55:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:55:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 11:55:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:25:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000791700 5563 [] false false map[] 0xc000d20500 0xc0012f8c60} -2022/02/28 11:55:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 11:55:18 [DEBUG] Exit from do method -2022/02/28 11:55:18 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 11:55:18 [DEBUG] provider has no plugin.Client -2022/02/28 11:55:18 [DEBUG] New state was assigned lineage "f62fad60-d005-ad15-da24-ca432fdebddc" -2022/02/28 11:55:18 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 11:55:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 11:55:18 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:00:41 [DEBUG] Test: Executing step 0 -2022/02/28 12:00:41 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:41 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:00:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:00:41 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:00:41 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:00:41 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:00:41 [DEBUG] Test: Executing step 1 -2022/02/28 12:00:41 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:41 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:00:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:00:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:41 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:00:41 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:00:41 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:00:41 [DEBUG] Test: Executing step 2 -2022/02/28 12:00:42 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:42 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:00:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:42 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:00:42 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:00:42 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:00:42 [DEBUG] Test: Executing step 3 -2022/02/28 12:00:42 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:42 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:00:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:42 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:00:42 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:00:42 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:00:42 [DEBUG] Test: Executing step 4 -2022/02/28 12:00:42 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:42 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:00:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:42 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:00:42 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:42 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:00:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:42 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:00:42 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:42 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:00:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:00:42 [DEBUG] : Beginning Read -2022/02/28 12:00:42 HTTP request GET mso/api/v1/tenants -2022/02/28 12:00:42 [DEBUG] Begin Injection -2022/02/28 12:00:42 HTTP request POST /login -2022/02/28 12:00:42 HTTP request after injection POST /login -2022/02/28 12:00:42 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 12:00:43 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 12:00:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:43 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMDQzLCJpYXQiOjE2NDYwMjk4NDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoienl5MTY3UHN6MGYzRGlzOEx3bGhxQVdxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tY4zHaENrsfRzp-Qf75uivO-5rdZRFaOLDKtrMbthg0idSEyjZPRFObIGCihoCQgr0vWBdEbEgyP2IuS7Lmo1zHb_5UjWoFdYwBL2qJv6YpiZOU5O9BDAcfulFVjxoe-puFny60TbrpRdwbKa3JiqANCnSWVTaBZPoPIQxt6mCT7fTg-JPRBqe-WXIIiubKnmqvG-zevWd1URYfrhQl9RnW2-xoV9J1N9lkFAFcFwmYkbGVPdmO1K4Q8yu4mStot_t2wvpD5nOMPvy7nm1aYnfsld547e6ovddTgtzhjPerU6JYxaPz5-EpkIM1_nOzWxgoYcM5hw9on8NtkgPt_zQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00004c440 -1 [chunked] false false map[] 0xc00051f400 0xc000f52000} -2022/02/28 12:00:43 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMDQzLCJpYXQiOjE2NDYwMjk4NDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoienl5MTY3UHN6MGYzRGlzOEx3bGhxQVdxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tY4zHaENrsfRzp-Qf75uivO-5rdZRFaOLDKtrMbthg0idSEyjZPRFObIGCihoCQgr0vWBdEbEgyP2IuS7Lmo1zHb_5UjWoFdYwBL2qJv6YpiZOU5O9BDAcfulFVjxoe-puFny60TbrpRdwbKa3JiqANCnSWVTaBZPoPIQxt6mCT7fTg-JPRBqe-WXIIiubKnmqvG-zevWd1URYfrhQl9RnW2-xoV9J1N9lkFAFcFwmYkbGVPdmO1K4Q8yu4mStot_t2wvpD5nOMPvy7nm1aYnfsld547e6ovddTgtzhjPerU6JYxaPz5-EpkIM1_nOzWxgoYcM5hw9on8NtkgPt_zQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMDQzLCJpYXQiOjE2NDYwMjk4NDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoienl5MTY3UHN6MGYzRGlzOEx3bGhxQVdxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tY4zHaENrsfRzp-Qf75uivO-5rdZRFaOLDKtrMbthg0idSEyjZPRFObIGCihoCQgr0vWBdEbEgyP2IuS7Lmo1zHb_5UjWoFdYwBL2qJv6YpiZOU5O9BDAcfulFVjxoe-puFny60TbrpRdwbKa3JiqANCnSWVTaBZPoPIQxt6mCT7fTg-JPRBqe-WXIIiubKnmqvG-zevWd1URYfrhQl9RnW2-xoV9J1N9lkFAFcFwmYkbGVPdmO1K4Q8yu4mStot_t2wvpD5nOMPvy7nm1aYnfsld547e6ovddTgtzhjPerU6JYxaPz5-EpkIM1_nOzWxgoYcM5hw9on8NtkgPt_zQ"} -2022/02/28 12:00:43 [DEBUG] Exit from do method -2022/02/28 12:00:43 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:00:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:00:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:00:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087a280 5563 [] false false map[] 0xc00051f300 0xc000f52000} -2022/02/28 12:00:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:00:44 [DEBUG] Exit from do method -2022/02/28 12:00:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:00:44 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:44 [DEBUG] New state was assigned lineage "ad216783-799e-a10c-6638-adf7f7a98166" -2022/02/28 12:00:44 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:00:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:00:44 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:44 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:00:44 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:00:44 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:00:44 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:00:44 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:00:44 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:00:44 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:44 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_6s9d2" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_6s9d2" - schema_id: "" => "" - template_name: "" => "acctest_llkjk" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_6s9d2" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_llkjk" - template_name: "" => "acctest_llkjk" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_6s9d2" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_6s9d2" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_llkjk" - vrf_name: "" => "acctest_6s9d2" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_6s9d2" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_6s9d2" - schema_id: "" => "" - template_name: "" => "acctest_llkjk" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_6s9d2" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_6s9d2" - schema_id: "" => "" - template: "" => "acctest_llkjk" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:00:44 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:00:44 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:00:44 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:00:44 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:00:44 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:00:44 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:00:44 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:00:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:00:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:00:44 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:00:44 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:00:44 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:00:44 [DEBUG] Schema: Beginning Creation -2022/02/28 12:00:44 [DEBUG] : Beginning Create -2022/02/28 12:00:44 HTTP request POST mso/api/v1/schemas -2022/02/28 12:00:44 [DEBUG] Begin Injection -2022/02/28 12:00:44 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:00:44 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:00:44 [DEBUG] Begin Injection -2022/02/28 12:00:44 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:00:44 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMDQzLCJpYXQiOjE2NDYwMjk4NDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoienl5MTY3UHN6MGYzRGlzOEx3bGhxQVdxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tY4zHaENrsfRzp-Qf75uivO-5rdZRFaOLDKtrMbthg0idSEyjZPRFObIGCihoCQgr0vWBdEbEgyP2IuS7Lmo1zHb_5UjWoFdYwBL2qJv6YpiZOU5O9BDAcfulFVjxoe-puFny60TbrpRdwbKa3JiqANCnSWVTaBZPoPIQxt6mCT7fTg-JPRBqe-WXIIiubKnmqvG-zevWd1URYfrhQl9RnW2-xoV9J1N9lkFAFcFwmYkbGVPdmO1K4Q8yu4mStot_t2wvpD5nOMPvy7nm1aYnfsld547e6ovddTgtzhjPerU6JYxaPz5-EpkIM1_nOzWxgoYcM5hw9on8NtkgPt_zQ] Content-Type:[application/json]] {{"displayName":"acctest_llkjk","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_llkjk","externalEpgs":[],"filters":[],"name":"acctest_llkjk","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xbf7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 12:00:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:00:44 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMDQzLCJpYXQiOjE2NDYwMjk4NDMsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoienl5MTY3UHN6MGYzRGlzOEx3bGhxQVdxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.tY4zHaENrsfRzp-Qf75uivO-5rdZRFaOLDKtrMbthg0idSEyjZPRFObIGCihoCQgr0vWBdEbEgyP2IuS7Lmo1zHb_5UjWoFdYwBL2qJv6YpiZOU5O9BDAcfulFVjxoe-puFny60TbrpRdwbKa3JiqANCnSWVTaBZPoPIQxt6mCT7fTg-JPRBqe-WXIIiubKnmqvG-zevWd1URYfrhQl9RnW2-xoV9J1N9lkFAFcFwmYkbGVPdmO1K4Q8yu4mStot_t2wvpD5nOMPvy7nm1aYnfsld547e6ovddTgtzhjPerU6JYxaPz5-EpkIM1_nOzWxgoYcM5hw9on8NtkgPt_zQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_6s9d2","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xbf7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 12:00:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:00:44 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:00:44 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6c141d0000fe634fba25] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8aac0 400 [] false false map[] 0xc001002800 0xc000f52000} -2022/02/28 12:00:44 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:00:44 [DEBUG] Exit from do method -2022/02/28 12:00:44 [DEBUG] 621c6c141d0000fe634fba25: Schema Creation finished successfully -2022/02/28 12:00:44 [DEBUG] 621c6c141d0000fe634fba25: Beginning Read -2022/02/28 12:00:44 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:44 [DEBUG] Begin Injection -2022/02/28 12:00:44 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:45 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:00:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00100da00 160 [] false false map[] 0xc00051e900 0xc000f52000} -2022/02/28 12:00:45 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6c141b0000c60afd0c38","name":"acctest_6s9d2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:00:45 [DEBUG] Exit from do method -2022/02/28 12:00:45 [DEBUG] 621c6c141b0000c60afd0c38: Creation finished successfully -2022/02/28 12:00:45 [DEBUG] 621c6c141b0000c60afd0c38: Beginning Read -2022/02/28 12:00:45 id: 621c6c141b0000c60afd0c38 -2022/02/28 12:00:45 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 -2022/02/28 12:00:45 [DEBUG] Begin Injection -2022/02/28 12:00:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 -2022/02/28 12:00:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 -2022/02/28 12:00:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f6a100 400 [] false false map[] 0xc000bee500 0xc000f52000} -2022/02/28 12:00:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:00:45 [DEBUG] Exit from do method -2022/02/28 12:00:45 [DEBUG] 621c6c141d0000fe634fba25: Read finished successfully -2022/02/28 12:00:45 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:00:45 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:00:45 HTTP request PATCH mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:45 [DEBUG] Begin Injection -2022/02/28 12:00:45 HTTP request after injection PATCH mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 -2022/02/28 12:00:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8a5c0 160 [] false false map[] 0xc000bee700 0xc00058c580} -2022/02/28 12:00:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 {"id":"621c6c141b0000c60afd0c38","name":"acctest_6s9d2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:00:45 [DEBUG] Exit from do method -2022/02/28 12:00:45 [DEBUG] 621c6c141b0000c60afd0c38: Read finished successfully -2022/02/28 12:00:45 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:30:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000710d00 0xc000f52000} -2022/02/28 12:00:45 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:45 [DEBUG] acctest_6s9d2: Creation finished successfully -2022/02/28 12:00:45 [DEBUG] acctest_6s9d2: Beginning Read -2022/02/28 12:00:45 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:45 [DEBUG] Begin Injection -2022/02/28 12:00:45 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087a280 768 [] false false map[] 0xc001002000 0xc00058c0b0} -2022/02/28 12:00:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 12:00:46 [DEBUG] Exit from do method -2022/02/28 12:00:46 currentvrfname acctest_6s9d2 -2022/02/28 12:00:46 found correct vrfname -2022/02/28 12:00:46 [DEBUG] acctest_6s9d2: Read finished successfully -2022/02/28 12:00:46 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:00:46 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:00:46 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:00:46 HTTP request PATCH mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:46 [DEBUG] Begin Injection -2022/02/28 12:00:46 HTTP request after injection PATCH mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:46 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:30:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000beef00 0xc00058c160} -2022/02/28 12:00:46 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:46 [DEBUG] : Beginning Read -2022/02/28 12:00:46 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:46 [DEBUG] Begin Injection -2022/02/28 12:00:46 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c940 1277 [] false false map[] 0xc001002100 0xc00058c160} -2022/02/28 12:00:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:00:46 [DEBUG] Exit from do method -2022/02/28 12:00:46 [DEBUG] acctest_6s9d2: Read finished successfully -2022/02/28 12:00:46 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:00:46 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:00:46 HTTP request PATCH mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:46 [DEBUG] Begin Injection -2022/02/28 12:00:46 HTTP request after injection PATCH mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:47 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:30:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001002b00 0xc00058c160} -2022/02/28 12:00:47 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25?validate=false -2022/02/28 12:00:47 [DEBUG] Creation Complete -2022/02/28 12:00:47 [DEBUG] : Beginning Read -2022/02/28 12:00:47 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:47 [DEBUG] Begin Injection -2022/02/28 12:00:47 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087a740 1362 [] false false map[] 0xc001002d00 0xc00058c160} -2022/02/28 12:00:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:47 [DEBUG] Exit from do method -2022/02/28 12:00:47 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Read finished successfully -2022/02/28 12:00:47 [DEBUG] : Beginning Read -2022/02/28 12:00:47 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:47 [DEBUG] Begin Injection -2022/02/28 12:00:47 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00066e180 1362 [] false false map[] 0xc00051e600 0xc00058c160} -2022/02/28 12:00:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:47 [DEBUG] Exit from do method -2022/02/28 12:00:47 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Read finished successfully -2022/02/28 12:00:47 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:47 [DEBUG] New state was assigned lineage "e68d5354-4ba9-a1b2-d26f-1b6032920283" -2022/02/28 12:00:47 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:47 [DEBUG] Begin Injection -2022/02/28 12:00:47 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8bac0 1362 [] false false map[] 0xc001002000 0xc00058c160} -2022/02/28 12:00:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:48 [DEBUG] Exit from do method -2022/02/28 12:00:48 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:00:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:48 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:00:48 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:48 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:00:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:48 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:48 [DEBUG] : Beginning Read -2022/02/28 12:00:48 HTTP request GET mso/api/v1/tenants -2022/02/28 12:00:48 [DEBUG] Begin Injection -2022/02/28 12:00:48 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:00:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:00:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:00:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f6b8c0 5563 [] false false map[] 0xc00051e800 0xc00058c160} -2022/02/28 12:00:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:00:48 [DEBUG] Exit from do method -2022/02/28 12:00:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:00:48 [DEBUG] 621c6c141b0000c60afd0c38: Beginning Read -2022/02/28 12:00:48 id: 621c6c141b0000c60afd0c38 -2022/02/28 12:00:48 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 -2022/02/28 12:00:48 [DEBUG] Begin Injection -2022/02/28 12:00:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 -2022/02/28 12:00:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 -2022/02/28 12:00:48 [DEBUG] 621c6c141d0000fe634fba25: Beginning Read -2022/02/28 12:00:48 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:48 [DEBUG] Begin Injection -2022/02/28 12:00:48 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00100c040 1362 [] false false map[] 0xc000710100 0xc00058c580} -2022/02/28 12:00:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:48 [DEBUG] Exit from do method -2022/02/28 12:00:48 [DEBUG] 621c6c141d0000fe634fba25: Read finished successfully -2022/02/28 12:00:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:00:48 [DEBUG] acctest_6s9d2: Beginning Read -2022/02/28 12:00:48 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:48 [DEBUG] Begin Injection -2022/02/28 12:00:48 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 -2022/02/28 12:00:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8a140 160 [] false false map[] 0xc00051f300 0xc00058c160} -2022/02/28 12:00:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 {"id":"621c6c141b0000c60afd0c38","name":"acctest_6s9d2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:00:48 [DEBUG] Exit from do method -2022/02/28 12:00:48 [DEBUG] 621c6c141b0000c60afd0c38: Read finished successfully -2022/02/28 12:00:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8a600 1362 [] false false map[] 0xc000bc6b00 0xc00058c580} -2022/02/28 12:00:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:49 [DEBUG] Exit from do method -2022/02/28 12:00:49 currentvrfname acctest_6s9d2 -2022/02/28 12:00:49 found correct vrfname -2022/02/28 12:00:49 [DEBUG] acctest_6s9d2: Read finished successfully -2022/02/28 12:00:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:00:49 [DEBUG] acctest_6s9d2: Beginning Read -2022/02/28 12:00:49 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:49 [DEBUG] Begin Injection -2022/02/28 12:00:49 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8aa80 1362 [] false false map[] 0xc00051f700 0xc00058c580} -2022/02/28 12:00:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:49 [DEBUG] Exit from do method -2022/02/28 12:00:49 [DEBUG] acctest_6s9d2: Read finished successfully -2022/02/28 12:00:49 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:00:49 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Beginning Read -2022/02/28 12:00:49 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:49 [DEBUG] Begin Injection -2022/02/28 12:00:49 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000602f40 1362 [] false false map[] 0xc0006ae500 0xc00058c580} -2022/02/28 12:00:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:49 [DEBUG] Exit from do method -2022/02/28 12:00:49 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Read finished successfully -2022/02/28 12:00:49 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:00:49 [DEBUG] : Beginning Read -2022/02/28 12:00:49 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:49 [DEBUG] Begin Injection -2022/02/28 12:00:49 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00066eac0 1362 [] false false map[] 0xc0007ac300 0xc00058c580} -2022/02/28 12:00:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:50 [DEBUG] Exit from do method -2022/02/28 12:00:50 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Read finished successfully -2022/02/28 12:00:50 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:50 [DEBUG] New state was assigned lineage "15dd13bc-0c51-7574-0bc2-2b3ae7ca0ab3" -2022/02/28 12:00:50 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:00:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:50 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:00:50 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:50 [DEBUG] Test: Executing step 5 -2022/02/28 12:00:50 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:50 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:00:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:50 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:00:50 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:50 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:00:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:50 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:50 [DEBUG] : Beginning Read -2022/02/28 12:00:50 HTTP request GET mso/api/v1/tenants -2022/02/28 12:00:50 [DEBUG] Begin Injection -2022/02/28 12:00:50 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:00:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:00:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:00:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000518400 5563 [] false false map[] 0xc00051e600 0xc00058c580} -2022/02/28 12:00:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:00:50 [DEBUG] Exit from do method -2022/02/28 12:00:50 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:00:50 [DEBUG] 621c6c141d0000fe634fba25: Beginning Read -2022/02/28 12:00:50 [DEBUG] 621c6c141b0000c60afd0c38: Beginning Read -2022/02/28 12:00:50 id: 621c6c141b0000c60afd0c38 -2022/02/28 12:00:50 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:50 [DEBUG] Begin Injection -2022/02/28 12:00:50 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 -2022/02/28 12:00:50 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:50 [DEBUG] Begin Injection -2022/02/28 12:00:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 -2022/02/28 12:00:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 -2022/02/28 12:00:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 -2022/02/28 12:00:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000518c80 160 [] false false map[] 0xc000f70300 0xc00058c160} -2022/02/28 12:00:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c141b0000c60afd0c38 {"id":"621c6c141b0000c60afd0c38","name":"acctest_6s9d2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:00:50 [DEBUG] Exit from do method -2022/02/28 12:00:50 [DEBUG] 621c6c141b0000c60afd0c38: Read finished successfully -2022/02/28 12:00:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000519080 1362 [] false false map[] 0xc00070e700 0xc00058c580} -2022/02/28 12:00:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:50 [DEBUG] Exit from do method -2022/02/28 12:00:50 [DEBUG] 621c6c141d0000fe634fba25: Read finished successfully -2022/02/28 12:00:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:00:50 [DEBUG] acctest_6s9d2: Beginning Read -2022/02/28 12:00:50 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:50 [DEBUG] Begin Injection -2022/02/28 12:00:50 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00066e5c0 1362 [] false false map[] 0xc000f70700 0xc00058c580} -2022/02/28 12:00:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:51 [DEBUG] Exit from do method -2022/02/28 12:00:51 currentvrfname acctest_6s9d2 -2022/02/28 12:00:51 found correct vrfname -2022/02/28 12:00:51 [DEBUG] acctest_6s9d2: Read finished successfully -2022/02/28 12:00:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:00:51 [DEBUG] acctest_6s9d2: Beginning Read -2022/02/28 12:00:51 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:51 [DEBUG] Begin Injection -2022/02/28 12:00:51 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000519f00 1362 [] false false map[] 0xc000cb8300 0xc00058c580} -2022/02/28 12:00:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:51 [DEBUG] Exit from do method -2022/02/28 12:00:51 [DEBUG] acctest_6s9d2: Read finished successfully -2022/02/28 12:00:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:00:51 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Beginning Read -2022/02/28 12:00:51 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:51 [DEBUG] Begin Injection -2022/02/28 12:00:51 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c880 1362 [] false false map[] 0xc000c7e100 0xc00058c580} -2022/02/28 12:00:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:51 [DEBUG] Exit from do method -2022/02/28 12:00:51 [DEBUG] /schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2/dhcpLabels/acctest_6s9d2: Read finished successfully -2022/02/28 12:00:51 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:00:51 [DEBUG] : Beginning Read -2022/02/28 12:00:51 HTTP request GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:51 [DEBUG] Begin Injection -2022/02/28 12:00:51 HTTP request after injection GET mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:52 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 -2022/02/28 12:00:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:30:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c8a180 1362 [] false false map[] 0xc00051e300 0xc00058c580} -2022/02/28 12:00:52 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c141d0000fe634fba25 {"id":"621c6c141d0000fe634fba25","displayName":"acctest_llkjk","description":"","templates":[{"name":"acctest_llkjk","displayName":"acctest_llkjk","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_6s9d2","displayName":"acctest_6s9d2","bdRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/bds/acctest_6s9d2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c141d0000fe634fba25/templates/acctest_llkjk/vrfs/acctest_6s9d2","dhcpLabel":{"name":"acctest_6s9d2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_6s9d2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:00:52 [DEBUG] Exit from do method -2022/02/28 12:00:52 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 12:00:52 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 12:00:52 [DEBUG] New state was assigned lineage "383bb954-275c-f51c-f818-3fade6a97f20" -2022/02/28 12:00:52 [DEBUG] Test: Executing step 6 -2022/02/28 12:00:52 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:52 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:00:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:52 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:00:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "ulsvv" is not expected here. -2022/02/28 12:00:52 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "ulsvv" is not expected here. -2022/02/28 12:00:52 [DEBUG] Test: Executing step 7 -2022/02/28 12:00:52 [DEBUG] provider has no plugin.Client -2022/02/28 12:00:52 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:00:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:00:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:00:52 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:00:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported attribute: This object has no argument, nested block, or exported attribute named "bd_name". -2022/02/28 12:00:52 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported attribute: This object has no argument, nested block, or exported attribute named "bd_name". -2022/02/28 12:00:52 [WARN] Skipping destroy test since there is no state. -2022/02/28 12:02:17 [DEBUG] Test: Executing step 0 -2022/02/28 12:02:17 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:17 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:02:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:02:17 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:02:17 [DEBUG] Test: Executing step 1 -2022/02/28 12:02:17 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:17 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:02:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:17 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:02:17 [DEBUG] Test: Executing step 2 -2022/02/28 12:02:17 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:17 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:02:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:17 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:02:17 [DEBUG] Test: Executing step 3 -2022/02/28 12:02:17 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:17 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:02:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:02:17 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:02:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:02:17 [DEBUG] Test: Executing step 4 -2022/02/28 12:02:17 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:17 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:02:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:02:17 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:02:18 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:18 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:02:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:02:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:02:18 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:02:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:02:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:18 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:02:18 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:02:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:02:18 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:02:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:18 [DEBUG] : Beginning Read -2022/02/28 12:02:18 HTTP request GET mso/api/v1/tenants -2022/02/28 12:02:18 [DEBUG] Begin Injection -2022/02/28 12:02:18 HTTP request POST /login -2022/02/28 12:02:18 HTTP request after injection POST /login -2022/02/28 12:02:18 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 12:02:19 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 12:02:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:19 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMTM5LCJpYXQiOjE2NDYwMjk5MzksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRUx2T0JTWTRmRHdac3VWS1doc2x1UnlUIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.KcJ_awqrPbMmbvfy5WUpszpuQYJNjqJPQdaVeRAmdsJJnl4kky-Dp5gOolGpFNNHXGiQUCgLRZGYzjwPNyvHjkS-alSD-O6fJdWVpP29h3-NBrA7xfe9HNRC1FxbUtuMvShqhPazO9K6brPLZ6Ph_TKLJVl973AFfdFjKcSrf0Quc-p8Y9iJ_tPPxbNQZMCG82vXhLDTKbqoyLQAmxV4x8Q2arZuLBxSxwS0kWt06CiL_gT41PZH_6JP8r5EcGN4cv8Z7FcQixhddauG70omdpLu5SvaecibIt59IpDFHEeOU4VfI-1dfEEF_LWkwzZEIWHH9cA8RAIu4iGUm3GAZQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000e132c0 -1 [chunked] false false map[] 0xc000b90600 0xc00041f4a0} -2022/02/28 12:02:19 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMTM5LCJpYXQiOjE2NDYwMjk5MzksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRUx2T0JTWTRmRHdac3VWS1doc2x1UnlUIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.KcJ_awqrPbMmbvfy5WUpszpuQYJNjqJPQdaVeRAmdsJJnl4kky-Dp5gOolGpFNNHXGiQUCgLRZGYzjwPNyvHjkS-alSD-O6fJdWVpP29h3-NBrA7xfe9HNRC1FxbUtuMvShqhPazO9K6brPLZ6Ph_TKLJVl973AFfdFjKcSrf0Quc-p8Y9iJ_tPPxbNQZMCG82vXhLDTKbqoyLQAmxV4x8Q2arZuLBxSxwS0kWt06CiL_gT41PZH_6JP8r5EcGN4cv8Z7FcQixhddauG70omdpLu5SvaecibIt59IpDFHEeOU4VfI-1dfEEF_LWkwzZEIWHH9cA8RAIu4iGUm3GAZQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMTM5LCJpYXQiOjE2NDYwMjk5MzksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRUx2T0JTWTRmRHdac3VWS1doc2x1UnlUIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.KcJ_awqrPbMmbvfy5WUpszpuQYJNjqJPQdaVeRAmdsJJnl4kky-Dp5gOolGpFNNHXGiQUCgLRZGYzjwPNyvHjkS-alSD-O6fJdWVpP29h3-NBrA7xfe9HNRC1FxbUtuMvShqhPazO9K6brPLZ6Ph_TKLJVl973AFfdFjKcSrf0Quc-p8Y9iJ_tPPxbNQZMCG82vXhLDTKbqoyLQAmxV4x8Q2arZuLBxSxwS0kWt06CiL_gT41PZH_6JP8r5EcGN4cv8Z7FcQixhddauG70omdpLu5SvaecibIt59IpDFHEeOU4VfI-1dfEEF_LWkwzZEIWHH9cA8RAIu4iGUm3GAZQ"} -2022/02/28 12:02:19 [DEBUG] Exit from do method -2022/02/28 12:02:19 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:02:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:02:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:02:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006ea540 5563 [] false false map[] 0xc000b90500 0xc00041f4a0} -2022/02/28 12:02:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:02:19 [DEBUG] Exit from do method -2022/02/28 12:02:19 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:02:19 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:19 [DEBUG] New state was assigned lineage "ce537184-1b74-f53e-fa56-8e295d4fc3c8" -2022/02/28 12:02:19 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:02:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:19 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:19 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:02:19 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:02:19 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:02:19 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:02:19 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:02:19 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:02:19 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:19 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_djzl2" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_djzl2" - schema_id: "" => "" - template_name: "" => "acctest_yi4wl" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_djzl2" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_yi4wl" - template_name: "" => "acctest_yi4wl" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_djzl2" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_djzl2" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_yi4wl" - vrf_name: "" => "acctest_djzl2" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_djzl2" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_djzl2" - schema_id: "" => "" - template_name: "" => "acctest_yi4wl" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_djzl2" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_djzl2" - schema_id: "" => "" - template: "" => "acctest_yi4wl" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:02:19 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:02:19 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:02:19 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:02:19 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:02:19 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:02:19 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:02:19 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:02:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:02:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:19 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:02:19 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:02:19 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:02:19 [DEBUG] Schema: Beginning Creation -2022/02/28 12:02:19 [DEBUG] : Beginning Create -2022/02/28 12:02:19 HTTP request POST mso/api/v1/schemas -2022/02/28 12:02:19 [DEBUG] Begin Injection -2022/02/28 12:02:19 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:02:19 [DEBUG] Begin Injection -2022/02/28 12:02:19 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:02:19 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:02:19 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMTM5LCJpYXQiOjE2NDYwMjk5MzksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRUx2T0JTWTRmRHdac3VWS1doc2x1UnlUIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.KcJ_awqrPbMmbvfy5WUpszpuQYJNjqJPQdaVeRAmdsJJnl4kky-Dp5gOolGpFNNHXGiQUCgLRZGYzjwPNyvHjkS-alSD-O6fJdWVpP29h3-NBrA7xfe9HNRC1FxbUtuMvShqhPazO9K6brPLZ6Ph_TKLJVl973AFfdFjKcSrf0Quc-p8Y9iJ_tPPxbNQZMCG82vXhLDTKbqoyLQAmxV4x8Q2arZuLBxSxwS0kWt06CiL_gT41PZH_6JP8r5EcGN4cv8Z7FcQixhddauG70omdpLu5SvaecibIt59IpDFHEeOU4VfI-1dfEEF_LWkwzZEIWHH9cA8RAIu4iGUm3GAZQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_djzl2","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xb37ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} -2022/02/28 12:02:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:02:19 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMTM5LCJpYXQiOjE2NDYwMjk5MzksImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRUx2T0JTWTRmRHdac3VWS1doc2x1UnlUIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.KcJ_awqrPbMmbvfy5WUpszpuQYJNjqJPQdaVeRAmdsJJnl4kky-Dp5gOolGpFNNHXGiQUCgLRZGYzjwPNyvHjkS-alSD-O6fJdWVpP29h3-NBrA7xfe9HNRC1FxbUtuMvShqhPazO9K6brPLZ6Ph_TKLJVl973AFfdFjKcSrf0Quc-p8Y9iJ_tPPxbNQZMCG82vXhLDTKbqoyLQAmxV4x8Q2arZuLBxSxwS0kWt06CiL_gT41PZH_6JP8r5EcGN4cv8Z7FcQixhddauG70omdpLu5SvaecibIt59IpDFHEeOU4VfI-1dfEEF_LWkwzZEIWHH9cA8RAIu4iGUm3GAZQ] Content-Type:[application/json]] {{"displayName":"acctest_yi4wl","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_yi4wl","externalEpgs":[],"filters":[],"name":"acctest_yi4wl","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xb37ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} -2022/02/28 12:02:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:02:20 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:02:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e12c40 160 [] false false map[] 0xc000e4cd00 0xc00041f4a0} -2022/02/28 12:02:20 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6c741b0000ac0afd0c39","name":"acctest_djzl2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:02:20 [DEBUG] Exit from do method -2022/02/28 12:02:20 [DEBUG] 621c6c741b0000ac0afd0c39: Creation finished successfully -2022/02/28 12:02:20 [DEBUG] 621c6c741b0000ac0afd0c39: Beginning Read -2022/02/28 12:02:20 id: 621c6c741b0000ac0afd0c39 -2022/02/28 12:02:20 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 -2022/02/28 12:02:20 [DEBUG] Begin Injection -2022/02/28 12:02:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 -2022/02/28 12:02:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 -2022/02/28 12:02:20 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:02:20 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6c741d0000f0634fba2a] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e12ec0 400 [] false false map[] 0xc000c0e800 0xc00041f4a0} -2022/02/28 12:02:20 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:02:20 [DEBUG] Exit from do method -2022/02/28 12:02:20 [DEBUG] 621c6c741d0000f0634fba2a: Schema Creation finished successfully -2022/02/28 12:02:20 [DEBUG] 621c6c741d0000f0634fba2a: Beginning Read -2022/02/28 12:02:20 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:20 [DEBUG] Begin Injection -2022/02/28 12:02:20 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 -2022/02/28 12:02:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000aa040 160 [] false false map[] 0xc000c0eb00 0xc00041fce0} -2022/02/28 12:02:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 {"id":"621c6c741b0000ac0afd0c39","name":"acctest_djzl2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:02:21 [DEBUG] Exit from do method -2022/02/28 12:02:21 [DEBUG] 621c6c741b0000ac0afd0c39: Read finished successfully -2022/02/28 12:02:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000aa480 400 [] false false map[] 0xc000540000 0xc00041f4a0} -2022/02/28 12:02:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:02:21 [DEBUG] Exit from do method -2022/02/28 12:02:21 [DEBUG] 621c6c741d0000f0634fba2a: Read finished successfully -2022/02/28 12:02:21 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:02:21 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:02:21 HTTP request PATCH mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:21 [DEBUG] Begin Injection -2022/02/28 12:02:21 HTTP request after injection PATCH mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:21 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:32:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c0e400 0xc00041f4a0} -2022/02/28 12:02:21 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:21 [DEBUG] acctest_djzl2: Creation finished successfully -2022/02/28 12:02:21 [DEBUG] acctest_djzl2: Beginning Read -2022/02/28 12:02:21 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:21 [DEBUG] Begin Injection -2022/02/28 12:02:21 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000aab00 768 [] false false map[] 0xc000dac300 0xc00041fd90} -2022/02/28 12:02:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 12:02:21 [DEBUG] Exit from do method -2022/02/28 12:02:21 currentvrfname acctest_djzl2 -2022/02/28 12:02:21 found correct vrfname -2022/02/28 12:02:21 [DEBUG] acctest_djzl2: Read finished successfully -2022/02/28 12:02:21 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:02:21 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:02:21 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:02:21 HTTP request PATCH mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:21 [DEBUG] Begin Injection -2022/02/28 12:02:21 HTTP request after injection PATCH mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:22 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:32:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000dacd00 0xc00041fd90} -2022/02/28 12:02:22 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:22 [DEBUG] : Beginning Read -2022/02/28 12:02:22 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:22 [DEBUG] Begin Injection -2022/02/28 12:02:22 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00014bfc0 1277 [] false false map[] 0xc000b90000 0xc00041fd90} -2022/02/28 12:02:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:02:22 [DEBUG] Exit from do method -2022/02/28 12:02:22 [DEBUG] acctest_djzl2: Read finished successfully -2022/02/28 12:02:22 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:02:22 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:02:22 HTTP request PATCH mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:22 [DEBUG] Begin Injection -2022/02/28 12:02:22 HTTP request after injection PATCH mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:22 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:32:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000dad300 0xc00041fd90} -2022/02/28 12:02:22 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a?validate=false -2022/02/28 12:02:22 [DEBUG] Creation Complete -2022/02/28 12:02:22 [DEBUG] : Beginning Read -2022/02/28 12:02:22 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:22 [DEBUG] Begin Injection -2022/02/28 12:02:22 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000856d80 1362 [] false false map[] 0xc000dad500 0xc00041fd90} -2022/02/28 12:02:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:23 [DEBUG] Exit from do method -2022/02/28 12:02:23 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Read finished successfully -2022/02/28 12:02:23 [DEBUG] : Beginning Read -2022/02/28 12:02:23 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:23 [DEBUG] Begin Injection -2022/02/28 12:02:23 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000857300 1362 [] false false map[] 0xc0001b9100 0xc00041fd90} -2022/02/28 12:02:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:23 [DEBUG] Exit from do method -2022/02/28 12:02:23 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Read finished successfully -2022/02/28 12:02:23 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:23 [DEBUG] New state was assigned lineage "f6f33156-d202-108e-7bc1-5d12d8a1f0a3" -2022/02/28 12:02:23 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:23 [DEBUG] Begin Injection -2022/02/28 12:02:23 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000502080 1362 [] false false map[] 0xc000c0e800 0xc00041fd90} -2022/02/28 12:02:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:23 [DEBUG] Exit from do method -2022/02/28 12:02:23 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:02:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:23 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:02:23 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:23 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:02:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:23 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:02:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:23 [DEBUG] : Beginning Read -2022/02/28 12:02:23 HTTP request GET mso/api/v1/tenants -2022/02/28 12:02:23 [DEBUG] Begin Injection -2022/02/28 12:02:23 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:02:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:02:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:02:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c0c0 5563 [] false false map[] 0xc000c0ee00 0xc00041fd90} -2022/02/28 12:02:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:02:24 [DEBUG] Exit from do method -2022/02/28 12:02:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:02:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:02:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:02:24 [DEBUG] 621c6c741d0000f0634fba2a: Beginning Read -2022/02/28 12:02:24 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 [DEBUG] Begin Injection -2022/02/28 12:02:24 [DEBUG] 621c6c741b0000ac0afd0c39: Beginning Read -2022/02/28 12:02:24 id: 621c6c741b0000ac0afd0c39 -2022/02/28 12:02:24 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 -2022/02/28 12:02:24 [DEBUG] Begin Injection -2022/02/28 12:02:24 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 -2022/02/28 12:02:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 -2022/02/28 12:02:24 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000222c00 1362 [] false false map[] 0xc000c0f200 0xc00041fce0} -2022/02/28 12:02:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:24 [DEBUG] Exit from do method -2022/02/28 12:02:24 [DEBUG] 621c6c741d0000f0634fba2a: Read finished successfully -2022/02/28 12:02:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:02:24 [DEBUG] acctest_djzl2: Beginning Read -2022/02/28 12:02:24 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 [DEBUG] Begin Injection -2022/02/28 12:02:24 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 -2022/02/28 12:02:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006ea280 160 [] false false map[] 0xc000e4ce00 0xc00041fd90} -2022/02/28 12:02:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 {"id":"621c6c741b0000ac0afd0c39","name":"acctest_djzl2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:02:24 [DEBUG] Exit from do method -2022/02/28 12:02:24 [DEBUG] 621c6c741b0000ac0afd0c39: Read finished successfully -2022/02/28 12:02:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000223fc0 1362 [] false false map[] 0xc000e4d300 0xc00041fce0} -2022/02/28 12:02:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:24 [DEBUG] Exit from do method -2022/02/28 12:02:24 currentvrfname acctest_djzl2 -2022/02/28 12:02:24 found correct vrfname -2022/02/28 12:02:24 [DEBUG] acctest_djzl2: Read finished successfully -2022/02/28 12:02:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:02:24 [DEBUG] acctest_djzl2: Beginning Read -2022/02/28 12:02:24 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 [DEBUG] Begin Injection -2022/02/28 12:02:24 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000503a00 1362 [] false false map[] 0xc000e4d800 0xc00041fce0} -2022/02/28 12:02:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:24 [DEBUG] Exit from do method -2022/02/28 12:02:24 [DEBUG] acctest_djzl2: Read finished successfully -2022/02/28 12:02:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:02:24 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Beginning Read -2022/02/28 12:02:24 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 [DEBUG] Begin Injection -2022/02/28 12:02:24 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000aaf00 1362 [] false false map[] 0xc000e4dd00 0xc00041fce0} -2022/02/28 12:02:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:25 [DEBUG] Exit from do method -2022/02/28 12:02:25 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Read finished successfully -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:02:25 [DEBUG] : Beginning Read -2022/02/28 12:02:25 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:25 [DEBUG] Begin Injection -2022/02/28 12:02:25 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000219700 1362 [] false false map[] 0xc000858000 0xc00041fce0} -2022/02/28 12:02:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:25 [DEBUG] Exit from do method -2022/02/28 12:02:25 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Read finished successfully -2022/02/28 12:02:25 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:25 [DEBUG] New state was assigned lineage "74494063-61fd-3a86-caec-7fce90771c47" -2022/02/28 12:02:25 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:02:25 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:02:25 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:25 [DEBUG] Test: Executing step 5 -2022/02/28 12:02:25 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:25 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:25 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:02:25 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:25 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:02:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:25 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:25 [DEBUG] : Beginning Read -2022/02/28 12:02:25 HTTP request GET mso/api/v1/tenants -2022/02/28 12:02:25 [DEBUG] Begin Injection -2022/02/28 12:02:25 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:02:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:02:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:02:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000646a40 5563 [] false false map[] 0xc0001b8200 0xc00041fce0} -2022/02/28 12:02:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:02:25 [DEBUG] Exit from do method -2022/02/28 12:02:25 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:02:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:02:25 [DEBUG] 621c6c741d0000f0634fba2a: Beginning Read -2022/02/28 12:02:25 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:25 [DEBUG] Begin Injection -2022/02/28 12:02:25 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:25 [DEBUG] 621c6c741b0000ac0afd0c39: Beginning Read -2022/02/28 12:02:25 id: 621c6c741b0000ac0afd0c39 -2022/02/28 12:02:25 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 -2022/02/28 12:02:25 [DEBUG] Begin Injection -2022/02/28 12:02:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 -2022/02/28 12:02:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 -2022/02/28 12:02:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b2500 1362 [] false false map[] 0xc000e4c800 0xc00041fce0} -2022/02/28 12:02:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:26 [DEBUG] Exit from do method -2022/02/28 12:02:26 [DEBUG] 621c6c741d0000f0634fba2a: Read finished successfully -2022/02/28 12:02:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:02:26 [DEBUG] acctest_djzl2: Beginning Read -2022/02/28 12:02:26 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:26 [DEBUG] Begin Injection -2022/02/28 12:02:26 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 -2022/02/28 12:02:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b39c0 160 [] false false map[] 0xc0001b8500 0xc00041fd90} -2022/02/28 12:02:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6c741b0000ac0afd0c39 {"id":"621c6c741b0000ac0afd0c39","name":"acctest_djzl2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:02:26 [DEBUG] Exit from do method -2022/02/28 12:02:26 [DEBUG] 621c6c741b0000ac0afd0c39: Read finished successfully -2022/02/28 12:02:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a0b4c0 1362 [] false false map[] 0xc000dae500 0xc00041fce0} -2022/02/28 12:02:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:26 [DEBUG] Exit from do method -2022/02/28 12:02:26 currentvrfname acctest_djzl2 -2022/02/28 12:02:26 found correct vrfname -2022/02/28 12:02:26 [DEBUG] acctest_djzl2: Read finished successfully -2022/02/28 12:02:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:02:26 [DEBUG] acctest_djzl2: Beginning Read -2022/02/28 12:02:26 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:26 [DEBUG] Begin Injection -2022/02/28 12:02:26 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a0a040 1362 [] false false map[] 0xc0011f8500 0xc00041fce0} -2022/02/28 12:02:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:26 [DEBUG] Exit from do method -2022/02/28 12:02:26 [DEBUG] acctest_djzl2: Read finished successfully -2022/02/28 12:02:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:02:26 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Beginning Read -2022/02/28 12:02:26 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:26 [DEBUG] Begin Injection -2022/02/28 12:02:26 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b29c0 1362 [] false false map[] 0xc0001b8400 0xc00041fce0} -2022/02/28 12:02:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:27 [DEBUG] Exit from do method -2022/02/28 12:02:27 [DEBUG] /schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2/dhcpLabels/acctest_djzl2: Read finished successfully -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:02:27 [DEBUG] : Beginning Read -2022/02/28 12:02:27 HTTP request GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:27 [DEBUG] Begin Injection -2022/02/28 12:02:27 HTTP request after injection GET mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a -2022/02/28 12:02:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:32:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9e200 1362 [] false false map[] 0xc0001b9000 0xc00041fce0} -2022/02/28 12:02:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6c741d0000f0634fba2a {"id":"621c6c741d0000f0634fba2a","displayName":"acctest_yi4wl","description":"","templates":[{"name":"acctest_yi4wl","displayName":"acctest_yi4wl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_djzl2","displayName":"acctest_djzl2","bdRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/bds/acctest_djzl2","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6c741d0000f0634fba2a/templates/acctest_yi4wl/vrfs/acctest_djzl2","dhcpLabel":{"name":"acctest_djzl2","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_djzl2","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:02:27 [DEBUG] Exit from do method -2022/02/28 12:02:27 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 12:02:27 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 12:02:27 [DEBUG] New state was assigned lineage "e8dbdb8c-c399-e8b2-0a4c-c293e0762d83" -2022/02/28 12:02:27 [DEBUG] Test: Executing step 6 -2022/02/28 12:02:27 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:27 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:02:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:02:27 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:02:27 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "ftnrv" is not expected here. -2022/02/28 12:02:27 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "ftnrv" is not expected here. -2022/02/28 12:02:27 [DEBUG] Test: Executing step 7 -2022/02/28 12:02:27 [DEBUG] provider has no plugin.Client -2022/02/28 12:02:27 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:02:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:02:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:02:27 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:02:27 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported attribute: This object has no argument, nested block, or exported attribute named "bd_name". -2022/02/28 12:02:27 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported attribute: This object has no argument, nested block, or exported attribute named "bd_name". -2022/02/28 12:02:27 [WARN] Skipping destroy test since there is no state. -2022/02/28 12:03:52 [DEBUG] Test: Executing step 0 -2022/02/28 12:03:52 [DEBUG] provider has no plugin.Client -2022/02/28 12:03:52 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:03:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:03:52 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:03:52 [DEBUG] Test: Executing step 1 -2022/02/28 12:03:52 [DEBUG] provider has no plugin.Client -2022/02/28 12:03:52 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:03:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:03:52 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:03:52 [DEBUG] Test: Executing step 2 -2022/02/28 12:03:52 [DEBUG] provider has no plugin.Client -2022/02/28 12:03:52 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:03:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:03:52 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:03:52 [DEBUG] Test: Executing step 3 -2022/02/28 12:03:52 [DEBUG] provider has no plugin.Client -2022/02/28 12:03:52 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:03:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:03:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:03:52 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:03:52 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:03:52 [DEBUG] Test: Executing step 4 -2022/02/28 12:03:53 [DEBUG] provider has no plugin.Client -2022/02/28 12:03:53 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:03:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:03:53 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:03:53 [DEBUG] provider has no plugin.Client -2022/02/28 12:03:53 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:03:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:03:53 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:03:53 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:03:53 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:03:53 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:03:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:53 [DEBUG] : Beginning Read -2022/02/28 12:03:53 HTTP request GET mso/api/v1/tenants -2022/02/28 12:03:53 [DEBUG] Begin Injection -2022/02/28 12:03:53 HTTP request POST /login -2022/02/28 12:03:53 HTTP request after injection POST /login -2022/02/28 12:03:53 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 12:03:54 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 12:03:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:54 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00094a080 -1 [chunked] false false map[] 0xc0000a4900 0xc000b48000} -2022/02/28 12:03:54 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ"} -2022/02/28 12:03:54 [DEBUG] Exit from do method -2022/02/28 12:03:54 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:03:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:03:54 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:03:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00094a3c0 5563 [] false false map[] 0xc0000a4800 0xc000b48000} -2022/02/28 12:03:54 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:03:54 [DEBUG] Exit from do method -2022/02/28 12:03:54 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:03:54 [DEBUG] provider has no plugin.Client -2022/02/28 12:03:54 [DEBUG] New state was assigned lineage "1994ee4b-66a6-1fa3-6580-d145f3ade344" -2022/02/28 12:03:54 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:03:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:03:54 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:54 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:03:54 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:03:54 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:03:54 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:03:54 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:03:54 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:03:54 [DEBUG] provider has no plugin.Client -2022/02/28 12:03:54 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_r7imt" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_r7imt" - schema_id: "" => "" - template_name: "" => "acctest_7003m" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_r7imt" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_7003m" - template_name: "" => "acctest_7003m" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_r7imt" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_r7imt" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_7003m" - vrf_name: "" => "acctest_r7imt" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_r7imt" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_r7imt" - schema_id: "" => "" - template_name: "" => "acctest_7003m" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_r7imt" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_r7imt" - schema_id: "" => "" - template: "" => "acctest_7003m" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:03:54 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:03:54 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:03:54 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:03:54 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:03:54 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:03:54 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:03:54 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:03:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:03:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 12:03:54 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:03:54 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:03:54 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:03:54 [DEBUG] Schema: Beginning Creation -2022/02/28 12:03:54 HTTP request POST mso/api/v1/schemas -2022/02/28 12:03:54 [DEBUG] Begin Injection -2022/02/28 12:03:54 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:03:54 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ] Content-Type:[application/json]] {{"displayName":"acctest_7003m","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_7003m","externalEpgs":[],"filters":[],"name":"acctest_7003m","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xe07ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:03:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:03:54 [DEBUG] : Beginning Create -2022/02/28 12:03:54 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:03:54 [DEBUG] Begin Injection -2022/02/28 12:03:54 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:03:54 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_r7imt","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xe07ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:03:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:03:55 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:03:55 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6cd31d000026644fba2f] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004e7340 400 [] false false map[] 0xc0007b4e00 0xc000b48000} -2022/02/28 12:03:55 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:03:55 [DEBUG] Exit from do method -2022/02/28 12:03:55 [DEBUG] 621c6cd31d000026644fba2f: Schema Creation finished successfully -2022/02/28 12:03:55 [DEBUG] 621c6cd31d000026644fba2f: Beginning Read -2022/02/28 12:03:55 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:55 [DEBUG] Begin Injection -2022/02/28 12:03:55 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:55 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:03:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004ebbc0 160 [] false false map[] 0xc0008e8300 0xc000b48000} -2022/02/28 12:03:55 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6cd31b0000f30afd0c3a","name":"acctest_r7imt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:03:55 [DEBUG] Exit from do method -2022/02/28 12:03:55 [DEBUG] 621c6cd31b0000f30afd0c3a: Creation finished successfully -2022/02/28 12:03:55 [DEBUG] 621c6cd31b0000f30afd0c3a: Beginning Read -2022/02/28 12:03:55 id: 621c6cd31b0000f30afd0c3a -2022/02/28 12:03:55 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a -2022/02/28 12:03:55 [DEBUG] Begin Injection -2022/02/28 12:03:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a -2022/02/28 12:03:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a -2022/02/28 12:03:56 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004e6380 400 [] false false map[] 0xc00042c700 0xc000a784d0} -2022/02/28 12:03:56 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:03:56 [DEBUG] Exit from do method -2022/02/28 12:03:56 [DEBUG] 621c6cd31d000026644fba2f: Read finished successfully -2022/02/28 12:03:56 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:03:56 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:03:56 HTTP request PATCH mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:56 [DEBUG] Begin Injection -2022/02/28 12:03:56 HTTP request after injection PATCH mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:56 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a -2022/02/28 12:03:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004e6980 160 [] false false map[] 0xc0000a4400 0xc000b48000} -2022/02/28 12:03:56 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a {"id":"621c6cd31b0000f30afd0c3a","name":"acctest_r7imt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:03:56 [DEBUG] Exit from do method -2022/02/28 12:03:56 [DEBUG] 621c6cd31b0000f30afd0c3a: Read finished successfully -2022/02/28 12:03:56 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:56 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:33:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a4e00 0xc000a784d0} -2022/02/28 12:03:56 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:56 [DEBUG] acctest_r7imt: Creation finished successfully -2022/02/28 12:03:56 [DEBUG] acctest_r7imt: Beginning Read -2022/02/28 12:03:56 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:56 [DEBUG] Begin Injection -2022/02/28 12:03:56 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:56 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a83e40 768 [] false false map[] 0xc0008e8300 0xc0001362c0} -2022/02/28 12:03:56 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 12:03:56 [DEBUG] Exit from do method -2022/02/28 12:03:56 currentvrfname acctest_r7imt -2022/02/28 12:03:56 found correct vrfname -2022/02/28 12:03:56 [DEBUG] acctest_r7imt: Read finished successfully -2022/02/28 12:03:56 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:03:56 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:03:56 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:03:56 HTTP request PATCH mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:56 [DEBUG] Begin Injection -2022/02/28 12:03:56 HTTP request after injection PATCH mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:57 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:33:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a5900 0xc0001362c0} -2022/02/28 12:03:57 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:57 [DEBUG] : Beginning Read -2022/02/28 12:03:57 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:57 [DEBUG] Begin Injection -2022/02/28 12:03:57 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:57 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000905c0 1277 [] false false map[] 0xc0008e8500 0xc0001362c0} -2022/02/28 12:03:57 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:03:57 [DEBUG] Exit from do method -2022/02/28 12:03:57 [DEBUG] acctest_r7imt: Read finished successfully -2022/02/28 12:03:57 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:03:57 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:03:57 HTTP request PATCH mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:57 [DEBUG] Begin Injection -2022/02/28 12:03:57 HTTP request after injection PATCH mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:57 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:33:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0008e8900 0xc0001362c0} -2022/02/28 12:03:57 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f?validate=false -2022/02/28 12:03:57 [DEBUG] Creation Complete -2022/02/28 12:03:57 [DEBUG] : Beginning Read -2022/02/28 12:03:57 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:57 [DEBUG] Begin Injection -2022/02/28 12:03:57 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:58 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c4a140 1362 [] false false map[] 0xc0008e8b00 0xc0001362c0} -2022/02/28 12:03:58 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:03:58 [DEBUG] Exit from do method -2022/02/28 12:03:58 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Read finished successfully -2022/02/28 12:03:58 [DEBUG] : Beginning Read -2022/02/28 12:03:58 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:58 [DEBUG] Begin Injection -2022/02/28 12:03:58 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:58 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00094a8c0 1362 [] false false map[] 0xc00042cb00 0xc0001362c0} -2022/02/28 12:03:58 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:03:58 [DEBUG] Exit from do method -2022/02/28 12:03:58 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Read finished successfully -2022/02/28 12:03:58 [DEBUG] provider has no plugin.Client -2022/02/28 12:03:58 [DEBUG] New state was assigned lineage "4eb57a31-0392-1801-cdc4-924be47c4054" -2022/02/28 12:03:58 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:58 [DEBUG] Begin Injection -2022/02/28 12:03:58 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:58 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004a2040 1362 [] false false map[] 0xc0000a4200 0xc0001362c0} -2022/02/28 12:03:58 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:03:58 [DEBUG] Exit from do method -2022/02/28 12:03:58 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:03:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:03:58 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:03:58 [DEBUG] provider has no plugin.Client -2022/02/28 12:03:58 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:03:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:03:58 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:03:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:03:58 [DEBUG] : Beginning Read -2022/02/28 12:03:58 HTTP request GET mso/api/v1/tenants -2022/02/28 12:03:58 [DEBUG] Begin Injection -2022/02/28 12:03:58 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:03:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:03:59 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:03:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c4a300 5563 [] false false map[] 0xc000a7c700 0xc0001362c0} -2022/02/28 12:03:59 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:03:59 [DEBUG] Exit from do method -2022/02/28 12:03:59 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:03:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:03:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:03:59 [DEBUG] 621c6cd31d000026644fba2f: Beginning Read -2022/02/28 12:03:59 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:59 [DEBUG] Begin Injection -2022/02/28 12:03:59 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:59 [DEBUG] 621c6cd31b0000f30afd0c3a: Beginning Read -2022/02/28 12:03:59 id: 621c6cd31b0000f30afd0c3a -2022/02/28 12:03:59 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a -2022/02/28 12:03:59 [DEBUG] Begin Injection -2022/02/28 12:03:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a -2022/02/28 12:03:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a -2022/02/28 12:03:59 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a -2022/02/28 12:03:59 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c4b880 160 [] false false map[] 0xc0000a4700 0xc000b48000} -2022/02/28 12:03:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00094bf00 1362 [] false false map[] 0xc0008e8b00 0xc0001362c0} -2022/02/28 12:03:59 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a {"id":"621c6cd31b0000f30afd0c3a","name":"acctest_r7imt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:03:59 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:03:59 [DEBUG] Exit from do method -2022/02/28 12:03:59 [DEBUG] Exit from do method -2022/02/28 12:03:59 [DEBUG] 621c6cd31b0000f30afd0c3a: Read finished successfully -2022/02/28 12:03:59 [DEBUG] 621c6cd31d000026644fba2f: Read finished successfully -2022/02/28 12:03:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:03:59 [DEBUG] acctest_r7imt: Beginning Read -2022/02/28 12:03:59 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:59 [DEBUG] Begin Injection -2022/02/28 12:03:59 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:59 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e0dc0 1362 [] false false map[] 0xc000a7cd00 0xc0001362c0} -2022/02/28 12:03:59 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:03:59 [DEBUG] Exit from do method -2022/02/28 12:03:59 currentvrfname acctest_r7imt -2022/02/28 12:03:59 found correct vrfname -2022/02/28 12:03:59 [DEBUG] acctest_r7imt: Read finished successfully -2022/02/28 12:03:59 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:03:59 [DEBUG] acctest_r7imt: Beginning Read -2022/02/28 12:03:59 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:59 [DEBUG] Begin Injection -2022/02/28 12:03:59 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:03:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:00 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:33:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004eab40 1362 [] false false map[] 0xc000d56700 0xc0001362c0} -2022/02/28 12:04:00 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:04:00 [DEBUG] Exit from do method -2022/02/28 12:04:00 [DEBUG] acctest_r7imt: Read finished successfully -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:00 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Beginning Read -2022/02/28 12:04:00 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:00 [DEBUG] Begin Injection -2022/02/28 12:04:00 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:00 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a83cc0 1362 [] false false map[] 0xc000a7d200 0xc0001362c0} -2022/02/28 12:04:00 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:04:00 [DEBUG] Exit from do method -2022/02/28 12:04:00 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Read finished successfully -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:00 [DEBUG] : Beginning Read -2022/02/28 12:04:00 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:00 [DEBUG] Begin Injection -2022/02/28 12:04:00 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:00 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004eac80 1362 [] false false map[] 0xc000d56c00 0xc0001362c0} -2022/02/28 12:04:00 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:04:00 [DEBUG] Exit from do method -2022/02/28 12:04:00 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Read finished successfully -2022/02/28 12:04:00 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:00 [DEBUG] New state was assigned lineage "ad54231b-0f7d-9045-8907-2d2a338f891c" -2022/02/28 12:04:00 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:04:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:04:00 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:00 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:00 [DEBUG] Test: Executing step 5 -2022/02/28 12:04:00 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:00 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:04:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:00 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:04:00 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:00 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:04:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:04:00 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:04:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:00 [DEBUG] : Beginning Read -2022/02/28 12:04:00 HTTP request GET mso/api/v1/tenants -2022/02/28 12:04:00 [DEBUG] Begin Injection -2022/02/28 12:04:00 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:04:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:04:01 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:04:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004a2740 5563 [] false false map[] 0xc0000a4f00 0xc0001362c0} -2022/02/28 12:04:01 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:04:01 [DEBUG] Exit from do method -2022/02/28 12:04:01 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:04:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:04:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:04:01 [DEBUG] 621c6cd31b0000f30afd0c3a: Beginning Read -2022/02/28 12:04:01 id: 621c6cd31b0000f30afd0c3a -2022/02/28 12:04:01 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a -2022/02/28 12:04:01 [DEBUG] Begin Injection -2022/02/28 12:04:01 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a -2022/02/28 12:04:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a -2022/02/28 12:04:01 [DEBUG] 621c6cd31d000026644fba2f: Beginning Read -2022/02/28 12:04:01 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:01 [DEBUG] Begin Injection -2022/02/28 12:04:01 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:01 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c4a080 1362 [] false false map[] 0xc0005de200 0xc000b48000} -2022/02/28 12:04:01 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:04:01 [DEBUG] Exit from do method -2022/02/28 12:04:01 [DEBUG] 621c6cd31d000026644fba2f: Read finished successfully -2022/02/28 12:04:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:04:01 [DEBUG] acctest_r7imt: Beginning Read -2022/02/28 12:04:01 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:01 [DEBUG] Begin Injection -2022/02/28 12:04:01 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:01 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090980 1362 [] false false map[] 0xc001152900 0xc000b48000} -2022/02/28 12:04:01 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:04:01 [DEBUG] Exit from do method -2022/02/28 12:04:01 currentvrfname acctest_r7imt -2022/02/28 12:04:01 found correct vrfname -2022/02/28 12:04:01 [DEBUG] acctest_r7imt: Read finished successfully -2022/02/28 12:04:01 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:04:01 [DEBUG] acctest_r7imt: Beginning Read -2022/02/28 12:04:01 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:01 [DEBUG] Begin Injection -2022/02/28 12:04:01 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:01 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a -2022/02/28 12:04:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090180 160 [] false false map[] 0xc001152400 0xc0001362c0} -2022/02/28 12:04:01 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6cd31b0000f30afd0c3a {"id":"621c6cd31b0000f30afd0c3a","name":"acctest_r7imt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:04:01 [DEBUG] Exit from do method -2022/02/28 12:04:01 [DEBUG] 621c6cd31b0000f30afd0c3a: Read finished successfully -2022/02/28 12:04:02 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004e6180 1362 [] false false map[] 0xc0000a4d00 0xc000b48000} -2022/02/28 12:04:02 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:04:02 [DEBUG] Exit from do method -2022/02/28 12:04:02 [DEBUG] acctest_r7imt: Read finished successfully -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:02 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Beginning Read -2022/02/28 12:04:02 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:02 [DEBUG] Begin Injection -2022/02/28 12:04:02 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:02 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e1500 1362 [] false false map[] 0xc0007b4400 0xc000b48000} -2022/02/28 12:04:02 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:04:02 [DEBUG] Exit from do method -2022/02/28 12:04:02 [DEBUG] /schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt/dhcpLabels/acctest_r7imt: Read finished successfully -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:02 [DEBUG] : Beginning Read -2022/02/28 12:04:02 HTTP request GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:02 [DEBUG] Begin Injection -2022/02/28 12:04:02 HTTP request after injection GET mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:02 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f -2022/02/28 12:04:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004e73c0 1362 [] false false map[] 0xc001152100 0xc000b48000} -2022/02/28 12:04:02 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6cd31d000026644fba2f {"id":"621c6cd31d000026644fba2f","displayName":"acctest_7003m","description":"","templates":[{"name":"acctest_7003m","displayName":"acctest_7003m","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_r7imt","displayName":"acctest_r7imt","bdRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/bds/acctest_r7imt","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6cd31d000026644fba2f/templates/acctest_7003m/vrfs/acctest_r7imt","dhcpLabel":{"name":"acctest_r7imt","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_r7imt","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:04:02 [DEBUG] Exit from do method -2022/02/28 12:04:02 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 12:04:02 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 12:04:02 [DEBUG] New state was assigned lineage "2733c6c3-63a6-ace2-cd32-822fd2607786" -2022/02/28 12:04:02 [DEBUG] Test: Executing step 6 -2022/02/28 12:04:02 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:02 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:04:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:02 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:04:02 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "ejnqg" is not expected here. -2022/02/28 12:04:02 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "ejnqg" is not expected here. -2022/02/28 12:04:02 [DEBUG] Test: Executing step 7 -2022/02/28 12:04:02 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:02 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:04:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:04:02 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:04:02 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:02 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:04:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:02 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:04:02 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:02 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:04:02 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:02 [DEBUG] : Beginning Read -2022/02/28 12:04:02 HTTP request GET mso/api/v1/tenants -2022/02/28 12:04:02 [DEBUG] Begin Injection -2022/02/28 12:04:02 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:04:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:04:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:04:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004ea340 5563 [] false false map[] 0xc0007b5900 0xc000b48000} -2022/02/28 12:04:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:04:03 [DEBUG] Exit from do method -2022/02/28 12:04:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:04:03 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:03 [DEBUG] New state was assigned lineage "4586db13-bf7b-fca2-0671-b8626c821a66" -2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:03 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:04:03 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:04:03 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:04:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:04:03 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:03 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:03 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:03 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_r7imt" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_r7imt" - schema_id: "" => "" - template_name: "" => "acctest_7003m" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_r7imt" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_7003m" - template_name: "" => "acctest_7003m" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_r7imt" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_r7imt" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_7003m" - vrf_name: "" => "acctest_r7imt" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_r7imt" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_r7imt" - schema_id: "" => "" - template_name: "" => "acctest_7003m" - version: "" => "1" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_r7imt" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_r7imt" - schema_id: "" => "" - template: "" => "acctest_7003m" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:04:03 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:04:03 [DEBUG] Schema: Beginning Creation -2022/02/28 12:04:03 HTTP request POST mso/api/v1/schemas -2022/02/28 12:04:03 [DEBUG] Begin Injection -2022/02/28 12:04:03 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:04:03 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ] Content-Type:[application/json]] {{"displayName":"acctest_7003m","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_7003m","externalEpgs":[],"filters":[],"name":"acctest_7003m","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xe07ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:04:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:04:03 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:04:03 [DEBUG] : Beginning Create -2022/02/28 12:04:03 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:04:03 [DEBUG] Begin Injection -2022/02/28 12:04:03 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:04:03 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMjM0LCJpYXQiOjE2NDYwMzAwMzQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiUjdVcU1XcnZ3b0d1QlhPMWQ1TlVGUjRPIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.LIXeuSCwmOkWaa8Vy8VkPaVHLkZLZwwNwQg8NQlN4s8ahD3gcbPQKCD72Iq50R_KsLKEZXmpN0Imv6guJ-DOJaFME8pbd4N3ombza4tdkx46B5KDM-MtJ_9MP_bx2fOEl8LmJB2EARUrzw_n4XRQE7II6fom94yrDwwGWUrU5texbhC_8dCxd28qS2ykSEpHDxP6LXXnNT5hrqK1-rdtkRCmDNiqxPusQcZhYVqY2mwgqeCISGu5z2Agsy2w1lLH6qboVxa3tS9oUSqLvJq3XwiMuiwwM_cgoUINwiKVF92motk9c1D-csRPSREt6SuFo66S7QhAeqg2T7oNZwOQrQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_r7imt","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xe07ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:04:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:04:03 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:04:03 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[122] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:03 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090380 122 [] false false map[] 0xc00127c800 0xc000b48000} -2022/02/28 12:04:03 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"code":140,"message":"Duplicate Resource: displayName","info":{"displayName":["Schema: 'acctest_7003m' already exists"]}} -2022/02/28 12:04:03 [DEBUG] Exit from do method -2022/02/28 12:04:03 [DEBUG] mso_schema.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_7003m' already exists"]} -2022/02/28 12:04:03 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_7003m' already exists"]} -2022/02/28 12:04:03 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_7003m' already exists"]} -2022/02/28 12:04:03 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:04:03 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[108] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:03 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a82280 108 [] false false map[] 0xc000b78c00 0xc0001362c0} -2022/02/28 12:04:03 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":140,"message":"Duplicate Resource: name","info":{"name":["Policy: 'acctest_r7imt' already exists"]}} -2022/02/28 12:04:03 [DEBUG] Exit from do method -2022/02/28 12:04:03 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: name"{"name":["Policy: 'acctest_r7imt' already exists"]} -2022/02/28 12:04:03 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_r7imt' already exists"]} -2022/02/28 12:04:03 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_r7imt' already exists"]} -2022/02/28 12:04:03 [DEBUG] New state was assigned lineage "b257b8f5-5188-2164-9f23-0e7c4c11f34a" -2022/02/28 12:04:03 [WARN] Test: Executing destroy step -2022/02/28 12:04:03 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:04:03 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:03 [DEBUG] : Beginning Read -2022/02/28 12:04:03 HTTP request GET mso/api/v1/tenants -2022/02/28 12:04:03 [DEBUG] Begin Injection -2022/02/28 12:04:03 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:04:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:04:03 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:04:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e0100 5563 [] false false map[] 0xc00127da00 0xc0001362c0} -2022/02/28 12:04:03 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:04:03 [DEBUG] Exit from do method -2022/02/28 12:04:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:03 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:03 [DEBUG] New state was assigned lineage "1549bc3f-07ec-32fc-b44a-882f698bc2b3" -2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:04:03 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 12:04:03 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 12:04:03 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:03 [DEBUG] New state was assigned lineage "9d9aef71-cc1d-025e-290d-fbd57b9d84bc" -2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:04:03 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:04:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:03 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:03 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:04:03 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:04:03 [DEBUG] : Beginning Read -2022/02/28 12:04:03 HTTP request GET mso/api/v1/tenants -2022/02/28 12:04:03 [DEBUG] Begin Injection -2022/02/28 12:04:03 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:04:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:04:04 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:04:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:34:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b404c0 5563 [] false false map[] 0xc0000f3000 0xc0001362c0} -2022/02/28 12:04:04 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:04:04 [DEBUG] Exit from do method -2022/02/28 12:04:04 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:04:04 [DEBUG] provider has no plugin.Client -2022/02/28 12:04:04 [DEBUG] New state was assigned lineage "12edaa61-2b4e-e4b2-b514-7db30c8129fa" -2022/02/28 12:04:04 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:04:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:04:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:04:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) -2022/02/28 12:04:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:04:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:04:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:04:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:04:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:04:04 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:05:22 [DEBUG] Test: Executing step 0 -2022/02/28 12:05:22 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:22 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:05:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:22 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:05:22 [DEBUG] Test: Executing step 1 -2022/02/28 12:05:22 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:22 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:05:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:22 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:05:22 [DEBUG] Test: Executing step 2 -2022/02/28 12:05:22 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:22 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:05:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:22 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:05:22 [DEBUG] Test: Executing step 3 -2022/02/28 12:05:22 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:22 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:05:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:05:22 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:05:22 [DEBUG] Test: Executing step 4 -2022/02/28 12:05:22 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:22 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:05:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:05:22 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:05:22 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:22 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:05:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:22 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:05:22 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:22 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:05:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:22 [DEBUG] : Beginning Read -2022/02/28 12:05:22 HTTP request GET mso/api/v1/tenants -2022/02/28 12:05:22 [DEBUG] Begin Injection -2022/02/28 12:05:22 HTTP request POST /login -2022/02/28 12:05:22 HTTP request after injection POST /login -2022/02/28 12:05:22 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 12:05:24 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 12:05:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:24 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00004d800 -1 [chunked] false false map[] 0xc0000d8b00 0xc00000e000} -2022/02/28 12:05:24 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ"} -2022/02/28 12:05:24 [DEBUG] Exit from do method -2022/02/28 12:05:24 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:05:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:05:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:05:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051a180 5563 [] false false map[] 0xc0000d8a00 0xc00000e000} -2022/02/28 12:05:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:05:24 [DEBUG] Exit from do method -2022/02/28 12:05:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:05:24 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:24 [DEBUG] New state was assigned lineage "3360640b-1a15-a140-5d16-d9f822d3d5af" -2022/02/28 12:05:24 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:05:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:24 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:24 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:05:24 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:05:24 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:05:24 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:05:24 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:24 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:24 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:24 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_phtdv" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_phtdv" - schema_id: "" => "" - template_name: "" => "acctest_266fh" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_phtdv" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_266fh" - template_name: "" => "acctest_266fh" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_phtdv" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_phtdv" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_266fh" - vrf_name: "" => "acctest_phtdv" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_phtdv" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_phtdv" - schema_id: "" => "" - template_name: "" => "acctest_266fh" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_phtdv" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_phtdv" - schema_id: "" => "" - template: "" => "acctest_266fh" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:05:24 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:05:24 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:05:24 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:24 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:05:24 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:05:24 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:24 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:05:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] -2022/02/28 12:05:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:24 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:05:24 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:05:24 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:05:24 [DEBUG] Schema: Beginning Creation -2022/02/28 12:05:24 [DEBUG] : Beginning Create -2022/02/28 12:05:24 HTTP request POST mso/api/v1/schemas -2022/02/28 12:05:24 [DEBUG] Begin Injection -2022/02/28 12:05:24 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:05:24 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ] Content-Type:[application/json]] {{"displayName":"acctest_266fh","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_266fh","externalEpgs":[],"filters":[],"name":"acctest_266fh","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x617ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} -2022/02/28 12:05:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:05:24 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:05:24 [DEBUG] Begin Injection -2022/02/28 12:05:24 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:05:24 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_phtdv","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x617ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} -2022/02/28 12:05:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:05:25 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:05:25 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6d2c1d000019644fba34] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001034f40 400 [] false false map[] 0xc000f58200 0xc00000e000} -2022/02/28 12:05:25 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:05:25 [DEBUG] Exit from do method -2022/02/28 12:05:25 [DEBUG] 621c6d2c1d000019644fba34: Schema Creation finished successfully -2022/02/28 12:05:25 [DEBUG] 621c6d2c1d000019644fba34: Beginning Read -2022/02/28 12:05:25 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:25 [DEBUG] Begin Injection -2022/02/28 12:05:25 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:25 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:05:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000098300 160 [] false false map[] 0xc0000d8700 0xc00000e000} -2022/02/28 12:05:25 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6d2d1b0000050bfd0c3b","name":"acctest_phtdv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:05:25 [DEBUG] Exit from do method -2022/02/28 12:05:25 [DEBUG] 621c6d2d1b0000050bfd0c3b: Creation finished successfully -2022/02/28 12:05:25 [DEBUG] 621c6d2d1b0000050bfd0c3b: Beginning Read -2022/02/28 12:05:25 id: 621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:25 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:25 [DEBUG] Begin Injection -2022/02/28 12:05:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00014bd40 160 [] false false map[] 0xc000f2a600 0xc0000de9a0} -2022/02/28 12:05:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b {"id":"621c6d2d1b0000050bfd0c3b","name":"acctest_phtdv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:05:25 [DEBUG] Exit from do method -2022/02/28 12:05:25 [DEBUG] 621c6d2d1b0000050bfd0c3b: Read finished successfully -2022/02/28 12:05:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b2ce00 400 [] false false map[] 0xc0000d8a00 0xc00000e000} -2022/02/28 12:05:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:05:25 [DEBUG] Exit from do method -2022/02/28 12:05:25 [DEBUG] 621c6d2c1d000019644fba34: Read finished successfully -2022/02/28 12:05:25 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:05:25 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:05:25 HTTP request PATCH mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:25 [DEBUG] Begin Injection -2022/02/28 12:05:25 HTTP request after injection PATCH mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:26 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:35:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f2aa00 0xc00000e000} -2022/02/28 12:05:26 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:26 [DEBUG] acctest_phtdv: Creation finished successfully -2022/02/28 12:05:26 [DEBUG] acctest_phtdv: Beginning Read -2022/02/28 12:05:26 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:26 [DEBUG] Begin Injection -2022/02/28 12:05:26 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000992c0 768 [] false false map[] 0xc001014500 0xc0000dedc0} -2022/02/28 12:05:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 12:05:26 [DEBUG] Exit from do method -2022/02/28 12:05:26 currentvrfname acctest_phtdv -2022/02/28 12:05:26 found correct vrfname -2022/02/28 12:05:26 [DEBUG] acctest_phtdv: Read finished successfully -2022/02/28 12:05:26 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:05:26 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:05:26 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:05:26 HTTP request PATCH mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:26 [DEBUG] Begin Injection -2022/02/28 12:05:26 HTTP request after injection PATCH mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:26 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:35:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00011ac00 0xc0000dedc0} -2022/02/28 12:05:26 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:26 [DEBUG] : Beginning Read -2022/02/28 12:05:26 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:26 [DEBUG] Begin Injection -2022/02/28 12:05:26 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000981c0 1277 [] false false map[] 0xc000f2a000 0xc0000dedc0} -2022/02/28 12:05:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:05:27 [DEBUG] Exit from do method -2022/02/28 12:05:27 [DEBUG] acctest_phtdv: Read finished successfully -2022/02/28 12:05:27 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:05:27 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:05:27 HTTP request PATCH mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:27 [DEBUG] Begin Injection -2022/02/28 12:05:27 HTTP request after injection PATCH mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:27 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:35:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f2ab00 0xc0000dedc0} -2022/02/28 12:05:27 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34?validate=false -2022/02/28 12:05:27 [DEBUG] Creation Complete -2022/02/28 12:05:27 [DEBUG] : Beginning Read -2022/02/28 12:05:27 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:27 [DEBUG] Begin Injection -2022/02/28 12:05:27 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d9000 1362 [] false false map[] 0xc00011ae00 0xc0000dedc0} -2022/02/28 12:05:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:27 [DEBUG] Exit from do method -2022/02/28 12:05:27 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Read finished successfully -2022/02/28 12:05:27 [DEBUG] : Beginning Read -2022/02/28 12:05:27 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:27 [DEBUG] Begin Injection -2022/02/28 12:05:27 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d9540 1362 [] false false map[] 0xc0000d8200 0xc0000dedc0} -2022/02/28 12:05:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:28 [DEBUG] Exit from do method -2022/02/28 12:05:28 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Read finished successfully -2022/02/28 12:05:28 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:28 [DEBUG] New state was assigned lineage "2cea565f-a273-9313-3d7e-cd4c6387f11b" -2022/02/28 12:05:28 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:28 [DEBUG] Begin Injection -2022/02/28 12:05:28 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ff6040 1362 [] false false map[] 0xc00011a100 0xc0000dedc0} -2022/02/28 12:05:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:28 [DEBUG] Exit from do method -2022/02/28 12:05:28 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:05:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:28 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:28 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:28 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:05:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:28 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:28 [DEBUG] : Beginning Read -2022/02/28 12:05:28 HTTP request GET mso/api/v1/tenants -2022/02/28 12:05:28 [DEBUG] Begin Injection -2022/02/28 12:05:28 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:05:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:05:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:05:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ff68c0 5563 [] false false map[] 0xc000078300 0xc0000dedc0} -2022/02/28 12:05:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:05:28 [DEBUG] Exit from do method -2022/02/28 12:05:28 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:05:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:05:28 [DEBUG] 621c6d2c1d000019644fba34: Beginning Read -2022/02/28 12:05:28 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:28 [DEBUG] Begin Injection -2022/02/28 12:05:28 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:28 [DEBUG] 621c6d2d1b0000050bfd0c3b: Beginning Read -2022/02/28 12:05:28 id: 621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:28 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:28 [DEBUG] Begin Injection -2022/02/28 12:05:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ff7340 1362 [] false false map[] 0xc000078800 0xc0000dedc0} -2022/02/28 12:05:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:29 [DEBUG] Exit from do method -2022/02/28 12:05:29 [DEBUG] 621c6d2c1d000019644fba34: Read finished successfully -2022/02/28 12:05:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:05:29 [DEBUG] acctest_phtdv: Beginning Read -2022/02/28 12:05:29 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:29 [DEBUG] Begin Injection -2022/02/28 12:05:29 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001071d80 160 [] false false map[] 0xc000f2aa00 0xc0000de9a0} -2022/02/28 12:05:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b {"id":"621c6d2d1b0000050bfd0c3b","name":"acctest_phtdv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:05:29 [DEBUG] Exit from do method -2022/02/28 12:05:29 [DEBUG] 621c6d2d1b0000050bfd0c3b: Read finished successfully -2022/02/28 12:05:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ff7c80 1362 [] false false map[] 0xc0000d8400 0xc0000dedc0} -2022/02/28 12:05:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:29 [DEBUG] Exit from do method -2022/02/28 12:05:29 currentvrfname acctest_phtdv -2022/02/28 12:05:29 found correct vrfname -2022/02/28 12:05:29 [DEBUG] acctest_phtdv: Read finished successfully -2022/02/28 12:05:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:05:29 [DEBUG] acctest_phtdv: Beginning Read -2022/02/28 12:05:29 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:29 [DEBUG] Begin Injection -2022/02/28 12:05:29 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001071e40 1362 [] false false map[] 0xc00011a700 0xc0000dedc0} -2022/02/28 12:05:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:29 [DEBUG] Exit from do method -2022/02/28 12:05:29 [DEBUG] acctest_phtdv: Read finished successfully -2022/02/28 12:05:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:29 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Beginning Read -2022/02/28 12:05:29 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:29 [DEBUG] Begin Injection -2022/02/28 12:05:29 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000999080 1362 [] false false map[] 0xc000f2b000 0xc0000dedc0} -2022/02/28 12:05:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:30 [DEBUG] Exit from do method -2022/02/28 12:05:30 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Read finished successfully -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:30 [DEBUG] : Beginning Read -2022/02/28 12:05:30 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:30 [DEBUG] Begin Injection -2022/02/28 12:05:30 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000589ac0 1362 [] false false map[] 0xc0000d8600 0xc0000dedc0} -2022/02/28 12:05:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:30 [DEBUG] Exit from do method -2022/02/28 12:05:30 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Read finished successfully -2022/02/28 12:05:30 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:30 [DEBUG] New state was assigned lineage "1d8eb59c-2f6f-a368-371f-7df7f981fdc4" -2022/02/28 12:05:30 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:05:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:30 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:30 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:30 [DEBUG] Test: Executing step 5 -2022/02/28 12:05:30 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:30 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:05:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:05:30 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:05:30 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:30 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:05:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:30 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:30 [DEBUG] : Beginning Read -2022/02/28 12:05:30 HTTP request GET mso/api/v1/tenants -2022/02/28 12:05:30 [DEBUG] Begin Injection -2022/02/28 12:05:30 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:05:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:05:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:05:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087c3c0 5563 [] false false map[] 0xc00011a800 0xc0000dedc0} -2022/02/28 12:05:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:05:30 [DEBUG] Exit from do method -2022/02/28 12:05:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:05:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:05:30 [DEBUG] 621c6d2c1d000019644fba34: Beginning Read -2022/02/28 12:05:30 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:30 [DEBUG] 621c6d2d1b0000050bfd0c3b: Beginning Read -2022/02/28 12:05:30 id: 621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:30 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:30 [DEBUG] Begin Injection -2022/02/28 12:05:30 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:30 [DEBUG] Begin Injection -2022/02/28 12:05:30 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b -2022/02/28 12:05:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000098840 160 [] false false map[] 0xc000f2ad00 0xc0000dedc0} -2022/02/28 12:05:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6d2d1b0000050bfd0c3b {"id":"621c6d2d1b0000050bfd0c3b","name":"acctest_phtdv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:05:31 [DEBUG] Exit from do method -2022/02/28 12:05:31 [DEBUG] 621c6d2d1b0000050bfd0c3b: Read finished successfully -2022/02/28 12:05:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000098900 1362 [] false false map[] 0xc00011ad00 0xc0000de9a0} -2022/02/28 12:05:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:31 [DEBUG] Exit from do method -2022/02/28 12:05:31 [DEBUG] 621c6d2c1d000019644fba34: Read finished successfully -2022/02/28 12:05:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:05:31 [DEBUG] acctest_phtdv: Beginning Read -2022/02/28 12:05:31 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:31 [DEBUG] Begin Injection -2022/02/28 12:05:31 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000099cc0 1362 [] false false map[] 0xc000078600 0xc0000de9a0} -2022/02/28 12:05:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:31 [DEBUG] Exit from do method -2022/02/28 12:05:31 currentvrfname acctest_phtdv -2022/02/28 12:05:31 found correct vrfname -2022/02/28 12:05:31 [DEBUG] acctest_phtdv: Read finished successfully -2022/02/28 12:05:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:05:31 [DEBUG] acctest_phtdv: Beginning Read -2022/02/28 12:05:31 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:31 [DEBUG] Begin Injection -2022/02/28 12:05:31 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c180 1362 [] false false map[] 0xc000e3a300 0xc0000de9a0} -2022/02/28 12:05:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:31 [DEBUG] Exit from do method -2022/02/28 12:05:31 [DEBUG] acctest_phtdv: Read finished successfully -2022/02/28 12:05:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:31 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Beginning Read -2022/02/28 12:05:31 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:31 [DEBUG] Begin Injection -2022/02/28 12:05:31 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000098800 1362 [] false false map[] 0xc000078300 0xc0000de9a0} -2022/02/28 12:05:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:32 [DEBUG] Exit from do method -2022/02/28 12:05:32 [DEBUG] /schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv/dhcpLabels/acctest_phtdv: Read finished successfully -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:32 [DEBUG] : Beginning Read -2022/02/28 12:05:32 HTTP request GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:32 [DEBUG] Begin Injection -2022/02/28 12:05:32 HTTP request after injection GET mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 -2022/02/28 12:05:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087c680 1362 [] false false map[] 0xc00011a600 0xc0000de9a0} -2022/02/28 12:05:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6d2c1d000019644fba34 {"id":"621c6d2c1d000019644fba34","displayName":"acctest_266fh","description":"","templates":[{"name":"acctest_266fh","displayName":"acctest_266fh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_phtdv","displayName":"acctest_phtdv","bdRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/bds/acctest_phtdv","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6d2c1d000019644fba34/templates/acctest_266fh/vrfs/acctest_phtdv","dhcpLabel":{"name":"acctest_phtdv","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_phtdv","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:05:32 [DEBUG] Exit from do method -2022/02/28 12:05:32 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 12:05:32 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 12:05:32 [DEBUG] New state was assigned lineage "fd892397-f09c-9be3-1b1b-4c7bbf045041" -2022/02/28 12:05:32 [DEBUG] Test: Executing step 6 -2022/02/28 12:05:32 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:32 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:05:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:32 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:05:32 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "uyeiy" is not expected here. -2022/02/28 12:05:32 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "uyeiy" is not expected here. -2022/02/28 12:05:32 [DEBUG] Test: Executing step 7 -2022/02/28 12:05:32 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:32 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:05:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:32 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:05:32 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:32 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:05:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:32 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:05:32 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:32 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:32 [DEBUG] : Beginning Read -2022/02/28 12:05:32 HTTP request GET mso/api/v1/tenants -2022/02/28 12:05:32 [DEBUG] Begin Injection -2022/02/28 12:05:32 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:05:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:05:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:05:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d80c0 5563 [] false false map[] 0xc000079200 0xc0000de9a0} -2022/02/28 12:05:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:05:32 [DEBUG] Exit from do method -2022/02/28 12:05:32 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:05:32 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:32 [DEBUG] New state was assigned lineage "5e110db2-2852-f5cf-4d1a-4886a4fbcd22" -2022/02/28 12:05:32 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:05:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:32 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:32 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:05:32 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:05:32 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:05:32 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:05:32 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:32 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:32 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:32 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_phtdv" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_phtdv" - schema_id: "" => "" - template_name: "" => "acctest_266fh" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_phtdv" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_266fh" - template_name: "" => "acctest_266fh" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_phtdv" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_phtdv" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_266fh" - vrf_name: "" => "acctest_phtdv" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_phtdv" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_phtdv" - schema_id: "" => "" - template_name: "" => "acctest_266fh" - version: "" => "1" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_phtdv" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_phtdv" - schema_id: "" => "" - template: "" => "acctest_266fh" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:05:32 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:05:32 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:05:32 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:05:32 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:05:32 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:32 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:05:32 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:05:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:05:32 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:05:32 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:05:32 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:05:32 [DEBUG] Schema: Beginning Creation -2022/02/28 12:05:32 [DEBUG] : Beginning Create -2022/02/28 12:05:32 HTTP request POST mso/api/v1/schemas -2022/02/28 12:05:32 [DEBUG] Begin Injection -2022/02/28 12:05:32 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:05:32 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:05:32 [DEBUG] Begin Injection -2022/02/28 12:05:32 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:05:32 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ] Content-Type:[application/json]] {{"displayName":"acctest_266fh","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_266fh","externalEpgs":[],"filters":[],"name":"acctest_266fh","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x617ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} -2022/02/28 12:05:32 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxMzI0LCJpYXQiOjE2NDYwMzAxMjQsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiMVFtcW5qQkJhTUtLUlJvdUFPS083SUVSIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.n6mowgAOLDiL5aoXVrIBUmu5XBWHg2MLXoWJGUIUfgR13wWBMS__X9uPlqpvwajS86Zt9wY8sD4h-6FwPYCjHr2lCYtrUo2HVlRYoteLO-sIFfIScQNDJQdfmrVBwh1xP8q0ksSROv_hRGl8FHuFHXO3CGn0fl9qtt_fF2bqdM99B-l3_SWeV30aMztzezSQgM6eCyr_Cgzkvcd7g4G1o_YuxvenF6rKYjP1am0uvZNTGB5tcP52lNUa9kFBmjilkfM_8OpPXVOK9COQkLapJjWmvG16EU2gZV1U8a4UBxT_2weR_HWViVzt9Dz-xPzxmEYuPgNY4WHmfPPNnPA0pQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_phtdv","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x617ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} -2022/02/28 12:05:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:05:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:05:33 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:05:33 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[122] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:33 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c180 122 [] false false map[] 0xc000f0e500 0xc0000dedc0} -2022/02/28 12:05:33 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"code":140,"message":"Duplicate Resource: displayName","info":{"displayName":["Schema: 'acctest_266fh' already exists"]}} -2022/02/28 12:05:33 [DEBUG] Exit from do method -2022/02/28 12:05:33 [DEBUG] mso_schema.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_266fh' already exists"]} -2022/02/28 12:05:33 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_266fh' already exists"]} -2022/02/28 12:05:33 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_266fh' already exists"]} -2022/02/28 12:05:33 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:05:33 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[108] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:33 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0013c4040 108 [] false false map[] 0xc000078c00 0xc0000de9a0} -2022/02/28 12:05:33 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":140,"message":"Duplicate Resource: name","info":{"name":["Policy: 'acctest_phtdv' already exists"]}} -2022/02/28 12:05:33 [DEBUG] Exit from do method -2022/02/28 12:05:33 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: name"{"name":["Policy: 'acctest_phtdv' already exists"]} -2022/02/28 12:05:33 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_phtdv' already exists"]} -2022/02/28 12:05:33 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_phtdv' already exists"]} -2022/02/28 12:05:33 [DEBUG] New state was assigned lineage "93f019e2-4d72-1c0a-116a-9ed7e5e405b7" -2022/02/28 12:05:33 [WARN] Test: Executing destroy step -2022/02/28 12:05:33 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:33 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:33 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:05:33 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:33 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:05:33 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:33 [DEBUG] : Beginning Read -2022/02/28 12:05:33 HTTP request GET mso/api/v1/tenants -2022/02/28 12:05:33 [DEBUG] Begin Injection -2022/02/28 12:05:33 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:05:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:05:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:05:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087c4c0 5563 [] false false map[] 0xc00011ad00 0xc0000de9a0} -2022/02/28 12:05:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:05:33 [DEBUG] Exit from do method -2022/02/28 12:05:33 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:05:33 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:05:33 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:05:33 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:05:33 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:05:33 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:33 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:33 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:33 [DEBUG] New state was assigned lineage "296d577f-19fc-7b48-c884-cb5261bddac0" -2022/02/28 12:05:33 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:33 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:05:33 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:05:33 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 12:05:33 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:05:33 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 12:05:33 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:33 [DEBUG] New state was assigned lineage "81c3cc85-0015-0f30-20ad-a12b285a7421" -2022/02/28 12:05:33 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:05:33 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:05:33 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:05:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:33 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:05:33 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:33 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:05:33 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:05:33 [DEBUG] : Beginning Read -2022/02/28 12:05:33 HTTP request GET mso/api/v1/tenants -2022/02/28 12:05:33 [DEBUG] Begin Injection -2022/02/28 12:05:33 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:05:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:05:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:05:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:35:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087c400 5563 [] false false map[] 0xc00063e200 0xc0000de9a0} -2022/02/28 12:05:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:05:34 [DEBUG] Exit from do method -2022/02/28 12:05:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:05:34 [DEBUG] provider has no plugin.Client -2022/02/28 12:05:34 [DEBUG] New state was assigned lineage "9c27750d-30b6-d0ab-cf4b-4b4f2a71669c" -2022/02/28 12:05:34 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:05:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:05:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:05:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:05:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:05:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:05:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:05:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:05:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:05:34 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:10:05 [DEBUG] Test: Executing step 0 -2022/02/28 12:10:05 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:05 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:10:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:05 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:10:05 [DEBUG] Test: Executing step 1 -2022/02/28 12:10:05 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:05 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:10:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:05 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:10:05 [DEBUG] Test: Executing step 2 -2022/02/28 12:10:05 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:05 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:10:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:05 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:10:05 [DEBUG] Test: Executing step 3 -2022/02/28 12:10:05 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:05 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:10:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:05 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:10:05 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:10:05 [DEBUG] Test: Executing step 4 -2022/02/28 12:10:05 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:05 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:10:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:05 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:10:05 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:05 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:10:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:05 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:10:05 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:05 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:05 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:05 [DEBUG] : Beginning Read -2022/02/28 12:10:05 HTTP request GET mso/api/v1/tenants -2022/02/28 12:10:05 [DEBUG] Begin Injection -2022/02/28 12:10:05 HTTP request POST /login -2022/02/28 12:10:05 HTTP request after injection POST /login -2022/02/28 12:10:05 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 12:10:07 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 12:10:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:06 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000374b80 -1 [chunked] false false map[] 0xc000c82800 0xc000bd40b0} -2022/02/28 12:10:07 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug"} -2022/02/28 12:10:07 [DEBUG] Exit from do method -2022/02/28 12:10:07 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:10:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:10:07 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:10:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000374d40 5563 [] false false map[] 0xc000c82100 0xc000bd40b0} -2022/02/28 12:10:07 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:10:07 [DEBUG] Exit from do method -2022/02/28 12:10:07 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:10:07 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:07 [DEBUG] New state was assigned lineage "c43c4bc0-a9d7-d1a6-8599-aabbb72e48dd" -2022/02/28 12:10:07 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:10:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:07 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:07 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:10:07 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:10:07 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:10:07 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:10:07 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:07 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:07 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:07 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_jew33" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_jew33" - schema_id: "" => "" - template_name: "" => "acctest_qexpv" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_jew33" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_qexpv" - template_name: "" => "acctest_qexpv" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_jew33" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_jew33" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_qexpv" - vrf_name: "" => "acctest_jew33" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_jew33" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_jew33" - schema_id: "" => "" - template_name: "" => "acctest_qexpv" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_jew33" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_jew33" - schema_id: "" => "" - template: "" => "acctest_qexpv" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:10:07 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:10:07 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:10:07 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:10:07 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:07 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:10:07 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:10:07 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state)] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:10:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:10:07 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:10:07 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:10:07 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:10:07 [DEBUG] : Beginning Create -2022/02/28 12:10:07 [DEBUG] Schema: Beginning Creation -2022/02/28 12:10:07 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:10:07 [DEBUG] Begin Injection -2022/02/28 12:10:07 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:10:07 HTTP request POST mso/api/v1/schemas -2022/02/28 12:10:07 [DEBUG] Begin Injection -2022/02/28 12:10:07 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug] Content-Type:[application/json]] {{"desc":"","name":"acctest_jew33","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x1297ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:10:07 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:10:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:10:07 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug] Content-Type:[application/json]] {{"displayName":"acctest_qexpv","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_qexpv","externalEpgs":[],"filters":[],"name":"acctest_qexpv","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x1297ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:10:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:10:07 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:10:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd8100 160 [] false false map[] 0xc000c82b00 0xc000bd40b0} -2022/02/28 12:10:07 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c6e471b0000470bfd0c3c","name":"acctest_jew33","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:10:07 [DEBUG] Exit from do method -2022/02/28 12:10:07 [DEBUG] 621c6e471b0000470bfd0c3c: Creation finished successfully -2022/02/28 12:10:07 [DEBUG] 621c6e471b0000470bfd0c3c: Beginning Read -2022/02/28 12:10:07 id: 621c6e471b0000470bfd0c3c -2022/02/28 12:10:07 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c -2022/02/28 12:10:07 [DEBUG] Begin Injection -2022/02/28 12:10:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c -2022/02/28 12:10:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c -2022/02/28 12:10:08 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:10:08 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c6e481d000065644fba3c] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd8500 400 [] false false map[] 0xc00057e500 0xc000bd40b0} -2022/02/28 12:10:08 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:10:08 [DEBUG] Exit from do method -2022/02/28 12:10:08 [DEBUG] 621c6e481d000065644fba3c: Schema Creation finished successfully -2022/02/28 12:10:08 [DEBUG] 621c6e481d000065644fba3c: Beginning Read -2022/02/28 12:10:08 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:08 [DEBUG] Begin Injection -2022/02/28 12:10:08 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c -2022/02/28 12:10:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd8640 160 [] false false map[] 0xc00017e400 0xc000b94840} -2022/02/28 12:10:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c {"id":"621c6e471b0000470bfd0c3c","name":"acctest_jew33","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:10:08 [DEBUG] Exit from do method -2022/02/28 12:10:08 [DEBUG] 621c6e471b0000470bfd0c3c: Read finished successfully -2022/02/28 12:10:08 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000804680 400 [] false false map[] 0xc000c82e00 0xc000bd40b0} -2022/02/28 12:10:08 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:10:08 [DEBUG] Exit from do method -2022/02/28 12:10:08 [DEBUG] 621c6e481d000065644fba3c: Read finished successfully -2022/02/28 12:10:08 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:10:08 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:10:08 HTTP request PATCH mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:08 [DEBUG] Begin Injection -2022/02/28 12:10:08 HTTP request after injection PATCH mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:09 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:09 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:40:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000aea00 0xc000bd40b0} -2022/02/28 12:10:09 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:09 [DEBUG] acctest_jew33: Creation finished successfully -2022/02/28 12:10:09 [DEBUG] acctest_jew33: Beginning Read -2022/02/28 12:10:09 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:09 [DEBUG] Begin Injection -2022/02/28 12:10:09 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:09 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd87c0 768 [] false false map[] 0xc0000aed00 0xc000b949a0} -2022/02/28 12:10:09 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 12:10:09 [DEBUG] Exit from do method -2022/02/28 12:10:09 currentvrfname acctest_jew33 -2022/02/28 12:10:09 found correct vrfname -2022/02/28 12:10:09 [DEBUG] acctest_jew33: Read finished successfully -2022/02/28 12:10:09 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:10:09 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:10:09 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:10:09 HTTP request PATCH mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:09 [DEBUG] Begin Injection -2022/02/28 12:10:09 HTTP request after injection PATCH mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:09 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:09 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:40:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00082e000 0xc000b949a0} -2022/02/28 12:10:09 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:09 [DEBUG] : Beginning Read -2022/02/28 12:10:09 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:09 [DEBUG] Begin Injection -2022/02/28 12:10:09 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e6200 1277 [] false false map[] 0xc00057e000 0xc000b949a0} -2022/02/28 12:10:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:10:10 [DEBUG] Exit from do method -2022/02/28 12:10:10 [DEBUG] acctest_jew33: Read finished successfully -2022/02/28 12:10:10 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:10:10 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:10:10 HTTP request PATCH mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:10 [DEBUG] Begin Injection -2022/02/28 12:10:10 HTTP request after injection PATCH mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:10 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:40:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00057e400 0xc000b949a0} -2022/02/28 12:10:10 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c?validate=false -2022/02/28 12:10:10 [DEBUG] Creation Complete -2022/02/28 12:10:10 [DEBUG] : Beginning Read -2022/02/28 12:10:10 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:10 [DEBUG] Begin Injection -2022/02/28 12:10:10 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:10 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006ccdc0 1362 [] false false map[] 0xc00017e000 0xc000b949a0} -2022/02/28 12:10:10 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:10 [DEBUG] Exit from do method -2022/02/28 12:10:10 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Read finished successfully -2022/02/28 12:10:10 [DEBUG] : Beginning Read -2022/02/28 12:10:10 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:10 [DEBUG] Begin Injection -2022/02/28 12:10:10 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050d8c0 1362 [] false false map[] 0xc00057e800 0xc000b949a0} -2022/02/28 12:10:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:11 [DEBUG] Exit from do method -2022/02/28 12:10:11 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Read finished successfully -2022/02/28 12:10:11 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:11 [DEBUG] New state was assigned lineage "6b6092d0-b330-ed63-adc4-ec3fbb67d218" -2022/02/28 12:10:11 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:11 [DEBUG] Begin Injection -2022/02/28 12:10:11 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000f2040 1362 [] false false map[] 0xc00057e900 0xc000b949a0} -2022/02/28 12:10:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:11 [DEBUG] Exit from do method -2022/02/28 12:10:11 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:10:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:10:11 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:11 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:11 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:10:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:11 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:11 [DEBUG] : Beginning Read -2022/02/28 12:10:11 HTTP request GET mso/api/v1/tenants -2022/02/28 12:10:11 [DEBUG] Begin Injection -2022/02/28 12:10:11 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:10:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:10:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:10:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd98c0 5563 [] false false map[] 0xc000f19900 0xc000b949a0} -2022/02/28 12:10:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:10:11 [DEBUG] Exit from do method -2022/02/28 12:10:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:10:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:10:11 [DEBUG] 621c6e471b0000470bfd0c3c: Beginning Read -2022/02/28 12:10:11 id: 621c6e471b0000470bfd0c3c -2022/02/28 12:10:11 [DEBUG] 621c6e481d000065644fba3c: Beginning Read -2022/02/28 12:10:11 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:11 [DEBUG] Begin Injection -2022/02/28 12:10:11 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c -2022/02/28 12:10:11 [DEBUG] Begin Injection -2022/02/28 12:10:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c -2022/02/28 12:10:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c -2022/02/28 12:10:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000560040 1362 [] false false map[] 0xc00057e000 0xc000b94840} -2022/02/28 12:10:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:12 [DEBUG] Exit from do method -2022/02/28 12:10:12 [DEBUG] 621c6e481d000065644fba3c: Read finished successfully -2022/02/28 12:10:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:10:12 [DEBUG] acctest_jew33: Beginning Read -2022/02/28 12:10:12 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 [DEBUG] Begin Injection -2022/02/28 12:10:12 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c -2022/02/28 12:10:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050d280 160 [] false false map[] 0xc000ec6700 0xc000b949a0} -2022/02/28 12:10:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c {"id":"621c6e471b0000470bfd0c3c","name":"acctest_jew33","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:10:12 [DEBUG] Exit from do method -2022/02/28 12:10:12 [DEBUG] 621c6e471b0000470bfd0c3c: Read finished successfully -2022/02/28 12:10:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050d740 1362 [] false false map[] 0xc00057e500 0xc000b94840} -2022/02/28 12:10:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:12 [DEBUG] Exit from do method -2022/02/28 12:10:12 currentvrfname acctest_jew33 -2022/02/28 12:10:12 found correct vrfname -2022/02/28 12:10:12 [DEBUG] acctest_jew33: Read finished successfully -2022/02/28 12:10:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:10:12 [DEBUG] acctest_jew33: Beginning Read -2022/02/28 12:10:12 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 [DEBUG] Begin Injection -2022/02/28 12:10:12 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000aaafc0 1362 [] false false map[] 0xc00057ea00 0xc000b94840} -2022/02/28 12:10:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:12 [DEBUG] Exit from do method -2022/02/28 12:10:12 [DEBUG] acctest_jew33: Read finished successfully -2022/02/28 12:10:12 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:12 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Beginning Read -2022/02/28 12:10:12 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 [DEBUG] Begin Injection -2022/02/28 12:10:12 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000aab8c0 1362 [] false false map[] 0xc000ec6a00 0xc000b94840} -2022/02/28 12:10:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:12 [DEBUG] Exit from do method -2022/02/28 12:10:12 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Read finished successfully -2022/02/28 12:10:12 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:12 [DEBUG] : Beginning Read -2022/02/28 12:10:12 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 [DEBUG] Begin Injection -2022/02/28 12:10:12 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cd9ec0 1362 [] false false map[] 0xc000ec6d00 0xc000b94840} -2022/02/28 12:10:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:13 [DEBUG] Exit from do method -2022/02/28 12:10:13 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Read finished successfully -2022/02/28 12:10:13 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:13 [DEBUG] New state was assigned lineage "feef82b8-2061-f8a2-14c4-694374d7e052" -2022/02/28 12:10:13 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:10:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:13 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:13 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:13 [DEBUG] Test: Executing step 5 -2022/02/28 12:10:13 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:13 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:10:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:13 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:10:13 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:13 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:10:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:13 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:13 [DEBUG] : Beginning Read -2022/02/28 12:10:13 HTTP request GET mso/api/v1/tenants -2022/02/28 12:10:13 [DEBUG] Begin Injection -2022/02/28 12:10:13 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:10:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:10:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:10:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00079d980 5563 [] false false map[] 0xc000d22500 0xc000b94840} -2022/02/28 12:10:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:10:13 [DEBUG] Exit from do method -2022/02/28 12:10:13 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:10:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:10:13 [DEBUG] 621c6e471b0000470bfd0c3c: Beginning Read -2022/02/28 12:10:13 id: 621c6e471b0000470bfd0c3c -2022/02/28 12:10:13 [DEBUG] 621c6e481d000065644fba3c: Beginning Read -2022/02/28 12:10:13 HTTP request GET mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c -2022/02/28 12:10:13 [DEBUG] Begin Injection -2022/02/28 12:10:13 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c -2022/02/28 12:10:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c -2022/02/28 12:10:13 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:13 [DEBUG] Begin Injection -2022/02/28 12:10:13 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c -2022/02/28 12:10:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050cd00 160 [] false false map[] 0xc001238300 0xc000b94840} -2022/02/28 12:10:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c6e471b0000470bfd0c3c {"id":"621c6e471b0000470bfd0c3c","name":"acctest_jew33","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:10:13 [DEBUG] Exit from do method -2022/02/28 12:10:13 [DEBUG] 621c6e471b0000470bfd0c3c: Read finished successfully -2022/02/28 12:10:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000804140 1362 [] false false map[] 0xc00017f000 0xc000b949a0} -2022/02/28 12:10:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:14 [DEBUG] Exit from do method -2022/02/28 12:10:14 [DEBUG] 621c6e481d000065644fba3c: Read finished successfully -2022/02/28 12:10:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:10:14 [DEBUG] acctest_jew33: Beginning Read -2022/02/28 12:10:14 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:14 [DEBUG] Begin Injection -2022/02/28 12:10:14 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000375dc0 1362 [] false false map[] 0xc000d22c00 0xc000b949a0} -2022/02/28 12:10:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:14 [DEBUG] Exit from do method -2022/02/28 12:10:14 currentvrfname acctest_jew33 -2022/02/28 12:10:14 found correct vrfname -2022/02/28 12:10:14 [DEBUG] acctest_jew33: Read finished successfully -2022/02/28 12:10:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:10:14 [DEBUG] acctest_jew33: Beginning Read -2022/02/28 12:10:14 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:14 [DEBUG] Begin Injection -2022/02/28 12:10:14 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000804240 1362 [] false false map[] 0xc00017f300 0xc000b949a0} -2022/02/28 12:10:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:14 [DEBUG] Exit from do method -2022/02/28 12:10:14 [DEBUG] acctest_jew33: Read finished successfully -2022/02/28 12:10:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:14 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Beginning Read -2022/02/28 12:10:14 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:14 [DEBUG] Begin Injection -2022/02/28 12:10:14 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000804080 1362 [] false false map[] 0xc001260300 0xc000b949a0} -2022/02/28 12:10:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:15 [DEBUG] Exit from do method -2022/02/28 12:10:15 [DEBUG] /schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33/dhcpLabels/acctest_jew33: Read finished successfully -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:15 [DEBUG] : Beginning Read -2022/02/28 12:10:15 HTTP request GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:15 [DEBUG] Begin Injection -2022/02/28 12:10:15 HTTP request after injection GET mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c -2022/02/28 12:10:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000aaaa80 1362 [] false false map[] 0xc000420100 0xc000b949a0} -2022/02/28 12:10:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c6e481d000065644fba3c {"id":"621c6e481d000065644fba3c","displayName":"acctest_qexpv","description":"","templates":[{"name":"acctest_qexpv","displayName":"acctest_qexpv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_jew33","displayName":"acctest_jew33","vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_jew33","displayName":"acctest_jew33","bdRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/bds/acctest_jew33","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c6e481d000065644fba3c/templates/acctest_qexpv/vrfs/acctest_jew33","dhcpLabel":{"name":"acctest_jew33","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_jew33","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:10:15 [DEBUG] Exit from do method -2022/02/28 12:10:15 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 12:10:15 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 12:10:15 [DEBUG] New state was assigned lineage "4d87ce93-bbc9-c318-42ec-7f4cf794a824" -2022/02/28 12:10:15 [DEBUG] Test: Executing step 6 -2022/02/28 12:10:15 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:15 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:10:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:10:15 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:10:15 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "jpgie" is not expected here. -2022/02/28 12:10:15 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "jpgie" is not expected here. -2022/02/28 12:10:15 [DEBUG] Test: Executing step 7 -2022/02/28 12:10:15 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:15 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:10:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:10:15 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:10:15 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:15 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:10:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:15 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:10:15 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:15 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:15 [DEBUG] : Beginning Read -2022/02/28 12:10:15 HTTP request GET mso/api/v1/tenants -2022/02/28 12:10:15 [DEBUG] Begin Injection -2022/02/28 12:10:15 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:10:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:10:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:10:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e7980 5563 [] false false map[] 0xc000d26c00 0xc000b949a0} -2022/02/28 12:10:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:10:15 [DEBUG] Exit from do method -2022/02/28 12:10:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:10:15 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:15 [DEBUG] New state was assigned lineage "f0b13fcd-03b5-4692-b88c-6e2d67078e0d" -2022/02/28 12:10:15 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:10:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:15 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:15 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:10:15 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:10:15 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:10:15 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:10:15 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:15 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:15 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:15 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_jew33" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_jew33" - schema_id: "" => "" - template_name: "" => "acctest_qexpv" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_jew33" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_qexpv" - template_name: "" => "acctest_qexpv" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_jew33" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_jew33" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_qexpv" - vrf_name: "" => "acctest_jew33" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_jew33" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_jew33" - schema_id: "" => "" - template_name: "" => "acctest_qexpv" - version: "" => "1" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_jew33" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_jew33" - schema_id: "" => "" - template: "" => "acctest_qexpv" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:10:15 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:10:15 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:10:15 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:10:15 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:15 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:10:15 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:10:15 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state)] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:10:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:15 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:10:15 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:10:15 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:10:15 [DEBUG] Schema: Beginning Creation -2022/02/28 12:10:15 [DEBUG] : Beginning Create -2022/02/28 12:10:15 HTTP request POST mso/api/v1/schemas -2022/02/28 12:10:15 [DEBUG] Begin Injection -2022/02/28 12:10:15 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:10:15 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:10:15 [DEBUG] Begin Injection -2022/02/28 12:10:15 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:10:15 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug] Content-Type:[application/json]] {{"displayName":"acctest_qexpv","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_qexpv","externalEpgs":[],"filters":[],"name":"acctest_qexpv","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x1297ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:10:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:10:15 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMxNjA2LCJpYXQiOjE2NDYwMzA0MDYsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiNExvYzlQMzVZVEdHT1FIUjN3aFpjVDRrIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.jDvwMQfzHeWGvcKoeuJV_p-h0yzCcgRjiU_fetbdLFDGScf-RLxT16kC-SKdGS13IwN7GzwA2yrHDleTn7P3cutPWGj18N3cDhHC6U0utgLEg4ZTF0Ake3ue42cAK8HFJlqmcGXNYgfExZsz6MOK9l8WK3iUh5X9AAGbNYuAkUm1zhR452m2adP9LA_bIK4eA6_3-BlfHqgnM6_NNPZl3ol1T94FqPuVdFh6cvQ4RF312SKJp3pwna6iF_-q135y_yb9FH1ObolHStGfHv34Kd3zKfEkyfznpDm1J1PazXyZfV69S_dH-8EBgc0awYh_otiTvIM56Cn-g4ORGrziug] Content-Type:[application/json]] {{"desc":"","name":"acctest_jew33","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x1297ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:10:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:10:16 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:10:16 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[122] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:15 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000f20c0 122 [] false false map[] 0xc00017f500 0xc000b949a0} -2022/02/28 12:10:16 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"code":140,"message":"Duplicate Resource: displayName","info":{"displayName":["Schema: 'acctest_qexpv' already exists"]}} -2022/02/28 12:10:16 [DEBUG] Exit from do method -2022/02/28 12:10:16 [DEBUG] mso_schema.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_qexpv' already exists"]} -2022/02/28 12:10:16 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_qexpv' already exists"]} -2022/02/28 12:10:16 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: displayName"{"displayName":["Schema: 'acctest_qexpv' already exists"]} -2022/02/28 12:10:16 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:10:16 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[108] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:15 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001114040 108 [] false false map[] 0xc000c9a900 0xc000b94840} -2022/02/28 12:10:16 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":140,"message":"Duplicate Resource: name","info":{"name":["Policy: 'acctest_jew33' already exists"]}} -2022/02/28 12:10:16 [DEBUG] Exit from do method -2022/02/28 12:10:16 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: name"{"name":["Policy: 'acctest_jew33' already exists"]} -2022/02/28 12:10:16 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_jew33' already exists"]} -2022/02/28 12:10:16 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: name"{"name":["Policy: 'acctest_jew33' already exists"]} -2022/02/28 12:10:16 [DEBUG] New state was assigned lineage "a81f966b-1e69-aea7-3348-38115fa468f8" -2022/02/28 12:10:16 [WARN] Test: Executing destroy step -2022/02/28 12:10:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:10:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:16 [DEBUG] : Beginning Read -2022/02/28 12:10:16 HTTP request GET mso/api/v1/tenants -2022/02/28 12:10:16 [DEBUG] Begin Injection -2022/02/28 12:10:16 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:10:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:10:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:10:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d700c0 5563 [] false false map[] 0xc00017e800 0xc000b94840} -2022/02/28 12:10:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:10:16 [DEBUG] Exit from do method -2022/02/28 12:10:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:10:16 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:10:16 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:10:16 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:10:16 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:10:16 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:16 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:16 [DEBUG] New state was assigned lineage "f1a5668a-84fc-8cc0-1166-40d21702a711" -2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:10:16 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:10:16 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 12:10:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:16 [DEBUG] New state was assigned lineage "9c9acf6e-d4ff-9357-7288-3171ca8fa12f" -2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:10:16 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:10:16 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:16 [DEBUG] : Beginning Read -2022/02/28 12:10:16 HTTP request GET mso/api/v1/tenants -2022/02/28 12:10:16 [DEBUG] Begin Injection -2022/02/28 12:10:16 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:10:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:10:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:10:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:40:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000804ac0 5563 [] false false map[] 0xc00017e500 0xc000b94840} -2022/02/28 12:10:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:10:16 [DEBUG] Exit from do method -2022/02/28 12:10:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:10:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:10:16 [DEBUG] New state was assigned lineage "9bf978ed-6cdc-c3c8-22b8-6af2c86f7a82" -2022/02/28 12:10:16 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:10:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:10:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:10:16 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:17:36 [DEBUG] Test: Executing step 0 -2022/02/28 12:17:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:36 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:36 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:17:36 [DEBUG] Test: Executing step 1 -2022/02/28 12:17:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:36 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:36 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:17:36 [DEBUG] Test: Executing step 2 -2022/02/28 12:17:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:36 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:36 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:17:36 [DEBUG] Test: Executing step 3 -2022/02/28 12:17:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:36 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:17:36 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:17:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:17:36 [DEBUG] Test: Executing step 4 -2022/02/28 12:17:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:36 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:17:36 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:17:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:36 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:36 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:17:36 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:36 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:17:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:36 [DEBUG] : Beginning Read -2022/02/28 12:17:36 HTTP request GET mso/api/v1/tenants -2022/02/28 12:17:36 [DEBUG] Begin Injection -2022/02/28 12:17:36 HTTP request POST /login -2022/02/28 12:17:36 HTTP request after injection POST /login -2022/02/28 12:17:36 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 12:17:38 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 12:17:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:38 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMDU4LCJpYXQiOjE2NDYwMzA4NTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoicGRKRDRKVENKc2YySDZUS3dYcXRtPVlzIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gkv0Ewal5XfmcG5B00ldgZn0-TfLRhdxneP6GhUPoQNmvFwz6iJoY6Qmmf7PQRTH0q34t93d5G_IFlrcz3LAvTSqxSe-P93NU4C1mKm3YG5OA9I9Lbrk80dN-KE5SwvCX3IfUJy4qTlluPpKgh8Uvh9G_HyO6KMKVao6a_oyXWTpFQldF6Dw58_lKUnEzXIrSXzjm-5uoq99X-wX7-AWpREUc3tMaFMTmMM19r6GIVCIw6yLZ69hZGDCWX0GQ0X9cwH4TuQZL5LpAcqSKy8AjYjcvZNgUuTicwKHY_KwCRtRTBcdMmljsTIAxxdXKtp0ZIlczj12obrvQ_tSpFOejQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000a51f80 -1 [chunked] false false map[] 0xc000a56b00 0xc00101c000} -2022/02/28 12:17:38 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMDU4LCJpYXQiOjE2NDYwMzA4NTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoicGRKRDRKVENKc2YySDZUS3dYcXRtPVlzIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gkv0Ewal5XfmcG5B00ldgZn0-TfLRhdxneP6GhUPoQNmvFwz6iJoY6Qmmf7PQRTH0q34t93d5G_IFlrcz3LAvTSqxSe-P93NU4C1mKm3YG5OA9I9Lbrk80dN-KE5SwvCX3IfUJy4qTlluPpKgh8Uvh9G_HyO6KMKVao6a_oyXWTpFQldF6Dw58_lKUnEzXIrSXzjm-5uoq99X-wX7-AWpREUc3tMaFMTmMM19r6GIVCIw6yLZ69hZGDCWX0GQ0X9cwH4TuQZL5LpAcqSKy8AjYjcvZNgUuTicwKHY_KwCRtRTBcdMmljsTIAxxdXKtp0ZIlczj12obrvQ_tSpFOejQ","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMDU4LCJpYXQiOjE2NDYwMzA4NTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoicGRKRDRKVENKc2YySDZUS3dYcXRtPVlzIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gkv0Ewal5XfmcG5B00ldgZn0-TfLRhdxneP6GhUPoQNmvFwz6iJoY6Qmmf7PQRTH0q34t93d5G_IFlrcz3LAvTSqxSe-P93NU4C1mKm3YG5OA9I9Lbrk80dN-KE5SwvCX3IfUJy4qTlluPpKgh8Uvh9G_HyO6KMKVao6a_oyXWTpFQldF6Dw58_lKUnEzXIrSXzjm-5uoq99X-wX7-AWpREUc3tMaFMTmMM19r6GIVCIw6yLZ69hZGDCWX0GQ0X9cwH4TuQZL5LpAcqSKy8AjYjcvZNgUuTicwKHY_KwCRtRTBcdMmljsTIAxxdXKtp0ZIlczj12obrvQ_tSpFOejQ"} -2022/02/28 12:17:38 [DEBUG] Exit from do method -2022/02/28 12:17:38 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:17:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:17:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:17:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090880 5563 [] false false map[] 0xc000a56a00 0xc00101c000} -2022/02/28 12:17:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:17:38 [DEBUG] Exit from do method -2022/02/28 12:17:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:17:38 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:38 [DEBUG] New state was assigned lineage "1b820bb7-6cc9-c9fb-c7a5-cc109675de29" -2022/02/28 12:17:38 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:17:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:38 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:38 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:17:38 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:17:38 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:17:38 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:17:38 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:38 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:38 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:38 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_rvzvk_invalid" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_rvzvk" - schema_id: "" => "" - template_name: "" => "acctest_6sh3w" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_rvzvk" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_6sh3w" - template_name: "" => "acctest_6sh3w" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_rvzvk" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_rvzvk" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_6sh3w" - vrf_name: "" => "acctest_rvzvk" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_rvzvk" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_rvzvk" - schema_id: "" => "" - template_name: "" => "acctest_6sh3w" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_rvzvk" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_rvzvk" - schema_id: "" => "" - template: "" => "acctest_6sh3w" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:17:38 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:17:38 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:17:38 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:17:38 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:17:38 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:17:38 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:17:38 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:17:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:17:38 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:17:38 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:17:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:17:38 [DEBUG] Schema: Beginning Creation -2022/02/28 12:17:38 [DEBUG] : Beginning Create -2022/02/28 12:17:38 HTTP request POST mso/api/v1/schemas -2022/02/28 12:17:38 [DEBUG] Begin Injection -2022/02/28 12:17:38 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:17:38 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMDU4LCJpYXQiOjE2NDYwMzA4NTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoicGRKRDRKVENKc2YySDZUS3dYcXRtPVlzIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gkv0Ewal5XfmcG5B00ldgZn0-TfLRhdxneP6GhUPoQNmvFwz6iJoY6Qmmf7PQRTH0q34t93d5G_IFlrcz3LAvTSqxSe-P93NU4C1mKm3YG5OA9I9Lbrk80dN-KE5SwvCX3IfUJy4qTlluPpKgh8Uvh9G_HyO6KMKVao6a_oyXWTpFQldF6Dw58_lKUnEzXIrSXzjm-5uoq99X-wX7-AWpREUc3tMaFMTmMM19r6GIVCIw6yLZ69hZGDCWX0GQ0X9cwH4TuQZL5LpAcqSKy8AjYjcvZNgUuTicwKHY_KwCRtRTBcdMmljsTIAxxdXKtp0ZIlczj12obrvQ_tSpFOejQ] Content-Type:[application/json]] {{"displayName":"acctest_6sh3w","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_6sh3w","externalEpgs":[],"filters":[],"name":"acctest_6sh3w","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0xd27ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} -2022/02/28 12:17:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:17:38 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:17:38 [DEBUG] Begin Injection -2022/02/28 12:17:38 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:17:38 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMDU4LCJpYXQiOjE2NDYwMzA4NTgsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoicGRKRDRKVENKc2YySDZUS3dYcXRtPVlzIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gkv0Ewal5XfmcG5B00ldgZn0-TfLRhdxneP6GhUPoQNmvFwz6iJoY6Qmmf7PQRTH0q34t93d5G_IFlrcz3LAvTSqxSe-P93NU4C1mKm3YG5OA9I9Lbrk80dN-KE5SwvCX3IfUJy4qTlluPpKgh8Uvh9G_HyO6KMKVao6a_oyXWTpFQldF6Dw58_lKUnEzXIrSXzjm-5uoq99X-wX7-AWpREUc3tMaFMTmMM19r6GIVCIw6yLZ69hZGDCWX0GQ0X9cwH4TuQZL5LpAcqSKy8AjYjcvZNgUuTicwKHY_KwCRtRTBcdMmljsTIAxxdXKtp0ZIlczj12obrvQ_tSpFOejQ] Content-Type:[application/json]] {{"desc":"","name":"acctest_rvzvk","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0xd27ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0001180c8} -2022/02/28 12:17:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:17:39 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:17:39 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c700a1d0000a1644fba41] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091300 400 [] false false map[] 0xc000424a00 0xc00101c000} -2022/02/28 12:17:39 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:17:39 [DEBUG] Exit from do method -2022/02/28 12:17:39 [DEBUG] 621c700a1d0000a1644fba41: Schema Creation finished successfully -2022/02/28 12:17:39 [DEBUG] 621c700a1d0000a1644fba41: Beginning Read -2022/02/28 12:17:39 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:39 [DEBUG] Begin Injection -2022/02/28 12:17:39 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:39 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:17:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c9c0 160 [] false false map[] 0xc000952300 0xc00101c000} -2022/02/28 12:17:39 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c700b1b00009f0bfd0c3d","name":"acctest_rvzvk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:17:39 [DEBUG] Exit from do method -2022/02/28 12:17:39 [DEBUG] 621c700b1b00009f0bfd0c3d: Creation finished successfully -2022/02/28 12:17:39 [DEBUG] 621c700b1b00009f0bfd0c3d: Beginning Read -2022/02/28 12:17:39 id: 621c700b1b00009f0bfd0c3d -2022/02/28 12:17:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:39 [DEBUG] Begin Injection -2022/02/28 12:17:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048cb40 400 [] false false map[] 0xc000516700 0xc00101c000} -2022/02/28 12:17:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:17:39 [DEBUG] Exit from do method -2022/02/28 12:17:39 [DEBUG] 621c700a1d0000a1644fba41: Read finished successfully -2022/02/28 12:17:39 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:17:39 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:17:39 HTTP request PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:39 [DEBUG] Begin Injection -2022/02/28 12:17:39 HTTP request after injection PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c914c0 160 [] false false map[] 0xc000516800 0xc000a648f0} -2022/02/28 12:17:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d {"id":"621c700b1b00009f0bfd0c3d","name":"acctest_rvzvk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:17:40 [DEBUG] Exit from do method -2022/02/28 12:17:40 [DEBUG] 621c700b1b00009f0bfd0c3d: Read finished successfully -2022/02/28 12:17:40 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0005f2300 0xc00101c000} -2022/02/28 12:17:40 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:40 [DEBUG] acctest_rvzvk: Creation finished successfully -2022/02/28 12:17:40 [DEBUG] acctest_rvzvk: Beginning Read -2022/02/28 12:17:40 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:40 [DEBUG] Begin Injection -2022/02/28 12:17:40 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c91980 768 [] false false map[] 0xc000516200 0xc00101c0b0} -2022/02/28 12:17:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 12:17:40 [DEBUG] Exit from do method -2022/02/28 12:17:40 currentvrfname acctest_rvzvk -2022/02/28 12:17:40 found correct vrfname -2022/02/28 12:17:40 [DEBUG] acctest_rvzvk: Read finished successfully -2022/02/28 12:17:40 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:17:40 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:17:40 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:17:40 HTTP request PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:40 [DEBUG] Begin Injection -2022/02/28 12:17:40 HTTP request after injection PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:40 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000425000 0xc00101c160} -2022/02/28 12:17:40 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:40 [DEBUG] : Beginning Read -2022/02/28 12:17:40 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:40 [DEBUG] Begin Injection -2022/02/28 12:17:40 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090940 1277 [] false false map[] 0xc0005f2500 0xc00101c160} -2022/02/28 12:17:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:17:41 [DEBUG] Exit from do method -2022/02/28 12:17:41 [DEBUG] acctest_rvzvk: Read finished successfully -2022/02/28 12:17:41 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:17:41 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:17:41 HTTP request PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:41 [DEBUG] Begin Injection -2022/02/28 12:17:41 HTTP request after injection PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:41 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a56400 0xc00101c160} -2022/02/28 12:17:41 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:41 [DEBUG] Creation Complete -2022/02/28 12:17:41 [DEBUG] : Beginning Read -2022/02/28 12:17:41 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:41 [DEBUG] Begin Injection -2022/02/28 12:17:41 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c91d00 1362 [] false false map[] 0xc000952200 0xc00101c160} -2022/02/28 12:17:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:41 [DEBUG] Exit from do method -2022/02/28 12:17:41 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully -2022/02/28 12:17:42 [DEBUG] : Beginning Read -2022/02/28 12:17:42 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:42 [DEBUG] Begin Injection -2022/02/28 12:17:42 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c040 1362 [] false false map[] 0xc000952400 0xc00101c160} -2022/02/28 12:17:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:42 [DEBUG] Exit from do method -2022/02/28 12:17:42 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 12:17:42 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 12:17:42 [DEBUG] New state was assigned lineage "958016f9-e715-e765-15fd-083aaf25989a" -2022/02/28 12:17:42 [DEBUG] Test: Executing step 5 -2022/02/28 12:17:42 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:42 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:17:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:42 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:17:42 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "eylqt" is not expected here. -2022/02/28 12:17:42 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "eylqt" is not expected here. -2022/02/28 12:17:42 [DEBUG] Test: Executing step 6 -2022/02/28 12:17:42 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:42 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:17:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:42 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:17:42 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:42 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:17:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:17:42 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:42 [DEBUG] : Beginning Read -2022/02/28 12:17:42 HTTP request GET mso/api/v1/tenants -2022/02/28 12:17:42 [DEBUG] Begin Injection -2022/02/28 12:17:42 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:17:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:17:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:17:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d1cec0 5563 [] false false map[] 0xc000e24400 0xc00101c160} -2022/02/28 12:17:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:17:42 [DEBUG] Exit from do method -2022/02/28 12:17:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:17:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:17:42 [DEBUG] 621c700a1d0000a1644fba41: Beginning Read -2022/02/28 12:17:42 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:42 [DEBUG] Begin Injection -2022/02/28 12:17:42 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:42 [DEBUG] 621c700b1b00009f0bfd0c3d: Beginning Read -2022/02/28 12:17:42 id: 621c700b1b00009f0bfd0c3d -2022/02/28 12:17:42 HTTP request GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:42 [DEBUG] Begin Injection -2022/02/28 12:17:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb0040 160 [] false false map[] 0xc0011a8c00 0xc000a648f0} -2022/02/28 12:17:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d {"id":"621c700b1b00009f0bfd0c3d","name":"acctest_rvzvk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:17:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000428340 1362 [] false false map[] 0xc000e24b00 0xc00101c160} -2022/02/28 12:17:43 [DEBUG] Exit from do method -2022/02/28 12:17:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:43 [DEBUG] Exit from do method -2022/02/28 12:17:43 [DEBUG] 621c700a1d0000a1644fba41: Read finished successfully -2022/02/28 12:17:43 [DEBUG] 621c700b1b00009f0bfd0c3d: Read finished successfully -2022/02/28 12:17:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:17:43 [DEBUG] acctest_rvzvk: Beginning Read -2022/02/28 12:17:43 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:43 [DEBUG] Begin Injection -2022/02/28 12:17:43 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000428780 1362 [] false false map[] 0xc000516200 0xc00101c160} -2022/02/28 12:17:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:43 [DEBUG] Exit from do method -2022/02/28 12:17:43 currentvrfname acctest_rvzvk -2022/02/28 12:17:43 found correct vrfname -2022/02/28 12:17:43 [DEBUG] acctest_rvzvk: Read finished successfully -2022/02/28 12:17:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:17:43 [DEBUG] acctest_rvzvk: Beginning Read -2022/02/28 12:17:43 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:43 [DEBUG] Begin Injection -2022/02/28 12:17:43 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ea4240 1362 [] false false map[] 0xc0011a8500 0xc00101c160} -2022/02/28 12:17:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:43 [DEBUG] Exit from do method -2022/02/28 12:17:43 [DEBUG] acctest_rvzvk: Read finished successfully -2022/02/28 12:17:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:43 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Beginning Read -2022/02/28 12:17:43 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:43 [DEBUG] Begin Injection -2022/02/28 12:17:43 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004297c0 1362 [] false false map[] 0xc000952400 0xc00101c160} -2022/02/28 12:17:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:44 [DEBUG] Exit from do method -2022/02/28 12:17:44 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully -2022/02/28 12:17:44 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:44 [DEBUG] : Beginning Read -2022/02/28 12:17:44 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:44 [DEBUG] Begin Injection -2022/02/28 12:17:44 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c900 1362 [] false false map[] 0xc0011a8700 0xc00101c160} -2022/02/28 12:17:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:44 [DEBUG] Exit from do method -2022/02/28 12:17:44 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully -2022/02/28 12:17:44 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:44 [DEBUG] New state was assigned lineage "01655d57-d1dd-a3ee-2cfe-ad0df7bc1a73" -2022/02/28 12:17:44 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:17:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:44 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:44 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:44 [WARN] Test: Step plan: DIFF: - - - -STATE: - -data.mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk - provider = provider.mso - bd_name = acctest_rvzvk - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_rvzvk - schema_id = 621c700a1d0000a1644fba41 - template_name = acctest_6sh3w - version = 0 - - Dependencies: - mso_schema_template_bd_dhcp_policy.test -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c700b1b00009f0bfd0c3d - provider = provider.mso - description = - name = acctest_rvzvk - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c700a1d0000a1644fba41 - provider = provider.mso - name = acctest_6sh3w - template_name = acctest_6sh3w - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_rvzvk - provider = provider.mso - dhcp_policy.name = acctest_rvzvk - dhcp_policy.version = 0 - display_name = acctest_rvzvk - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_rvzvk - schema_id = 621c700a1d0000a1644fba41 - template_name = acctest_6sh3w - vrf_name = acctest_rvzvk - vrf_schema_id = 621c700a1d0000a1644fba41 - vrf_template_name = acctest_6sh3w - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk - provider = provider.mso - bd_name = acctest_rvzvk - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_rvzvk - schema_id = 621c700a1d0000a1644fba41 - template_name = acctest_6sh3w - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_rvzvk - provider = provider.mso - display_name = acctest_rvzvk - layer3_multicast = false - name = acctest_rvzvk - schema_id = 621c700a1d0000a1644fba41 - template = acctest_6sh3w - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:17:44 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:17:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:17:44 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:17:44 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:44 [DEBUG] New state was assigned lineage "2243b86b-9bd9-ada2-4464-65dc38948314" -2022/02/28 12:17:44 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:44 [DEBUG] Begin Injection -2022/02/28 12:17:44 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107a1c0 1362 [] false false map[] 0xc0011ee400 0xc00101c160} -2022/02/28 12:17:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:44 [DEBUG] Exit from do method -2022/02/28 12:17:44 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:17:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:44 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:44 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:44 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:17:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:44 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:17:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:44 [DEBUG] : Beginning Read -2022/02/28 12:17:44 HTTP request GET mso/api/v1/tenants -2022/02/28 12:17:44 [DEBUG] Begin Injection -2022/02/28 12:17:44 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:17:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:17:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:17:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb0040 5563 [] false false map[] 0xc000516f00 0xc00101c160} -2022/02/28 12:17:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:17:45 [DEBUG] Exit from do method -2022/02/28 12:17:45 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:17:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:17:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:17:45 [DEBUG] 621c700a1d0000a1644fba41: Beginning Read -2022/02/28 12:17:45 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:45 [DEBUG] Begin Injection -2022/02/28 12:17:45 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:45 [DEBUG] 621c700b1b00009f0bfd0c3d: Beginning Read -2022/02/28 12:17:45 id: 621c700b1b00009f0bfd0c3d -2022/02/28 12:17:45 HTTP request GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:45 [DEBUG] Begin Injection -2022/02/28 12:17:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb1c00 1362 [] false false map[] 0xc00145c600 0xc00101c160} -2022/02/28 12:17:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:45 [DEBUG] Exit from do method -2022/02/28 12:17:45 [DEBUG] 621c700a1d0000a1644fba41: Read finished successfully -2022/02/28 12:17:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:17:45 [DEBUG] acctest_rvzvk: Beginning Read -2022/02/28 12:17:45 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:45 [DEBUG] Begin Injection -2022/02/28 12:17:45 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ea4100 160 [] false false map[] 0xc000516300 0xc000a648f0} -2022/02/28 12:17:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d {"id":"621c700b1b00009f0bfd0c3d","name":"acctest_rvzvk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:17:45 [DEBUG] Exit from do method -2022/02/28 12:17:45 [DEBUG] 621c700b1b00009f0bfd0c3d: Read finished successfully -2022/02/28 12:17:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000428dc0 1362 [] false false map[] 0xc00145cb00 0xc00101c160} -2022/02/28 12:17:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:45 [DEBUG] Exit from do method -2022/02/28 12:17:45 currentvrfname acctest_rvzvk -2022/02/28 12:17:45 found correct vrfname -2022/02/28 12:17:45 [DEBUG] acctest_rvzvk: Read finished successfully -2022/02/28 12:17:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:17:45 [DEBUG] acctest_rvzvk: Beginning Read -2022/02/28 12:17:45 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:45 [DEBUG] Begin Injection -2022/02/28 12:17:45 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c200 1362 [] false false map[] 0xc000517100 0xc00101c160} -2022/02/28 12:17:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:46 [DEBUG] Exit from do method -2022/02/28 12:17:46 [DEBUG] acctest_rvzvk: Read finished successfully -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:46 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Beginning Read -2022/02/28 12:17:46 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:46 [DEBUG] Begin Injection -2022/02/28 12:17:46 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048cc00 1362 [] false false map[] 0xc000517600 0xc00101c160} -2022/02/28 12:17:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:46 [DEBUG] Exit from do method -2022/02/28 12:17:46 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:46 [DEBUG] : Beginning Read -2022/02/28 12:17:46 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:46 [DEBUG] Begin Injection -2022/02/28 12:17:46 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048dbc0 1362 [] false false map[] 0xc000d2a300 0xc00101c160} -2022/02/28 12:17:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:46 [DEBUG] Exit from do method -2022/02/28 12:17:46 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully -2022/02/28 12:17:46 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:46 [DEBUG] New state was assigned lineage "09930b12-fe00-2103-6fc8-887fb41e0f89" -2022/02/28 12:17:46 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:17:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:46 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:46 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:46 [WARN] Test: Executing destroy step -2022/02/28 12:17:46 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:46 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:17:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:46 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:17:46 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:46 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:17:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:17:46 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:17:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:46 [DEBUG] : Beginning Read -2022/02/28 12:17:46 HTTP request GET mso/api/v1/tenants -2022/02/28 12:17:46 [DEBUG] Begin Injection -2022/02/28 12:17:46 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:17:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:17:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:17:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048cb40 5563 [] false false map[] 0xc00138c300 0xc00101c160} -2022/02/28 12:17:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:17:47 [DEBUG] Exit from do method -2022/02/28 12:17:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:17:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:17:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:17:47 [DEBUG] 621c700a1d0000a1644fba41: Beginning Read -2022/02/28 12:17:47 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:47 [DEBUG] Begin Injection -2022/02/28 12:17:47 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:47 [DEBUG] 621c700b1b00009f0bfd0c3d: Beginning Read -2022/02/28 12:17:47 id: 621c700b1b00009f0bfd0c3d -2022/02/28 12:17:47 HTTP request GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:47 [DEBUG] Begin Injection -2022/02/28 12:17:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ea5640 160 [] false false map[] 0xc001538700 0xc000a648f0} -2022/02/28 12:17:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d {"id":"621c700b1b00009f0bfd0c3d","name":"acctest_rvzvk","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:17:47 [DEBUG] Exit from do method -2022/02/28 12:17:47 [DEBUG] 621c700b1b00009f0bfd0c3d: Read finished successfully -2022/02/28 12:17:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048d480 1362 [] false false map[] 0xc00138c800 0xc00101c160} -2022/02/28 12:17:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:47 [DEBUG] Exit from do method -2022/02/28 12:17:47 [DEBUG] 621c700a1d0000a1644fba41: Read finished successfully -2022/02/28 12:17:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:17:47 [DEBUG] acctest_rvzvk: Beginning Read -2022/02/28 12:17:47 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:47 [DEBUG] Begin Injection -2022/02/28 12:17:47 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb0cc0 1362 [] false false map[] 0xc000860a00 0xc00101c160} -2022/02/28 12:17:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:47 [DEBUG] Exit from do method -2022/02/28 12:17:47 currentvrfname acctest_rvzvk -2022/02/28 12:17:47 found correct vrfname -2022/02/28 12:17:47 [DEBUG] acctest_rvzvk: Read finished successfully -2022/02/28 12:17:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:17:47 [DEBUG] acctest_rvzvk: Beginning Read -2022/02/28 12:17:47 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:47 [DEBUG] Begin Injection -2022/02/28 12:17:47 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c040 1362 [] false false map[] 0xc00138c900 0xc00101c160} -2022/02/28 12:17:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:48 [DEBUG] Exit from do method -2022/02/28 12:17:48 [DEBUG] acctest_rvzvk: Read finished successfully -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:48 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Beginning Read -2022/02/28 12:17:48 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:48 [DEBUG] Begin Injection -2022/02/28 12:17:48 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ea4e80 1362 [] false false map[] 0xc00138c400 0xc00101c160} -2022/02/28 12:17:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:48 [DEBUG] Exit from do method -2022/02/28 12:17:48 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:48 [DEBUG] : Beginning Read -2022/02/28 12:17:48 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:48 [DEBUG] Begin Injection -2022/02/28 12:17:48 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048cac0 1362 [] false false map[] 0xc00138ca00 0xc00101c160} -2022/02/28 12:17:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"id":"621c700a1d0000a1644fba41","displayName":"acctest_6sh3w","description":"","templates":[{"name":"acctest_6sh3w","displayName":"acctest_6sh3w","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_rvzvk","displayName":"acctest_rvzvk","bdRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/vrfs/acctest_rvzvk","dhcpLabel":{"name":"acctest_rvzvk","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_rvzvk","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:17:48 [DEBUG] Exit from do method -2022/02/28 12:17:48 [DEBUG] /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk: Read finished successfully -2022/02/28 12:17:48 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:48 [DEBUG] New state was assigned lineage "63c7ca17-a0b2-0d85-791f-028a40f945d0" -2022/02/28 12:17:48 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:17:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:17:48 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:17:48 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_rvzvk" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk" => "" - name: "acctest_rvzvk" => "" - schema_id: "621c700a1d0000a1644fba41" => "" - template_name: "acctest_6sh3w" => "" - version: "0" => "" -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c700b1b00009f0bfd0c3d" => "" - name: "acctest_rvzvk" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c700a1d0000a1644fba41" => "" - name: "acctest_6sh3w" => "" - template_name: "acctest_6sh3w" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_rvzvk" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_rvzvk" => "" - id: "acctest_rvzvk" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_rvzvk" => "" - schema_id: "621c700a1d0000a1644fba41" => "" - template_name: "acctest_6sh3w" => "" - vrf_name: "acctest_rvzvk" => "" - vrf_schema_id: "621c700a1d0000a1644fba41" => "" - vrf_template_name: "acctest_6sh3w" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_rvzvk" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk" => "" - name: "acctest_rvzvk" => "" - schema_id: "621c700a1d0000a1644fba41" => "" - template_name: "acctest_6sh3w" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_rvzvk" => "" - id: "acctest_rvzvk" => "" - layer3_multicast: "false" => "" - name: "acctest_rvzvk" => "" - schema_id: "621c700a1d0000a1644fba41" => "" - template: "acctest_6sh3w" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk - provider = provider.mso - bd_name = acctest_rvzvk - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_rvzvk - schema_id = 621c700a1d0000a1644fba41 - template_name = acctest_6sh3w - version = 0 - - Dependencies: - mso_schema_template_bd_dhcp_policy.test -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c700b1b00009f0bfd0c3d - provider = provider.mso - description = - name = acctest_rvzvk - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c700a1d0000a1644fba41 - provider = provider.mso - name = acctest_6sh3w - template_name = acctest_6sh3w - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_rvzvk - provider = provider.mso - dhcp_policy.name = acctest_rvzvk - dhcp_policy.version = 0 - display_name = acctest_rvzvk - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_rvzvk - schema_id = 621c700a1d0000a1644fba41 - template_name = acctest_6sh3w - vrf_name = acctest_rvzvk - vrf_schema_id = 621c700a1d0000a1644fba41 - vrf_template_name = acctest_6sh3w - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c700a1d0000a1644fba41/templates/acctest_6sh3w/bds/acctest_rvzvk/dhcpLabels/acctest_rvzvk - provider = provider.mso - bd_name = acctest_rvzvk - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_rvzvk - schema_id = 621c700a1d0000a1644fba41 - template_name = acctest_6sh3w - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_rvzvk - provider = provider.mso - display_name = acctest_rvzvk - layer3_multicast = false - name = acctest_rvzvk - schema_id = 621c700a1d0000a1644fba41 - template = acctest_6sh3w - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:17:48 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:17:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:17:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 12:17:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:17:48 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 12:17:48 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 12:17:48 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 12:17:48 [DEBUG] Template BD: Beginning Update -2022/02/28 12:17:48 HTTP request PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:48 [DEBUG] Begin Injection -2022/02/28 12:17:48 HTTP request after injection PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:49 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001424100 0xc00101c160} -2022/02/28 12:17:49 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:49 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 12:17:49 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 12:17:49 [DEBUG] 621c700b1b00009f0bfd0c3d: Beginning Read -2022/02/28 12:17:49 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:49 [DEBUG] Begin Injection -2022/02/28 12:17:49 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:49 [DEBUG] Template BD: Beginning Update -2022/02/28 12:17:49 HTTP request PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:49 [DEBUG] Begin Injection -2022/02/28 12:17:49 HTTP request after injection PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:49 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00100c100 0xc00101c160} -2022/02/28 12:17:49 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c700b1b00009f0bfd0c3d -2022/02/28 12:17:49 [DEBUG] : Read finished successfully -2022/02/28 12:17:49 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001424800 0xc000a648f0} -2022/02/28 12:17:49 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:49 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 12:17:49 [DEBUG] acctest_rvzvk: Beginning Destroy -2022/02/28 12:17:49 HTTP request PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:49 [DEBUG] Begin Injection -2022/02/28 12:17:49 HTTP request after injection PATCH mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:50 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00110a700 0xc000a648f0} -2022/02/28 12:17:50 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41?validate=false -2022/02/28 12:17:50 [DEBUG] acctest_rvzvk: Destroy finished successfully -2022/02/28 12:17:50 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 12:17:50 [DEBUG] 621c700a1d0000a1644fba41: Beginning Destroy -2022/02/28 12:17:50 HTTP request DELETE mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:50 [DEBUG] Begin Injection -2022/02/28 12:17:50 HTTP request after injection DELETE mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:50 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:47:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000952800 0xc000a648f0} -2022/02/28 12:17:50 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:50 [DEBUG] 621c700a1d0000a1644fba41: Destroy finished successfully -2022/02/28 12:17:50 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:50 [DEBUG] New state was assigned lineage "f173996c-4a24-2c51-81e4-4c7e1676ea5c" -2022/02/28 12:17:50 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:50 [DEBUG] Begin Injection -2022/02/28 12:17:50 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:50 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:50 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb0540 39 [] false false map[] 0xc001424000 0xc000a648f0} -2022/02/28 12:17:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"code":404,"message":"Item not found"} -2022/02/28 12:17:50 [DEBUG] Exit from do method -2022/02/28 12:17:50 HTTP request GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:50 [DEBUG] Begin Injection -2022/02/28 12:17:50 HTTP request after injection GET mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 -2022/02/28 12:17:51 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:50 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fb0680 39 [] false false map[] 0xc000952a00 0xc000a648f0} -2022/02/28 12:17:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c700a1d0000a1644fba41 {"code":404,"message":"Item not found"} -2022/02/28 12:17:51 [DEBUG] Exit from do method -2022/02/28 12:17:51 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:17:51 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:17:51 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:17:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:17:51 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:17:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:51 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:17:51 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:51 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:17:51 [DEBUG] : Beginning Read -2022/02/28 12:17:51 HTTP request GET mso/api/v1/tenants -2022/02/28 12:17:51 [DEBUG] Begin Injection -2022/02/28 12:17:51 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:17:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:17:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:17:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:47:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ea4ec0 5563 [] false false map[] 0xc001424200 0xc000a648f0} -2022/02/28 12:17:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:17:51 [DEBUG] Exit from do method -2022/02/28 12:17:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:17:51 [DEBUG] provider has no plugin.Client -2022/02/28 12:17:51 [DEBUG] New state was assigned lineage "5203e5c8-a084-d6ca-aec6-311a64f7ebea" -2022/02/28 12:17:51 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:17:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:17:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:17:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:17:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:17:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:17:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:17:51 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:18:28 [DEBUG] Test: Executing step 0 -2022/02/28 12:18:28 [DEBUG] Test: Executing step 0 -2022/02/28 12:18:28 [DEBUG] Test: Executing step 0 -2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:18:28 [DEBUG] Test: Executing step 1 -2022/02/28 12:18:28 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:18:28 [DEBUG] Test: Executing step 1 -2022/02/28 12:18:28 [DEBUG] : Beginning Read -2022/02/28 12:18:28 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:28 [DEBUG] Begin Injection -2022/02/28 12:18:28 HTTP request POST /login -2022/02/28 12:18:28 HTTP request after injection POST /login -2022/02/28 12:18:28 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:18:28 [DEBUG] Test: Executing step 2 -2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:18:28 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:18:28 [DEBUG] Test: Executing step 2 -2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:28 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:28 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:28 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:28 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:18:29 [DEBUG] Test: Executing step 3 -2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:18:29 [DEBUG] Test: Executing step 3 -2022/02/28 12:18:29 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:29 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:29 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:29 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:29 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema.test mso_schema.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:29 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:18:29 [DEBUG] Test: Executing step 4 -2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:18:29 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:18:29 [DEBUG] Test: Executing step 4 -2022/02/28 12:18:29 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:29 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:29 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:29 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:29 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:29 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:29 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:29 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:29 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:29 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:29 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:29 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:29 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:29 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:29 [DEBUG] : Beginning Read -2022/02/28 12:18:29 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:29 [DEBUG] Begin Injection -2022/02/28 12:18:29 HTTP request POST /login -2022/02/28 12:18:29 HTTP request after injection POST /login -2022/02/28 12:18:29 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 12:18:29 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:18:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:29 [DEBUG] : Beginning Read -2022/02/28 12:18:29 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:29 [DEBUG] Begin Injection -2022/02/28 12:18:29 HTTP request POST /login -2022/02/28 12:18:29 HTTP request after injection POST /login -2022/02/28 12:18:29 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 12:18:30 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 12:18:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSXZrTTdxZEdrVkJQR3VBU094Uk5RN05OIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gJaufyzKJD-GmAc3CnYO3Nb-3AgPY98eBrDFln8c8F_LVzYhdXYmqPTdGzjhcYoPUlfQb-gON2B5ZiW-RXD8njYO1dSVJ-Gngad9fAzj7o3WvUa9E9panWdtaitV-_WYLaCzgFoMvd65pveRjefA-vEftbAa6VO0T8xiQmAzhPPMcihjWaPWJICrFIGU8U0MepmlwHemsTonqJQqS4qARbb9Pb8UrhLqoNDuGfm4zuj3E0kXy-dBTXykB9tdTOzAFj028Ixrma2cHSdwP_Cekw5vqUWKXVVDYOE7r_sDe0nmL38IvR6WHJGYXXyaLf9V_Ngb-TXnTl-bKTg3BWFY4w; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000ae61c0 -1 [chunked] false false map[] 0xc0002b2c00 0xc00082c160} -2022/02/28 12:18:30 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSXZrTTdxZEdrVkJQR3VBU094Uk5RN05OIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gJaufyzKJD-GmAc3CnYO3Nb-3AgPY98eBrDFln8c8F_LVzYhdXYmqPTdGzjhcYoPUlfQb-gON2B5ZiW-RXD8njYO1dSVJ-Gngad9fAzj7o3WvUa9E9panWdtaitV-_WYLaCzgFoMvd65pveRjefA-vEftbAa6VO0T8xiQmAzhPPMcihjWaPWJICrFIGU8U0MepmlwHemsTonqJQqS4qARbb9Pb8UrhLqoNDuGfm4zuj3E0kXy-dBTXykB9tdTOzAFj028Ixrma2cHSdwP_Cekw5vqUWKXVVDYOE7r_sDe0nmL38IvR6WHJGYXXyaLf9V_Ngb-TXnTl-bKTg3BWFY4w","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSXZrTTdxZEdrVkJQR3VBU094Uk5RN05OIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.gJaufyzKJD-GmAc3CnYO3Nb-3AgPY98eBrDFln8c8F_LVzYhdXYmqPTdGzjhcYoPUlfQb-gON2B5ZiW-RXD8njYO1dSVJ-Gngad9fAzj7o3WvUa9E9panWdtaitV-_WYLaCzgFoMvd65pveRjefA-vEftbAa6VO0T8xiQmAzhPPMcihjWaPWJICrFIGU8U0MepmlwHemsTonqJQqS4qARbb9Pb8UrhLqoNDuGfm4zuj3E0kXy-dBTXykB9tdTOzAFj028Ixrma2cHSdwP_Cekw5vqUWKXVVDYOE7r_sDe0nmL38IvR6WHJGYXXyaLf9V_Ngb-TXnTl-bKTg3BWFY4w"} -2022/02/28 12:18:30 [DEBUG] Exit from do method -2022/02/28 12:18:30 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:30 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 12:18:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRDZlbXFhV0Qweno4Ylp4RXV0a0tIVWMxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.ryPWC_GqWUqQTF7Ni5gxDbfa9MIRGGxnHyvSRk8z5DTt25VwbInBPe5_MMb9eTUMtcDTuDnMJa6XT6nemgVz2dIgmVJmscsJ7Exz5BxYXzKFIqgwQ5lYGwBOhT0DXF4C1bisq_iz5I8YZrO8D0vS_hbztLZymZ68Tg3H6_zlbSMHizjS059kA9_3rK8ZtxzmRfRuDv7EAiiWAgOE_u560qNXiSSh21f6eiMg4mBcpU2eCtdOIOz8jBvCjLV1n5bAcnEncT4qJmC2s0Hi5H9yOuICCD_ExikYFcJK5000txTeY-6lWwXhUteHeDSKsnG5dogLKNAuZi6VvlON9pGoXg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000e9e180 -1 [chunked] false false map[] 0xc0002b3200 0xc0004f2790} -2022/02/28 12:18:30 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRDZlbXFhV0Qweno4Ylp4RXV0a0tIVWMxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.ryPWC_GqWUqQTF7Ni5gxDbfa9MIRGGxnHyvSRk8z5DTt25VwbInBPe5_MMb9eTUMtcDTuDnMJa6XT6nemgVz2dIgmVJmscsJ7Exz5BxYXzKFIqgwQ5lYGwBOhT0DXF4C1bisq_iz5I8YZrO8D0vS_hbztLZymZ68Tg3H6_zlbSMHizjS059kA9_3rK8ZtxzmRfRuDv7EAiiWAgOE_u560qNXiSSh21f6eiMg4mBcpU2eCtdOIOz8jBvCjLV1n5bAcnEncT4qJmC2s0Hi5H9yOuICCD_ExikYFcJK5000txTeY-6lWwXhUteHeDSKsnG5dogLKNAuZi6VvlON9pGoXg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiRDZlbXFhV0Qweno4Ylp4RXV0a0tIVWMxIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.ryPWC_GqWUqQTF7Ni5gxDbfa9MIRGGxnHyvSRk8z5DTt25VwbInBPe5_MMb9eTUMtcDTuDnMJa6XT6nemgVz2dIgmVJmscsJ7Exz5BxYXzKFIqgwQ5lYGwBOhT0DXF4C1bisq_iz5I8YZrO8D0vS_hbztLZymZ68Tg3H6_zlbSMHizjS059kA9_3rK8ZtxzmRfRuDv7EAiiWAgOE_u560qNXiSSh21f6eiMg4mBcpU2eCtdOIOz8jBvCjLV1n5bAcnEncT4qJmC2s0Hi5H9yOuICCD_ExikYFcJK5000txTeY-6lWwXhUteHeDSKsnG5dogLKNAuZi6VvlON9pGoXg"} -2022/02/28 12:18:30 [DEBUG] Exit from do method -2022/02/28 12:18:30 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:30 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 12:18:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000ae63c0 -1 [chunked] false false map[] 0xc000610300 0xc00119ebb0} -2022/02/28 12:18:30 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg"} -2022/02/28 12:18:30 [DEBUG] Exit from do method -2022/02/28 12:18:30 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9e3c0 5563 [] false false map[] 0xc0002b2b00 0xc00082c160} -2022/02/28 12:18:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:30 [DEBUG] Exit from do method -2022/02/28 12:18:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:30 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:30 [DEBUG] New state was assigned lineage "5228a97e-49cf-b746-6836-9bfb6ae3a862" -2022/02/28 12:18:30 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:30 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:30 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:30 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_hvdx3" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_9wzoj" - template_name: "" => "acctest_9wzoj" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_hvdx3" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_hvdx3" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_9wzoj" - vrf_name: "" => "acctest_hvdx3" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_hvdx3_invalid" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_hvdx3" - schema_id: "" => "" - template_name: "" => "acctest_9wzoj" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_hvdx3" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_hvdx3" - schema_id: "" => "" - template: "" => "acctest_9wzoj" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:18:30 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:18:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:18:30 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:18:30 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:18:30 [DEBUG] : Beginning Create -2022/02/28 12:18:30 [DEBUG] Schema: Beginning Creation -2022/02/28 12:18:30 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:30 [DEBUG] Begin Injection -2022/02/28 12:18:30 HTTP request POST mso/api/v1/schemas -2022/02/28 12:18:30 [DEBUG] Begin Injection -2022/02/28 12:18:30 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:18:30 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:30 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"displayName":"acctest_9wzoj","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_9wzoj","externalEpgs":[],"filters":[],"name":"acctest_9wzoj","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x10f7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:18:30 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"desc":"","name":"acctest_hvdx3","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x10f7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012b9700 5563 [] false false map[] 0xc0002b3100 0xc0004f2790} -2022/02/28 12:18:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:30 [DEBUG] Exit from do method -2022/02/28 12:18:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:30 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:30 [DEBUG] New state was assigned lineage "f3e2f244-7070-a3ef-2d28-d6c4f2f8da29" -2022/02/28 12:18:30 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:30 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:30 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:30 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_idq2c" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_pexxl" - template_name: "" => "acctest_pexxl" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_idq2c" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_idq2c" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_pexxl" - vrf_name: "" => "acctest_idq2c" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_idq2c" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_idq2c" - schema_id: "" => "" - template_name: "" => "acctest_pexxl" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_idq2c" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_idq2c" - schema_id: "" => "" - template: "" => "acctest_pexxl" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:18:30 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:18:30 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:18:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016fdc0 5563 [] false false map[] 0xc000610200 0xc00119ebb0} -2022/02/28 12:18:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:30 [DEBUG] Exit from do method -2022/02/28 12:18:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:30 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:30 [DEBUG] New state was assigned lineage "44daef64-1d18-a09e-9b44-b876c795730e" -2022/02/28 12:18:30 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:30 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:18:30 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:18:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:30 [DEBUG] : Beginning Create -2022/02/28 12:18:30 [DEBUG] Schema: Beginning Creation -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 HTTP request POST mso/api/v1/schemas -2022/02/28 12:18:30 [DEBUG] Begin Injection -2022/02/28 12:18:30 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:18:30 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"displayName":"acctest_pexxl","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_pexxl","externalEpgs":[],"filters":[],"name":"acctest_pexxl","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x10f7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:18:30 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:30 [DEBUG] Begin Injection -2022/02/28 12:18:30 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:18:30 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"desc":"","name":"acctest_idq2c","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x10f7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:30 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:30 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:30 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:30 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_c0r28_invalid" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_c0r28" - schema_id: "" => "" - template_name: "" => "acctest_9kl4z" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_c0r28" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_9kl4z" - template_name: "" => "acctest_9kl4z" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_c0r28" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_c0r28" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_9kl4z" - vrf_name: "" => "acctest_c0r28" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_c0r28" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_c0r28" - schema_id: "" => "" - template_name: "" => "acctest_9kl4z" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_c0r28" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_c0r28" - schema_id: "" => "" - template: "" => "acctest_9kl4z" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:18:30 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:30 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:18:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:18:30 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:18:30 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:18:30 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:18:30 [DEBUG] Schema: Beginning Creation -2022/02/28 12:18:30 HTTP request POST mso/api/v1/schemas -2022/02/28 12:18:30 [DEBUG] Begin Injection -2022/02/28 12:18:30 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:18:30 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"displayName":"acctest_9kl4z","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_9kl4z","externalEpgs":[],"filters":[],"name":"acctest_9kl4z","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x10f7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:18:30 [DEBUG] : Beginning Create -2022/02/28 12:18:30 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:30 [DEBUG] Begin Injection -2022/02/28 12:18:30 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:30 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"desc":"","name":"acctest_c0r28","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x10f7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:18:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:31 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014dab00 160 [] false false map[] 0xc00049f700 0xc0004f2790} -2022/02/28 12:18:31 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c703e1b00009f0bfd0c3e","name":"acctest_hvdx3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:31 [DEBUG] Exit from do method -2022/02/28 12:18:31 [DEBUG] 621c703e1b00009f0bfd0c3e: Creation finished successfully -2022/02/28 12:18:31 [DEBUG] 621c703e1b00009f0bfd0c3e: Beginning Read -2022/02/28 12:18:31 id: 621c703e1b00009f0bfd0c3e -2022/02/28 12:18:31 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:31 [DEBUG] Begin Injection -2022/02/28 12:18:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:31 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:18:31 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c703e1d0000ab644fba49] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001301d80 400 [] false false map[] 0xc000ef2700 0xc00082c160} -2022/02/28 12:18:31 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:18:31 [DEBUG] Exit from do method -2022/02/28 12:18:31 [DEBUG] 621c703e1d0000ab644fba49: Schema Creation finished successfully -2022/02/28 12:18:31 [DEBUG] 621c703e1d0000ab644fba49: Beginning Read -2022/02/28 12:18:31 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:31 [DEBUG] Begin Injection -2022/02/28 12:18:31 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:31 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:18:31 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c703e1d0000aa644fba4a] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001301f40 400 [] false false map[] 0xc00049e400 0xc00119ebb0} -2022/02/28 12:18:31 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:18:31 [DEBUG] Exit from do method -2022/02/28 12:18:31 [DEBUG] 621c703e1d0000aa644fba4a: Schema Creation finished successfully -2022/02/28 12:18:31 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read -2022/02/28 12:18:31 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:31 [DEBUG] Begin Injection -2022/02/28 12:18:31 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:31 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014dad00 160 [] false false map[] 0xc0002b2900 0xc0004f2790} -2022/02/28 12:18:31 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:31 [DEBUG] Exit from do method -2022/02/28 12:18:31 [DEBUG] 621c703f1b0000b60bfd0c3f: Creation finished successfully -2022/02/28 12:18:31 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read -2022/02/28 12:18:31 id: 621c703f1b0000b60bfd0c3f -2022/02/28 12:18:31 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:31 [DEBUG] Begin Injection -2022/02/28 12:18:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:31 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:18:31 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c703f1d0000ae644fba4d] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000497100 400 [] false false map[] 0xc00049e500 0xc00082c160} -2022/02/28 12:18:31 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:18:31 [DEBUG] Exit from do method -2022/02/28 12:18:31 [DEBUG] 621c703f1d0000ae644fba4d: Schema Creation finished successfully -2022/02/28 12:18:31 [DEBUG] 621c703f1d0000ae644fba4d: Beginning Read -2022/02/28 12:18:31 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:31 [DEBUG] Begin Injection -2022/02/28 12:18:31 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:31 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f0080 160 [] false false map[] 0xc0002b3500 0xc00119ebb0} -2022/02/28 12:18:31 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c703f1b0000b60bfd0c40","name":"acctest_c0r28","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:31 [DEBUG] Exit from do method -2022/02/28 12:18:31 [DEBUG] 621c703f1b0000b60bfd0c40: Creation finished successfully -2022/02/28 12:18:31 [DEBUG] 621c703f1b0000b60bfd0c40: Beginning Read -2022/02/28 12:18:31 id: 621c703f1b0000b60bfd0c40 -2022/02/28 12:18:31 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:31 [DEBUG] Begin Injection -2022/02/28 12:18:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014da340 160 [] false false map[] 0xc0002b3900 0xc00082c8f0} -2022/02/28 12:18:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e {"id":"621c703e1b00009f0bfd0c3e","name":"acctest_hvdx3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:31 [DEBUG] Exit from do method -2022/02/28 12:18:31 [DEBUG] 621c703e1b00009f0bfd0c3e: Read finished successfully -2022/02/28 12:18:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae6180 400 [] false false map[] 0xc00038b400 0xc0004f2790} -2022/02/28 12:18:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:18:31 [DEBUG] Exit from do method -2022/02/28 12:18:31 [DEBUG] 621c703e1d0000ab644fba49: Read finished successfully -2022/02/28 12:18:31 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:18:31 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:18:31 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:31 [DEBUG] Begin Injection -2022/02/28 12:18:31 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f0c00 400 [] false false map[] 0xc00038b600 0xc0002bc000} -2022/02/28 12:18:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:18:31 [DEBUG] Exit from do method -2022/02/28 12:18:31 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully -2022/02/28 12:18:31 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:18:31 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:18:31 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:31 [DEBUG] Begin Injection -2022/02/28 12:18:31 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012b8700 400 [] false false map[] 0xc00038b700 0xc00082ca50} -2022/02/28 12:18:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:18:31 [DEBUG] Exit from do method -2022/02/28 12:18:31 [DEBUG] 621c703f1d0000ae644fba4d: Read finished successfully -2022/02/28 12:18:31 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:18:31 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:18:31 HTTP request PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:31 [DEBUG] Begin Injection -2022/02/28 12:18:31 HTTP request after injection PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ce300 160 [] false false map[] 0xc00049e900 0xc00082c160} -2022/02/28 12:18:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:31 [DEBUG] Exit from do method -2022/02/28 12:18:31 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully -2022/02/28 12:18:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005cee00 160 [] false false map[] 0xc0002b2000 0xc00119ebb0} -2022/02/28 12:18:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 {"id":"621c703f1b0000b60bfd0c40","name":"acctest_c0r28","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:31 [DEBUG] Exit from do method -2022/02/28 12:18:31 [DEBUG] 621c703f1b0000b60bfd0c40: Read finished successfully -2022/02/28 12:18:32 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00038ac00 0xc00082c8f0} -2022/02/28 12:18:32 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:32 [DEBUG] acctest_hvdx3: Creation finished successfully -2022/02/28 12:18:32 [DEBUG] acctest_hvdx3: Beginning Read -2022/02/28 12:18:32 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:32 [DEBUG] Begin Injection -2022/02/28 12:18:32 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:32 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00038b300 0xc0002bc000} -2022/02/28 12:18:32 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:32 [DEBUG] acctest_idq2c: Creation finished successfully -2022/02/28 12:18:32 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:32 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:32 [DEBUG] Begin Injection -2022/02/28 12:18:32 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:32 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049eb00 0xc00082ca50} -2022/02/28 12:18:32 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:32 [DEBUG] acctest_c0r28: Creation finished successfully -2022/02/28 12:18:32 [DEBUG] acctest_c0r28: Beginning Read -2022/02/28 12:18:32 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:32 [DEBUG] Begin Injection -2022/02/28 12:18:32 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005cf180 768 [] false false map[] 0xc00156a100 0xc00082c160} -2022/02/28 12:18:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 12:18:32 [DEBUG] Exit from do method -2022/02/28 12:18:32 currentvrfname acctest_hvdx3 -2022/02/28 12:18:32 found correct vrfname -2022/02/28 12:18:32 [DEBUG] acctest_hvdx3: Read finished successfully -2022/02/28 12:18:32 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:18:32 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:18:32 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:18:32 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:32 [DEBUG] Begin Injection -2022/02/28 12:18:32 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000497d80 768 [] false false map[] 0xc00049f700 0xc0002bc000} -2022/02/28 12:18:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 12:18:32 [DEBUG] Exit from do method -2022/02/28 12:18:32 currentvrfname acctest_idq2c -2022/02/28 12:18:32 found correct vrfname -2022/02/28 12:18:32 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:32 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:18:32 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:18:32 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:18:32 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:32 [DEBUG] Begin Injection -2022/02/28 12:18:32 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f700 768 [] false false map[] 0xc00156a200 0xc00082ca50} -2022/02/28 12:18:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 12:18:32 [DEBUG] Exit from do method -2022/02/28 12:18:32 currentvrfname acctest_c0r28 -2022/02/28 12:18:32 found correct vrfname -2022/02/28 12:18:32 [DEBUG] acctest_c0r28: Read finished successfully -2022/02/28 12:18:32 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:18:32 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:18:32 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:18:32 HTTP request PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:32 [DEBUG] Begin Injection -2022/02/28 12:18:32 HTTP request after injection PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:32 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00038bd00 0xc0002bc790} -2022/02/28 12:18:32 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:32 [DEBUG] : Beginning Read -2022/02/28 12:18:32 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:32 [DEBUG] Begin Injection -2022/02/28 12:18:32 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:32 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00156b900 0xc0002bc000} -2022/02/28 12:18:32 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:32 [DEBUG] : Beginning Read -2022/02/28 12:18:32 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:32 [DEBUG] Begin Injection -2022/02/28 12:18:32 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:32 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000610900 0xc00082ca50} -2022/02/28 12:18:32 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:32 [DEBUG] : Beginning Read -2022/02/28 12:18:32 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:32 [DEBUG] Begin Injection -2022/02/28 12:18:32 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001301c80 1277 [] false false map[] 0xc00156bb00 0xc0002bc790} -2022/02/28 12:18:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:18:33 [DEBUG] Exit from do method -2022/02/28 12:18:33 [DEBUG] acctest_hvdx3: Read finished successfully -2022/02/28 12:18:33 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:18:33 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:18:33 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:33 [DEBUG] Begin Injection -2022/02/28 12:18:33 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84ec0 1277 [] false false map[] 0xc00156bc00 0xc00082ca50} -2022/02/28 12:18:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:18:33 [DEBUG] Exit from do method -2022/02/28 12:18:33 [DEBUG] acctest_c0r28: Read finished successfully -2022/02/28 12:18:33 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:18:33 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:18:33 HTTP request PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:33 [DEBUG] Begin Injection -2022/02/28 12:18:33 HTTP request after injection PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a8380 1277 [] false false map[] 0xc000610b00 0xc0002bc000} -2022/02/28 12:18:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:18:33 [DEBUG] Exit from do method -2022/02/28 12:18:33 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:33 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:18:33 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:18:33 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:33 [DEBUG] Begin Injection -2022/02/28 12:18:33 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:33 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:33 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[112] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc000a84080 112 [] false false map[] 0xc00049fb00 0xc0002bc790} -2022/02/28 12:18:33 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false {"code":141,"message":"Resource Not Found: Bd with name acctest_hvdx3_invalid not found in List(acctest_hvdx3)"} -2022/02/28 12:18:33 [DEBUG] Exit from do method -2022/02/28 12:18:33 [DEBUG] mso_schema_template_bd_dhcp_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Resource Not Found: Bd with name acctest_hvdx3_invalid not found in List(acctest_hvdx3)"{} -2022/02/28 12:18:33 [ERROR] : eval: *terraform.EvalApplyPost, err: "Resource Not Found: Bd with name acctest_hvdx3_invalid not found in List(acctest_hvdx3)"{} -2022/02/28 12:18:33 [ERROR] : eval: *terraform.EvalSequence, err: "Resource Not Found: Bd with name acctest_hvdx3_invalid not found in List(acctest_hvdx3)"{} -2022/02/28 12:18:33 [DEBUG] New state was assigned lineage "25f534e6-8103-0a06-2cea-8d438ab68be8" -2022/02/28 12:18:33 [DEBUG] Test: Executing step 1 -2022/02/28 12:18:33 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:33 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:33 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:33 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "yijml" is not expected here. -2022/02/28 12:18:33 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "yijml" is not expected here. -2022/02/28 12:18:33 [DEBUG] Test: Executing step 2 -2022/02/28 12:18:33 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:33 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:33 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:33 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:33 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:33 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:33 [DEBUG] : Beginning Read -2022/02/28 12:18:33 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:33 [DEBUG] Begin Injection -2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:33 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000eba500 0xc00082ca50} -2022/02/28 12:18:33 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:33 [DEBUG] Creation Complete -2022/02/28 12:18:33 [DEBUG] : Beginning Read -2022/02/28 12:18:33 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:33 [DEBUG] Begin Injection -2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:33 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00106a600 0xc0002bc000} -2022/02/28 12:18:33 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:33 [DEBUG] Creation Complete -2022/02/28 12:18:33 [DEBUG] : Beginning Read -2022/02/28 12:18:33 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:33 [DEBUG] Begin Injection -2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f0040 5563 [] false false map[] 0xc00049e500 0xc0002bc790} -2022/02/28 12:18:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:33 [DEBUG] Exit from do method -2022/02/28 12:18:33 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:33 [DEBUG] 621c703e1d0000ab644fba49: Beginning Read -2022/02/28 12:18:33 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:33 [DEBUG] Begin Injection -2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:33 [DEBUG] 621c703e1b00009f0bfd0c3e: Beginning Read -2022/02/28 12:18:33 id: 621c703e1b00009f0bfd0c3e -2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:33 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:33 [DEBUG] Begin Injection -2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f1480 1362 [] false false map[] 0xc000ef2000 0xc0002bc000} -2022/02/28 12:18:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:33 [DEBUG] Exit from do method -2022/02/28 12:18:33 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully -2022/02/28 12:18:33 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:33 [DEBUG] New state was assigned lineage "969da135-f25a-72a3-69c4-9611f6b36cdc" -2022/02/28 12:18:33 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:33 [DEBUG] Begin Injection -2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014daec0 1362 [] false false map[] 0xc00049e600 0xc00082ca50} -2022/02/28 12:18:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:33 [DEBUG] Exit from do method -2022/02/28 12:18:33 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully -2022/02/28 12:18:33 [DEBUG] : Beginning Read -2022/02/28 12:18:33 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:33 [DEBUG] Begin Injection -2022/02/28 12:18:33 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e800 1277 [] false false map[] 0xc000ef2700 0xc0002bc790} -2022/02/28 12:18:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:18:34 [DEBUG] Exit from do method -2022/02/28 12:18:34 [DEBUG] 621c703e1d0000ab644fba49: Read finished successfully -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:34 [DEBUG] acctest_hvdx3: Beginning Read -2022/02/28 12:18:34 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:34 [DEBUG] Begin Injection -2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f240 160 [] false false map[] 0xc00049ea00 0xc0002bc0b0} -2022/02/28 12:18:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e {"id":"621c703e1b00009f0bfd0c3e","name":"acctest_hvdx3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:34 [DEBUG] Exit from do method -2022/02/28 12:18:34 [DEBUG] 621c703e1b00009f0bfd0c3e: Read finished successfully -2022/02/28 12:18:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f86900 1362 [] false false map[] 0xc000ef2800 0xc0002bc000} -2022/02/28 12:18:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:34 [DEBUG] Exit from do method -2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:34 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:34 [DEBUG] : Beginning Read -2022/02/28 12:18:34 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:34 [DEBUG] Begin Injection -2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043dd80 1362 [] false false map[] 0xc00049f600 0xc00082ca50} -2022/02/28 12:18:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:34 [DEBUG] Exit from do method -2022/02/28 12:18:34 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 12:18:34 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 12:18:34 [DEBUG] New state was assigned lineage "ec247f5f-6768-b8f4-499a-9a8cd90e0046" -2022/02/28 12:18:34 [DEBUG] Test: Executing step 5 -2022/02/28 12:18:34 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:34 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "tmxmm" is not expected here. -2022/02/28 12:18:34 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "tmxmm" is not expected here. -2022/02/28 12:18:34 [DEBUG] Test: Executing step 6 -2022/02/28 12:18:34 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:34 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:34 [DEBUG] : Beginning Read -2022/02/28 12:18:34 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:34 [DEBUG] Begin Injection -2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f9c0 1277 [] false false map[] 0xc00156a600 0xc0002bc790} -2022/02/28 12:18:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:18:34 [DEBUG] Exit from do method -2022/02/28 12:18:34 currentvrfname acctest_hvdx3 -2022/02/28 12:18:34 found correct vrfname -2022/02/28 12:18:34 [DEBUG] acctest_hvdx3: Read finished successfully -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:34 [DEBUG] acctest_hvdx3: Beginning Read -2022/02/28 12:18:34 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:34 [DEBUG] Begin Injection -2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae6180 5563 [] false false map[] 0xc0002b2e00 0xc0002bc000} -2022/02/28 12:18:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:34 [DEBUG] Exit from do method -2022/02/28 12:18:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:34 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read -2022/02/28 12:18:34 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:34 [DEBUG] Begin Injection -2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:34 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read -2022/02/28 12:18:34 id: 621c703f1b0000b60bfd0c3f -2022/02/28 12:18:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:34 [DEBUG] Begin Injection -2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f800 5563 [] false false map[] 0xc00049ee00 0xc00082ca50} -2022/02/28 12:18:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:34 [DEBUG] Exit from do method -2022/02/28 12:18:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:34 [DEBUG] 621c703f1d0000ae644fba4d: Beginning Read -2022/02/28 12:18:34 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:34 [DEBUG] Begin Injection -2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:34 [DEBUG] 621c703f1b0000b60bfd0c40: Beginning Read -2022/02/28 12:18:34 id: 621c703f1b0000b60bfd0c40 -2022/02/28 12:18:34 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:34 [DEBUG] Begin Injection -2022/02/28 12:18:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:34 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002c4480 1277 [] false false map[] 0xc00049e500 0xc0002bc790} -2022/02/28 12:18:34 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:18:34 [DEBUG] Exit from do method -2022/02/28 12:18:34 [DEBUG] acctest_hvdx3: Read finished successfully -2022/02/28 12:18:34 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:34 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:34 [DEBUG] New state was assigned lineage "1d6ed222-03c2-9b0a-2e7b-a560a23a3839" -2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:34 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:34 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:34 [WARN] Test: Step plan: DIFF: - -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_hvdx3" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_hvdx3" - schema_id: "" => "621c703e1d0000ab644fba49" - template_name: "" => "acctest_9wzoj" - version: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c703e1b00009f0bfd0c3e - provider = provider.mso - description = - name = acctest_hvdx3 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c703e1d0000ab644fba49 - provider = provider.mso - name = acctest_9wzoj - template_name = acctest_9wzoj - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_hvdx3 - provider = provider.mso - display_name = acctest_hvdx3 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_hvdx3 - schema_id = 621c703e1d0000ab644fba49 - template_name = acctest_9wzoj - vrf_name = acctest_hvdx3 - vrf_schema_id = 621c703e1d0000ab644fba49 - vrf_template_name = acctest_9wzoj - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_hvdx3 - provider = provider.mso - display_name = acctest_hvdx3 - layer3_multicast = false - name = acctest_hvdx3 - schema_id = 621c703e1d0000ab644fba49 - template = acctest_9wzoj - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:18:34 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:18:34 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:18:34 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:18:34 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:18:34 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:18:34 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:34 [DEBUG] Begin Injection -2022/02/28 12:18:34 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f86180 1362 [] false false map[] 0xc00049ea00 0xc0002bc000} -2022/02/28 12:18:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:35 [DEBUG] Exit from do method -2022/02/28 12:18:35 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:35 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:35 [DEBUG] Begin Injection -2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae7b80 160 [] false false map[] 0xc0002b2000 0xc0002bc0b0} -2022/02/28 12:18:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:35 [DEBUG] Exit from do method -2022/02/28 12:18:35 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully -2022/02/28 12:18:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f867c0 1362 [] false false map[] 0xc001c72700 0xc00082ca50} -2022/02/28 12:18:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:35 [DEBUG] Exit from do method -2022/02/28 12:18:35 [DEBUG] 621c703f1d0000ae644fba4d: Read finished successfully -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:35 [DEBUG] acctest_c0r28: Beginning Read -2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:35 [DEBUG] Begin Injection -2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107fcc0 160 [] false false map[] 0xc00106b200 0xc0002bc790} -2022/02/28 12:18:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 {"id":"621c703f1b0000b60bfd0c40","name":"acctest_c0r28","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:35 [DEBUG] Exit from do method -2022/02/28 12:18:35 [DEBUG] 621c703f1b0000b60bfd0c40: Read finished successfully -2022/02/28 12:18:35 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049e400 0xc0002bc000} -2022/02/28 12:18:35 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:35 [DEBUG] Creation Complete -2022/02/28 12:18:35 [DEBUG] : Beginning Read -2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:35 [DEBUG] Begin Injection -2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d061c0 1362 [] false false map[] 0xc0015a4500 0xc00082ca50} -2022/02/28 12:18:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:35 [DEBUG] Exit from do method -2022/02/28 12:18:35 currentvrfname acctest_c0r28 -2022/02/28 12:18:35 found correct vrfname -2022/02/28 12:18:35 [DEBUG] acctest_c0r28: Read finished successfully -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:35 [DEBUG] acctest_c0r28: Beginning Read -2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:35 [DEBUG] Begin Injection -2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f87b80 1362 [] false false map[] 0xc00156aa00 0xc0002bc0b0} -2022/02/28 12:18:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:35 [DEBUG] Exit from do method -2022/02/28 12:18:35 currentvrfname acctest_idq2c -2022/02/28 12:18:35 found correct vrfname -2022/02/28 12:18:35 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:35 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:35 [DEBUG] Begin Injection -2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002c5980 1362 [] false false map[] 0xc000ef2200 0xc0002bc000} -2022/02/28 12:18:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:35 [DEBUG] Exit from do method -2022/02/28 12:18:35 [DEBUG] /schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3: Read finished successfully -2022/02/28 12:18:35 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:35 [DEBUG] New state was assigned lineage "59bc3750-932e-6ad0-e4d6-408ac1bd81e2" -2022/02/28 12:18:35 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:35 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:35 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:35 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:35 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:35 [DEBUG] : Beginning Read -2022/02/28 12:18:35 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:35 [DEBUG] Begin Injection -2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ce380 1362 [] false false map[] 0xc00049ee00 0xc00082ca50} -2022/02/28 12:18:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:35 [DEBUG] Exit from do method -2022/02/28 12:18:35 [DEBUG] acctest_c0r28: Read finished successfully -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:35 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Beginning Read -2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:35 [DEBUG] Begin Injection -2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005cf140 1362 [] false false map[] 0xc00049f900 0xc0002bc0b0} -2022/02/28 12:18:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:35 [DEBUG] Exit from do method -2022/02/28 12:18:35 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:35 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:35 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Read -2022/02/28 12:18:35 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:35 [DEBUG] Begin Injection -2022/02/28 12:18:35 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae60c0 1362 [] false false map[] 0xc0015a4600 0xc00082ca50} -2022/02/28 12:18:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:36 [DEBUG] Exit from do method -2022/02/28 12:18:36 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully -2022/02/28 12:18:36 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] : Beginning Read -2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:36 [DEBUG] Begin Injection -2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae6180 5563 [] false false map[] 0xc0015a4300 0xc0002bc580} -2022/02/28 12:18:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:36 [DEBUG] Exit from do method -2022/02/28 12:18:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:36 [DEBUG] 621c703e1d0000ab644fba49: Beginning Read -2022/02/28 12:18:36 [DEBUG] 621c703e1b00009f0bfd0c3e: Beginning Read -2022/02/28 12:18:36 id: 621c703e1b00009f0bfd0c3e -2022/02/28 12:18:36 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:36 [DEBUG] Begin Injection -2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 [DEBUG] Begin Injection -2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae7680 1362 [] false false map[] 0xc00106b200 0xc0002bc0b0} -2022/02/28 12:18:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:36 [DEBUG] Exit from do method -2022/02/28 12:18:36 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully -2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:36 [DEBUG] New state was assigned lineage "0b54dc26-e837-6134-61a2-c5b925a05f8b" -2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:36 [DEBUG] Test: Executing step 5 -2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:36 [DEBUG] : Beginning Read -2022/02/28 12:18:36 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:36 [DEBUG] Begin Injection -2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f86280 1362 [] false false map[] 0xc00049e200 0xc0000be2c0} -2022/02/28 12:18:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:36 [DEBUG] Exit from do method -2022/02/28 12:18:36 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully -2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:36 [DEBUG] New state was assigned lineage "22b58536-58f7-7574-3e60-59858019b57c" -2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:36 [WARN] Test: Step plan: DIFF: - - - -STATE: - -data.mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28 - provider = provider.mso - bd_name = acctest_c0r28 - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_c0r28 - schema_id = 621c703f1d0000ae644fba4d - template_name = acctest_9kl4z - version = 0 - - Dependencies: - mso_schema_template_bd_dhcp_policy.test -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c703f1b0000b60bfd0c40 - provider = provider.mso - description = - name = acctest_c0r28 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c703f1d0000ae644fba4d - provider = provider.mso - name = acctest_9kl4z - template_name = acctest_9kl4z - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_c0r28 - provider = provider.mso - dhcp_policy.name = acctest_c0r28 - dhcp_policy.version = 0 - display_name = acctest_c0r28 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_c0r28 - schema_id = 621c703f1d0000ae644fba4d - template_name = acctest_9kl4z - vrf_name = acctest_c0r28 - vrf_schema_id = 621c703f1d0000ae644fba4d - vrf_template_name = acctest_9kl4z - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28 - provider = provider.mso - bd_name = acctest_c0r28 - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_c0r28 - schema_id = 621c703f1d0000ae644fba4d - template_name = acctest_9kl4z - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_c0r28 - provider = provider.mso - display_name = acctest_c0r28 - layer3_multicast = false - name = acctest_c0r28 - schema_id = 621c703f1d0000ae644fba4d - template = acctest_9kl4z - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:18:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007730c0 160 [] false false map[] 0xc00106b900 0xc0002bc580} -2022/02/28 12:18:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e {"id":"621c703e1b00009f0bfd0c3e","name":"acctest_hvdx3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:36 [DEBUG] Exit from do method -2022/02/28 12:18:36 [DEBUG] 621c703e1b00009f0bfd0c3e: Read finished successfully -2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:36 [DEBUG] New state was assigned lineage "972162f9-644f-79d1-23a3-41cd07f8bde7" -2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:36 [DEBUG] Begin Injection -2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043c280 1362 [] false false map[] 0xc00049e800 0xc0002bc790} -2022/02/28 12:18:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:36 [DEBUG] Exit from do method -2022/02/28 12:18:36 [DEBUG] 621c703e1d0000ab644fba49: Read finished successfully -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:36 [DEBUG] acctest_hvdx3: Beginning Read -2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 [DEBUG] Begin Injection -2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f87c80 5563 [] false false map[] 0xc0002b2200 0xc0002bc0b0} -2022/02/28 12:18:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:36 [DEBUG] Exit from do method -2022/02/28 12:18:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:36 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read -2022/02/28 12:18:36 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read -2022/02/28 12:18:36 id: 621c703f1b0000b60bfd0c3f -2022/02/28 12:18:36 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:36 [DEBUG] Begin Injection -2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:36 [DEBUG] Begin Injection -2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f0fc0 1362 [] false false map[] 0xc001580300 0xc0002bc790} -2022/02/28 12:18:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:36 [DEBUG] Exit from do method -2022/02/28 12:18:36 currentvrfname acctest_hvdx3 -2022/02/28 12:18:36 found correct vrfname -2022/02/28 12:18:36 [DEBUG] acctest_hvdx3: Read finished successfully -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:36 [DEBUG] acctest_hvdx3: Beginning Read -2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 [DEBUG] Begin Injection -2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f1a00 1362 [] false false map[] 0xc001580000 0xc0002bc580} -2022/02/28 12:18:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:36 [DEBUG] Exit from do method -2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:36 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:36 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:36 [DEBUG] : Beginning Read -2022/02/28 12:18:36 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:36 [DEBUG] Begin Injection -2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f140 160 [] false false map[] 0xc001580800 0xc0000be2c0} -2022/02/28 12:18:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:36 [DEBUG] Exit from do method -2022/02/28 12:18:36 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully -2022/02/28 12:18:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001524440 1362 [] false false map[] 0xc00106b100 0xc0002bc0b0} -2022/02/28 12:18:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:36 [DEBUG] Exit from do method -2022/02/28 12:18:36 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:36 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:36 [DEBUG] Begin Injection -2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:36 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015252c0 1362 [] false false map[] 0xc00156a500 0xc0002bc790} -2022/02/28 12:18:36 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:36 [DEBUG] Exit from do method -2022/02/28 12:18:36 [DEBUG] acctest_hvdx3: Read finished successfully -2022/02/28 12:18:36 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:36 [DEBUG] /schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3: Beginning Read -2022/02/28 12:18:36 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 [DEBUG] Begin Injection -2022/02/28 12:18:36 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84400 5563 [] false false map[] 0xc00102a400 0xc0002bc580} -2022/02/28 12:18:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:37 [DEBUG] Exit from do method -2022/02/28 12:18:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:37 [DEBUG] 621c703f1d0000ae644fba4d: Beginning Read -2022/02/28 12:18:37 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:37 [DEBUG] Begin Injection -2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:37 [DEBUG] 621c703f1b0000b60bfd0c40: Beginning Read -2022/02/28 12:18:37 id: 621c703f1b0000b60bfd0c40 -2022/02/28 12:18:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:37 [DEBUG] Begin Injection -2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85080 1362 [] false false map[] 0xc00102aa00 0xc0002bc0b0} -2022/02/28 12:18:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:37 [DEBUG] Exit from do method -2022/02/28 12:18:37 currentvrfname acctest_idq2c -2022/02/28 12:18:37 found correct vrfname -2022/02/28 12:18:37 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:37 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:37 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:37 [DEBUG] Begin Injection -2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85b00 1362 [] false false map[] 0xc00102af00 0xc0002bc790} -2022/02/28 12:18:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:37 [DEBUG] Exit from do method -2022/02/28 12:18:37 [DEBUG] /schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3: Read finished successfully -2022/02/28 12:18:37 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:37 [DEBUG] New state was assigned lineage "14dad5d6-62a5-7f4e-ef16-000b9efdb6ad" -2022/02/28 12:18:37 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:37 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:37 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:37 [WARN] Test: Executing destroy step -2022/02/28 12:18:37 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:37 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:37 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:37 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:37 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:37 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:37 [DEBUG] : Beginning Read -2022/02/28 12:18:37 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:37 [DEBUG] Begin Injection -2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014da100 160 [] false false map[] 0xc00049e500 0xc0000be2c0} -2022/02/28 12:18:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 {"id":"621c703f1b0000b60bfd0c40","name":"acctest_c0r28","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:37 [DEBUG] Exit from do method -2022/02/28 12:18:37 [DEBUG] 621c703f1b0000b60bfd0c40: Read finished successfully -2022/02/28 12:18:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014da1c0 1362 [] false false map[] 0xc000ef2f00 0xc0002bc580} -2022/02/28 12:18:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:37 [DEBUG] Exit from do method -2022/02/28 12:18:37 [DEBUG] 621c703f1d0000ae644fba4d: Read finished successfully -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:37 [DEBUG] acctest_c0r28: Beginning Read -2022/02/28 12:18:37 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:37 [DEBUG] Begin Injection -2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002c5140 1362 [] false false map[] 0xc00102b400 0xc0002bc0b0} -2022/02/28 12:18:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:37 [DEBUG] Exit from do method -2022/02/28 12:18:37 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:37 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Read -2022/02/28 12:18:37 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:37 [DEBUG] Begin Injection -2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001592a40 1362 [] false false map[] 0xc0002b2100 0xc0002bc580} -2022/02/28 12:18:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:37 [DEBUG] Exit from do method -2022/02/28 12:18:37 currentvrfname acctest_c0r28 -2022/02/28 12:18:37 found correct vrfname -2022/02/28 12:18:37 [DEBUG] acctest_c0r28: Read finished successfully -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:37 [DEBUG] acctest_c0r28: Beginning Read -2022/02/28 12:18:37 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:37 [DEBUG] Begin Injection -2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001593080 5563 [] false false map[] 0xc000ef2000 0xc0002bc790} -2022/02/28 12:18:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:37 [DEBUG] Exit from do method -2022/02/28 12:18:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:37 [DEBUG] 621c703e1d0000ab644fba49: Beginning Read -2022/02/28 12:18:37 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:37 [DEBUG] Begin Injection -2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:37 [DEBUG] 621c703e1b00009f0bfd0c3e: Beginning Read -2022/02/28 12:18:37 id: 621c703e1b00009f0bfd0c3e -2022/02/28 12:18:37 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:37 [DEBUG] Begin Injection -2022/02/28 12:18:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:37 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9eac0 1362 [] false false map[] 0xc001580400 0xc0002bc0b0} -2022/02/28 12:18:37 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:37 [DEBUG] Exit from do method -2022/02/28 12:18:37 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully -2022/02/28 12:18:37 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:37 [DEBUG] New state was assigned lineage "b16c1e0b-65f6-9b7b-1f20-908afa5a9752" -2022/02/28 12:18:37 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:37 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:37 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:37 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:37 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.test - description: "" => "" - id: "" => "" - name: "" => "acctest_m3wcy" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -UPDATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_idq2c" => "acctest_idq2c" - dhcp_option_name: "" => "acctest_m3wcy" - dhcp_option_version: "0" => "1" - id: "/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c" => "/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c" - name: "acctest_idq2c" => "acctest_idq2c" - schema_id: "621c703e1d0000aa644fba4a" => "621c703e1d0000aa644fba4a" - template_name: "acctest_pexxl" => "acctest_pexxl" - version: "0" => "1" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c703f1b0000b60bfd0c3f - provider = provider.mso - description = - name = acctest_idq2c - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c703e1d0000aa644fba4a - provider = provider.mso - name = acctest_pexxl - template_name = acctest_pexxl - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_idq2c - provider = provider.mso - dhcp_policy.name = acctest_idq2c - dhcp_policy.version = 0 - display_name = acctest_idq2c - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_idq2c - schema_id = 621c703e1d0000aa644fba4a - template_name = acctest_pexxl - vrf_name = acctest_idq2c - vrf_schema_id = 621c703e1d0000aa644fba4a - vrf_template_name = acctest_pexxl - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c - provider = provider.mso - bd_name = acctest_idq2c - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_idq2c - schema_id = 621c703e1d0000aa644fba4a - template_name = acctest_pexxl - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_idq2c - provider = provider.mso - display_name = acctest_idq2c - layer3_multicast = false - name = acctest_idq2c - schema_id = 621c703e1d0000aa644fba4a - template = acctest_pexxl - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:18:37 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:18:37 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 12:18:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:18:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:18:37 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:18:37 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change -2022/02/28 12:18:37 [DEBUG] : Beginning Create -2022/02/28 12:18:37 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 12:18:37 [DEBUG] Begin Injection -2022/02/28 12:18:37 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 12:18:37 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_m3wcy","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x10f7ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:18:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 12:18:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d06240 1362 [] false false map[] 0xc000ef3200 0xc0002bc580} -2022/02/28 12:18:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:38 [DEBUG] Exit from do method -2022/02/28 12:18:38 [DEBUG] acctest_c0r28: Read finished successfully -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:38 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Beginning Read -2022/02/28 12:18:38 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:38 [DEBUG] Begin Injection -2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d07600 1362 [] false false map[] 0xc000ef3900 0xc0002bc790} -2022/02/28 12:18:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:38 [DEBUG] Exit from do method -2022/02/28 12:18:38 [DEBUG] 621c703e1d0000ab644fba49: Read finished successfully -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:38 [DEBUG] acctest_hvdx3: Beginning Read -2022/02/28 12:18:38 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:38 [DEBUG] Begin Injection -2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043d680 160 [] false false map[] 0xc001580600 0xc0000be2c0} -2022/02/28 12:18:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e {"id":"621c703e1b00009f0bfd0c3e","name":"acctest_hvdx3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:38 [DEBUG] Exit from do method -2022/02/28 12:18:38 [DEBUG] 621c703e1b00009f0bfd0c3e: Read finished successfully -2022/02/28 12:18:38 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d07b40 161 [] false false map[] 0xc00106b200 0xc0002bc0b0} -2022/02/28 12:18:38 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c70451b0000b80bfd0c41","name":"acctest_m3wcy","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:38 [DEBUG] Exit from do method -2022/02/28 12:18:38 [DEBUG] 621c70451b0000b80bfd0c41: Creation finished successfully -2022/02/28 12:18:38 [DEBUG] 621c70451b0000b80bfd0c41: Beginning Read -2022/02/28 12:18:38 id: 621c70451b0000b80bfd0c41 -2022/02/28 12:18:38 HTTP request GET mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:38 [DEBUG] Begin Injection -2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001592840 1362 [] false false map[] 0xc00049e400 0xc0002bc580} -2022/02/28 12:18:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:38 [DEBUG] Exit from do method -2022/02/28 12:18:38 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:38 [DEBUG] : Beginning Read -2022/02/28 12:18:38 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:38 [DEBUG] Begin Injection -2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d07d80 1362 [] false false map[] 0xc001580200 0xc0002bc790} -2022/02/28 12:18:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:38 [DEBUG] Exit from do method -2022/02/28 12:18:38 currentvrfname acctest_hvdx3 -2022/02/28 12:18:38 found correct vrfname -2022/02/28 12:18:38 [DEBUG] acctest_hvdx3: Read finished successfully -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:38 [DEBUG] acctest_hvdx3: Beginning Read -2022/02/28 12:18:38 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:38 [DEBUG] Begin Injection -2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014db7c0 161 [] false false map[] 0xc00049e500 0xc0002bc0b0} -2022/02/28 12:18:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 {"id":"621c70451b0000b80bfd0c41","name":"acctest_m3wcy","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:38 [DEBUG] Exit from do method -2022/02/28 12:18:38 [DEBUG] 621c70451b0000b80bfd0c41: Read finished successfully -2022/02/28 12:18:38 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change -2022/02/28 12:18:38 [DEBUG] Template BD: Beginning Update -2022/02/28 12:18:38 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:38 [DEBUG] Begin Injection -2022/02/28 12:18:38 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9ef80 1362 [] false false map[] 0xc001580800 0xc0002bc580} -2022/02/28 12:18:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:38 [DEBUG] Exit from do method -2022/02/28 12:18:38 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully -2022/02/28 12:18:38 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:38 [DEBUG] New state was assigned lineage "cf317a6b-8cea-ea0c-7b11-ce72776c6dac" -2022/02/28 12:18:38 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:38 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:38 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:38 [WARN] Test: Executing destroy step -2022/02/28 12:18:38 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:38 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:38 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:38 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016fa80 1362 [] false false map[] 0xc0002b2800 0xc0002bc790} -2022/02/28 12:18:38 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:38 [DEBUG] Exit from do method -2022/02/28 12:18:38 [DEBUG] acctest_hvdx3: Read finished successfully -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:38 [DEBUG] /schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3: Beginning Read -2022/02/28 12:18:38 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:38 [DEBUG] Begin Injection -2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:38 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:38 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:38 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:38 [DEBUG] : Beginning Read -2022/02/28 12:18:38 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:38 [DEBUG] Begin Injection -2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:38 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00102a300 0xc0002bc0b0} -2022/02/28 12:18:38 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:38 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Read -2022/02/28 12:18:38 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:38 [DEBUG] Begin Injection -2022/02/28 12:18:38 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f87340 1362 [] false false map[] 0xc00106a100 0xc0002bc580} -2022/02/28 12:18:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"id":"621c703e1d0000ab644fba49","displayName":"acctest_9wzoj","description":"","templates":[{"name":"acctest_9wzoj","displayName":"acctest_9wzoj","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_hvdx3","displayName":"acctest_hvdx3","bdRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/vrfs/acctest_hvdx3","dhcpLabel":{"name":"acctest_hvdx3","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_hvdx3","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:39 [DEBUG] Exit from do method -2022/02/28 12:18:39 [DEBUG] /schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3: Read finished successfully -2022/02/28 12:18:39 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:39 [DEBUG] New state was assigned lineage "ac975afe-9982-fc7b-1841-6616d4a2f46f" -2022/02/28 12:18:39 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:18:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:18:39 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c703e1b00009f0bfd0c3e" => "" - name: "acctest_hvdx3" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c703e1d0000ab644fba49" => "" - name: "acctest_9wzoj" => "" - template_name: "acctest_9wzoj" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_hvdx3" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_hvdx3" => "" - id: "acctest_hvdx3" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_hvdx3" => "" - schema_id: "621c703e1d0000ab644fba49" => "" - template_name: "acctest_9wzoj" => "" - vrf_name: "acctest_hvdx3" => "" - vrf_schema_id: "621c703e1d0000ab644fba49" => "" - vrf_template_name: "acctest_9wzoj" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_hvdx3" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3" => "" - name: "acctest_hvdx3" => "" - schema_id: "621c703e1d0000ab644fba49" => "" - template_name: "acctest_9wzoj" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_hvdx3" => "" - id: "acctest_hvdx3" => "" - layer3_multicast: "false" => "" - name: "acctest_hvdx3" => "" - schema_id: "621c703e1d0000ab644fba49" => "" - template: "acctest_9wzoj" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c703e1b00009f0bfd0c3e - provider = provider.mso - description = - name = acctest_hvdx3 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c703e1d0000ab644fba49 - provider = provider.mso - name = acctest_9wzoj - template_name = acctest_9wzoj - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_hvdx3 - provider = provider.mso - dhcp_policy.name = acctest_hvdx3 - dhcp_policy.version = 0 - display_name = acctest_hvdx3 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_hvdx3 - schema_id = 621c703e1d0000ab644fba49 - template_name = acctest_9wzoj - vrf_name = acctest_hvdx3 - vrf_schema_id = 621c703e1d0000ab644fba49 - vrf_template_name = acctest_9wzoj - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c703e1d0000ab644fba49/templates/acctest_9wzoj/bds/acctest_hvdx3/dhcpLabels/acctest_hvdx3 - provider = provider.mso - bd_name = acctest_hvdx3 - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_hvdx3 - schema_id = 621c703e1d0000ab644fba49 - template_name = acctest_9wzoj - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_hvdx3 - provider = provider.mso - display_name = acctest_hvdx3 - layer3_multicast = false - name = acctest_hvdx3 - schema_id = 621c703e1d0000ab644fba49 - template = acctest_9wzoj - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:18:39 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:18:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:18:39 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:18:39 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 12:18:39 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 12:18:39 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 12:18:39 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:18:39 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 12:18:39 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 12:18:39 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 12:18:39 [DEBUG] Template BD: Beginning Update -2022/02/28 12:18:39 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:39 [DEBUG] Begin Injection -2022/02/28 12:18:39 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014db600 5563 [] false false map[] 0xc001580400 0xc0000be2c0} -2022/02/28 12:18:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:39 [DEBUG] Exit from do method -2022/02/28 12:18:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:39 [DEBUG] 621c703f1d0000ae644fba4d: Beginning Read -2022/02/28 12:18:39 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:39 [DEBUG] Begin Injection -2022/02/28 12:18:39 [DEBUG] 621c703f1b0000b60bfd0c40: Beginning Read -2022/02/28 12:18:39 id: 621c703f1b0000b60bfd0c40 -2022/02/28 12:18:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:39 [DEBUG] Begin Injection -2022/02/28 12:18:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:39 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d06040 1472 [] false false map[] 0xc001580500 0xc0002bc0b0} -2022/02/28 12:18:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:18:39 [DEBUG] Exit from do method -2022/02/28 12:18:39 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully -2022/02/28 12:18:39 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:39 [DEBUG] New state was assigned lineage "019a79e5-9687-7af8-c2f8-c1815e200c21" -2022/02/28 12:18:39 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:39 [DEBUG] Begin Injection -2022/02/28 12:18:39 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:39 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00106ad00 0xc0002bc580} -2022/02/28 12:18:39 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:39 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 12:18:39 [DEBUG] 621c703e1b00009f0bfd0c3e: Beginning Read -2022/02/28 12:18:39 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:39 [DEBUG] Begin Injection -2022/02/28 12:18:39 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:39 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 12:18:39 [DEBUG] Template BD: Beginning Update -2022/02/28 12:18:39 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:39 [DEBUG] Begin Injection -2022/02/28 12:18:39 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f0940 160 [] false false map[] 0xc00049ed00 0xc0000be2c0} -2022/02/28 12:18:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 {"id":"621c703f1b0000b60bfd0c40","name":"acctest_c0r28","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:39 [DEBUG] Exit from do method -2022/02/28 12:18:39 [DEBUG] 621c703f1b0000b60bfd0c40: Read finished successfully -2022/02/28 12:18:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005cfd80 1362 [] false false map[] 0xc00106b000 0xc0002bc0b0} -2022/02/28 12:18:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:39 [DEBUG] Exit from do method -2022/02/28 12:18:39 [DEBUG] 621c703f1d0000ae644fba4d: Read finished successfully -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:39 [DEBUG] acctest_c0r28: Beginning Read -2022/02/28 12:18:39 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:39 [DEBUG] Begin Injection -2022/02/28 12:18:39 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:39 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f0100 1472 [] false false map[] 0xc0002b2100 0xc0002bc580} -2022/02/28 12:18:39 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:18:39 [DEBUG] Exit from do method -2022/02/28 12:18:39 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:39 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:39 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:39 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:39 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:39 [DEBUG] : Beginning Read -2022/02/28 12:18:39 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:39 [DEBUG] Begin Injection -2022/02/28 12:18:39 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:39 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0014d4400 0xc0000be2c0} -2022/02/28 12:18:39 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703e1b00009f0bfd0c3e -2022/02/28 12:18:39 [DEBUG] : Read finished successfully -2022/02/28 12:18:39 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049f200 0xc0002bc0b0} -2022/02/28 12:18:39 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:39 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 12:18:39 [DEBUG] acctest_hvdx3: Beginning Destroy -2022/02/28 12:18:39 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:39 [DEBUG] Begin Injection -2022/02/28 12:18:39 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016e4c0 1362 [] false false map[] 0xc0002b2600 0xc0002bc580} -2022/02/28 12:18:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:40 [DEBUG] Exit from do method -2022/02/28 12:18:40 currentvrfname acctest_c0r28 -2022/02/28 12:18:40 found correct vrfname -2022/02/28 12:18:40 [DEBUG] acctest_c0r28: Read finished successfully -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:40 [DEBUG] acctest_c0r28: Beginning Read -2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 [DEBUG] Begin Injection -2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a8440 5563 [] false false map[] 0xc0014d4f00 0xc0000be2c0} -2022/02/28 12:18:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:40 [DEBUG] Exit from do method -2022/02/28 12:18:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 12:18:40 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read -2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:40 [DEBUG] Begin Injection -2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:40 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read -2022/02/28 12:18:40 id: 621c703f1b0000b60bfd0c3f -2022/02/28 12:18:40 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:40 [DEBUG] Begin Injection -2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:40 [DEBUG] 621c70451b0000b80bfd0c41: Beginning Read -2022/02/28 12:18:40 id: 621c70451b0000b80bfd0c41 -2022/02/28 12:18:40 HTTP request GET mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:40 [DEBUG] Begin Injection -2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:40 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001dc4500 0xc0002bc0b0} -2022/02/28 12:18:40 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49?validate=false -2022/02/28 12:18:40 [DEBUG] acctest_hvdx3: Destroy finished successfully -2022/02/28 12:18:40 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 12:18:40 [DEBUG] 621c703e1d0000ab644fba49: Beginning Destroy -2022/02/28 12:18:40 HTTP request DELETE mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:40 [DEBUG] Begin Injection -2022/02/28 12:18:40 HTTP request after injection DELETE mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e780 1362 [] false false map[] 0xc001dc4000 0xc001286fd0} -2022/02/28 12:18:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:40 [DEBUG] Exit from do method -2022/02/28 12:18:40 [DEBUG] acctest_c0r28: Read finished successfully -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:40 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Beginning Read -2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 [DEBUG] Begin Injection -2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043c9c0 1472 [] false false map[] 0xc001dc4800 0xc0000be2c0} -2022/02/28 12:18:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:18:40 [DEBUG] Exit from do method -2022/02/28 12:18:40 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:40 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:40 [DEBUG] Begin Injection -2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014dbac0 160 [] false false map[] 0xc0002b2400 0xc001db0580} -2022/02/28 12:18:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:40 [DEBUG] Exit from do method -2022/02/28 12:18:40 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully -2022/02/28 12:18:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043d280 161 [] false false map[] 0xc0014d4600 0xc0002bc0b0} -2022/02/28 12:18:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 {"id":"621c70451b0000b80bfd0c41","name":"acctest_m3wcy","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:40 [DEBUG] Exit from do method -2022/02/28 12:18:40 [DEBUG] 621c70451b0000b80bfd0c41: Read finished successfully -2022/02/28 12:18:40 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001dc4b00 0xc0014780b0} -2022/02/28 12:18:40 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:40 [DEBUG] 621c703e1d0000ab644fba49: Destroy finished successfully -2022/02/28 12:18:40 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:40 [DEBUG] New state was assigned lineage "0511ac6c-c5ab-8b5d-8bea-4e059cb1bbc1" -2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:40 [DEBUG] Begin Injection -2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043d5c0 1362 [] false false map[] 0xc001dc5000 0xc001478160} -2022/02/28 12:18:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:40 [DEBUG] Exit from do method -2022/02/28 12:18:40 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:40 [DEBUG] : Beginning Read -2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 [DEBUG] Begin Injection -2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e980 1472 [] false false map[] 0xc001dc5500 0xc0000be2c0} -2022/02/28 12:18:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:18:40 [DEBUG] Exit from do method -2022/02/28 12:18:40 currentvrfname acctest_idq2c -2022/02/28 12:18:40 found correct vrfname -2022/02/28 12:18:40 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:40 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:40 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:40 [DEBUG] Begin Injection -2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 -2022/02/28 12:18:40 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f340 39 [] false false map[] 0xc001dc5700 0xc001db0580} -2022/02/28 12:18:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000ab644fba49 {"code":404,"message":"Item not found"} -2022/02/28 12:18:40 [DEBUG] Exit from do method -2022/02/28 12:18:40 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:18:40 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:18:40 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:40 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:40 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:40 [DEBUG] : Beginning Read -2022/02/28 12:18:40 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:40 [DEBUG] Begin Injection -2022/02/28 12:18:40 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:40 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f1140 1362 [] false false map[] 0xc00049ef00 0xc001478160} -2022/02/28 12:18:40 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"id":"621c703f1d0000ae644fba4d","displayName":"acctest_9kl4z","description":"","templates":[{"name":"acctest_9kl4z","displayName":"acctest_9kl4z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_c0r28","displayName":"acctest_c0r28","bdRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/vrfs/acctest_c0r28","dhcpLabel":{"name":"acctest_c0r28","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_c0r28","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:18:40 [DEBUG] Exit from do method -2022/02/28 12:18:40 [DEBUG] /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28: Read finished successfully -2022/02/28 12:18:40 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:40 [DEBUG] New state was assigned lineage "89ca72a1-cdaa-5274-cb9a-05fc8abf8c40" -2022/02/28 12:18:40 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:18:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:18:40 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_c0r28" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28" => "" - name: "acctest_c0r28" => "" - schema_id: "621c703f1d0000ae644fba4d" => "" - template_name: "acctest_9kl4z" => "" - version: "0" => "" -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c703f1b0000b60bfd0c40" => "" - name: "acctest_c0r28" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c703f1d0000ae644fba4d" => "" - name: "acctest_9kl4z" => "" - template_name: "acctest_9kl4z" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_c0r28" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_c0r28" => "" - id: "acctest_c0r28" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_c0r28" => "" - schema_id: "621c703f1d0000ae644fba4d" => "" - template_name: "acctest_9kl4z" => "" - vrf_name: "acctest_c0r28" => "" - vrf_schema_id: "621c703f1d0000ae644fba4d" => "" - vrf_template_name: "acctest_9kl4z" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_c0r28" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28" => "" - name: "acctest_c0r28" => "" - schema_id: "621c703f1d0000ae644fba4d" => "" - template_name: "acctest_9kl4z" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_c0r28" => "" - id: "acctest_c0r28" => "" - layer3_multicast: "false" => "" - name: "acctest_c0r28" => "" - schema_id: "621c703f1d0000ae644fba4d" => "" - template: "acctest_9kl4z" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28 - provider = provider.mso - bd_name = acctest_c0r28 - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_c0r28 - schema_id = 621c703f1d0000ae644fba4d - template_name = acctest_9kl4z - version = 0 - - Dependencies: - mso_schema_template_bd_dhcp_policy.test -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c703f1b0000b60bfd0c40 - provider = provider.mso - description = - name = acctest_c0r28 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c703f1d0000ae644fba4d - provider = provider.mso - name = acctest_9kl4z - template_name = acctest_9kl4z - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_c0r28 - provider = provider.mso - dhcp_policy.name = acctest_c0r28 - dhcp_policy.version = 0 - display_name = acctest_c0r28 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_c0r28 - schema_id = 621c703f1d0000ae644fba4d - template_name = acctest_9kl4z - vrf_name = acctest_c0r28 - vrf_schema_id = 621c703f1d0000ae644fba4d - vrf_template_name = acctest_9kl4z - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c703f1d0000ae644fba4d/templates/acctest_9kl4z/bds/acctest_c0r28/dhcpLabels/acctest_c0r28 - provider = provider.mso - bd_name = acctest_c0r28 - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_c0r28 - schema_id = 621c703f1d0000ae644fba4d - template_name = acctest_9kl4z - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_c0r28 - provider = provider.mso - display_name = acctest_c0r28 - layer3_multicast = false - name = acctest_c0r28 - schema_id = 621c703f1d0000ae644fba4d - template = acctest_9kl4z - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:18:40 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:18:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:18:40 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:18:40 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 12:18:40 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 12:18:40 [DEBUG] Template BD: Beginning Update -2022/02/28 12:18:40 HTTP request PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:40 [DEBUG] Begin Injection -2022/02/28 12:18:40 HTTP request after injection PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043c240 1472 [] false false map[] 0xc002820500 0xc0000be2c0} -2022/02/28 12:18:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:18:41 [DEBUG] Exit from do method -2022/02/28 12:18:41 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:41 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Read -2022/02/28 12:18:41 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:41 [DEBUG] Begin Injection -2022/02/28 12:18:41 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d07600 5563 [] false false map[] 0xc001dc5900 0xc001db0580} -2022/02/28 12:18:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:41 [DEBUG] Exit from do method -2022/02/28 12:18:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:41 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:41 [DEBUG] New state was assigned lineage "1191bf6a-fc7f-605b-2ace-d5b5348f96dc" -2022/02/28 12:18:41 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:18:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:41 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:18:41 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049ff00 0xc001287290} -2022/02/28 12:18:41 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 12:18:41 [DEBUG] 621c703f1b0000b60bfd0c40: Beginning Read -2022/02/28 12:18:41 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:41 [DEBUG] Begin Injection -2022/02/28 12:18:41 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:41 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 12:18:41 [DEBUG] Template BD: Beginning Update -2022/02/28 12:18:41 HTTP request PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 [DEBUG] Begin Injection -2022/02/28 12:18:41 HTTP request after injection PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001300f40 1472 [] false false map[] 0xc0014d4f00 0xc0004f26e0} -2022/02/28 12:18:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:18:41 [DEBUG] Exit from do method -2022/02/28 12:18:41 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully -2022/02/28 12:18:41 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:41 [DEBUG] New state was assigned lineage "93864b49-070c-fdf0-433b-673c4dfd0b7b" -2022/02/28 12:18:41 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:41 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:41 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:41 [DEBUG] Test: Executing step 6 -2022/02/28 12:18:41 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:41 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c\")" (*terraform.graphNodeImportState) needs provider.mso -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c\")" references: [] -2022/02/28 12:18:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:41 [DEBUG] Starting graph walk: walkImport -2022/02/28 12:18:41 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Import -2022/02/28 12:18:41 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:41 [DEBUG] Begin Injection -2022/02/28 12:18:41 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:41 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001581400 0xc001db0580} -2022/02/28 12:18:41 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c40 -2022/02/28 12:18:41 [DEBUG] : Read finished successfully -2022/02/28 12:18:41 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc002820b00 0xc0019ac8f0} -2022/02/28 12:18:41 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 12:18:41 [DEBUG] acctest_c0r28: Beginning Destroy -2022/02/28 12:18:41 HTTP request PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 [DEBUG] Begin Injection -2022/02/28 12:18:41 HTTP request after injection PATCH mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae7140 1472 [] false false map[] 0xc002820400 0xc0004f26e0} -2022/02/28 12:18:41 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:18:41 [DEBUG] Exit from do method -2022/02/28 12:18:41 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Import finished successfully -2022/02/28 12:18:41 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Read -2022/02/28 12:18:41 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:41 [DEBUG] Begin Injection -2022/02/28 12:18:41 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:41 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ef2500 0xc0019ac8f0} -2022/02/28 12:18:41 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d?validate=false -2022/02/28 12:18:41 [DEBUG] acctest_c0r28: Destroy finished successfully -2022/02/28 12:18:41 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 12:18:41 [DEBUG] 621c703f1d0000ae644fba4d: Beginning Destroy -2022/02/28 12:18:41 HTTP request DELETE mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:41 [DEBUG] Begin Injection -2022/02/28 12:18:41 HTTP request after injection DELETE mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a87c0 1472 [] false false map[] 0xc000ef2900 0xc0004f26e0} -2022/02/28 12:18:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:18:42 [DEBUG] Exit from do method -2022/02/28 12:18:42 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully -2022/02/28 12:18:42 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:42 [DEBUG] New state was assigned lineage "73a3f52d-16e6-5199-14c2-324b6b6751c5" -2022/02/28 12:18:42 [DEBUG] Test: Executing step 7 -2022/02/28 12:18:42 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:42 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:42 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:42 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:42 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config -2022/02/28 12:18:42 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config -2022/02/28 12:18:42 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:42 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:42 [DEBUG] : Beginning Read -2022/02/28 12:18:42 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:42 [DEBUG] Begin Injection -2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:42 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000ef3700 0xc0019ac8f0} -2022/02/28 12:18:42 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:42 [DEBUG] 621c703f1d0000ae644fba4d: Destroy finished successfully -2022/02/28 12:18:42 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:42 [DEBUG] New state was assigned lineage "9f746b89-348c-7d5f-7b48-81062a6d1863" -2022/02/28 12:18:42 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:42 [DEBUG] Begin Injection -2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002c4fc0 5563 [] false false map[] 0xc00106b500 0xc0004f26e0} -2022/02/28 12:18:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:42 [DEBUG] Exit from do method -2022/02/28 12:18:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:42 [DEBUG] 621c70451b0000b80bfd0c41: Beginning Read -2022/02/28 12:18:42 id: 621c70451b0000b80bfd0c41 -2022/02/28 12:18:42 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read -2022/02/28 12:18:42 HTTP request GET mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:42 [DEBUG] Begin Injection -2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:42 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:42 [DEBUG] Begin Injection -2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:42 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read -2022/02/28 12:18:42 id: 621c703f1b0000b60bfd0c3f -2022/02/28 12:18:42 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:42 [DEBUG] Begin Injection -2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:42 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9f340 39 [] false false map[] 0xc001580000 0xc0019ac8f0} -2022/02/28 12:18:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"code":404,"message":"Item not found"} -2022/02/28 12:18:42 [DEBUG] Exit from do method -2022/02/28 12:18:42 HTTP request GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:42 [DEBUG] Begin Injection -2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9f680 1472 [] false false map[] 0xc001580500 0xc001db0580} -2022/02/28 12:18:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:18:42 [DEBUG] Exit from do method -2022/02/28 12:18:42 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully -2022/02/28 12:18:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:42 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:42 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:42 [DEBUG] Begin Injection -2022/02/28 12:18:42 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84c00 161 [] false false map[] 0xc00049e800 0xc0004f26e0} -2022/02/28 12:18:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 {"id":"621c70451b0000b80bfd0c41","name":"acctest_m3wcy","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:42 [DEBUG] Exit from do method -2022/02/28 12:18:42 [DEBUG] 621c70451b0000b80bfd0c41: Read finished successfully -2022/02/28 12:18:42 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85180 160 [] false false map[] 0xc00049ea00 0xc0019ac8f0} -2022/02/28 12:18:42 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:42 [DEBUG] Exit from do method -2022/02/28 12:18:42 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully -2022/02/28 12:18:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d -2022/02/28 12:18:43 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e0c0 39 [] false false map[] 0xc0002b2c00 0xc001db0580} -2022/02/28 12:18:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703f1d0000ae644fba4d {"code":404,"message":"Item not found"} -2022/02/28 12:18:43 [DEBUG] Exit from do method -2022/02/28 12:18:43 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:18:43 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:18:43 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:43 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:43 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:43 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:43 [DEBUG] : Beginning Read -2022/02/28 12:18:43 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:43 [DEBUG] Begin Injection -2022/02/28 12:18:43 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d060c0 1472 [] false false map[] 0xc001580900 0xc0004f26e0} -2022/02/28 12:18:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:18:43 [DEBUG] Exit from do method -2022/02/28 12:18:43 currentvrfname acctest_idq2c -2022/02/28 12:18:43 found correct vrfname -2022/02/28 12:18:43 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:43 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:43 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:43 [DEBUG] Begin Injection -2022/02/28 12:18:43 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d06b80 1472 [] false false map[] 0xc0002b2500 0xc0004f26e0} -2022/02/28 12:18:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:18:43 [DEBUG] Exit from do method -2022/02/28 12:18:43 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:43 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Beginning Read -2022/02/28 12:18:43 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:43 [DEBUG] Begin Injection -2022/02/28 12:18:43 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85040 5563 [] false false map[] 0xc00106b900 0xc001db0580} -2022/02/28 12:18:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:43 [DEBUG] Exit from do method -2022/02/28 12:18:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:43 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:43 [DEBUG] New state was assigned lineage "07bab9ed-0e85-4ebb-b758-ca7607fdbea8" -2022/02/28 12:18:43 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:18:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:43 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:18:43 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016ed00 1472 [] false false map[] 0xc000dee400 0xc00101a840} -2022/02/28 12:18:43 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","dhcpLabel":{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_idq2c","dhcpOptionLabel":{"name":"acctest_m3wcy","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:18:43 [DEBUG] Exit from do method -2022/02/28 12:18:43 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c: Read finished successfully -2022/02/28 12:18:43 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:43 [DEBUG] New state was assigned lineage "b61d2fad-db29-da51-faeb-a6fb1fb17f69" -2022/02/28 12:18:43 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:43 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:43 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:43 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.test - description: "" => "" - id: "621c70451b0000b80bfd0c41" => "" - name: "acctest_m3wcy" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_idq2c" => "" - dhcp_option_name: "acctest_m3wcy" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c" => "" - name: "acctest_idq2c" => "" - schema_id: "621c703e1d0000aa644fba4a" => "" - template_name: "acctest_pexxl" => "" - version: "1" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.test: - ID = 621c70451b0000b80bfd0c41 - provider = provider.mso - description = - name = acctest_m3wcy - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c703f1b0000b60bfd0c3f - provider = provider.mso - description = - name = acctest_idq2c - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c703e1d0000aa644fba4a - provider = provider.mso - name = acctest_pexxl - template_name = acctest_pexxl - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_idq2c - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_m3wcy - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_idq2c - dhcp_policy.version = 1 - display_name = acctest_idq2c - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_idq2c - schema_id = 621c703e1d0000aa644fba4a - template_name = acctest_pexxl - vrf_name = acctest_idq2c - vrf_schema_id = 621c703e1d0000aa644fba4a - vrf_template_name = acctest_pexxl - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c/dhcpLabels/acctest_idq2c - provider = provider.mso - bd_name = acctest_idq2c - dhcp_option_name = acctest_m3wcy - dhcp_option_version = 1 - name = acctest_idq2c - schema_id = 621c703e1d0000aa644fba4a - template_name = acctest_pexxl - version = 1 - - Dependencies: - mso_dhcp_option_policy.test - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_idq2c - provider = provider.mso - display_name = acctest_idq2c - layer3_multicast = false - name = acctest_idq2c - schema_id = 621c703e1d0000aa644fba4a - template = acctest_pexxl - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:18:43 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:18:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 12:18:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 12:18:43 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 12:18:43 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 12:18:43 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 12:18:43 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 12:18:43 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 12:18:43 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:18:43 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:18:43 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 12:18:43 [DEBUG] Template BD: Beginning Update -2022/02/28 12:18:43 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:43 [DEBUG] Begin Injection -2022/02/28 12:18:43 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:44 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000bab300 0xc001db0580} -2022/02/28 12:18:44 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:44 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change -2022/02/28 12:18:44 [DEBUG] 621c70451b0000b80bfd0c41: Beginning Read -2022/02/28 12:18:44 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:44 [DEBUG] Begin Injection -2022/02/28 12:18:44 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:44 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001580200 0xc001db0580} -2022/02/28 12:18:44 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c70451b0000b80bfd0c41 -2022/02/28 12:18:44 [DEBUG] : Read finished successfully -2022/02/28 12:18:44 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:44 [DEBUG] New state was assigned lineage "3ae289c2-b595-0839-98aa-e8c272adc849" -2022/02/28 12:18:44 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:44 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:44 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:44 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:44 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:44 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:44 [DEBUG] : Beginning Read -2022/02/28 12:18:44 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:44 [DEBUG] Begin Injection -2022/02/28 12:18:44 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:44 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014da280 5563 [] false false map[] 0xc000baa200 0xc001db0580} -2022/02/28 12:18:44 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:44 [DEBUG] Exit from do method -2022/02/28 12:18:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:44 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read -2022/02/28 12:18:44 id: 621c703f1b0000b60bfd0c3f -2022/02/28 12:18:44 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:44 [DEBUG] Begin Injection -2022/02/28 12:18:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:44 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read -2022/02/28 12:18:44 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:44 [DEBUG] Begin Injection -2022/02/28 12:18:44 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000497000 160 [] false false map[] 0xc000276500 0xc001db0580} -2022/02/28 12:18:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:45 [DEBUG] Exit from do method -2022/02/28 12:18:45 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully -2022/02/28 12:18:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f86640 1277 [] false false map[] 0xc000baa900 0xc0019ac8f0} -2022/02/28 12:18:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 12:18:45 [DEBUG] Exit from do method -2022/02/28 12:18:45 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:45 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:45 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:45 [DEBUG] Begin Injection -2022/02/28 12:18:45 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001300b00 1277 [] false false map[] 0xc000276900 0xc0019ac8f0} -2022/02/28 12:18:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 12:18:45 [DEBUG] Exit from do method -2022/02/28 12:18:45 currentvrfname acctest_idq2c -2022/02/28 12:18:45 found correct vrfname -2022/02/28 12:18:45 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:45 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:45 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:45 [DEBUG] Begin Injection -2022/02/28 12:18:45 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:45 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00043db40 1277 [] false false map[] 0xc000baaf00 0xc0019ac8f0} -2022/02/28 12:18:45 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 12:18:45 [DEBUG] Exit from do method -2022/02/28 12:18:45 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:45 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:45 [DEBUG] New state was assigned lineage "f9cf8e6b-7f73-7e54-f886-7c90f04128ae" -2022/02/28 12:18:45 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:45 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:45 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:45 [DEBUG] Test: Executing step 8 -2022/02/28 12:18:45 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:45 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:45 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:45 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:45 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:45 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:45 [DEBUG] : Beginning Read -2022/02/28 12:18:45 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:45 [DEBUG] Begin Injection -2022/02/28 12:18:45 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000497300 5563 [] false false map[] 0xc0010a5500 0xc0019ac8f0} -2022/02/28 12:18:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:46 [DEBUG] Exit from do method -2022/02/28 12:18:46 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:46 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read -2022/02/28 12:18:46 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:46 [DEBUG] Begin Injection -2022/02/28 12:18:46 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:46 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read -2022/02/28 12:18:46 id: 621c703f1b0000b60bfd0c3f -2022/02/28 12:18:46 HTTP request GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:46 [DEBUG] Begin Injection -2022/02/28 12:18:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000810200 160 [] false false map[] 0xc000f80f00 0xc001db0580} -2022/02/28 12:18:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f {"id":"621c703f1b0000b60bfd0c3f","name":"acctest_idq2c","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:46 [DEBUG] Exit from do method -2022/02/28 12:18:46 [DEBUG] 621c703f1b0000b60bfd0c3f: Read finished successfully -2022/02/28 12:18:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000810340 1277 [] false false map[] 0xc001058600 0xc0019ac8f0} -2022/02/28 12:18:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 12:18:46 [DEBUG] Exit from do method -2022/02/28 12:18:46 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully -2022/02/28 12:18:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:46 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:46 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:46 [DEBUG] Begin Injection -2022/02/28 12:18:46 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:46 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f86040 1277 [] false false map[] 0xc001058300 0xc0019ac8f0} -2022/02/28 12:18:46 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 12:18:46 [DEBUG] Exit from do method -2022/02/28 12:18:46 currentvrfname acctest_idq2c -2022/02/28 12:18:46 found correct vrfname -2022/02/28 12:18:46 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:46 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:46 [DEBUG] acctest_idq2c: Beginning Read -2022/02/28 12:18:46 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:46 [DEBUG] Begin Injection -2022/02/28 12:18:46 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:47 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000497a40 1277 [] false false map[] 0xc000f80400 0xc0019ac8f0} -2022/02/28 12:18:47 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_idq2c","displayName":"acctest_idq2c","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_idq2c","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_idq2c","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 12:18:47 [DEBUG] Exit from do method -2022/02/28 12:18:47 [DEBUG] acctest_idq2c: Read finished successfully -2022/02/28 12:18:47 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:47 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:47 [DEBUG] New state was assigned lineage "859046d6-2217-53ad-4eff-09eff5f79b47" -2022/02/28 12:18:47 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:47 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:47 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:47 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:47 [WARN] Test: Step plan: DIFF: - -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c703f1b0000b60bfd0c3f" => "" - name: "acctest_idq2c" => "acctest_30vko" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "acctest_idq2c" => "acctest_30vko" (forces new resource) - id: "acctest_idq2c" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_idq2c" => "acctest_30vko" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c703e1d0000aa644fba4a" => "621c703e1d0000aa644fba4a" - template_name: "acctest_pexxl" => "acctest_pexxl" - vrf_name: "acctest_idq2c" => "acctest_30vko" - vrf_schema_id: "621c703e1d0000aa644fba4a" => "" - vrf_template_name: "acctest_pexxl" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_30vko" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_30vko" - schema_id: "" => "621c703e1d0000aa644fba4a" - template_name: "" => "acctest_pexxl" - version: "" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_idq2c" => "acctest_30vko" - id: "acctest_idq2c" => "" - layer3_multicast: "false" => "" - name: "acctest_idq2c" => "acctest_30vko" (forces new resource) - schema_id: "621c703e1d0000aa644fba4a" => "621c703e1d0000aa644fba4a" - template: "acctest_pexxl" => "acctest_pexxl" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c703f1b0000b60bfd0c3f - provider = provider.mso - description = - name = acctest_idq2c - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c703e1d0000aa644fba4a - provider = provider.mso - name = acctest_pexxl - template_name = acctest_pexxl - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_idq2c - provider = provider.mso - display_name = acctest_idq2c - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_idq2c - schema_id = 621c703e1d0000aa644fba4a - template_name = acctest_pexxl - vrf_name = acctest_idq2c - vrf_schema_id = 621c703e1d0000aa644fba4a - vrf_template_name = acctest_pexxl - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_idq2c - provider = provider.mso - display_name = acctest_idq2c - layer3_multicast = false - name = acctest_idq2c - schema_id = 621c703e1d0000aa644fba4a - template = acctest_pexxl - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:18:47 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:18:47 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:18:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:47 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:18:47 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 12:18:47 [DEBUG] 621c703f1b0000b60bfd0c3f: Beginning Read -2022/02/28 12:18:47 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:47 [DEBUG] Begin Injection -2022/02/28 12:18:47 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:47 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 12:18:47 [DEBUG] Template BD: Beginning Update -2022/02/28 12:18:47 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 [DEBUG] Begin Injection -2022/02/28 12:18:47 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001585400 0xc001db0580} -2022/02/28 12:18:47 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 12:18:47 [DEBUG] acctest_idq2c: Beginning Destroy -2022/02/28 12:18:47 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 [DEBUG] Begin Injection -2022/02/28 12:18:47 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc002444d00 0xc0019ac8f0} -2022/02/28 12:18:47 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c703f1b0000b60bfd0c3f -2022/02/28 12:18:47 [DEBUG] : Read finished successfully -2022/02/28 12:18:47 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:18:47 [DEBUG] : Beginning Create -2022/02/28 12:18:47 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:47 [DEBUG] Begin Injection -2022/02/28 12:18:47 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:47 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTEwLCJpYXQiOjE2NDYwMzA5MTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoid3ZyQmh0b1ZqZ0l3a1RabHEwM0pOM1k3IiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.XzQpZhxT1wuZ-Wq3Wr5VMlS_4fz23BDHxOatEIfiqO69tE-ci-8dUQXQi0dENktl9jtGs26WTuB3QXjYCdPMc9b-Tcl_zJ9dYZGYzw1sP7_r0qsU3ajNpEJd9UHefF9P6SRxoe500I6IukzXRKH95nSBlCTzfploBbOT-y3qhdT9ZFFjhMcNNcypZWPeYVRAV-Oze_fyNdhYSxt1MPKgaTigI6V17a1vHGA7BBJH-rmA7QMXMPcdKQbHPAc64zy7jeAo6SYpIhQZEHnxqPu0vpOCemdVkzEzVmA2pPm7JTT6BjrVdAp00jFwhNI2DsblYN6s3_17tWdFqjJvCDxZMg] Content-Type:[application/json]] {{"desc":"","name":"acctest_30vko","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x10f7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc00002c148} -2022/02/28 12:18:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:47 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001585800 0xc001db0580} -2022/02/28 12:18:47 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 [DEBUG] acctest_idq2c: Destroy finished successfully -2022/02/28 12:18:47 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:18:47 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:18:47 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 [DEBUG] Begin Injection -2022/02/28 12:18:47 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:47 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:18:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014db740 160 [] false false map[] 0xc002445400 0xc0019ac8f0} -2022/02/28 12:18:47 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c704f1b0000b80bfd0c42","name":"acctest_30vko","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:47 [DEBUG] Exit from do method -2022/02/28 12:18:47 [DEBUG] 621c704f1b0000b80bfd0c42: Creation finished successfully -2022/02/28 12:18:47 [DEBUG] 621c704f1b0000b80bfd0c42: Beginning Read -2022/02/28 12:18:47 id: 621c704f1b0000b80bfd0c42 -2022/02/28 12:18:47 HTTP request GET mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:47 [DEBUG] Begin Injection -2022/02/28 12:18:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001593700 160 [] false false map[] 0xc001585a00 0xc0019ac8f0} -2022/02/28 12:18:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 {"id":"621c704f1b0000b80bfd0c42","name":"acctest_30vko","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:48 [DEBUG] Exit from do method -2022/02/28 12:18:48 [DEBUG] 621c704f1b0000b80bfd0c42: Read finished successfully -2022/02/28 12:18:48 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:48 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0011f0000 0xc001db0580} -2022/02/28 12:18:48 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:48 [DEBUG] acctest_30vko: Creation finished successfully -2022/02/28 12:18:48 [DEBUG] acctest_30vko: Beginning Read -2022/02/28 12:18:48 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:48 [DEBUG] Begin Injection -2022/02/28 12:18:48 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:48 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e340 768 [] false false map[] 0xc000388000 0xc001db0580} -2022/02/28 12:18:48 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 12:18:48 [DEBUG] Exit from do method -2022/02/28 12:18:48 currentvrfname acctest_30vko -2022/02/28 12:18:48 found correct vrfname -2022/02/28 12:18:48 [DEBUG] acctest_30vko: Read finished successfully -2022/02/28 12:18:48 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:18:48 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:18:48 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:18:48 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:48 [DEBUG] Begin Injection -2022/02/28 12:18:48 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:49 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001584a00 0xc001db0580} -2022/02/28 12:18:49 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:49 [DEBUG] : Beginning Read -2022/02/28 12:18:49 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:49 [DEBUG] Begin Injection -2022/02/28 12:18:49 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:49 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107ea40 1278 [] false false map[] 0xc001584c00 0xc001db0580} -2022/02/28 12:18:49 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 12:18:49 [DEBUG] Exit from do method -2022/02/28 12:18:49 [DEBUG] acctest_30vko: Read finished successfully -2022/02/28 12:18:49 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:18:49 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:18:49 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:49 [DEBUG] Begin Injection -2022/02/28 12:18:49 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:49 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049e700 0xc001db0580} -2022/02/28 12:18:49 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:49 [DEBUG] Creation Complete -2022/02/28 12:18:49 [DEBUG] : Beginning Read -2022/02/28 12:18:49 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:49 [DEBUG] Begin Injection -2022/02/28 12:18:49 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014f1d40 1363 [] false false map[] 0xc002444000 0xc001db0580} -2022/02/28 12:18:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:18:50 [DEBUG] Exit from do method -2022/02/28 12:18:50 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko: Read finished successfully -2022/02/28 12:18:50 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:50 [DEBUG] New state was assigned lineage "ab0f35a8-d946-f3f8-822a-c23d6fc74bc9" -2022/02/28 12:18:50 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:50 [DEBUG] Begin Injection -2022/02/28 12:18:50 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:50 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001592600 1363 [] false false map[] 0xc002444100 0xc001db0580} -2022/02/28 12:18:50 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:18:50 [DEBUG] Exit from do method -2022/02/28 12:18:50 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:18:50 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:50 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:50 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:50 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:50 [DEBUG] : Beginning Read -2022/02/28 12:18:50 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:50 [DEBUG] Begin Injection -2022/02/28 12:18:50 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003a8180 5563 [] false false map[] 0xc00049ec00 0xc001db0580} -2022/02/28 12:18:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:51 [DEBUG] Exit from do method -2022/02/28 12:18:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:51 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read -2022/02/28 12:18:51 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:51 [DEBUG] Begin Injection -2022/02/28 12:18:51 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:51 [DEBUG] 621c704f1b0000b80bfd0c42: Beginning Read -2022/02/28 12:18:51 id: 621c704f1b0000b80bfd0c42 -2022/02/28 12:18:51 HTTP request GET mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:51 [DEBUG] Begin Injection -2022/02/28 12:18:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016ec40 160 [] false false map[] 0xc00049e500 0xc0019ac8f0} -2022/02/28 12:18:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 {"id":"621c704f1b0000b80bfd0c42","name":"acctest_30vko","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:51 [DEBUG] Exit from do method -2022/02/28 12:18:51 [DEBUG] 621c704f1b0000b80bfd0c42: Read finished successfully -2022/02/28 12:18:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00016ed00 1363 [] false false map[] 0xc000dba300 0xc001db0580} -2022/02/28 12:18:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:18:51 [DEBUG] Exit from do method -2022/02/28 12:18:51 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully -2022/02/28 12:18:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:51 [DEBUG] acctest_30vko: Beginning Read -2022/02/28 12:18:51 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:51 [DEBUG] Begin Injection -2022/02/28 12:18:51 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:51 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000811ac0 1363 [] false false map[] 0xc0009a4600 0xc001db0580} -2022/02/28 12:18:51 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:18:51 [DEBUG] Exit from do method -2022/02/28 12:18:51 currentvrfname acctest_30vko -2022/02/28 12:18:51 found correct vrfname -2022/02/28 12:18:51 [DEBUG] acctest_30vko: Read finished successfully -2022/02/28 12:18:51 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:51 [DEBUG] acctest_30vko: Beginning Read -2022/02/28 12:18:51 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:51 [DEBUG] Begin Injection -2022/02/28 12:18:51 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:52 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004973c0 1363 [] false false map[] 0xc000dba900 0xc001db0580} -2022/02/28 12:18:52 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:18:52 [DEBUG] Exit from do method -2022/02/28 12:18:52 [DEBUG] acctest_30vko: Read finished successfully -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:52 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko: Beginning Read -2022/02/28 12:18:52 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:52 [DEBUG] Begin Injection -2022/02/28 12:18:52 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:52 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e9f600 1363 [] false false map[] 0xc000980400 0xc001db0580} -2022/02/28 12:18:52 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:18:52 [DEBUG] Exit from do method -2022/02/28 12:18:52 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko: Read finished successfully -2022/02/28 12:18:52 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:52 [DEBUG] New state was assigned lineage "31c80de8-bb2f-748d-3337-ed655028e437" -2022/02/28 12:18:52 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:18:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:52 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:52 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:52 [WARN] Test: Executing destroy step -2022/02/28 12:18:52 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:52 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:18:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:18:52 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:18:52 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:52 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:18:52 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:52 [DEBUG] : Beginning Read -2022/02/28 12:18:52 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:52 [DEBUG] Begin Injection -2022/02/28 12:18:52 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:52 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e240 5563 [] false false map[] 0xc00049ec00 0xc001db0580} -2022/02/28 12:18:52 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:52 [DEBUG] Exit from do method -2022/02/28 12:18:52 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:18:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:18:52 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Read -2022/02/28 12:18:52 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:52 [DEBUG] Begin Injection -2022/02/28 12:18:52 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:52 [DEBUG] 621c704f1b0000b80bfd0c42: Beginning Read -2022/02/28 12:18:52 id: 621c704f1b0000b80bfd0c42 -2022/02/28 12:18:52 HTTP request GET mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:52 [DEBUG] Begin Injection -2022/02/28 12:18:52 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f87980 1363 [] false false map[] 0xc000c94300 0xc001db0580} -2022/02/28 12:18:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:18:53 [DEBUG] Exit from do method -2022/02/28 12:18:53 [DEBUG] 621c703e1d0000aa644fba4a: Read finished successfully -2022/02/28 12:18:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:18:53 [DEBUG] acctest_30vko: Beginning Read -2022/02/28 12:18:53 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:53 [DEBUG] Begin Injection -2022/02/28 12:18:53 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f9c0 160 [] false false map[] 0xc00049ef00 0xc0019ac8f0} -2022/02/28 12:18:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 {"id":"621c704f1b0000b80bfd0c42","name":"acctest_30vko","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:18:53 [DEBUG] Exit from do method -2022/02/28 12:18:53 [DEBUG] 621c704f1b0000b80bfd0c42: Read finished successfully -2022/02/28 12:18:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000496a40 1363 [] false false map[] 0xc0000a8700 0xc001db0580} -2022/02/28 12:18:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:18:53 [DEBUG] Exit from do method -2022/02/28 12:18:53 currentvrfname acctest_30vko -2022/02/28 12:18:53 found correct vrfname -2022/02/28 12:18:53 [DEBUG] acctest_30vko: Read finished successfully -2022/02/28 12:18:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:18:53 [DEBUG] acctest_30vko: Beginning Read -2022/02/28 12:18:53 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:53 [DEBUG] Begin Injection -2022/02/28 12:18:53 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:53 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008102c0 1363 [] false false map[] 0xc000b4a400 0xc001db0580} -2022/02/28 12:18:53 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:18:53 [DEBUG] Exit from do method -2022/02/28 12:18:53 [DEBUG] acctest_30vko: Read finished successfully -2022/02/28 12:18:53 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:18:53 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko: Beginning Read -2022/02/28 12:18:53 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:53 [DEBUG] Begin Injection -2022/02/28 12:18:53 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:54 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000496d00 1363 [] false false map[] 0xc000b4a900 0xc001db0580} -2022/02/28 12:18:54 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"id":"621c703e1d0000aa644fba4a","displayName":"acctest_pexxl","description":"","templates":[{"name":"acctest_pexxl","displayName":"acctest_pexxl","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_30vko","displayName":"acctest_30vko","vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_30vko","displayName":"acctest_30vko","bdRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/vrfs/acctest_30vko","dhcpLabel":{"name":"acctest_30vko","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_30vko","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:18:54 [DEBUG] Exit from do method -2022/02/28 12:18:54 [DEBUG] /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko: Read finished successfully -2022/02/28 12:18:54 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:54 [DEBUG] New state was assigned lineage "636a5aa2-0da5-510d-485b-0f79dc72d1ab" -2022/02/28 12:18:54 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:18:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:18:54 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:18:54 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c704f1b0000b80bfd0c42" => "" - name: "acctest_30vko" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c703e1d0000aa644fba4a" => "" - name: "acctest_pexxl" => "" - template_name: "acctest_pexxl" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_30vko" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_30vko" => "" - id: "acctest_30vko" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_30vko" => "" - schema_id: "621c703e1d0000aa644fba4a" => "" - template_name: "acctest_pexxl" => "" - vrf_name: "acctest_30vko" => "" - vrf_schema_id: "621c703e1d0000aa644fba4a" => "" - vrf_template_name: "acctest_pexxl" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_30vko" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko" => "" - name: "acctest_30vko" => "" - schema_id: "621c703e1d0000aa644fba4a" => "" - template_name: "acctest_pexxl" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_30vko" => "" - id: "acctest_30vko" => "" - layer3_multicast: "false" => "" - name: "acctest_30vko" => "" - schema_id: "621c703e1d0000aa644fba4a" => "" - template: "acctest_pexxl" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c704f1b0000b80bfd0c42 - provider = provider.mso - description = - name = acctest_30vko - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c703e1d0000aa644fba4a - provider = provider.mso - name = acctest_pexxl - template_name = acctest_pexxl - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_30vko - provider = provider.mso - dhcp_policy.name = acctest_30vko - dhcp_policy.version = 0 - display_name = acctest_30vko - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_30vko - schema_id = 621c703e1d0000aa644fba4a - template_name = acctest_pexxl - vrf_name = acctest_30vko - vrf_schema_id = 621c703e1d0000aa644fba4a - vrf_template_name = acctest_pexxl - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c703e1d0000aa644fba4a/templates/acctest_pexxl/bds/acctest_30vko/dhcpLabels/acctest_30vko - provider = provider.mso - bd_name = acctest_30vko - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_30vko - schema_id = 621c703e1d0000aa644fba4a - template_name = acctest_pexxl - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_30vko - provider = provider.mso - display_name = acctest_30vko - layer3_multicast = false - name = acctest_30vko - schema_id = 621c703e1d0000aa644fba4a - template = acctest_pexxl - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:18:54 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:18:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (destroy) -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:18:54 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:18:54 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:18:54 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:18:54 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 12:18:54 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 12:18:54 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 12:18:54 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 12:18:54 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 12:18:54 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 12:18:54 [DEBUG] Template BD: Beginning Update -2022/02/28 12:18:54 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:54 [DEBUG] Begin Injection -2022/02/28 12:18:54 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:54 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:54 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049e500 0xc001db0580} -2022/02/28 12:18:54 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:54 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 12:18:54 [DEBUG] 621c704f1b0000b80bfd0c42: Beginning Read -2022/02/28 12:18:54 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:54 [DEBUG] Begin Injection -2022/02/28 12:18:54 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:54 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 12:18:54 [DEBUG] Template BD: Beginning Update -2022/02/28 12:18:54 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:54 [DEBUG] Begin Injection -2022/02/28 12:18:54 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:54 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:54 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000b4a800 0xc001db0580} -2022/02/28 12:18:54 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c704f1b0000b80bfd0c42 -2022/02/28 12:18:54 [DEBUG] : Read finished successfully -2022/02/28 12:18:54 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:54 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000eb6100 0xc0019ac8f0} -2022/02/28 12:18:54 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:54 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 12:18:54 [DEBUG] acctest_30vko: Beginning Destroy -2022/02/28 12:18:54 HTTP request PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:54 [DEBUG] Begin Injection -2022/02/28 12:18:54 HTTP request after injection PATCH mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:55 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:55 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000b4bc00 0xc0019ac8f0} -2022/02/28 12:18:55 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a?validate=false -2022/02/28 12:18:55 [DEBUG] acctest_30vko: Destroy finished successfully -2022/02/28 12:18:55 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 12:18:55 [DEBUG] 621c703e1d0000aa644fba4a: Beginning Destroy -2022/02/28 12:18:55 HTTP request DELETE mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:55 [DEBUG] Begin Injection -2022/02/28 12:18:55 HTTP request after injection DELETE mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:55 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:55 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:48:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000578600 0xc0019ac8f0} -2022/02/28 12:18:55 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:55 [DEBUG] 621c703e1d0000aa644fba4a: Destroy finished successfully -2022/02/28 12:18:55 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:55 [DEBUG] New state was assigned lineage "0e5b0b5e-560b-f635-0d47-257c0ce69ca5" -2022/02/28 12:18:55 HTTP request GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:55 [DEBUG] Begin Injection -2022/02/28 12:18:55 HTTP request after injection GET mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:55 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a -2022/02/28 12:18:55 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:55 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772c80 39 [] false false map[] 0xc000b4be00 0xc0019ac8f0} -2022/02/28 12:18:55 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c703e1d0000aa644fba4a {"code":404,"message":"Item not found"} -2022/02/28 12:18:55 [DEBUG] Exit from do method -2022/02/28 12:18:55 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:18:55 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:18:55 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:18:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:18:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:55 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:18:55 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:18:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:55 [DEBUG] : Beginning Read -2022/02/28 12:18:55 HTTP request GET mso/api/v1/tenants -2022/02/28 12:18:55 [DEBUG] Begin Injection -2022/02/28 12:18:55 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:18:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:56 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:18:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:48:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d06a40 5563 [] false false map[] 0xc00049e400 0xc0019ac8f0} -2022/02/28 12:18:56 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:18:56 [DEBUG] Exit from do method -2022/02/28 12:18:56 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:18:56 [DEBUG] provider has no plugin.Client -2022/02/28 12:18:56 [DEBUG] New state was assigned lineage "9cc7476d-ea4e-4a11-50a2-232a26700321" -2022/02/28 12:18:56 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:18:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:18:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:18:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:18:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:18:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:18:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:18:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:18:56 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:19:09 [DEBUG] Test: Executing step 0 -2022/02/28 12:19:09 [DEBUG] Test: Executing step 0 -2022/02/28 12:19:09 [DEBUG] Test: Executing step 0 -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:19:09 [DEBUG] Test: Executing step 1 -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "schema_id" is required, but no definition was found. -2022/02/28 12:19:09 [DEBUG] Test: Executing step 1 -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:09 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] : Beginning Read -2022/02/28 12:19:09 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:09 [DEBUG] Begin Injection -2022/02/28 12:19:09 HTTP request POST /login -2022/02/28 12:19:09 HTTP request after injection POST /login -2022/02/28 12:19:09 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:19:09 [DEBUG] Test: Executing step 2 -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "template_name" is required, but no definition was found. -2022/02/28 12:19:09 [DEBUG] Test: Executing step 2 -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:19:09 [DEBUG] Test: Executing step 3 -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "bd_name" is required, but no definition was found. -2022/02/28 12:19:09 [DEBUG] Test: Executing step 3 -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:19:09 [DEBUG] Test: Executing step 4 -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:19:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. -2022/02/28 12:19:09 [DEBUG] Test: Executing step 4 -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:09 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:09 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:09 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:09 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:09 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:09 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:09 [DEBUG] : Beginning Read -2022/02/28 12:19:09 [DEBUG] : Beginning Read -2022/02/28 12:19:09 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:09 [DEBUG] Begin Injection -2022/02/28 12:19:09 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:09 [DEBUG] Begin Injection -2022/02/28 12:19:09 HTTP request POST /login -2022/02/28 12:19:09 HTTP request POST /login -2022/02/28 12:19:09 HTTP request after injection POST /login -2022/02/28 12:19:09 HTTP request after injection POST /login -2022/02/28 12:19:09 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 12:19:09 [DEBUG] Begining DO method https://173.36.219.31/login -2022/02/28 12:19:10 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 12:19:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:10 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ3o4Rll4SFJoMWRpandXQ01CSFdkNTdlIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Vs1QjljvAYPycXt6It6BvLSKNeFrk3wyEWSUOO_0-K3499wihtIr0vpNP35e2kMQw6Q20vlrK50H-4jDufHRDzw7Fc7LxsgvemRl6AUNcC_-oLzqsxOZFaNfvgjPvh926oBimrjQHyWQwfrMMc-ktljJEXzhhhAD7W1jPkJ9hXheDiP0IKP2m--yDnLLT2hsBCScv0NBaaHqkSu2yyIrSi1eTV8FF7zRMK_b-7DTYT4_xWV9zWfhPi385ZhgSqNahIFmeh5jDGbRS7lNLt9WXd3-NXWs7wYgrq1LjATjor-_XaSioveq4W0mNxrtuEQ-jmWLOUpMPcaejwASNaatyA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00057a740 -1 [chunked] false false map[] 0xc000076600 0xc0004e6000} -2022/02/28 12:19:10 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ3o4Rll4SFJoMWRpandXQ01CSFdkNTdlIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Vs1QjljvAYPycXt6It6BvLSKNeFrk3wyEWSUOO_0-K3499wihtIr0vpNP35e2kMQw6Q20vlrK50H-4jDufHRDzw7Fc7LxsgvemRl6AUNcC_-oLzqsxOZFaNfvgjPvh926oBimrjQHyWQwfrMMc-ktljJEXzhhhAD7W1jPkJ9hXheDiP0IKP2m--yDnLLT2hsBCScv0NBaaHqkSu2yyIrSi1eTV8FF7zRMK_b-7DTYT4_xWV9zWfhPi385ZhgSqNahIFmeh5jDGbRS7lNLt9WXd3-NXWs7wYgrq1LjATjor-_XaSioveq4W0mNxrtuEQ-jmWLOUpMPcaejwASNaatyA","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiQ3o4Rll4SFJoMWRpandXQ01CSFdkNTdlIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Vs1QjljvAYPycXt6It6BvLSKNeFrk3wyEWSUOO_0-K3499wihtIr0vpNP35e2kMQw6Q20vlrK50H-4jDufHRDzw7Fc7LxsgvemRl6AUNcC_-oLzqsxOZFaNfvgjPvh926oBimrjQHyWQwfrMMc-ktljJEXzhhhAD7W1jPkJ9hXheDiP0IKP2m--yDnLLT2hsBCScv0NBaaHqkSu2yyIrSi1eTV8FF7zRMK_b-7DTYT4_xWV9zWfhPi385ZhgSqNahIFmeh5jDGbRS7lNLt9WXd3-NXWs7wYgrq1LjATjor-_XaSioveq4W0mNxrtuEQ-jmWLOUpMPcaejwASNaatyA"} -2022/02/28 12:19:10 [DEBUG] Exit from do method -2022/02/28 12:19:10 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:10 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 12:19:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:10 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSDdqYmhzVFZPajFiSDFlRkJ1dHNOaDVXIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.hqRGb3DlKe13YwsOV8unRAzV40tVKl7qimGJAQ6su8cEEJT0krZnBFwD4hTEMELyqV1W3dzZliJMSJYjoAxCPLQEYCCgxd1JzS5cKxovS75pI-DB61pjVpsUNtIxP-zq8BR1A_jqZ5VA2EtJuo5iUoEN0OLTPSLpB5m248SrpCsm6VffDGL1f5Y-WrElzxhJNbQ_5sHDyYZS5YQ-RbPhNAr5jgYRdOiscU63mU5jbw8C179TK_5OH8POHqhVfG5i2KFFJ1iedXL70gwF4IA6Qwocghi7nxLvBZVzDpktDs9blvrkeezkmiTJNQp3bS2H3tcmsZp9SXVzH8w9AztlVA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0005e6680 -1 [chunked] false false map[] 0xc000954200 0xc000d9a000} -2022/02/28 12:19:10 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSDdqYmhzVFZPajFiSDFlRkJ1dHNOaDVXIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.hqRGb3DlKe13YwsOV8unRAzV40tVKl7qimGJAQ6su8cEEJT0krZnBFwD4hTEMELyqV1W3dzZliJMSJYjoAxCPLQEYCCgxd1JzS5cKxovS75pI-DB61pjVpsUNtIxP-zq8BR1A_jqZ5VA2EtJuo5iUoEN0OLTPSLpB5m248SrpCsm6VffDGL1f5Y-WrElzxhJNbQ_5sHDyYZS5YQ-RbPhNAr5jgYRdOiscU63mU5jbw8C179TK_5OH8POHqhVfG5i2KFFJ1iedXL70gwF4IA6Qwocghi7nxLvBZVzDpktDs9blvrkeezkmiTJNQp3bS2H3tcmsZp9SXVzH8w9AztlVA","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiSDdqYmhzVFZPajFiSDFlRkJ1dHNOaDVXIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.hqRGb3DlKe13YwsOV8unRAzV40tVKl7qimGJAQ6su8cEEJT0krZnBFwD4hTEMELyqV1W3dzZliJMSJYjoAxCPLQEYCCgxd1JzS5cKxovS75pI-DB61pjVpsUNtIxP-zq8BR1A_jqZ5VA2EtJuo5iUoEN0OLTPSLpB5m248SrpCsm6VffDGL1f5Y-WrElzxhJNbQ_5sHDyYZS5YQ-RbPhNAr5jgYRdOiscU63mU5jbw8C179TK_5OH8POHqhVfG5i2KFFJ1iedXL70gwF4IA6Qwocghi7nxLvBZVzDpktDs9blvrkeezkmiTJNQp3bS2H3tcmsZp9SXVzH8w9AztlVA"} -2022/02/28 12:19:10 [DEBUG] Exit from do method -2022/02/28 12:19:10 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:10 -HTTP Request: POST https://173.36.219.31/login -2022/02/28 12:19:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:10 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00057a940 -1 [chunked] false false map[] 0xc001120d00 0xc0005b4000} -2022/02/28 12:19:10 - HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A","username":"admin","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A"} -2022/02/28 12:19:10 [DEBUG] Exit from do method -2022/02/28 12:19:10 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e6ac0 5563 [] false false map[] 0xc000076500 0xc0004e6000} -2022/02/28 12:19:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:11 [DEBUG] Exit from do method -2022/02/28 12:19:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:11 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:11 [DEBUG] New state was assigned lineage "ba9facc0-a812-37ca-111f-f6338abdee08" -2022/02/28 12:19:11 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:11 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8180 5563 [] false false map[] 0xc000954100 0xc000d9a000} -2022/02/28 12:19:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:11 [DEBUG] Exit from do method -2022/02/28 12:19:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:11 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:11 [DEBUG] New state was assigned lineage "7417fa38-92e9-b11b-f095-691574728ce5" -2022/02/28 12:19:11 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:19:11 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:11 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:11 [WARN] Test: Step plan: DIFF: - -UPDATE: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_m9myr_invalid" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_m9myr" - schema_id: "" => "" - template_name: "" => "acctest_ud1gn" - version: "" => "" -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_m9myr" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_ud1gn" - template_name: "" => "acctest_ud1gn" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_m9myr" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_m9myr" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_ud1gn" - vrf_name: "" => "acctest_m9myr" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_m9myr" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_m9myr" - schema_id: "" => "" - template_name: "" => "acctest_ud1gn" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_m9myr" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_m9myr" - schema_id: "" => "" - template: "" => "acctest_ud1gn" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:19:11 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test (prepare state) mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:19:11 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:11 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:11 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_bwj42" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_vlyjs" - template_name: "" => "acctest_vlyjs" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_bwj42" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_bwj42" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_vlyjs" - vrf_name: "" => "acctest_bwj42" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_bwj42_invalid" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_bwj42" - schema_id: "" => "" - template_name: "" => "acctest_vlyjs" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_bwj42" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_bwj42" - schema_id: "" => "" - template: "" => "acctest_vlyjs" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:19:11 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:11 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:19:11 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:19:11 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:19:11 [DEBUG] Schema: Beginning Creation -2022/02/28 12:19:11 [DEBUG] : Beginning Create -2022/02/28 12:19:11 HTTP request POST mso/api/v1/schemas -2022/02/28 12:19:11 [DEBUG] Begin Injection -2022/02/28 12:19:11 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:19:11 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:11 [DEBUG] Begin Injection -2022/02/28 12:19:11 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"displayName":"acctest_ud1gn","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_ud1gn","externalEpgs":[],"filters":[],"name":"acctest_ud1gn","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x9d7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:19:11 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:11 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"desc":"","name":"acctest_m9myr","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9d7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:11 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:19:11 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:19:11 [DEBUG] Schema: Beginning Creation -2022/02/28 12:19:11 HTTP request POST mso/api/v1/schemas -2022/02/28 12:19:11 [DEBUG] Begin Injection -2022/02/28 12:19:11 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:19:11 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"displayName":"acctest_vlyjs","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_vlyjs","externalEpgs":[],"filters":[],"name":"acctest_vlyjs","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x9d7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:19:11 [DEBUG] : Beginning Create -2022/02/28 12:19:11 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:11 [DEBUG] Begin Injection -2022/02/28 12:19:11 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:11 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"desc":"","name":"acctest_bwj42","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9d7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:11 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004dd40 5563 [] false false map[] 0xc001120c00 0xc0005b4000} -2022/02/28 12:19:11 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:11 [DEBUG] Exit from do method -2022/02/28 12:19:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:11 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:11 [DEBUG] New state was assigned lineage "8d495b28-2c2c-0e57-7c3b-d8603cebbcbc" -2022/02/28 12:19:11 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:11 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:11 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:11 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:11 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "" => "0" - id: "" => "" - name: "" => "acctest_tm86m" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema.test - id: "" => "" - name: "" => "acctest_qnr4i" - template_name: "" => "acctest_qnr4i" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "" => "acctest_tm86m" - id: "" => "" - intersite_bum_traffic: "" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_tm86m" - optimize_wan_bandwidth: "" => "" - schema_id: "" => "" - template_name: "" => "acctest_qnr4i" - vrf_name: "" => "acctest_tm86m" - vrf_schema_id: "" => "" - vrf_template_name: "" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_tm86m" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_tm86m" - schema_id: "" => "" - template_name: "" => "acctest_qnr4i" - version: "" => "" -CREATE: mso_schema_template_vrf.test - display_name: "" => "acctest_tm86m" - id: "" => "" - layer3_multicast: "" => "" - name: "" => "acctest_tm86m" - schema_id: "" => "" - template: "" => "acctest_qnr4i" - vzany: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -2022/02/28 12:19:11 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_bd.test", instance mso_schema_template_bd.test -2022/02/28 12:19:11 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state)] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:19:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:19:11 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:19:11 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:19:11 [DEBUG] mso_schema.test: applying the planned Create change -2022/02/28 12:19:11 [DEBUG] Schema: Beginning Creation -2022/02/28 12:19:11 [DEBUG] : Beginning Create -2022/02/28 12:19:11 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:11 HTTP request POST mso/api/v1/schemas -2022/02/28 12:19:11 [DEBUG] Begin Injection -2022/02/28 12:19:11 HTTP request after injection POST mso/api/v1/schemas -2022/02/28 12:19:11 Request: &{POST https://173.36.219.31/mso/api/v1/schemas HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"displayName":"acctest_qnr4i","sites":[],"templates":[{"anps":[],"bds":[],"contracts":[],"displayName":"acctest_qnr4i","externalEpgs":[],"filters":[],"name":"acctest_qnr4i","serviceGraphs":[],"tenantId":"620cf5ad1d0000ab504f9a3d","vrfs":[]}]}} 0x9d7ac0 243 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 12:19:11 [DEBUG] Begin Injection -2022/02/28 12:19:11 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:11 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"desc":"","name":"acctest_tm86m","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9d7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:19:11 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009fa6c0 160 [] false false map[] 0xc000076700 0xc0004e6000} -2022/02/28 12:19:11 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c70671b00009f0bfd0c43","name":"acctest_m9myr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:11 [DEBUG] Exit from do method -2022/02/28 12:19:11 [DEBUG] 621c70671b00009f0bfd0c43: Creation finished successfully -2022/02/28 12:19:11 [DEBUG] 621c70671b00009f0bfd0c43: Beginning Read -2022/02/28 12:19:11 id: 621c70671b00009f0bfd0c43 -2022/02/28 12:19:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:11 [DEBUG] Begin Injection -2022/02/28 12:19:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:11 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:19:11 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c70671d0000aa644fba68] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b96040 400 [] false false map[] 0xc001608200 0xc000d9a000} -2022/02/28 12:19:11 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:19:11 [DEBUG] Exit from do method -2022/02/28 12:19:11 [DEBUG] 621c70671d0000aa644fba68: Schema Creation finished successfully -2022/02/28 12:19:11 [DEBUG] 621c70671d0000aa644fba68: Beginning Read -2022/02/28 12:19:11 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:11 [DEBUG] Begin Injection -2022/02/28 12:19:11 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:11 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:19:11 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c70671d0000b6644fba69] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000471000 400 [] false false map[] 0xc00015a900 0xc0005b4000} -2022/02/28 12:19:11 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:19:11 [DEBUG] Exit from do method -2022/02/28 12:19:11 [DEBUG] 621c70671d0000b6644fba69: Schema Creation finished successfully -2022/02/28 12:19:11 [DEBUG] 621c70671d0000b6644fba69: Beginning Read -2022/02/28 12:19:11 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:11 [DEBUG] Begin Injection -2022/02/28 12:19:11 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:11 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000242d40 160 [] false false map[] 0xc001a0a200 0xc0004e6000} -2022/02/28 12:19:11 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c70671b0000c10bfd0c44","name":"acctest_bwj42","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:11 [DEBUG] Exit from do method -2022/02/28 12:19:11 [DEBUG] 621c70671b0000c10bfd0c44: Creation finished successfully -2022/02/28 12:19:11 [DEBUG] 621c70671b0000c10bfd0c44: Beginning Read -2022/02/28 12:19:11 id: 621c70671b0000c10bfd0c44 -2022/02/28 12:19:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:11 [DEBUG] Begin Injection -2022/02/28 12:19:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:12 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000242ec0 160 [] false false map[] 0xc001608400 0xc000d9a000} -2022/02/28 12:19:12 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:12 [DEBUG] Exit from do method -2022/02/28 12:19:12 [DEBUG] 621c70671b0000b50bfd0c45: Creation finished successfully -2022/02/28 12:19:12 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read -2022/02/28 12:19:12 id: 621c70671b0000b50bfd0c45 -2022/02/28 12:19:12 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:12 [DEBUG] Begin Injection -2022/02/28 12:19:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:12 -HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas -2022/02/28 12:19:12 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621c70671d000097644fba6c] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000243140 400 [] false false map[] 0xc00152a300 0xc0005b4000} -2022/02/28 12:19:12 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:19:12 [DEBUG] Exit from do method -2022/02/28 12:19:12 [DEBUG] 621c70671d000097644fba6c: Schema Creation finished successfully -2022/02/28 12:19:12 [DEBUG] 621c70671d000097644fba6c: Beginning Read -2022/02/28 12:19:12 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:12 [DEBUG] Begin Injection -2022/02/28 12:19:12 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000471700 160 [] false false map[] 0xc001120100 0xc000e0a0b0} -2022/02/28 12:19:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 {"id":"621c70671b00009f0bfd0c43","name":"acctest_m9myr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:12 [DEBUG] Exit from do method -2022/02/28 12:19:12 [DEBUG] 621c70671b00009f0bfd0c43: Read finished successfully -2022/02/28 12:19:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000243340 400 [] false false map[] 0xc001a0a100 0xc00164e160} -2022/02/28 12:19:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:19:12 [DEBUG] Exit from do method -2022/02/28 12:19:12 [DEBUG] 621c70671d0000aa644fba68: Read finished successfully -2022/02/28 12:19:12 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:19:12 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:19:12 HTTP request PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:12 [DEBUG] Begin Injection -2022/02/28 12:19:12 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002434c0 400 [] false false map[] 0xc00057c800 0xc0019786e0} -2022/02/28 12:19:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:19:12 [DEBUG] Exit from do method -2022/02/28 12:19:12 [DEBUG] 621c70671d0000b6644fba69: Read finished successfully -2022/02/28 12:19:12 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:19:12 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:19:12 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:12 [DEBUG] Begin Injection -2022/02/28 12:19:12 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b50040 160 [] false false map[] 0xc00152a700 0xc0004e6000} -2022/02/28 12:19:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 {"id":"621c70671b0000c10bfd0c44","name":"acctest_bwj42","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:12 [DEBUG] Exit from do method -2022/02/28 12:19:12 [DEBUG] 621c70671b0000c10bfd0c44: Read finished successfully -2022/02/28 12:19:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b96040 160 [] false false map[] 0xc00152a800 0xc000d9a000} -2022/02/28 12:19:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:12 [DEBUG] Exit from do method -2022/02/28 12:19:12 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully -2022/02/28 12:19:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e6100 400 [] false false map[] 0xc00152aa00 0xc0005b4000} -2022/02/28 12:19:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} -2022/02/28 12:19:12 [DEBUG] Exit from do method -2022/02/28 12:19:12 [DEBUG] 621c70671d000097644fba6c: Read finished successfully -2022/02/28 12:19:12 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:19:12 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:19:12 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:12 [DEBUG] Begin Injection -2022/02/28 12:19:12 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:12 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:12 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001609100 0xc000e0a0b0} -2022/02/28 12:19:12 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:12 [DEBUG] acctest_m9myr: Creation finished successfully -2022/02/28 12:19:12 [DEBUG] acctest_m9myr: Beginning Read -2022/02/28 12:19:12 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:12 [DEBUG] Begin Injection -2022/02/28 12:19:12 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:12 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:12 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001120700 0xc0019786e0} -2022/02/28 12:19:12 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:12 [DEBUG] acctest_bwj42: Creation finished successfully -2022/02/28 12:19:12 [DEBUG] acctest_bwj42: Beginning Read -2022/02/28 12:19:12 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:12 [DEBUG] Begin Injection -2022/02/28 12:19:12 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:12 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:12 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001120f00 0xc0004e6000} -2022/02/28 12:19:12 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:12 [DEBUG] acctest_tm86m: Creation finished successfully -2022/02/28 12:19:12 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:12 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:12 [DEBUG] Begin Injection -2022/02/28 12:19:12 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b96700 768 [] false false map[] 0xc001121100 0xc0019780b0} -2022/02/28 12:19:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 12:19:12 [DEBUG] Exit from do method -2022/02/28 12:19:12 currentvrfname acctest_m9myr -2022/02/28 12:19:12 found correct vrfname -2022/02/28 12:19:12 [DEBUG] acctest_m9myr: Read finished successfully -2022/02/28 12:19:12 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:19:12 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:19:12 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:19:12 HTTP request PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:12 [DEBUG] Begin Injection -2022/02/28 12:19:12 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:12 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000471d40 768 [] false false map[] 0xc00057c000 0xc0019786e0} -2022/02/28 12:19:12 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 12:19:12 [DEBUG] Exit from do method -2022/02/28 12:19:12 currentvrfname acctest_bwj42 -2022/02/28 12:19:12 found correct vrfname -2022/02/28 12:19:12 [DEBUG] acctest_bwj42: Read finished successfully -2022/02/28 12:19:12 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:19:12 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:19:12 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:19:12 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:12 [DEBUG] Begin Injection -2022/02/28 12:19:12 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e6180 768 [] false false map[] 0xc001121200 0xc0004e6000} -2022/02/28 12:19:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} -2022/02/28 12:19:13 [DEBUG] Exit from do method -2022/02/28 12:19:13 currentvrfname acctest_tm86m -2022/02/28 12:19:13 found correct vrfname -2022/02/28 12:19:13 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:13 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:19:13 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:19:13 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:19:13 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:13 [DEBUG] Begin Injection -2022/02/28 12:19:13 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:13 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00057ce00 0xc0019780b0} -2022/02/28 12:19:13 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:13 [DEBUG] : Beginning Read -2022/02/28 12:19:13 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:13 [DEBUG] Begin Injection -2022/02/28 12:19:13 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:13 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00057d500 0xc0019786e0} -2022/02/28 12:19:13 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:13 [DEBUG] : Beginning Read -2022/02/28 12:19:13 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:13 [DEBUG] Begin Injection -2022/02/28 12:19:13 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:13 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001608b00 0xc0004e6000} -2022/02/28 12:19:13 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:13 [DEBUG] : Beginning Read -2022/02/28 12:19:13 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:13 [DEBUG] Begin Injection -2022/02/28 12:19:13 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009fb300 1277 [] false false map[] 0xc00057d700 0xc0019780b0} -2022/02/28 12:19:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:19:13 [DEBUG] Exit from do method -2022/02/28 12:19:13 [DEBUG] acctest_m9myr: Read finished successfully -2022/02/28 12:19:13 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:19:13 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:19:13 HTTP request PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:13 [DEBUG] Begin Injection -2022/02/28 12:19:13 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057a6c0 1277 [] false false map[] 0xc001608d00 0xc0019786e0} -2022/02/28 12:19:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:19:13 [DEBUG] Exit from do method -2022/02/28 12:19:13 [DEBUG] acctest_bwj42: Read finished successfully -2022/02/28 12:19:13 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:19:13 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:19:13 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:13 [DEBUG] Begin Injection -2022/02/28 12:19:13 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:13 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000243340 1277 [] false false map[] 0xc001121800 0xc0004e6000} -2022/02/28 12:19:13 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:19:13 [DEBUG] Exit from do method -2022/02/28 12:19:13 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:13 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:19:13 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:19:13 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:13 [DEBUG] Begin Injection -2022/02/28 12:19:13 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:13 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00152a300 0xc0019780b0} -2022/02/28 12:19:13 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:13 [DEBUG] Creation Complete -2022/02/28 12:19:13 [DEBUG] : Beginning Read -2022/02/28 12:19:13 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:13 [DEBUG] Begin Injection -2022/02/28 12:19:13 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:13 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:13 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[112] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc00128ea00 112 [] false false map[] 0xc00152b100 0xc0019786e0} -2022/02/28 12:19:13 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false {"code":141,"message":"Resource Not Found: Bd with name acctest_bwj42_invalid not found in List(acctest_bwj42)"} -2022/02/28 12:19:13 [DEBUG] Exit from do method -2022/02/28 12:19:13 [DEBUG] mso_schema_template_bd_dhcp_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Resource Not Found: Bd with name acctest_bwj42_invalid not found in List(acctest_bwj42)"{} -2022/02/28 12:19:13 [ERROR] : eval: *terraform.EvalApplyPost, err: "Resource Not Found: Bd with name acctest_bwj42_invalid not found in List(acctest_bwj42)"{} -2022/02/28 12:19:13 [ERROR] : eval: *terraform.EvalSequence, err: "Resource Not Found: Bd with name acctest_bwj42_invalid not found in List(acctest_bwj42)"{} -2022/02/28 12:19:13 [DEBUG] New state was assigned lineage "683bdac8-4cb6-241a-f27f-54086838630c" -2022/02/28 12:19:13 [DEBUG] Test: Executing step 1 -2022/02/28 12:19:13 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:13 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:19:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:13 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:13 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:13 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "oclwa" is not expected here. -2022/02/28 12:19:13 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "oclwa" is not expected here. -2022/02/28 12:19:13 [DEBUG] Test: Executing step 2 -2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:14 [DEBUG] : Beginning Read -2022/02/28 12:19:14 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:14 [DEBUG] Begin Injection -2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:14 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001121b00 0xc0004e6000} -2022/02/28 12:19:14 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:14 [DEBUG] Creation Complete -2022/02/28 12:19:14 [DEBUG] : Beginning Read -2022/02/28 12:19:14 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:14 [DEBUG] Begin Injection -2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00163bb80 1362 [] false false map[] 0xc00152b300 0xc0019780b0} -2022/02/28 12:19:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:14 [DEBUG] Exit from do method -2022/02/28 12:19:14 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully -2022/02/28 12:19:14 [DEBUG] : Beginning Read -2022/02/28 12:19:14 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:14 [DEBUG] Begin Injection -2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004c080 5563 [] false false map[] 0xc00015a200 0xc0019786e0} -2022/02/28 12:19:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:14 [DEBUG] Exit from do method -2022/02/28 12:19:14 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:14 [DEBUG] 621c70671d0000b6644fba69: Beginning Read -2022/02/28 12:19:14 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:14 [DEBUG] Begin Injection -2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:14 [DEBUG] 621c70671b0000c10bfd0c44: Beginning Read -2022/02/28 12:19:14 id: 621c70671b0000c10bfd0c44 -2022/02/28 12:19:14 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:14 [DEBUG] Begin Injection -2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000471200 1362 [] false false map[] 0xc00057c600 0xc0004e6000} -2022/02/28 12:19:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:14 [DEBUG] Exit from do method -2022/02/28 12:19:14 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully -2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:14 [DEBUG] New state was assigned lineage "090bc9d7-bbb4-ae5f-eded-a97dcfd693a2" -2022/02/28 12:19:14 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:14 [DEBUG] Begin Injection -2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85b40 1362 [] false false map[] 0xc00152b700 0xc0019780b0} -2022/02/28 12:19:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:14 [DEBUG] Exit from do method -2022/02/28 12:19:14 [ERROR] : eval: *terraform.EvalReadData, err: Object Not found -2022/02/28 12:19:14 [ERROR] : eval: *terraform.EvalSequence, err: Object Not found -2022/02/28 12:19:14 [DEBUG] New state was assigned lineage "d0d3b445-df6f-683a-0deb-82e48a762b89" -2022/02/28 12:19:14 [DEBUG] Test: Executing step 5 -2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:14 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "kjbvg" is not expected here. -2022/02/28 12:19:14 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "kjbvg" is not expected here. -2022/02/28 12:19:14 [DEBUG] Test: Executing step 6 -2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:14 [DEBUG] : Beginning Read -2022/02/28 12:19:14 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:14 [DEBUG] Begin Injection -2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00163adc0 1277 [] false false map[] 0xc00015af00 0xc0019786e0} -2022/02/28 12:19:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:19:14 [DEBUG] Exit from do method -2022/02/28 12:19:14 [DEBUG] 621c70671d0000b6644fba69: Read finished successfully -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:14 [DEBUG] acctest_bwj42: Beginning Read -2022/02/28 12:19:14 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:14 [DEBUG] Begin Injection -2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00163be00 160 [] false false map[] 0xc001a0a000 0xc000baa370} -2022/02/28 12:19:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 {"id":"621c70671b0000c10bfd0c44","name":"acctest_bwj42","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:14 [DEBUG] Exit from do method -2022/02/28 12:19:14 [DEBUG] 621c70671b0000c10bfd0c44: Read finished successfully -2022/02/28 12:19:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009fb200 1362 [] false false map[] 0xc001a0a100 0xc0004e6000} -2022/02/28 12:19:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:14 [DEBUG] Exit from do method -2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:14 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:14 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:14 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:14 [DEBUG] : Beginning Read -2022/02/28 12:19:14 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:14 [DEBUG] Begin Injection -2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:14 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000471200 5563 [] false false map[] 0xc001a0ae00 0xc0019780b0} -2022/02/28 12:19:14 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:14 [DEBUG] Exit from do method -2022/02/28 12:19:14 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:14 [DEBUG] 621c70671d0000aa644fba68: Beginning Read -2022/02/28 12:19:14 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:14 [DEBUG] Begin Injection -2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:14 [DEBUG] 621c70671b00009f0bfd0c43: Beginning Read -2022/02/28 12:19:14 id: 621c70671b00009f0bfd0c43 -2022/02/28 12:19:14 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:14 [DEBUG] Begin Injection -2022/02/28 12:19:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009fba00 1277 [] false false map[] 0xc00057c600 0xc0019786e0} -2022/02/28 12:19:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:19:15 [DEBUG] Exit from do method -2022/02/28 12:19:15 currentvrfname acctest_bwj42 -2022/02/28 12:19:15 found correct vrfname -2022/02/28 12:19:15 [DEBUG] acctest_bwj42: Read finished successfully -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:15 [DEBUG] acctest_bwj42: Beginning Read -2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:15 [DEBUG] Begin Injection -2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8e40 5563 [] false false map[] 0xc001a0a300 0xc0004e6000} -2022/02/28 12:19:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:15 [DEBUG] Exit from do method -2022/02/28 12:19:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:15 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read -2022/02/28 12:19:15 id: 621c70671b0000b50bfd0c45 -2022/02/28 12:19:15 [DEBUG] 621c70671d000097644fba6c: Beginning Read -2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:15 [DEBUG] Begin Injection -2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:15 [DEBUG] Begin Injection -2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001c6fc0 1362 [] false false map[] 0xc001a0aa00 0xc0019780b0} -2022/02/28 12:19:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:15 [DEBUG] Exit from do method -2022/02/28 12:19:15 [DEBUG] 621c70671d0000aa644fba68: Read finished successfully -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:15 [DEBUG] acctest_m9myr: Beginning Read -2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:15 [DEBUG] Begin Injection -2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001aba700 160 [] false false map[] 0xc001121400 0xc000baa370} -2022/02/28 12:19:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 {"id":"621c70671b00009f0bfd0c43","name":"acctest_m9myr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:15 [DEBUG] Exit from do method -2022/02/28 12:19:15 [DEBUG] 621c70671b00009f0bfd0c43: Read finished successfully -2022/02/28 12:19:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091e80 1277 [] false false map[] 0xc001a0b000 0xc0019786e0} -2022/02/28 12:19:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} -2022/02/28 12:19:15 [DEBUG] Exit from do method -2022/02/28 12:19:15 [DEBUG] acctest_bwj42: Read finished successfully -2022/02/28 12:19:15 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:15 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:15 [DEBUG] New state was assigned lineage "67fe49e5-4d59-3f51-2cac-fa78605e1e74" -2022/02/28 12:19:15 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:15 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:15 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:15 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:15 [WARN] Test: Step plan: DIFF: - -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_bwj42" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_bwj42" - schema_id: "" => "621c70671d0000b6644fba69" - template_name: "" => "acctest_vlyjs" - version: "" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c70671b0000c10bfd0c44 - provider = provider.mso - description = - name = acctest_bwj42 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c70671d0000b6644fba69 - provider = provider.mso - name = acctest_vlyjs - template_name = acctest_vlyjs - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_bwj42 - provider = provider.mso - display_name = acctest_bwj42 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_bwj42 - schema_id = 621c70671d0000b6644fba69 - template_name = acctest_vlyjs - vrf_name = acctest_bwj42 - vrf_schema_id = 621c70671d0000b6644fba69 - vrf_template_name = acctest_vlyjs - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_bwj42 - provider = provider.mso - display_name = acctest_bwj42 - layer3_multicast = false - name = acctest_bwj42 - schema_id = 621c70671d0000b6644fba69 - template = acctest_vlyjs - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:19:15 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:19:15 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state)] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:19:15 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:19:15 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:19:15 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:19:15 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:15 [DEBUG] Begin Injection -2022/02/28 12:19:15 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00063e0c0 1362 [] false false map[] 0xc001a0b400 0xc0004e6000} -2022/02/28 12:19:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:15 [DEBUG] Exit from do method -2022/02/28 12:19:15 [DEBUG] 621c70671d000097644fba6c: Read finished successfully -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:15 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:15 [DEBUG] Begin Injection -2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128f580 160 [] false false map[] 0xc000076400 0xc0019780b0} -2022/02/28 12:19:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:15 [DEBUG] Exit from do method -2022/02/28 12:19:15 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully -2022/02/28 12:19:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128f740 1362 [] false false map[] 0xc000076900 0xc000baa370} -2022/02/28 12:19:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:15 [DEBUG] Exit from do method -2022/02/28 12:19:15 currentvrfname acctest_m9myr -2022/02/28 12:19:15 found correct vrfname -2022/02/28 12:19:15 [DEBUG] acctest_m9myr: Read finished successfully -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:15 [DEBUG] acctest_m9myr: Beginning Read -2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:15 [DEBUG] Begin Injection -2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:15 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:15 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001120f00 0xc0019786e0} -2022/02/28 12:19:15 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:15 [DEBUG] Creation Complete -2022/02/28 12:19:15 [DEBUG] : Beginning Read -2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:15 [DEBUG] Begin Injection -2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:15 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85b00 1362 [] false false map[] 0xc000955200 0xc0004e6000} -2022/02/28 12:19:15 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:15 [DEBUG] Exit from do method -2022/02/28 12:19:15 currentvrfname acctest_tm86m -2022/02/28 12:19:15 found correct vrfname -2022/02/28 12:19:15 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:15 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:15 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:15 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:15 [DEBUG] Begin Injection -2022/02/28 12:19:15 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b500c0 1362 [] false false map[] 0xc000955900 0xc000baa370} -2022/02/28 12:19:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:16 [DEBUG] Exit from do method -2022/02/28 12:19:16 [DEBUG] acctest_m9myr: Read finished successfully -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Beginning Read -2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 [DEBUG] Begin Injection -2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b50940 1362 [] false false map[] 0xc00152be00 0xc0019786e0} -2022/02/28 12:19:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:16 [DEBUG] Exit from do method -2022/02/28 12:19:16 [DEBUG] /schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42: Read finished successfully -2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:16 [DEBUG] New state was assigned lineage "b50b967e-6f41-5c8f-b95e-9cef459253a0" -2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] : Beginning Read -2022/02/28 12:19:16 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:16 [DEBUG] Begin Injection -2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8040 1362 [] false false map[] 0xc00015a900 0xc0004e6000} -2022/02/28 12:19:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:16 [DEBUG] Exit from do method -2022/02/28 12:19:16 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Read -2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:16 [DEBUG] Begin Injection -2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009faec0 1362 [] false false map[] 0xc001120300 0xc0019784d0} -2022/02/28 12:19:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:16 [DEBUG] Exit from do method -2022/02/28 12:19:16 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully -2022/02/28 12:19:16 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] : Beginning Read -2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 [DEBUG] Begin Injection -2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001c62c0 5563 [] false false map[] 0xc000076400 0xc0019786e0} -2022/02/28 12:19:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:16 [DEBUG] Exit from do method -2022/02/28 12:19:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] 621c70671d0000b6644fba69: Beginning Read -2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:16 [DEBUG] Begin Injection -2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:16 [DEBUG] 621c70671b0000c10bfd0c44: Beginning Read -2022/02/28 12:19:16 id: 621c70671b0000c10bfd0c44 -2022/02/28 12:19:16 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:16 [DEBUG] Begin Injection -2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002428c0 1362 [] false false map[] 0xc001a0a400 0xc0004e6000} -2022/02/28 12:19:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:16 [DEBUG] Exit from do method -2022/02/28 12:19:16 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully -2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:16 [DEBUG] New state was assigned lineage "ad269190-9508-541a-ebfe-e6ebe6cf709d" -2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:16 [DEBUG] Test: Executing step 5 -2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] : Beginning Read -2022/02/28 12:19:16 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:16 [DEBUG] Begin Injection -2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069c2c0 1362 [] false false map[] 0xc001a0a700 0xc0004e6210} -2022/02/28 12:19:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:16 [DEBUG] Exit from do method -2022/02/28 12:19:16 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully -2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:16 [DEBUG] New state was assigned lineage "1b62bc20-3d42-83a5-f28b-b455e41eb4ca" -2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:16 [WARN] Test: Step plan: DIFF: - - - -STATE: - -data.mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr - provider = provider.mso - bd_name = acctest_m9myr - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_m9myr - schema_id = 621c70671d0000aa644fba68 - template_name = acctest_ud1gn - version = 0 - - Dependencies: - mso_schema_template_bd_dhcp_policy.test -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c70671b00009f0bfd0c43 - provider = provider.mso - description = - name = acctest_m9myr - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c70671d0000aa644fba68 - provider = provider.mso - name = acctest_ud1gn - template_name = acctest_ud1gn - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_m9myr - provider = provider.mso - dhcp_policy.name = acctest_m9myr - dhcp_policy.version = 0 - display_name = acctest_m9myr - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_m9myr - schema_id = 621c70671d0000aa644fba68 - template_name = acctest_ud1gn - vrf_name = acctest_m9myr - vrf_schema_id = 621c70671d0000aa644fba68 - vrf_template_name = acctest_ud1gn - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr - provider = provider.mso - bd_name = acctest_m9myr - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_m9myr - schema_id = 621c70671d0000aa644fba68 - template_name = acctest_ud1gn - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_m9myr - provider = provider.mso - display_name = acctest_m9myr - layer3_multicast = false - name = acctest_m9myr - schema_id = 621c70671d0000aa644fba68 - template = acctest_ud1gn - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:16 [DEBUG] New state was assigned lineage "1a1e71a9-4644-3e29-e466-bd132114dcd6" -2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 [DEBUG] Begin Injection -2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001aba480 160 [] false false map[] 0xc001c5e700 0xc0019780b0} -2022/02/28 12:19:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 {"id":"621c70671b0000c10bfd0c44","name":"acctest_bwj42","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:16 [DEBUG] Exit from do method -2022/02/28 12:19:16 [DEBUG] 621c70671b0000c10bfd0c44: Read finished successfully -2022/02/28 12:19:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091e80 1362 [] false false map[] 0xc00057c100 0xc0019786e0} -2022/02/28 12:19:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:16 [DEBUG] Exit from do method -2022/02/28 12:19:16 [DEBUG] 621c70671d0000b6644fba69: Read finished successfully -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:16 [DEBUG] acctest_bwj42: Beginning Read -2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:16 [DEBUG] Begin Injection -2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001abb5c0 5563 [] false false map[] 0xc001a0a000 0xc0004e6000} -2022/02/28 12:19:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:16 [DEBUG] Exit from do method -2022/02/28 12:19:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:16 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] 621c70671d000097644fba6c: Beginning Read -2022/02/28 12:19:16 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:16 [DEBUG] Begin Injection -2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:16 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read -2022/02/28 12:19:16 id: 621c70671b0000b50bfd0c45 -2022/02/28 12:19:16 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:16 [DEBUG] Begin Injection -2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:16 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00141eb40 1362 [] false false map[] 0xc001120300 0xc0004e6210} -2022/02/28 12:19:16 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:16 [DEBUG] Exit from do method -2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:16 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:16 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:16 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:16 [DEBUG] : Beginning Read -2022/02/28 12:19:16 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:16 [DEBUG] Begin Injection -2022/02/28 12:19:16 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000242040 1362 [] false false map[] 0xc00015a900 0xc0019786e0} -2022/02/28 12:19:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:17 [DEBUG] Exit from do method -2022/02/28 12:19:17 currentvrfname acctest_bwj42 -2022/02/28 12:19:17 found correct vrfname -2022/02/28 12:19:17 [DEBUG] acctest_bwj42: Read finished successfully -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:17 [DEBUG] acctest_bwj42: Beginning Read -2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:17 [DEBUG] Begin Injection -2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000242f80 160 [] false false map[] 0xc001c5e300 0xc0019780b0} -2022/02/28 12:19:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:17 [DEBUG] Exit from do method -2022/02/28 12:19:17 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully -2022/02/28 12:19:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e6180 1362 [] false false map[] 0xc00152a400 0xc0004e6000} -2022/02/28 12:19:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:17 [DEBUG] Exit from do method -2022/02/28 12:19:17 [DEBUG] 621c70671d000097644fba6c: Read finished successfully -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:17 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:17 [DEBUG] Begin Injection -2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009fb280 5563 [] false false map[] 0xc000954c00 0xc0004e6210} -2022/02/28 12:19:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:17 [DEBUG] Exit from do method -2022/02/28 12:19:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:17 [DEBUG] 621c70671d0000aa644fba68: Beginning Read -2022/02/28 12:19:17 [DEBUG] 621c70671b00009f0bfd0c43: Beginning Read -2022/02/28 12:19:17 id: 621c70671b00009f0bfd0c43 -2022/02/28 12:19:17 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:17 [DEBUG] Begin Injection -2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:17 [DEBUG] Begin Injection -2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84780 1362 [] false false map[] 0xc001c5e600 0xc0019786e0} -2022/02/28 12:19:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:17 [DEBUG] Exit from do method -2022/02/28 12:19:17 [DEBUG] acctest_bwj42: Read finished successfully -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:17 [DEBUG] /schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42: Beginning Read -2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:17 [DEBUG] Begin Injection -2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000470cc0 1362 [] false false map[] 0xc001c5e800 0xc0004e6000} -2022/02/28 12:19:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:17 [DEBUG] Exit from do method -2022/02/28 12:19:17 currentvrfname acctest_tm86m -2022/02/28 12:19:17 found correct vrfname -2022/02/28 12:19:17 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:17 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:17 [DEBUG] Begin Injection -2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00141f6c0 160 [] false false map[] 0xc001120300 0xc0019780b0} -2022/02/28 12:19:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 {"id":"621c70671b00009f0bfd0c43","name":"acctest_m9myr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:17 [DEBUG] Exit from do method -2022/02/28 12:19:17 [DEBUG] 621c70671b00009f0bfd0c43: Read finished successfully -2022/02/28 12:19:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069c940 1362 [] false false map[] 0xc00015a200 0xc0004e6210} -2022/02/28 12:19:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:17 [DEBUG] Exit from do method -2022/02/28 12:19:17 [DEBUG] 621c70671d0000aa644fba68: Read finished successfully -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:17 [DEBUG] acctest_m9myr: Beginning Read -2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:17 [DEBUG] Begin Injection -2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069cec0 1362 [] false false map[] 0xc00015aa00 0xc0019786e0} -2022/02/28 12:19:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:17 [DEBUG] Exit from do method -2022/02/28 12:19:17 [DEBUG] /schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42: Read finished successfully -2022/02/28 12:19:17 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:17 [DEBUG] New state was assigned lineage "7d4ceb35-42c7-b2aa-6126-caa90638e14d" -2022/02/28 12:19:17 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:17 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:17 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:17 [WARN] Test: Executing destroy step -2022/02/28 12:19:17 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:17 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:17 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:17 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:17 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:17 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:17 [DEBUG] : Beginning Read -2022/02/28 12:19:17 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:17 [DEBUG] Begin Injection -2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e7a80 1362 [] false false map[] 0xc001c5ee00 0xc0004e6000} -2022/02/28 12:19:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:17 [DEBUG] Exit from do method -2022/02/28 12:19:17 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:17 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Read -2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:17 [DEBUG] Begin Injection -2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:17 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84080 1362 [] false false map[] 0xc00015af00 0xc0004e6210} -2022/02/28 12:19:17 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:17 [DEBUG] Exit from do method -2022/02/28 12:19:17 currentvrfname acctest_m9myr -2022/02/28 12:19:17 found correct vrfname -2022/02/28 12:19:17 [DEBUG] acctest_m9myr: Read finished successfully -2022/02/28 12:19:17 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:17 [DEBUG] acctest_m9myr: Beginning Read -2022/02/28 12:19:17 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:17 [DEBUG] Begin Injection -2022/02/28 12:19:17 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a85440 1362 [] false false map[] 0xc001c5eb00 0xc0004e6000} -2022/02/28 12:19:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:18 [DEBUG] Exit from do method -2022/02/28 12:19:18 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully -2022/02/28 12:19:18 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:18 [DEBUG] New state was assigned lineage "1525513e-df3f-622b-c688-99ebd68a68c3" -2022/02/28 12:19:18 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:18 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:18 [DEBUG] Resource instance state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009fa500 5563 [] false false map[] 0xc001c5e600 0xc0019786e0} -2022/02/28 12:19:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:18 [DEBUG] Exit from do method -2022/02/28 12:19:18 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:18 [DEBUG] 621c70671d0000b6644fba69: Beginning Read -2022/02/28 12:19:18 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:18 [DEBUG] Begin Injection -2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:18 [DEBUG] 621c70671b0000c10bfd0c44: Beginning Read -2022/02/28 12:19:18 id: 621c70671b0000c10bfd0c44 -2022/02/28 12:19:18 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:18 [DEBUG] Begin Injection -2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:18 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:18 [WARN] Test: Step plan: DIFF: - -CREATE: mso_dhcp_option_policy.test - description: "" => "" - id: "" => "" - name: "" => "acctest_yhum2" - option.#: "" => "0" - tenant_id: "" => "620cf5ad1d0000ab504f9a3d" -UPDATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_tm86m" => "acctest_tm86m" - dhcp_option_name: "" => "acctest_yhum2" - dhcp_option_version: "0" => "1" - id: "/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m" => "/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m" - name: "acctest_tm86m" => "acctest_tm86m" - schema_id: "621c70671d000097644fba6c" => "621c70671d000097644fba6c" - template_name: "acctest_qnr4i" => "acctest_qnr4i" - version: "0" => "1" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c70671b0000b50bfd0c45 - provider = provider.mso - description = - name = acctest_tm86m - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c70671d000097644fba6c - provider = provider.mso - name = acctest_qnr4i - template_name = acctest_qnr4i - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_tm86m - provider = provider.mso - dhcp_policy.name = acctest_tm86m - dhcp_policy.version = 0 - display_name = acctest_tm86m - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_tm86m - schema_id = 621c70671d000097644fba6c - template_name = acctest_qnr4i - vrf_name = acctest_tm86m - vrf_schema_id = 621c70671d000097644fba6c - vrf_template_name = acctest_qnr4i - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m - provider = provider.mso - bd_name = acctest_tm86m - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_tm86m - schema_id = 621c70671d000097644fba6c - template_name = acctest_qnr4i - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_tm86m - provider = provider.mso - display_name = acctest_tm86m - layer3_multicast = false - name = acctest_tm86m - schema_id = 621c70671d000097644fba6c - template = acctest_qnr4i - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:19:18 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:19:18 [DEBUG] Resource state not found for node "mso_dhcp_option_policy.test", instance mso_dhcp_option_policy.test -2022/02/28 12:19:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (prepare state)" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_bd.test (prepare state) mso_dhcp_option_policy.test (prepare state) mso_dhcp_option_policy.test mso_dhcp_option_policy.test] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:19:18 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:19:18 [DEBUG] mso_dhcp_option_policy.test: applying the planned Create change -2022/02/28 12:19:18 [DEBUG] : Beginning Create -2022/02/28 12:19:18 HTTP request POST mso/api/v1/policies/dhcp/option -2022/02/28 12:19:18 [DEBUG] Begin Injection -2022/02/28 12:19:18 HTTP request after injection POST mso/api/v1/policies/dhcp/option -2022/02/28 12:19:18 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/option HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"desc":"","dhcpOption":null,"name":"acctest_yhum2","tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9d7ac0 90 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 12:19:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0019e60c0 1362 [] false false map[] 0xc00015a100 0xc0004e6210} -2022/02/28 12:19:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:18 [DEBUG] Exit from do method -2022/02/28 12:19:18 [DEBUG] acctest_m9myr: Read finished successfully -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:18 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Beginning Read -2022/02/28 12:19:18 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:18 [DEBUG] Begin Injection -2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00208c900 160 [] false false map[] 0xc0016b8500 0xc0019780b0} -2022/02/28 12:19:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 {"id":"621c70671b0000c10bfd0c44","name":"acctest_bwj42","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:18 [DEBUG] Exit from do method -2022/02/28 12:19:18 [DEBUG] 621c70671b0000c10bfd0c44: Read finished successfully -2022/02/28 12:19:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0019e7840 1362 [] false false map[] 0xc00015ba00 0xc0004e6000} -2022/02/28 12:19:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:18 [DEBUG] Exit from do method -2022/02/28 12:19:18 [DEBUG] 621c70671d0000b6644fba69: Read finished successfully -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:18 [DEBUG] acctest_bwj42: Beginning Read -2022/02/28 12:19:18 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:18 [DEBUG] Begin Injection -2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:18 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/option -2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199e240 161 [] false false map[] 0xc001ad0700 0xc0004e6210} -2022/02/28 12:19:18 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/option {"id":"621c706e1b00009f0bfd0c46","name":"acctest_yhum2","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:18 [DEBUG] Exit from do method -2022/02/28 12:19:18 [DEBUG] 621c706e1b00009f0bfd0c46: Creation finished successfully -2022/02/28 12:19:18 [DEBUG] 621c706e1b00009f0bfd0c46: Beginning Read -2022/02/28 12:19:18 id: 621c706e1b00009f0bfd0c46 -2022/02/28 12:19:18 HTTP request GET mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:18 [DEBUG] Begin Injection -2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b96180 1362 [] false false map[] 0xc0016b8700 0xc0019780b0} -2022/02/28 12:19:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:18 [DEBUG] Exit from do method -2022/02/28 12:19:18 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:18 [DEBUG] : Beginning Read -2022/02/28 12:19:18 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:18 [DEBUG] Begin Injection -2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0019e7dc0 1362 [] false false map[] 0xc001ad0b00 0xc0004e6000} -2022/02/28 12:19:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:18 [DEBUG] Exit from do method -2022/02/28 12:19:18 currentvrfname acctest_bwj42 -2022/02/28 12:19:18 found correct vrfname -2022/02/28 12:19:18 [DEBUG] acctest_bwj42: Read finished successfully -2022/02/28 12:19:18 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:18 [DEBUG] acctest_bwj42: Beginning Read -2022/02/28 12:19:18 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:18 [DEBUG] Begin Injection -2022/02/28 12:19:18 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:18 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b50600 161 [] false false map[] 0xc00152a600 0xc0004e6210} -2022/02/28 12:19:18 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 {"id":"621c706e1b00009f0bfd0c46","name":"acctest_yhum2","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:18 [DEBUG] Exit from do method -2022/02/28 12:19:18 [DEBUG] 621c706e1b00009f0bfd0c46: Read finished successfully -2022/02/28 12:19:18 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Update change -2022/02/28 12:19:18 [DEBUG] Template BD: Beginning Update -2022/02/28 12:19:18 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:18 [DEBUG] Begin Injection -2022/02/28 12:19:18 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00208d9c0 1362 [] false false map[] 0xc00152ac00 0xc0019780b0} -2022/02/28 12:19:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:19 [DEBUG] Exit from do method -2022/02/28 12:19:19 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully -2022/02/28 12:19:19 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:19 [DEBUG] New state was assigned lineage "dd4a103e-6977-70cb-e0ee-7b436218606d" -2022/02/28 12:19:19 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:19 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:19 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:19 [WARN] Test: Executing destroy step -2022/02/28 12:19:19 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:19 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:19 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:19 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:19 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:19 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:19 [DEBUG] : Beginning Read -2022/02/28 12:19:19 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:19 [DEBUG] Begin Injection -2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e63c0 1362 [] false false map[] 0xc001fec400 0xc0004e6000} -2022/02/28 12:19:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:19 [DEBUG] Exit from do method -2022/02/28 12:19:19 [DEBUG] acctest_bwj42: Read finished successfully -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:19 [DEBUG] /schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42: Beginning Read -2022/02/28 12:19:19 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:19 [DEBUG] Begin Injection -2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:19 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00057d600 0xc0004e6210} -2022/02/28 12:19:19 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:19 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Read -2022/02/28 12:19:19 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:19 [DEBUG] Begin Injection -2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e6fc0 1362 [] false false map[] 0xc00057d100 0xc0004e6000} -2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c9f40 5563 [] false false map[] 0xc001fec800 0xc0019780b0} -2022/02/28 12:19:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"id":"621c70671d0000b6644fba69","displayName":"acctest_vlyjs","description":"","templates":[{"name":"acctest_vlyjs","displayName":"acctest_vlyjs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_bwj42","displayName":"acctest_bwj42","bdRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/vrfs/acctest_bwj42","dhcpLabel":{"name":"acctest_bwj42","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_bwj42","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:19 [DEBUG] Exit from do method -2022/02/28 12:19:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:19 [DEBUG] /schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42: Read finished successfully -2022/02/28 12:19:19 [DEBUG] Exit from do method -2022/02/28 12:19:19 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:19 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:19 [DEBUG] New state was assigned lineage "2c08dbab-12bf-c884-984b-43fb7776643c" -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:19 [DEBUG] 621c70671d0000aa644fba68: Beginning Read -2022/02/28 12:19:19 [DEBUG] 621c70671b00009f0bfd0c43: Beginning Read -2022/02/28 12:19:19 id: 621c70671b00009f0bfd0c43 -2022/02/28 12:19:19 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:19 [DEBUG] Begin Injection -2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:19 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:19:19 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:19 [DEBUG] Begin Injection -2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:19:19 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:19:19 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c70671b0000c10bfd0c44" => "" - name: "acctest_bwj42" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c70671d0000b6644fba69" => "" - name: "acctest_vlyjs" => "" - template_name: "acctest_vlyjs" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_bwj42" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_bwj42" => "" - id: "acctest_bwj42" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_bwj42" => "" - schema_id: "621c70671d0000b6644fba69" => "" - template_name: "acctest_vlyjs" => "" - vrf_name: "acctest_bwj42" => "" - vrf_schema_id: "621c70671d0000b6644fba69" => "" - vrf_template_name: "acctest_vlyjs" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_bwj42" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42" => "" - name: "acctest_bwj42" => "" - schema_id: "621c70671d0000b6644fba69" => "" - template_name: "acctest_vlyjs" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_bwj42" => "" - id: "acctest_bwj42" => "" - layer3_multicast: "false" => "" - name: "acctest_bwj42" => "" - schema_id: "621c70671d0000b6644fba69" => "" - template: "acctest_vlyjs" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c70671b0000c10bfd0c44 - provider = provider.mso - description = - name = acctest_bwj42 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c70671d0000b6644fba69 - provider = provider.mso - name = acctest_vlyjs - template_name = acctest_vlyjs - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_bwj42 - provider = provider.mso - dhcp_policy.name = acctest_bwj42 - dhcp_policy.version = 0 - display_name = acctest_bwj42 - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_bwj42 - schema_id = 621c70671d0000b6644fba69 - template_name = acctest_vlyjs - vrf_name = acctest_bwj42 - vrf_schema_id = 621c70671d0000b6644fba69 - vrf_template_name = acctest_vlyjs - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c70671d0000b6644fba69/templates/acctest_vlyjs/bds/acctest_bwj42/dhcpLabels/acctest_bwj42 - provider = provider.mso - bd_name = acctest_bwj42 - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_bwj42 - schema_id = 621c70671d0000b6644fba69 - template_name = acctest_vlyjs - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_bwj42 - provider = provider.mso - display_name = acctest_bwj42 - layer3_multicast = false - name = acctest_bwj42 - schema_id = 621c70671d0000b6644fba69 - template = acctest_vlyjs - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:19:19 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (destroy) -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:19 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 12:19:19 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 12:19:19 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 12:19:19 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:19:19 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:19:19 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 12:19:19 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 12:19:19 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 12:19:19 [DEBUG] Template BD: Beginning Update -2022/02/28 12:19:19 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:19 [DEBUG] Begin Injection -2022/02/28 12:19:19 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001fe6980 1472 [] false false map[] 0xc001feca00 0xc002430a50} -2022/02/28 12:19:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:19:19 [DEBUG] Exit from do method -2022/02/28 12:19:19 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully -2022/02/28 12:19:19 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:19 [DEBUG] New state was assigned lineage "019756c7-2953-40e9-8e0f-fb3efd0c3cbd" -2022/02/28 12:19:19 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:19 [DEBUG] Begin Injection -2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001aa5200 160 [] false false map[] 0xc00015b900 0xc0004e6000} -2022/02/28 12:19:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 {"id":"621c70671b00009f0bfd0c43","name":"acctest_m9myr","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:19 [DEBUG] Exit from do method -2022/02/28 12:19:19 [DEBUG] 621c70671b00009f0bfd0c43: Read finished successfully -2022/02/28 12:19:19 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b96fc0 1362 [] false false map[] 0xc00057da00 0xc0004e6dc0} -2022/02/28 12:19:19 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:19 [DEBUG] Exit from do method -2022/02/28 12:19:19 [DEBUG] 621c70671d0000aa644fba68: Read finished successfully -2022/02/28 12:19:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:19 [DEBUG] acctest_m9myr: Beginning Read -2022/02/28 12:19:19 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:19 [DEBUG] Begin Injection -2022/02/28 12:19:19 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:19 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:19 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00057d200 0xc002430a50} -2022/02/28 12:19:19 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:19 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 12:19:19 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 12:19:19 [DEBUG] 621c70671b0000c10bfd0c44: Beginning Read -2022/02/28 12:19:19 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:19 [DEBUG] Begin Injection -2022/02/28 12:19:19 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:19 [DEBUG] Template BD: Beginning Update -2022/02/28 12:19:19 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:19 [DEBUG] Begin Injection -2022/02/28 12:19:19 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b507c0 1472 [] false false map[] 0xc001fecc00 0xc0004e6000} -2022/02/28 12:19:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:19:20 [DEBUG] Exit from do method -2022/02/28 12:19:20 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:20 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:20 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:20 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:20 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:20 [DEBUG] : Beginning Read -2022/02/28 12:19:20 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:20 [DEBUG] Begin Injection -2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001fe7580 1362 [] false false map[] 0xc00015a500 0xc0004e6dc0} -2022/02/28 12:19:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:20 [DEBUG] Exit from do method -2022/02/28 12:19:20 currentvrfname acctest_m9myr -2022/02/28 12:19:20 found correct vrfname -2022/02/28 12:19:20 [DEBUG] acctest_m9myr: Read finished successfully -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:20 [DEBUG] acctest_m9myr: Beginning Read -2022/02/28 12:19:20 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:20 [DEBUG] Begin Injection -2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:20 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000077500 0xc002430a50} -2022/02/28 12:19:20 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000c10bfd0c44 -2022/02/28 12:19:20 [DEBUG] : Read finished successfully -2022/02/28 12:19:20 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001ad1700 0xc0004e6000} -2022/02/28 12:19:20 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:20 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 12:19:20 [DEBUG] acctest_bwj42: Beginning Destroy -2022/02/28 12:19:20 HTTP request PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:20 [DEBUG] Begin Injection -2022/02/28 12:19:20 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0017f2040 5563 [] false false map[] 0xc001c45600 0xc0004e6dc0} -2022/02/28 12:19:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:20 [DEBUG] Exit from do method -2022/02/28 12:19:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 12:19:20 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read -2022/02/28 12:19:20 id: 621c70671b0000b50bfd0c45 -2022/02/28 12:19:20 [DEBUG] 621c70671d000097644fba6c: Beginning Read -2022/02/28 12:19:20 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:20 [DEBUG] Begin Injection -2022/02/28 12:19:20 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:20 [DEBUG] Begin Injection -2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:20 [DEBUG] 621c706e1b00009f0bfd0c46: Beginning Read -2022/02/28 12:19:20 id: 621c706e1b00009f0bfd0c46 -2022/02/28 12:19:20 HTTP request GET mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:20 [DEBUG] Begin Injection -2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e7480 1362 [] false false map[] 0xc00015ba00 0xc0004e6210} -2022/02/28 12:19:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:20 [DEBUG] Exit from do method -2022/02/28 12:19:20 [DEBUG] acctest_m9myr: Read finished successfully -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:20 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Beginning Read -2022/02/28 12:19:20 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:20 [DEBUG] Begin Injection -2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:20 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000076800 0xc0004e6000} -2022/02/28 12:19:20 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69?validate=false -2022/02/28 12:19:20 [DEBUG] acctest_bwj42: Destroy finished successfully -2022/02/28 12:19:20 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 12:19:20 [DEBUG] 621c70671d0000b6644fba69: Beginning Destroy -2022/02/28 12:19:20 HTTP request DELETE mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:20 [DEBUG] Begin Injection -2022/02/28 12:19:20 HTTP request after injection DELETE mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069cc00 160 [] false false map[] 0xc00152ac00 0xc002430a50} -2022/02/28 12:19:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:20 [DEBUG] Exit from do method -2022/02/28 12:19:20 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully -2022/02/28 12:19:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199ee80 1472 [] false false map[] 0xc001c44500 0xc0004e6dc0} -2022/02/28 12:19:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:19:20 [DEBUG] Exit from do method -2022/02/28 12:19:20 [DEBUG] 621c70671d000097644fba6c: Read finished successfully -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:20 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:20 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:20 [DEBUG] Begin Injection -2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199fa00 161 [] false false map[] 0xc00152ad00 0xc002430790} -2022/02/28 12:19:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 {"id":"621c706e1b00009f0bfd0c46","name":"acctest_yhum2","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:20 [DEBUG] Exit from do method -2022/02/28 12:19:20 [DEBUG] 621c706e1b00009f0bfd0c46: Read finished successfully -2022/02/28 12:19:20 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199fa80 1362 [] false false map[] 0xc000076f00 0xc0004e6210} -2022/02/28 12:19:20 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:20 [DEBUG] Exit from do method -2022/02/28 12:19:20 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully -2022/02/28 12:19:20 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:20 [DEBUG] : Beginning Read -2022/02/28 12:19:20 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:20 [DEBUG] Begin Injection -2022/02/28 12:19:20 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:21 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000077800 0xc0004e6000} -2022/02/28 12:19:21 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:21 [DEBUG] 621c70671d0000b6644fba69: Destroy finished successfully -2022/02/28 12:19:21 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:21 [DEBUG] New state was assigned lineage "fb3c79a7-4855-ed05-5588-2fe406efacc5" -2022/02/28 12:19:21 HTTP request GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:21 [DEBUG] Begin Injection -2022/02/28 12:19:21 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128ed40 1472 [] false false map[] 0xc00057d000 0xc0004e6dc0} -2022/02/28 12:19:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:19:21 [DEBUG] Exit from do method -2022/02/28 12:19:21 currentvrfname acctest_tm86m -2022/02/28 12:19:21 found correct vrfname -2022/02/28 12:19:21 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:21 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:21 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:21 [DEBUG] Begin Injection -2022/02/28 12:19:21 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1362] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128f740 1362 [] false false map[] 0xc001c44c00 0xc002430d10} -2022/02/28 12:19:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"id":"621c70671d0000aa644fba68","displayName":"acctest_ud1gn","description":"","templates":[{"name":"acctest_ud1gn","displayName":"acctest_ud1gn","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_m9myr","displayName":"acctest_m9myr","bdRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/vrfs/acctest_m9myr","dhcpLabel":{"name":"acctest_m9myr","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_m9myr","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} -2022/02/28 12:19:21 [DEBUG] Exit from do method -2022/02/28 12:19:21 [DEBUG] /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr: Read finished successfully -2022/02/28 12:19:21 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:21 [DEBUG] New state was assigned lineage "42b4b6e0-e410-6da0-ea5b-cb70fafee187" -2022/02/28 12:19:21 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test (destroy) -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:19:21 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_m9myr" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr" => "" - name: "acctest_m9myr" => "" - schema_id: "621c70671d0000aa644fba68" => "" - template_name: "acctest_ud1gn" => "" - version: "0" => "" -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c70671b00009f0bfd0c43" => "" - name: "acctest_m9myr" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c70671d0000aa644fba68" => "" - name: "acctest_ud1gn" => "" - template_name: "acctest_ud1gn" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_m9myr" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_m9myr" => "" - id: "acctest_m9myr" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_m9myr" => "" - schema_id: "621c70671d0000aa644fba68" => "" - template_name: "acctest_ud1gn" => "" - vrf_name: "acctest_m9myr" => "" - vrf_schema_id: "621c70671d0000aa644fba68" => "" - vrf_template_name: "acctest_ud1gn" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_m9myr" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr" => "" - name: "acctest_m9myr" => "" - schema_id: "621c70671d0000aa644fba68" => "" - template_name: "acctest_ud1gn" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_m9myr" => "" - id: "acctest_m9myr" => "" - layer3_multicast: "false" => "" - name: "acctest_m9myr" => "" - schema_id: "621c70671d0000aa644fba68" => "" - template: "acctest_ud1gn" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr - provider = provider.mso - bd_name = acctest_m9myr - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_m9myr - schema_id = 621c70671d0000aa644fba68 - template_name = acctest_ud1gn - version = 0 - - Dependencies: - mso_schema_template_bd_dhcp_policy.test -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c70671b00009f0bfd0c43 - provider = provider.mso - description = - name = acctest_m9myr - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c70671d0000aa644fba68 - provider = provider.mso - name = acctest_ud1gn - template_name = acctest_ud1gn - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_m9myr - provider = provider.mso - dhcp_policy.name = acctest_m9myr - dhcp_policy.version = 0 - display_name = acctest_m9myr - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_m9myr - schema_id = 621c70671d0000aa644fba68 - template_name = acctest_ud1gn - vrf_name = acctest_m9myr - vrf_schema_id = 621c70671d0000aa644fba68 - vrf_template_name = acctest_ud1gn - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c70671d0000aa644fba68/templates/acctest_ud1gn/bds/acctest_m9myr/dhcpLabels/acctest_m9myr - provider = provider.mso - bd_name = acctest_m9myr - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_m9myr - schema_id = 621c70671d0000aa644fba68 - template_name = acctest_ud1gn - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_m9myr - provider = provider.mso - display_name = acctest_m9myr - layer3_multicast = false - name = acctest_m9myr - schema_id = 621c70671d0000aa644fba68 - template = acctest_ud1gn - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:19:21 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (destroy) -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test mso_schema_template_bd_dhcp_policy.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 12:19:21 DestroyEdgeTransformer: pruning unused resource node data.mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 12:19:21 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 12:19:21 [DEBUG] Template BD: Beginning Update -2022/02/28 12:19:21 HTTP request PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:21 [DEBUG] Begin Injection -2022/02/28 12:19:21 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 -2022/02/28 12:19:21 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e7d00 39 [] false false map[] 0xc001c44e00 0xc0004e66e0} -2022/02/28 12:19:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000b6644fba69 {"code":404,"message":"Item not found"} -2022/02/28 12:19:21 [DEBUG] Exit from do method -2022/02/28 12:19:21 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:19:21 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:21 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:21 [DEBUG] : Beginning Read -2022/02/28 12:19:21 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:21 [DEBUG] Begin Injection -2022/02/28 12:19:21 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128e900 1472 [] false false map[] 0xc00057d400 0xc0004e6dc0} -2022/02/28 12:19:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:19:21 [DEBUG] Exit from do method -2022/02/28 12:19:21 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:21 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Read -2022/02/28 12:19:21 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:21 [DEBUG] Begin Injection -2022/02/28 12:19:21 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:21 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00015bc00 0xc002430d10} -2022/02/28 12:19:21 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:21 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 12:19:21 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 12:19:21 [DEBUG] 621c70671b00009f0bfd0c43: Beginning Read -2022/02/28 12:19:21 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:21 [DEBUG] Begin Injection -2022/02/28 12:19:21 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:21 [DEBUG] Template BD: Beginning Update -2022/02/28 12:19:21 HTTP request PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:21 [DEBUG] Begin Injection -2022/02/28 12:19:21 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128ea40 5563 [] false false map[] 0xc00015bf00 0xc0010409a0} -2022/02/28 12:19:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:21 [DEBUG] Exit from do method -2022/02/28 12:19:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:21 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:21 [DEBUG] New state was assigned lineage "e24a09ad-ae63-285e-87d7-333259f92c37" -2022/02/28 12:19:21 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:19:21 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00208c040 1472 [] false false map[] 0xc000076500 0xc0004e6dc0} -2022/02/28 12:19:21 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:19:21 [DEBUG] Exit from do method -2022/02/28 12:19:21 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully -2022/02/28 12:19:21 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:21 [DEBUG] New state was assigned lineage "d5688da0-be62-172b-148f-ed35ef9c0c56" -2022/02/28 12:19:21 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_option_policy.test -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema.test mso_schema_template_bd.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:21 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:21 [DEBUG] Test: Executing step 6 -2022/02/28 12:19:21 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:21 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m\")" (*terraform.graphNodeImportState) needs provider.mso -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (import id \"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m\")" references: [] -2022/02/28 12:19:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:21 [DEBUG] Starting graph walk: walkImport -2022/02/28 12:19:21 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Import -2022/02/28 12:19:21 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:21 [DEBUG] Begin Injection -2022/02/28 12:19:21 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:21 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00057d500 0xc002430d10} -2022/02/28 12:19:21 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b00009f0bfd0c43 -2022/02/28 12:19:21 [DEBUG] : Read finished successfully -2022/02/28 12:19:21 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001ad0600 0xc002430a50} -2022/02/28 12:19:21 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:21 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 12:19:21 [DEBUG] acctest_m9myr: Beginning Destroy -2022/02/28 12:19:21 HTTP request PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:21 [DEBUG] Begin Injection -2022/02/28 12:19:21 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001a1700 1472 [] false false map[] 0xc001ad0900 0xc0004e6dc0} -2022/02/28 12:19:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:19:22 [DEBUG] Exit from do method -2022/02/28 12:19:22 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Import finished successfully -2022/02/28 12:19:22 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Read -2022/02/28 12:19:22 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:22 [DEBUG] Begin Injection -2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:22 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001ad1000 0xc002430d10} -2022/02/28 12:19:22 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68?validate=false -2022/02/28 12:19:22 [DEBUG] acctest_m9myr: Destroy finished successfully -2022/02/28 12:19:22 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 12:19:22 [DEBUG] 621c70671d0000aa644fba68: Beginning Destroy -2022/02/28 12:19:22 HTTP request DELETE mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:22 [DEBUG] Begin Injection -2022/02/28 12:19:22 HTTP request after injection DELETE mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b50740 1472 [] false false map[] 0xc00015a200 0xc0004e6dc0} -2022/02/28 12:19:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:19:22 [DEBUG] Exit from do method -2022/02/28 12:19:22 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully -2022/02/28 12:19:22 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:22 [DEBUG] New state was assigned lineage "672c1064-10c2-466e-26b1-e0838af9fa02" -2022/02/28 12:19:22 [DEBUG] Test: Executing step 7 -2022/02/28 12:19:22 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:22 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:22 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:22 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:22 [WARN] Not fixing up EachModes for mso_schema_template_bd_dhcp_policy.test because it has no config -2022/02/28 12:19:22 [WARN] Not fixing up EachModes for mso_dhcp_option_policy.test because it has no config -2022/02/28 12:19:22 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:22 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:22 [DEBUG] : Beginning Read -2022/02/28 12:19:22 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:22 [DEBUG] Begin Injection -2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:22 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00152a300 0xc002430d10} -2022/02/28 12:19:22 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:22 [DEBUG] 621c70671d0000aa644fba68: Destroy finished successfully -2022/02/28 12:19:22 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:22 [DEBUG] New state was assigned lineage "a31a0d7e-8812-6fa9-8eb6-20d96f039d2a" -2022/02/28 12:19:22 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:22 [DEBUG] Begin Injection -2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b51e80 5563 [] false false map[] 0xc001c45800 0xc0004e6dc0} -2022/02/28 12:19:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:22 [DEBUG] Exit from do method -2022/02/28 12:19:22 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:22 [DEBUG] 621c706e1b00009f0bfd0c46: Beginning Read -2022/02/28 12:19:22 id: 621c706e1b00009f0bfd0c46 -2022/02/28 12:19:22 [DEBUG] 621c70671d000097644fba6c: Beginning Read -2022/02/28 12:19:22 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:22 HTTP request GET mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:22 [DEBUG] Begin Injection -2022/02/28 12:19:22 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read -2022/02/28 12:19:22 id: 621c70671b0000b50bfd0c45 -2022/02/28 12:19:22 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:22 [DEBUG] Begin Injection -2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:22 [DEBUG] Begin Injection -2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:22 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:22 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199f880 39 [] false false map[] 0xc00015a200 0xc002430d10} -2022/02/28 12:19:22 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"code":404,"message":"Item not found"} -2022/02/28 12:19:22 [DEBUG] Exit from do method -2022/02/28 12:19:22 HTTP request GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:22 [DEBUG] Begin Injection -2022/02/28 12:19:22 HTTP request after injection GET mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84a80 160 [] false false map[] 0xc000076b00 0xc0004e6dc0} -2022/02/28 12:19:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:23 [DEBUG] Exit from do method -2022/02/28 12:19:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199fa80 161 [] false false map[] 0xc001ad1a00 0xc0010409a0} -2022/02/28 12:19:23 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully -2022/02/28 12:19:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 {"id":"621c706e1b00009f0bfd0c46","name":"acctest_yhum2","policyType":"dhcp","policySubtype":"option","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:23 [DEBUG] Exit from do method -2022/02/28 12:19:23 [DEBUG] 621c706e1b00009f0bfd0c46: Read finished successfully -2022/02/28 12:19:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001abb080 1472 [] false false map[] 0xc00057c600 0xc002430d10} -2022/02/28 12:19:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:19:23 [DEBUG] Exit from do method -2022/02/28 12:19:23 [DEBUG] 621c70671d000097644fba6c: Read finished successfully -2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:23 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:23 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:23 [DEBUG] Begin Injection -2022/02/28 12:19:23 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 -2022/02/28 12:19:23 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:23 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199e100 39 [] false false map[] 0xc001ad1b00 0xc0004e6dc0} -2022/02/28 12:19:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d0000aa644fba68 {"code":404,"message":"Item not found"} -2022/02/28 12:19:23 [DEBUG] Exit from do method -2022/02/28 12:19:23 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:19:23 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:19:23 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:23 [DEBUG] ProviderTransformer: "data.mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:23 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:23 [DEBUG] Resource state not found for node "data.mso_schema_template_bd_dhcp_policy.test", instance data.mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "data.mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:23 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:23 [DEBUG] : Beginning Read -2022/02/28 12:19:23 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:23 [DEBUG] Begin Injection -2022/02/28 12:19:23 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128e100 1472 [] false false map[] 0xc001ad1d00 0xc002430d10} -2022/02/28 12:19:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:19:23 [DEBUG] Exit from do method -2022/02/28 12:19:23 currentvrfname acctest_tm86m -2022/02/28 12:19:23 found correct vrfname -2022/02/28 12:19:23 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:23 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:23 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:23 [DEBUG] Begin Injection -2022/02/28 12:19:23 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00208c100 5563 [] false false map[] 0xc00015aa00 0xc0004e6dc0} -2022/02/28 12:19:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:23 [DEBUG] Exit from do method -2022/02/28 12:19:23 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:23 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:23 [DEBUG] New state was assigned lineage "d6d1b060-a638-da83-bbee-a33c4b4c7850" -2022/02/28 12:19:23 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:19:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:19:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:23 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:19:23 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00208c240 1472 [] false false map[] 0xc00152b200 0xc002430d10} -2022/02/28 12:19:23 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:19:23 [DEBUG] Exit from do method -2022/02/28 12:19:23 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:23 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Beginning Read -2022/02/28 12:19:23 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:23 [DEBUG] Begin Injection -2022/02/28 12:19:23 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:24 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1472] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b51980 1472 [] false false map[] 0xc000076500 0xc000e0af20} -2022/02/28 12:19:24 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","dhcpLabel":{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_tm86m","dhcpOptionLabel":{"name":"acctest_yhum2","version":1},"version":1}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} -2022/02/28 12:19:24 [DEBUG] Exit from do method -2022/02/28 12:19:24 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m: Read finished successfully -2022/02/28 12:19:24 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:24 [DEBUG] New state was assigned lineage "e2030765-9c49-5b74-9cbe-e423847f1be8" -2022/02/28 12:19:24 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (orphan)" references: [mso_dhcp_option_policy.test (orphan) mso_dhcp_option_policy.test (orphan) mso_dhcp_relay_policy.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (orphan)" references: [data.mso_tenant.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:24 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:24 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:24 [WARN] Test: Step plan: DIFF: - -DESTROY: mso_dhcp_option_policy.test - description: "" => "" - id: "621c706e1b00009f0bfd0c46" => "" - name: "acctest_yhum2" => "" - option.#: "0" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_tm86m" => "" - dhcp_option_name: "acctest_yhum2" => "" - dhcp_option_version: "1" => "" - id: "/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m" => "" - name: "acctest_tm86m" => "" - schema_id: "621c70671d000097644fba6c" => "" - template_name: "acctest_qnr4i" => "" - version: "1" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_option_policy.test: - ID = 621c706e1b00009f0bfd0c46 - provider = provider.mso - description = - name = acctest_yhum2 - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_dhcp_relay_policy.test: - ID = 621c70671b0000b50bfd0c45 - provider = provider.mso - description = - name = acctest_tm86m - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c70671d000097644fba6c - provider = provider.mso - name = acctest_qnr4i - template_name = acctest_qnr4i - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_tm86m - provider = provider.mso - dhcp_policy.dhcp_option_policy_name = acctest_yhum2 - dhcp_policy.dhcp_option_policy_version = 1 - dhcp_policy.name = acctest_tm86m - dhcp_policy.version = 1 - display_name = acctest_tm86m - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_tm86m - schema_id = 621c70671d000097644fba6c - template_name = acctest_qnr4i - vrf_name = acctest_tm86m - vrf_schema_id = 621c70671d000097644fba6c - vrf_template_name = acctest_qnr4i - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m/dhcpLabels/acctest_tm86m - provider = provider.mso - bd_name = acctest_tm86m - dhcp_option_name = acctest_yhum2 - dhcp_option_version = 1 - name = acctest_tm86m - schema_id = 621c70671d000097644fba6c - template_name = acctest_qnr4i - version = 1 - - Dependencies: - mso_dhcp_option_policy.test - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_tm86m - provider = provider.mso - display_name = acctest_tm86m - layer3_multicast = false - name = acctest_tm86m - schema_id = 621c70671d000097644fba6c - template = acctest_qnr4i - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:19:24 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:19:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (clean up state)" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (clean up state)" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_option_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_option_policy.test (destroy)" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_option_policy.test mso_dhcp_option_policy.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:24 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 12:19:24 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 12:19:24 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 12:19:24 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:19:24 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 12:19:24 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:19:24 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 12:19:24 [DEBUG] Template BD: Beginning Update -2022/02/28 12:19:24 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:24 [DEBUG] Begin Injection -2022/02/28 12:19:24 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:24 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:24 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000e23b00 0xc000e0af20} -2022/02/28 12:19:24 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:24 [DEBUG] mso_dhcp_option_policy.test: applying the planned Delete change -2022/02/28 12:19:24 [DEBUG] 621c706e1b00009f0bfd0c46: Beginning Read -2022/02/28 12:19:24 HTTP request DELETE mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:24 [DEBUG] Begin Injection -2022/02/28 12:19:24 HTTP request after injection DELETE mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:24 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:24 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000076700 0xc000e0af20} -2022/02/28 12:19:24 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/option/621c706e1b00009f0bfd0c46 -2022/02/28 12:19:24 [DEBUG] : Read finished successfully -2022/02/28 12:19:24 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:24 [DEBUG] New state was assigned lineage "aa5cdf63-3dd8-a0f5-4012-1a080bc7a555" -2022/02/28 12:19:24 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:24 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:24 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:24 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:24 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:24 [DEBUG] : Beginning Read -2022/02/28 12:19:24 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:24 [DEBUG] Begin Injection -2022/02/28 12:19:24 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8140 5563 [] false false map[] 0xc000077700 0xc000e0af20} -2022/02/28 12:19:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:25 [DEBUG] Exit from do method -2022/02/28 12:19:25 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:25 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:25 [DEBUG] 621c70671d000097644fba6c: Beginning Read -2022/02/28 12:19:25 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:25 [DEBUG] Begin Injection -2022/02/28 12:19:25 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:25 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read -2022/02/28 12:19:25 id: 621c70671b0000b50bfd0c45 -2022/02/28 12:19:25 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:25 [DEBUG] Begin Injection -2022/02/28 12:19:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069d0c0 160 [] false false map[] 0xc0011cc100 0xc0010409a0} -2022/02/28 12:19:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:25 [DEBUG] Exit from do method -2022/02/28 12:19:25 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully -2022/02/28 12:19:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a84340 1277 [] false false map[] 0xc001d14500 0xc000e0af20} -2022/02/28 12:19:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 12:19:25 [DEBUG] Exit from do method -2022/02/28 12:19:25 [DEBUG] 621c70671d000097644fba6c: Read finished successfully -2022/02/28 12:19:25 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:25 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:25 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:25 [DEBUG] Begin Injection -2022/02/28 12:19:25 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:25 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b51080 1277 [] false false map[] 0xc00152a500 0xc000e0af20} -2022/02/28 12:19:25 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 12:19:25 [DEBUG] Exit from do method -2022/02/28 12:19:25 currentvrfname acctest_tm86m -2022/02/28 12:19:25 found correct vrfname -2022/02/28 12:19:25 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:25 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:25 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:25 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:25 [DEBUG] Begin Injection -2022/02/28 12:19:25 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e66c0 1277 [] false false map[] 0xc00015ab00 0xc000e0af20} -2022/02/28 12:19:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 12:19:26 [DEBUG] Exit from do method -2022/02/28 12:19:26 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:26 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:26 [DEBUG] New state was assigned lineage "a55be48c-a97a-6080-f632-37079d00bba9" -2022/02/28 12:19:26 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:26 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:26 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:26 [DEBUG] Test: Executing step 8 -2022/02/28 12:19:26 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:26 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:26 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:26 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:26 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:26 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:26 [DEBUG] : Beginning Read -2022/02/28 12:19:26 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:26 [DEBUG] Begin Injection -2022/02/28 12:19:26 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00141e4c0 5563 [] false false map[] 0xc000e23200 0xc000e0af20} -2022/02/28 12:19:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:26 [DEBUG] Exit from do method -2022/02/28 12:19:26 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:26 [DEBUG] 621c70671d000097644fba6c: Beginning Read -2022/02/28 12:19:26 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:26 [DEBUG] Begin Injection -2022/02/28 12:19:26 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:26 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read -2022/02/28 12:19:26 id: 621c70671b0000b50bfd0c45 -2022/02/28 12:19:26 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:26 [DEBUG] Begin Injection -2022/02/28 12:19:26 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:26 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001abb2c0 160 [] false false map[] 0xc000076700 0xc0010409a0} -2022/02/28 12:19:26 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 {"id":"621c70671b0000b50bfd0c45","name":"acctest_tm86m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:26 [DEBUG] Exit from do method -2022/02/28 12:19:26 [DEBUG] 621c70671b0000b50bfd0c45: Read finished successfully -2022/02/28 12:19:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001abb380 1277 [] false false map[] 0xc00152a700 0xc000e0af20} -2022/02/28 12:19:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 12:19:27 [DEBUG] Exit from do method -2022/02/28 12:19:27 [DEBUG] 621c70671d000097644fba6c: Read finished successfully -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:27 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:27 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:27 [DEBUG] Begin Injection -2022/02/28 12:19:27 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001aba0c0 1277 [] false false map[] 0xc000076c00 0xc000e0af20} -2022/02/28 12:19:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 12:19:27 [DEBUG] Exit from do method -2022/02/28 12:19:27 currentvrfname acctest_tm86m -2022/02/28 12:19:27 found correct vrfname -2022/02/28 12:19:27 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:27 [DEBUG] acctest_tm86m: Beginning Read -2022/02/28 12:19:27 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:27 [DEBUG] Begin Injection -2022/02/28 12:19:27 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:27 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1277] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199e100 1277 [] false false map[] 0xc000076400 0xc000e0af20} -2022/02/28 12:19:27 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_tm86m","displayName":"acctest_tm86m","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_tm86m","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_tm86m","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} -2022/02/28 12:19:27 [DEBUG] Exit from do method -2022/02/28 12:19:27 [DEBUG] acctest_tm86m: Read finished successfully -2022/02/28 12:19:27 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:27 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:27 [DEBUG] New state was assigned lineage "2f59dbb9-8ffd-e1f7-bed7-533e92ac992e" -2022/02/28 12:19:27 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:27 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:27 [DEBUG] Resource instance state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:27 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:27 [WARN] Test: Step plan: DIFF: - -DESTROY/CREATE: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "0" - id: "621c70671b0000b50bfd0c45" => "" - name: "acctest_tm86m" => "acctest_w2vzq" (forces new resource) - tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" -DESTROY/CREATE: mso_schema_template_bd.test - dhcp_policy: "" => "" - display_name: "acctest_tm86m" => "acctest_w2vzq" (forces new resource) - id: "acctest_tm86m" => "" - intersite_bum_traffic: "false" => "" - layer2_stretch: "" => "" - layer2_unknown_unicast: "flood" => "" - layer3_multicast: "" => "" - name: "acctest_tm86m" => "acctest_w2vzq" (forces new resource) - optimize_wan_bandwidth: "" => "" - schema_id: "621c70671d000097644fba6c" => "621c70671d000097644fba6c" - template_name: "acctest_qnr4i" => "acctest_qnr4i" - vrf_name: "acctest_tm86m" => "acctest_w2vzq" - vrf_schema_id: "621c70671d000097644fba6c" => "" - vrf_template_name: "acctest_qnr4i" => "" -CREATE: mso_schema_template_bd_dhcp_policy.test - bd_name: "" => "acctest_w2vzq" - dhcp_option_name: "" => "" - dhcp_option_version: "" => "" - id: "" => "" - name: "" => "acctest_w2vzq" - schema_id: "" => "621c70671d000097644fba6c" - template_name: "" => "acctest_qnr4i" - version: "" => "" -DESTROY/CREATE: mso_schema_template_vrf.test - display_name: "acctest_tm86m" => "acctest_w2vzq" - id: "acctest_tm86m" => "" - layer3_multicast: "false" => "" - name: "acctest_tm86m" => "acctest_w2vzq" (forces new resource) - schema_id: "621c70671d000097644fba6c" => "621c70671d000097644fba6c" - template: "acctest_qnr4i" => "acctest_qnr4i" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c70671b0000b50bfd0c45 - provider = provider.mso - description = - name = acctest_tm86m - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c70671d000097644fba6c - provider = provider.mso - name = acctest_qnr4i - template_name = acctest_qnr4i - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_tm86m - provider = provider.mso - display_name = acctest_tm86m - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_tm86m - schema_id = 621c70671d000097644fba6c - template_name = acctest_qnr4i - vrf_name = acctest_tm86m - vrf_schema_id = 621c70671d000097644fba6c - vrf_template_name = acctest_qnr4i - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_vrf.test: - ID = acctest_tm86m - provider = provider.mso - display_name = acctest_tm86m - layer3_multicast = false - name = acctest_tm86m - schema_id = 621c70671d000097644fba6c - template = acctest_qnr4i - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:19:27 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:19:27 [DEBUG] Resource state not found for node "mso_schema_template_bd_dhcp_policy.test", instance mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd.test (prepare state) -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema_template_vrf.test (destroy) mso_schema_template_vrf.test (destroy)] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test (prepare state) mso_schema_template_bd.test mso_schema_template_bd.test mso_schema_template_bd.test (prepare state) mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test (prepare state) mso_schema_template_bd.test (destroy) mso_schema_template_bd.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:19:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:27 [DEBUG] Starting graph walk: walkApply -2022/02/28 12:19:27 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 12:19:27 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 12:19:27 [DEBUG] 621c70671b0000b50bfd0c45: Beginning Read -2022/02/28 12:19:27 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:27 [DEBUG] Begin Injection -2022/02/28 12:19:27 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:27 [DEBUG] Template BD: Beginning Update -2022/02/28 12:19:27 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:27 [DEBUG] Begin Injection -2022/02/28 12:19:27 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000076300 0xc0010409a0} -2022/02/28 12:19:28 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 12:19:28 [DEBUG] acctest_tm86m: Beginning Destroy -2022/02/28 12:19:28 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 [DEBUG] Begin Injection -2022/02/28 12:19:28 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001416500 0xc000e0af20} -2022/02/28 12:19:28 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70671b0000b50bfd0c45 -2022/02/28 12:19:28 [DEBUG] : Read finished successfully -2022/02/28 12:19:28 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change -2022/02/28 12:19:28 [DEBUG] : Beginning Create -2022/02/28 12:19:28 HTTP request POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:28 [DEBUG] Begin Injection -2022/02/28 12:19:28 HTTP request after injection POST mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:28 Request: &{POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay HTTP/1.1 1 1 map[Authorization:[Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi8iLCJjbHVzdGVyIjoiNmM2ODJkNjQtNmQ3YS0zMTJkLTcwNmYtNjQzMTJkNmU2NDZmIiwiZXhwIjoxNjQ2MDMyMTUwLCJpYXQiOjE2NDYwMzA5NTAsImlkIjoiNDhkMTA1YmRmYmM0OWE1ZmNmMzlhMTBiOTYxMzg2ZTYxZGZlNDAwODVjYjAzMTVkODE4Yjc2MWM1NzM1ZGFmYSIsImlzcyI6Im5kIiwiaXNzLWhvc3QiOiIxNzMuMzYuMjE5LjMxIiwicmJhYyI6W3siZG9tYWluIjoiYWxsIiwicm9sZXNSIjoxNjc3NzIxNiwicm9sZXNXIjoxLCJyb2xlcyI6W1siYWRtaW4iLCJXcml0ZVByaXYiXSxbImFwcC11c2VyIiwiUmVhZFByaXYiXV19XSwic2Vzc2lvbmlkIjoiWms3SGQ1Tnc2SXdWS1hZd01hVUpjU3BwIiwidXNlcmZsYWdzIjowLCJ1c2VyaWQiOjI1MDAyLCJ1c2VybmFtZSI6ImFkbWluIiwidXNlcnR5cGUiOiJsb2NhbCJ9.Xo8Dun_UmvnvIvZY5yKDuhdomfeQp2MgIINmR8tyiKeyLcnen2PC_BWRLkz045dkQcZtEt240koSUzajOsQAU-1GtqU78bLbEcgDpYKCPQfHjSRoV4FIkQ7vwxeutLFuBmhELI-y0CWYFT9ftKh1UopQy6HpdB0MrBqm7bzLZs-pSli4YOICOgd9pLsxAwFSWzVh3gsYyKhxoVeFZVCTNdSFT_jinLKwd3nwHz1Ze32PXCAzko-9mgtSJavYmyYAPtNSc2RT9mA5PG14lN73qXpsnzZF0IIwHzPLGjDX70OOMFO7R6TK1DuEmVPq5LpQMmHwzeKUs99E93vT6z2G-A] Content-Type:[application/json]] {{"desc":"","name":"acctest_w2vzq","provider":null,"tenantId":"620cf5ad1d0000ab504f9a3d"}} 0x9d7ac0 88 [] false 173.36.219.31 map[] map[] map[] 0xc0000ae0c8} -2022/02/28 12:19:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:28 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00152a600 0xc0010409a0} -2022/02/28 12:19:28 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 [DEBUG] acctest_tm86m: Destroy finished successfully -2022/02/28 12:19:28 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change -2022/02/28 12:19:28 [DEBUG] Schema Template Vrf: Beginning Creation -2022/02/28 12:19:28 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 [DEBUG] Begin Injection -2022/02/28 12:19:28 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 -HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay -2022/02/28 12:19:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00141e000 160 [] false false map[] 0xc00152ac00 0xc000e0af20} -2022/02/28 12:19:28 - HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621c70781b0000bf0bfd0c47","name":"acctest_w2vzq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:28 [DEBUG] Exit from do method -2022/02/28 12:19:28 [DEBUG] 621c70781b0000bf0bfd0c47: Creation finished successfully -2022/02/28 12:19:28 [DEBUG] 621c70781b0000bf0bfd0c47: Beginning Read -2022/02/28 12:19:28 id: 621c70781b0000bf0bfd0c47 -2022/02/28 12:19:28 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:28 [DEBUG] Begin Injection -2022/02/28 12:19:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:28 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000077900 0xc0010409a0} -2022/02/28 12:19:28 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 [DEBUG] acctest_w2vzq: Creation finished successfully -2022/02/28 12:19:28 [DEBUG] acctest_w2vzq: Beginning Read -2022/02/28 12:19:28 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:28 [DEBUG] Begin Injection -2022/02/28 12:19:28 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057bbc0 160 [] false false map[] 0xc00152af00 0xc000e0af20} -2022/02/28 12:19:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 {"id":"621c70781b0000bf0bfd0c47","name":"acctest_w2vzq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:28 [DEBUG] Exit from do method -2022/02/28 12:19:28 [DEBUG] 621c70781b0000bf0bfd0c47: Read finished successfully -2022/02/28 12:19:28 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8240 768 [] false false map[] 0xc00152b000 0xc0010409a0} -2022/02/28 12:19:28 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":9}],"_updateVersion":0} -2022/02/28 12:19:28 [DEBUG] Exit from do method -2022/02/28 12:19:28 currentvrfname acctest_w2vzq -2022/02/28 12:19:28 found correct vrfname -2022/02/28 12:19:28 [DEBUG] acctest_w2vzq: Read finished successfully -2022/02/28 12:19:28 [DEBUG] mso_schema_template_bd.test: applying the planned Create change -2022/02/28 12:19:28 [DEBUG] setting computed for "dhcp_policy" from ComputedKeys -2022/02/28 12:19:28 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:19:28 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 [DEBUG] Begin Injection -2022/02/28 12:19:28 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:29 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:29 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc002090700 0xc0010409a0} -2022/02/28 12:19:29 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:29 [DEBUG] : Beginning Read -2022/02/28 12:19:29 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:29 [DEBUG] Begin Injection -2022/02/28 12:19:29 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:29 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1278] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b50040 1278 [] false false map[] 0xc0014bc000 0xc0010409a0} -2022/02/28 12:19:29 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":10}],"_updateVersion":0} -2022/02/28 12:19:29 [DEBUG] Exit from do method -2022/02/28 12:19:29 [DEBUG] acctest_w2vzq: Read finished successfully -2022/02/28 12:19:29 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Create change -2022/02/28 12:19:29 [DEBUG] Template BD: Beginning Creation -2022/02/28 12:19:29 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:29 [DEBUG] Begin Injection -2022/02/28 12:19:29 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:29 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:29 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000076100 0xc0010409a0} -2022/02/28 12:19:29 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:29 [DEBUG] Creation Complete -2022/02/28 12:19:29 [DEBUG] : Beginning Read -2022/02/28 12:19:29 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:29 [DEBUG] Begin Injection -2022/02/28 12:19:29 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8940 1363 [] false false map[] 0xc000076300 0xc0010409a0} -2022/02/28 12:19:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:19:30 [DEBUG] Exit from do method -2022/02/28 12:19:30 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq: Read finished successfully -2022/02/28 12:19:30 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:30 [DEBUG] New state was assigned lineage "69073756-8b35-046c-a43f-0d42b23cca62" -2022/02/28 12:19:30 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:30 [DEBUG] Begin Injection -2022/02/28 12:19:30 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00128e380 1363 [] false false map[] 0xc0014bc200 0xc0010409a0} -2022/02/28 12:19:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:19:30 [DEBUG] Exit from do method -2022/02/28 12:19:30 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:30 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:30 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:30 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:30 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:30 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:30 [DEBUG] : Beginning Read -2022/02/28 12:19:30 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:30 [DEBUG] Begin Injection -2022/02/28 12:19:30 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:30 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069d180 5563 [] false false map[] 0xc002090200 0xc0010409a0} -2022/02/28 12:19:30 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:30 [DEBUG] Exit from do method -2022/02/28 12:19:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:30 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:30 [DEBUG] 621c70781b0000bf0bfd0c47: Beginning Read -2022/02/28 12:19:30 id: 621c70781b0000bf0bfd0c47 -2022/02/28 12:19:30 [DEBUG] 621c70671d000097644fba6c: Beginning Read -2022/02/28 12:19:30 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:30 [DEBUG] Begin Injection -2022/02/28 12:19:30 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:30 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:30 [DEBUG] Begin Injection -2022/02/28 12:19:30 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000242640 160 [] false false map[] 0xc0014bc300 0xc000e0af20} -2022/02/28 12:19:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 {"id":"621c70781b0000bf0bfd0c47","name":"acctest_w2vzq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:31 [DEBUG] Exit from do method -2022/02/28 12:19:31 [DEBUG] 621c70781b0000bf0bfd0c47: Read finished successfully -2022/02/28 12:19:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012acb80 1363 [] false false map[] 0xc00152b500 0xc0010409a0} -2022/02/28 12:19:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:19:31 [DEBUG] Exit from do method -2022/02/28 12:19:31 [DEBUG] 621c70671d000097644fba6c: Read finished successfully -2022/02/28 12:19:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:31 [DEBUG] acctest_w2vzq: Beginning Read -2022/02/28 12:19:31 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:31 [DEBUG] Begin Injection -2022/02/28 12:19:31 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057a740 1363 [] false false map[] 0xc002090600 0xc0010409a0} -2022/02/28 12:19:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:19:31 [DEBUG] Exit from do method -2022/02/28 12:19:31 currentvrfname acctest_w2vzq -2022/02/28 12:19:31 found correct vrfname -2022/02/28 12:19:31 [DEBUG] acctest_w2vzq: Read finished successfully -2022/02/28 12:19:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:31 [DEBUG] acctest_w2vzq: Beginning Read -2022/02/28 12:19:31 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:31 [DEBUG] Begin Injection -2022/02/28 12:19:31 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:31 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002420c0 1363 [] false false map[] 0xc002090800 0xc0010409a0} -2022/02/28 12:19:31 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:19:31 [DEBUG] Exit from do method -2022/02/28 12:19:31 [DEBUG] acctest_w2vzq: Read finished successfully -2022/02/28 12:19:31 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:31 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq: Beginning Read -2022/02/28 12:19:31 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:31 [DEBUG] Begin Injection -2022/02/28 12:19:31 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012ac680 1363 [] false false map[] 0xc000076600 0xc0010409a0} -2022/02/28 12:19:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:19:32 [DEBUG] Exit from do method -2022/02/28 12:19:32 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq: Read finished successfully -2022/02/28 12:19:32 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:32 [DEBUG] New state was assigned lineage "6ff35969-847c-2476-54ef-a3277cf2f006" -2022/02/28 12:19:32 [INFO] terraform: building graph: GraphTypePlan -2022/02/28 12:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:32 [DEBUG] Starting graph walk: walkPlan -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:32 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:32 [WARN] Test: Executing destroy step -2022/02/28 12:19:32 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:32 [INFO] terraform: building graph: GraphTypeValidate -2022/02/28 12:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_bd_dhcp_policy.test -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeValidatableResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema_template_bd.test] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:32 [DEBUG] Starting graph walk: walkValidate -2022/02/28 12:19:32 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:32 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_schema.test] -2022/02/28 12:19:32 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:32 [DEBUG] : Beginning Read -2022/02/28 12:19:32 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:32 [DEBUG] Begin Injection -2022/02/28 12:19:32 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00199e080 5563 [] false false map[] 0xc0016bed00 0xc0010409a0} -2022/02/28 12:19:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:32 [DEBUG] Exit from do method -2022/02/28 12:19:32 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] -2022/02/28 12:19:32 [DEBUG] 621c70781b0000bf0bfd0c47: Beginning Read -2022/02/28 12:19:32 [DEBUG] 621c70671d000097644fba6c: Beginning Read -2022/02/28 12:19:32 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:32 [DEBUG] Begin Injection -2022/02/28 12:19:32 id: 621c70781b0000bf0bfd0c47 -2022/02/28 12:19:32 HTTP request GET mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:32 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:32 [DEBUG] Begin Injection -2022/02/28 12:19:32 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001aba080 1363 [] false false map[] 0xc000900a00 0xc0010409a0} -2022/02/28 12:19:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:19:32 [DEBUG] Exit from do method -2022/02/28 12:19:32 [DEBUG] 621c70671d000097644fba6c: Read finished successfully -2022/02/28 12:19:32 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] -2022/02/28 12:19:32 [DEBUG] acctest_w2vzq: Beginning Read -2022/02/28 12:19:32 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:32 [DEBUG] Begin Injection -2022/02/28 12:19:32 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:32 -HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009faf80 160 [] false false map[] 0xc00152a600 0xc000e0af20} -2022/02/28 12:19:32 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 {"id":"621c70781b0000bf0bfd0c47","name":"acctest_w2vzq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} -2022/02/28 12:19:32 [DEBUG] Exit from do method -2022/02/28 12:19:32 [DEBUG] 621c70781b0000bf0bfd0c47: Read finished successfully -2022/02/28 12:19:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00057aec0 1363 [] false false map[] 0xc000900d00 0xc0010409a0} -2022/02/28 12:19:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:19:33 [DEBUG] Exit from do method -2022/02/28 12:19:33 currentvrfname acctest_w2vzq -2022/02/28 12:19:33 found correct vrfname -2022/02/28 12:19:33 [DEBUG] acctest_w2vzq: Read finished successfully -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [] -2022/02/28 12:19:33 [DEBUG] acctest_w2vzq: Beginning Read -2022/02/28 12:19:33 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:33 [DEBUG] Begin Injection -2022/02/28 12:19:33 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00141e200 1363 [] false false map[] 0xc00152a900 0xc0010409a0} -2022/02/28 12:19:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:19:33 [DEBUG] Exit from do method -2022/02/28 12:19:33 [DEBUG] acctest_w2vzq: Read finished successfully -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [] -2022/02/28 12:19:33 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq: Beginning Read -2022/02/28 12:19:33 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:33 [DEBUG] Begin Injection -2022/02/28 12:19:33 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:33 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1363] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e7c80 1363 [] false false map[] 0xc0021f8400 0xc0010409a0} -2022/02/28 12:19:33 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"id":"621c70671d000097644fba6c","displayName":"acctest_qnr4i","description":"","templates":[{"name":"acctest_qnr4i","displayName":"acctest_qnr4i","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[{"name":"acctest_w2vzq","displayName":"acctest_w2vzq","bdRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq","l2UnknownUnicast":"flood","intersiteBumTrafficAllow":false,"optimizeWanBandwidth":false,"l2Stretch":false,"l3MCast":false,"subnets":[],"vrfRef":"/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/vrfs/acctest_w2vzq","dhcpLabel":{"name":"acctest_w2vzq","version":0},"unkMcastAct":"flood","v6unkMcastAct":"flood","arpFlood":true,"multiDstPktAct":"bd-flood","dhcpLabels":[{"name":"acctest_w2vzq","version":0}],"unicastRouting":true,"description":""}],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":11}],"_updateVersion":0} -2022/02/28 12:19:33 [DEBUG] Exit from do method -2022/02/28 12:19:33 [DEBUG] /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq: Read finished successfully -2022/02/28 12:19:33 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:33 [DEBUG] New state was assigned lineage "ededc79e-a70b-e163-cd03-56781891698a" -2022/02/28 12:19:33 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:19:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_schema_template_bd.test mso_schema_template_bd.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:19:33 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:19:33 [WARN] Test: Step plan: DIFF: - -DESTROY: data.mso_tenant.test - description: "" => "" - display_name: "acctest_crest" => "" - id: "620cf5ad1d0000ab504f9a3d" => "" - name: "acctest_crest" => "" - site_associations.#: "1" => "" - site_associations.0.security_domains.#: "0" => "" - site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" - user_associations.#: "2" => "" - user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" - user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" -DESTROY: mso_dhcp_relay_policy.test - description: "" => "" - dhcp_relay_policy_provider.#: "0" => "" - id: "621c70781b0000bf0bfd0c47" => "" - name: "acctest_w2vzq" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema.test - id: "621c70671d000097644fba6c" => "" - name: "acctest_qnr4i" => "" - template_name: "acctest_qnr4i" => "" - tenant_id: "620cf5ad1d0000ab504f9a3d" => "" -DESTROY: mso_schema_template_bd.test - dhcp_policy.name: "acctest_w2vzq" => "" - dhcp_policy.version: "0" => "" - display_name: "acctest_w2vzq" => "" - id: "acctest_w2vzq" => "" - intersite_bum_traffic: "false" => "" - layer2_unknown_unicast: "flood" => "" - name: "acctest_w2vzq" => "" - schema_id: "621c70671d000097644fba6c" => "" - template_name: "acctest_qnr4i" => "" - vrf_name: "acctest_w2vzq" => "" - vrf_schema_id: "621c70671d000097644fba6c" => "" - vrf_template_name: "acctest_qnr4i" => "" -DESTROY: mso_schema_template_bd_dhcp_policy.test - bd_name: "acctest_w2vzq" => "" - dhcp_option_name: "" => "" - dhcp_option_version: "0" => "" - id: "/schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq" => "" - name: "acctest_w2vzq" => "" - schema_id: "621c70671d000097644fba6c" => "" - template_name: "acctest_qnr4i" => "" - version: "0" => "" -DESTROY: mso_schema_template_vrf.test - display_name: "acctest_w2vzq" => "" - id: "acctest_w2vzq" => "" - layer3_multicast: "false" => "" - name: "acctest_w2vzq" => "" - schema_id: "621c70671d000097644fba6c" => "" - template: "acctest_qnr4i" => "" - vzany: "false" => "" - - - -STATE: - -data.mso_tenant.test: - ID = 620cf5ad1d0000ab504f9a3d - provider = provider.mso - description = - display_name = acctest_crest - name = acctest_crest - site_associations.# = 1 - site_associations.0.site_id = 6204001af1520cc99b09cb9a - user_associations.# = 2 - user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa - user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 -mso_dhcp_relay_policy.test: - ID = 621c70781b0000bf0bfd0c47 - provider = provider.mso - description = - name = acctest_w2vzq - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema.test: - ID = 621c70671d000097644fba6c - provider = provider.mso - name = acctest_qnr4i - template_name = acctest_qnr4i - tenant_id = 620cf5ad1d0000ab504f9a3d - - Dependencies: - data.mso_tenant.test -mso_schema_template_bd.test: - ID = acctest_w2vzq - provider = provider.mso - dhcp_policy.name = acctest_w2vzq - dhcp_policy.version = 0 - display_name = acctest_w2vzq - intersite_bum_traffic = false - layer2_unknown_unicast = flood - name = acctest_w2vzq - schema_id = 621c70671d000097644fba6c - template_name = acctest_qnr4i - vrf_name = acctest_w2vzq - vrf_schema_id = 621c70671d000097644fba6c - vrf_template_name = acctest_qnr4i - - Dependencies: - mso_schema.test - mso_schema_template_vrf.test -mso_schema_template_bd_dhcp_policy.test: - ID = /schemas/621c70671d000097644fba6c/templates/acctest_qnr4i/bds/acctest_w2vzq/dhcpLabels/acctest_w2vzq - provider = provider.mso - bd_name = acctest_w2vzq - dhcp_option_name = - dhcp_option_version = 0 - name = acctest_w2vzq - schema_id = 621c70671d000097644fba6c - template_name = acctest_qnr4i - version = 0 - - Dependencies: - mso_dhcp_relay_policy.test - mso_schema.test - mso_schema_template_bd.test -mso_schema_template_vrf.test: - ID = acctest_w2vzq - provider = provider.mso - display_name = acctest_w2vzq - layer3_multicast = false - name = acctest_w2vzq - schema_id = 621c70671d000097644fba6c - template = acctest_qnr4i - vzany = false - - Dependencies: - mso_schema.test -2022/02/28 12:19:33 [INFO] terraform: building graph: GraphTypeApply -2022/02/28 12:19:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (prepare state)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (prepare state)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test mso_schema_template_bd.test mso_schema_template_bd.test] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd_dhcp_policy.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_bd.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] -2022/02/28 12:19:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test mso_schema.test] -2022/02/28 12:19:33 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) -2022/02/28 12:19:33 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_vrf.test (prepare state) -2022/02/28 12:19:33 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd.test (prepare state) -2022/02/28 12:19:33 DestroyEdgeTransformer: pruning unused resource node mso_schema_template_bd_dhcp_policy.test (prepare state) -2022/02/28 12:19:33 DestroyEdgeTransformer: pruning unused resource node mso_schema.test (prepare state) -2022/02/28 12:19:33 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) -2022/02/28 12:19:33 [DEBUG] Starting graph walk: walkDestroy -2022/02/28 12:19:33 [DEBUG] mso_schema_template_bd_dhcp_policy.test: applying the planned Delete change -2022/02/28 12:19:33 [DEBUG] Template BD: Beginning Update -2022/02/28 12:19:33 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:33 [DEBUG] Begin Injection -2022/02/28 12:19:33 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004aee00 0xc0010409a0} -2022/02/28 12:19:34 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change -2022/02/28 12:19:34 [DEBUG] mso_schema_template_bd.test: applying the planned Delete change -2022/02/28 12:19:34 [DEBUG] 621c70781b0000bf0bfd0c47: Beginning Read -2022/02/28 12:19:34 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:34 [DEBUG] Begin Injection -2022/02/28 12:19:34 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:34 [DEBUG] Template BD: Beginning Update -2022/02/28 12:19:34 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 [DEBUG] Begin Injection -2022/02/28 12:19:34 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001c30000 0xc000e0af20} -2022/02/28 12:19:34 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change -2022/02/28 12:19:34 [DEBUG] acctest_w2vzq: Beginning Destroy -2022/02/28 12:19:34 HTTP request PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 [DEBUG] Begin Injection -2022/02/28 12:19:34 HTTP request after injection PATCH mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0012fb100 0xc0010409a0} -2022/02/28 12:19:34 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621c70781b0000bf0bfd0c47 -2022/02/28 12:19:34 [DEBUG] : Read finished successfully -2022/02/28 12:19:34 -HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004af800 0xc000e0af20} -2022/02/28 12:19:34 - HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c?validate=false -2022/02/28 12:19:34 [DEBUG] acctest_w2vzq: Destroy finished successfully -2022/02/28 12:19:34 [DEBUG] mso_schema.test: applying the planned Delete change -2022/02/28 12:19:34 [DEBUG] 621c70671d000097644fba6c: Beginning Destroy -2022/02/28 12:19:34 HTTP request DELETE mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:34 [DEBUG] Begin Injection -2022/02/28 12:19:34 HTTP request after injection DELETE mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:35 -HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 28 Feb 2022 06:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0004afc00 0xc000e0af20} -2022/02/28 12:19:35 - HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:35 [DEBUG] 621c70671d000097644fba6c: Destroy finished successfully -2022/02/28 12:19:35 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:35 [DEBUG] New state was assigned lineage "6206b367-d933-2034-f579-69747f69e03a" -2022/02/28 12:19:35 HTTP request GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:35 [DEBUG] Begin Injection -2022/02/28 12:19:35 HTTP request after injection GET mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c -2022/02/28 12:19:35 nHTTP Response: 404 404 Not Found &{404 Not Found 404 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[39] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:35 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00063e480 39 [] false false map[] 0xc000076500 0xc000e0af20} -2022/02/28 12:19:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621c70671d000097644fba6c {"code":404,"message":"Item not found"} -2022/02/28 12:19:35 [DEBUG] Exit from do method -2022/02/28 12:19:35 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:19:35 [DEBUG] Starting graph walk: walkPlanDestroy -2022/02/28 12:19:35 [INFO] terraform: building graph: GraphTypeRefresh -2022/02/28 12:19:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso -2022/02/28 12:19:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:35 [DEBUG] Starting graph walk: walkRefresh -2022/02/28 12:19:35 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test -2022/02/28 12:19:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:35 [DEBUG] : Beginning Read -2022/02/28 12:19:35 HTTP request GET mso/api/v1/tenants -2022/02/28 12:19:35 [DEBUG] Begin Injection -2022/02/28 12:19:35 HTTP request after injection GET mso/api/v1/tenants -2022/02/28 12:19:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:35 -HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants -2022/02/28 12:19:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[5563] Content-Type:[application/json] Date:[Mon, 28 Feb 2022 06:49:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014c8280 5563 [] false false map[] 0xc000076f00 0xc000e0af20} -2022/02/28 12:19:35 - HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"6215a35e1d000012714f9f58","name":"Tenant1","displayName":"Tenant1","siteAssociations":[{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":"uni/tn-infra/act-[85ca999d-c9c7-484b-82b8-6854bc1e2af5]-vendor-azure","azureAccount":[],"awsAccount":null,"gcpAccount":null,"gatewayRouter":[]},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":2,"_versionDefaulted":false},{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62185d681d000093db4fabbb","name":"acctest_crest_r","displayName":"acctest_crest_r","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"6218a93e1d00008fea4fadfe","name":"acctest_tnepc","displayName":"acctest_tnepc","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"621632bf1d000041884fa249","name":"test_tenantCrest","displayName":"test_tenantCrest","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"DemoTenant","_updateVersion":1,"_versionDefaulted":false}]} -2022/02/28 12:19:35 [DEBUG] Exit from do method -2022/02/28 12:19:35 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully -2022/02/28 12:19:35 [DEBUG] provider has no plugin.Client -2022/02/28 12:19:35 [DEBUG] New state was assigned lineage "6921556c-b950-c857-29a7-3f429c0ebb61" -2022/02/28 12:19:35 [INFO] terraform: building graph: GraphTypePlanDestroy -2022/02/28 12:19:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso -2022/02/28 12:19:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test -2022/02/28 12:19:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso -2022/02/28 12:19:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso -2022/02/28 12:19:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] -2022/02/28 12:19:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] -2022/02/28 12:19:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] -2022/02/28 12:19:35 [DEBUG] Starting graph walk: walkPlanDestroy diff --git a/mso/util.go b/mso/util.go index 69dd336c..906f8b90 100644 --- a/mso/util.go +++ b/mso/util.go @@ -1,5 +1,9 @@ package mso +import ( + "fmt" +) + const version = 1 func toStringList(configured interface{}) []string { @@ -10,3 +14,7 @@ func toStringList(configured interface{}) []string { } return vs } + +func makeTestVariable(s string) string { + return fmt.Sprintf("acctest_%s", s) +} From bdc30433d27cf80a4d4ee863b09c90f405f2d454 Mon Sep 17 00:00:00 2001 From: RutvikS-crest Date: Mon, 21 Feb 2022 14:18:03 +0530 Subject: [PATCH 03/67] added docs --- website/docs/d/dhcp_option_policy.markdown | 32 +++++++++++++ website/docs/r/dhcp_option_policy.markdown | 54 ++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 website/docs/d/dhcp_option_policy.markdown create mode 100644 website/docs/r/dhcp_option_policy.markdown diff --git a/website/docs/d/dhcp_option_policy.markdown b/website/docs/d/dhcp_option_policy.markdown new file mode 100644 index 00000000..8158f676 --- /dev/null +++ b/website/docs/d/dhcp_option_policy.markdown @@ -0,0 +1,32 @@ +--- +layout: "mso" +page_title: "MSO: mso_dhcp_option_policy" +sidebar_current: "docs-mso-resource-dhcp_option_policy" +description: |- + Data source for MSO DHCP Option Policy +--- + +# mso_dhcp_option_policy + +Data source for MSO DHCP Option Policy + +## Example Usage + +```hcl +data "mso_dhcp_option_policy" "example" { + name = "dhcpOptionPol" +} +``` + +## Argument Reference + +- `name` - (Required) The name of the DHCP option policy. + +## Attribute Reference + +- `tenant_id` - ID of parent `mso_tenant` resource. +- `description` - The description for this DHCP Option Policy. +- `option` - DHCP Option configuration to be associated to the Policy. + - `name` - The name of the DHCP option. + - `id` - The ID of the DHCP option (integer). + - `data` - The DHCP Option Data. diff --git a/website/docs/r/dhcp_option_policy.markdown b/website/docs/r/dhcp_option_policy.markdown new file mode 100644 index 00000000..ce95de0b --- /dev/null +++ b/website/docs/r/dhcp_option_policy.markdown @@ -0,0 +1,54 @@ +--- +layout: "mso" +page_title: "MSO: mso_dhcp_option_policy" +sidebar_current: "docs-mso-resource-dhcp_option_policy" +description: |- + Manages MSO DHCP Option Policy +--- + +# mso_dhcp_option_policy + +Manages MSO DHCP Option Policy + +## Example Usage + +```hcl +resource "mso_dhcp_option_policy" "example" { + tenant_id = mso_tenant.example.id + name = "dhcpOptionPol" + description = "from Terraform" + option { + name = "op1" + data = "d1" + id = "1" + } + option { + name = "op2" + data = "d2" + id = "2" + } +} + +``` + +## Argument Reference + +- `name` - (Required) The name of the DHCP option policy. +- `tenant_id` - (Required) ID of parent `mso_tenant` resource. +- `description` - (Optional) The description for this DHCP Option Policy. +- `option` - (Optional) DHCP Option configuration to be associated to the Policy. + - `name` - (Required) The name of the DHCP option. + - `id` - (Required) The ID of the DHCP option (integer). + - `data` - (Optional) The DHCP Option Data. + +## Attribute Reference + +The only Attribute exposed for this resource is `id`. Which is set to the id of tenant created. + +## Importing + +An existing MSO Tenant can be [imported][docs-import] into this resource via its Id, via the following command: [docs-import]: + +```bash +terraform import mso_dhcp_option_policy.example {dhcp_option_policy_id} +``` From 3a17ff49626a401ad5c9ba266bf59e8eee2d6967 Mon Sep 17 00:00:00 2001 From: RutvikS-crest Date: Mon, 21 Feb 2022 14:35:48 +0530 Subject: [PATCH 04/67] updated dependancies --- go.mod | 4 +- go.sum | 4 +- .../client/schema_site_l3_out_service.go | 44 + .../schema_template_bd_dhcp_policy_service.go | 42 + .../mso-go-client/container/gabs.go | 15 + .../models/dhcp_option_policy.go | 2 +- .../models/schema_site_l3_out.go | 111 + .../models/schema_template_bd_dhcp_policy.go | 138 ++ .../helper/acctest/acctest.go | 2 + .../helper/acctest/random.go | 176 ++ .../helper/acctest/remotetests.go | 27 + .../x/crypto/chacha20/chacha_arm64.go | 16 + .../x/crypto/chacha20/chacha_arm64.s | 307 +++ .../x/crypto/chacha20/chacha_generic.go | 398 ++++ .../x/crypto/chacha20/chacha_noasm.go | 13 + .../x/crypto/chacha20/chacha_ppc64le.go | 16 + .../x/crypto/chacha20/chacha_ppc64le.s | 449 +++++ .../x/crypto/chacha20/chacha_s390x.go | 26 + .../x/crypto/chacha20/chacha_s390x.s | 224 ++ vendor/golang.org/x/crypto/chacha20/xor.go | 42 + .../x/crypto/curve25519/curve25519.go | 95 + .../x/crypto/curve25519/curve25519_amd64.go | 240 +++ .../x/crypto/curve25519/curve25519_amd64.s | 1793 +++++++++++++++++ .../x/crypto/curve25519/curve25519_generic.go | 828 ++++++++ .../x/crypto/curve25519/curve25519_noasm.go | 11 + vendor/golang.org/x/crypto/ed25519/ed25519.go | 222 ++ .../x/crypto/ed25519/ed25519_go113.go | 73 + .../ed25519/internal/edwards25519/const.go | 1422 +++++++++++++ .../internal/edwards25519/edwards25519.go | 1793 +++++++++++++++++ .../x/crypto/internal/subtle/aliasing.go | 32 + .../internal/subtle/aliasing_appengine.go | 35 + .../x/crypto/poly1305/bits_compat.go | 39 + .../x/crypto/poly1305/bits_go1.13.go | 21 + .../golang.org/x/crypto/poly1305/mac_noasm.go | 9 + .../golang.org/x/crypto/poly1305/poly1305.go | 99 + .../golang.org/x/crypto/poly1305/sum_amd64.go | 47 + .../golang.org/x/crypto/poly1305/sum_amd64.s | 108 + .../x/crypto/poly1305/sum_generic.go | 310 +++ .../x/crypto/poly1305/sum_ppc64le.go | 47 + .../x/crypto/poly1305/sum_ppc64le.s | 181 ++ .../golang.org/x/crypto/poly1305/sum_s390x.go | 75 + .../golang.org/x/crypto/poly1305/sum_s390x.s | 503 +++++ vendor/golang.org/x/crypto/ssh/buffer.go | 97 + vendor/golang.org/x/crypto/ssh/certs.go | 546 +++++ vendor/golang.org/x/crypto/ssh/channel.go | 633 ++++++ vendor/golang.org/x/crypto/ssh/cipher.go | 781 +++++++ vendor/golang.org/x/crypto/ssh/client.go | 278 +++ vendor/golang.org/x/crypto/ssh/client_auth.go | 641 ++++++ vendor/golang.org/x/crypto/ssh/common.go | 404 ++++ vendor/golang.org/x/crypto/ssh/connection.go | 143 ++ vendor/golang.org/x/crypto/ssh/doc.go | 21 + vendor/golang.org/x/crypto/ssh/handshake.go | 647 ++++++ .../ssh/internal/bcrypt_pbkdf/bcrypt_pbkdf.go | 93 + vendor/golang.org/x/crypto/ssh/kex.go | 789 ++++++++ vendor/golang.org/x/crypto/ssh/keys.go | 1474 ++++++++++++++ vendor/golang.org/x/crypto/ssh/mac.go | 61 + vendor/golang.org/x/crypto/ssh/messages.go | 866 ++++++++ vendor/golang.org/x/crypto/ssh/mux.go | 351 ++++ vendor/golang.org/x/crypto/ssh/server.go | 716 +++++++ vendor/golang.org/x/crypto/ssh/session.go | 647 ++++++ vendor/golang.org/x/crypto/ssh/ssh_gss.go | 139 ++ vendor/golang.org/x/crypto/ssh/streamlocal.go | 116 ++ vendor/golang.org/x/crypto/ssh/tcpip.go | 474 +++++ vendor/golang.org/x/crypto/ssh/transport.go | 353 ++++ vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s | 17 + vendor/golang.org/x/sys/cpu/byteorder.go | 60 + vendor/golang.org/x/sys/cpu/cpu.go | 171 ++ vendor/golang.org/x/sys/cpu/cpu_aix_ppc64.go | 34 + vendor/golang.org/x/sys/cpu/cpu_arm.go | 40 + vendor/golang.org/x/sys/cpu/cpu_arm64.go | 138 ++ vendor/golang.org/x/sys/cpu/cpu_arm64.s | 31 + vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go | 11 + vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go | 21 + vendor/golang.org/x/sys/cpu/cpu_gc_x86.go | 16 + .../golang.org/x/sys/cpu/cpu_gccgo_arm64.go | 11 + .../golang.org/x/sys/cpu/cpu_gccgo_s390x.go | 22 + vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c | 43 + vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go | 26 + vendor/golang.org/x/sys/cpu/cpu_linux.go | 15 + vendor/golang.org/x/sys/cpu/cpu_linux_arm.go | 39 + .../golang.org/x/sys/cpu/cpu_linux_arm64.go | 71 + .../golang.org/x/sys/cpu/cpu_linux_mips64x.go | 22 + .../golang.org/x/sys/cpu/cpu_linux_noinit.go | 9 + .../golang.org/x/sys/cpu/cpu_linux_ppc64x.go | 33 + .../golang.org/x/sys/cpu/cpu_linux_s390x.go | 161 ++ vendor/golang.org/x/sys/cpu/cpu_mips64x.go | 9 + vendor/golang.org/x/sys/cpu/cpu_mipsx.go | 9 + .../golang.org/x/sys/cpu/cpu_other_arm64.go | 9 + vendor/golang.org/x/sys/cpu/cpu_riscv64.go | 9 + vendor/golang.org/x/sys/cpu/cpu_s390x.s | 57 + vendor/golang.org/x/sys/cpu/cpu_wasm.go | 13 + vendor/golang.org/x/sys/cpu/cpu_x86.go | 59 + vendor/golang.org/x/sys/cpu/cpu_x86.s | 27 + vendor/golang.org/x/sys/cpu/hwcap_linux.go | 56 + .../x/sys/cpu/syscall_aix_ppc64_gc.go | 36 + vendor/modules.txt | 12 +- 96 files changed, 21590 insertions(+), 6 deletions(-) create mode 100644 vendor/github.com/ciscoecosystem/mso-go-client/client/schema_site_l3_out_service.go create mode 100644 vendor/github.com/ciscoecosystem/mso-go-client/client/schema_template_bd_dhcp_policy_service.go create mode 100644 vendor/github.com/ciscoecosystem/mso-go-client/models/schema_site_l3_out.go create mode 100644 vendor/github.com/ciscoecosystem/mso-go-client/models/schema_template_bd_dhcp_policy.go create mode 100644 vendor/github.com/hashicorp/terraform-plugin-sdk/helper/acctest/acctest.go create mode 100644 vendor/github.com/hashicorp/terraform-plugin-sdk/helper/acctest/random.go create mode 100644 vendor/github.com/hashicorp/terraform-plugin-sdk/helper/acctest/remotetests.go create mode 100644 vendor/golang.org/x/crypto/chacha20/chacha_arm64.go create mode 100644 vendor/golang.org/x/crypto/chacha20/chacha_arm64.s create mode 100644 vendor/golang.org/x/crypto/chacha20/chacha_generic.go create mode 100644 vendor/golang.org/x/crypto/chacha20/chacha_noasm.go create mode 100644 vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go create mode 100644 vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s create mode 100644 vendor/golang.org/x/crypto/chacha20/chacha_s390x.go create mode 100644 vendor/golang.org/x/crypto/chacha20/chacha_s390x.s create mode 100644 vendor/golang.org/x/crypto/chacha20/xor.go create mode 100644 vendor/golang.org/x/crypto/curve25519/curve25519.go create mode 100644 vendor/golang.org/x/crypto/curve25519/curve25519_amd64.go create mode 100644 vendor/golang.org/x/crypto/curve25519/curve25519_amd64.s create mode 100644 vendor/golang.org/x/crypto/curve25519/curve25519_generic.go create mode 100644 vendor/golang.org/x/crypto/curve25519/curve25519_noasm.go create mode 100644 vendor/golang.org/x/crypto/ed25519/ed25519.go create mode 100644 vendor/golang.org/x/crypto/ed25519/ed25519_go113.go create mode 100644 vendor/golang.org/x/crypto/ed25519/internal/edwards25519/const.go create mode 100644 vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go create mode 100644 vendor/golang.org/x/crypto/internal/subtle/aliasing.go create mode 100644 vendor/golang.org/x/crypto/internal/subtle/aliasing_appengine.go create mode 100644 vendor/golang.org/x/crypto/poly1305/bits_compat.go create mode 100644 vendor/golang.org/x/crypto/poly1305/bits_go1.13.go create mode 100644 vendor/golang.org/x/crypto/poly1305/mac_noasm.go create mode 100644 vendor/golang.org/x/crypto/poly1305/poly1305.go create mode 100644 vendor/golang.org/x/crypto/poly1305/sum_amd64.go create mode 100644 vendor/golang.org/x/crypto/poly1305/sum_amd64.s create mode 100644 vendor/golang.org/x/crypto/poly1305/sum_generic.go create mode 100644 vendor/golang.org/x/crypto/poly1305/sum_ppc64le.go create mode 100644 vendor/golang.org/x/crypto/poly1305/sum_ppc64le.s create mode 100644 vendor/golang.org/x/crypto/poly1305/sum_s390x.go create mode 100644 vendor/golang.org/x/crypto/poly1305/sum_s390x.s create mode 100644 vendor/golang.org/x/crypto/ssh/buffer.go create mode 100644 vendor/golang.org/x/crypto/ssh/certs.go create mode 100644 vendor/golang.org/x/crypto/ssh/channel.go create mode 100644 vendor/golang.org/x/crypto/ssh/cipher.go create mode 100644 vendor/golang.org/x/crypto/ssh/client.go create mode 100644 vendor/golang.org/x/crypto/ssh/client_auth.go create mode 100644 vendor/golang.org/x/crypto/ssh/common.go create mode 100644 vendor/golang.org/x/crypto/ssh/connection.go create mode 100644 vendor/golang.org/x/crypto/ssh/doc.go create mode 100644 vendor/golang.org/x/crypto/ssh/handshake.go create mode 100644 vendor/golang.org/x/crypto/ssh/internal/bcrypt_pbkdf/bcrypt_pbkdf.go create mode 100644 vendor/golang.org/x/crypto/ssh/kex.go create mode 100644 vendor/golang.org/x/crypto/ssh/keys.go create mode 100644 vendor/golang.org/x/crypto/ssh/mac.go create mode 100644 vendor/golang.org/x/crypto/ssh/messages.go create mode 100644 vendor/golang.org/x/crypto/ssh/mux.go create mode 100644 vendor/golang.org/x/crypto/ssh/server.go create mode 100644 vendor/golang.org/x/crypto/ssh/session.go create mode 100644 vendor/golang.org/x/crypto/ssh/ssh_gss.go create mode 100644 vendor/golang.org/x/crypto/ssh/streamlocal.go create mode 100644 vendor/golang.org/x/crypto/ssh/tcpip.go create mode 100644 vendor/golang.org/x/crypto/ssh/transport.go create mode 100644 vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s create mode 100644 vendor/golang.org/x/sys/cpu/byteorder.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_aix_ppc64.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_arm.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_arm64.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_arm64.s create mode 100644 vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_gc_x86.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c create mode 100644 vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_linux.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_linux_arm.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_linux_mips64x.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_mips64x.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_mipsx.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_other_arm64.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_riscv64.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_s390x.s create mode 100644 vendor/golang.org/x/sys/cpu/cpu_wasm.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_x86.go create mode 100644 vendor/golang.org/x/sys/cpu/cpu_x86.s create mode 100644 vendor/golang.org/x/sys/cpu/hwcap_linux.go create mode 100644 vendor/golang.org/x/sys/cpu/syscall_aix_ppc64_gc.go diff --git a/go.mod b/go.mod index cca5b3dc..898e590a 100644 --- a/go.mod +++ b/go.mod @@ -3,10 +3,10 @@ module github.com/terraform-providers/terraform-provider-mso go 1.13 require ( - github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220209133549-b2680916c1f0 + github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220221090018-2ef5003b2be2 github.com/hashicorp/terraform-plugin-sdk v1.14.0 github.com/stretchr/testify v1.6.1 // indirect golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect ) -// replace github.com/ciscoecosystem/mso-go-client => ../../ciscoecosystem/mso-go-clien +// replace github.com/ciscoecosystem/mso-go-client => ../../ciscoecosystem/mso-go-client diff --git a/go.sum b/go.sum index 8506cbc3..8c09a408 100644 --- a/go.sum +++ b/go.sum @@ -32,8 +32,8 @@ github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQ github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cheggaaa/pb v1.0.27/go.mod h1:pQciLPpbU0oxA0h+VJYYLxO+XeDQb5pZijXscXHm81s= -github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220209133549-b2680916c1f0 h1:pH5TqYDCCS8QU6M84wDb5+LU7g9wTmXW6Y8R2u8AT6M= -github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220209133549-b2680916c1f0/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= +github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220221090018-2ef5003b2be2 h1:nlZk0IUkjbKzUNgwJZdAy6Q7m9+ZONxXxmmP/bh/QMU= +github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220221090018-2ef5003b2be2/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_site_l3_out_service.go b/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_site_l3_out_service.go new file mode 100644 index 00000000..44d5388c --- /dev/null +++ b/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_site_l3_out_service.go @@ -0,0 +1,44 @@ +package client + +import ( + "fmt" + "sync" + + "github.com/ciscoecosystem/mso-go-client/models" +) + +var l3outMutex sync.Mutex + +func (client *Client) CreateIntersiteL3outs(obj *models.IntersiteL3outs) error { + l3out := models.CreateIntersiteL3outsModel(obj) + l3outMutex.Lock() + _, err := client.PatchbyID(fmt.Sprintf("api/v1/schemas/%s", obj.SchemaID), l3out) + if err != nil { + return err + } + l3outMutex.Unlock() + return nil +} + +func (client *Client) DeleteIntersiteL3outs(obj *models.IntersiteL3outs) error { + l3out := models.DeleteIntersiteL3outsModel(obj) + l3outMutex.Lock() + _, err := client.PatchbyID(fmt.Sprintf("api/v1/schemas/%s", obj.SchemaID), l3out) + if err != nil { + return err + } + l3outMutex.Unlock() + return nil +} + +func (client *Client) ReadIntersiteL3outs(obj *models.IntersiteL3outs) (*models.IntersiteL3outs, error) { + schemaCont, err := client.GetViaURL(fmt.Sprintf("api/v1/schemas/%s", obj.SchemaID)) + if err != nil { + return nil, err + } + l3out, err := models.IntersiteL3outsFromContainer(schemaCont, obj) + if err != nil { + return nil, err + } + return l3out, nil +} diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_template_bd_dhcp_policy_service.go b/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_template_bd_dhcp_policy_service.go new file mode 100644 index 00000000..eb5db227 --- /dev/null +++ b/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_template_bd_dhcp_policy_service.go @@ -0,0 +1,42 @@ +package client + +import ( + "github.com/ciscoecosystem/mso-go-client/container" + "github.com/ciscoecosystem/mso-go-client/models" +) + +func (client *Client) CreateTemplateBDDHCPPolicy(obj *models.TemplateBDDHCPPolicy) (*container.Container, error) { + path := "api/v1/schemas/" + obj.SchemaID + cont, err := client.PatchbyID(path, models.TemplateBDDHCPPolicyModelForCreation(obj)) + if err != nil { + return nil, err + } + return cont, nil +} + +func (client *Client) ReadTemplateBDDHCPPolicy(schemaID string) (*container.Container, error) { + path := "api/v1/schemas/" + schemaID + cont, err := client.GetViaURL(path) + if err != nil { + return nil, err + } + return cont, nil +} + +func (client *Client) UpdateTemplateBDDHCPPolicy(obj *models.TemplateBDDHCPPolicy) (*container.Container, error) { + path := "api/v1/schemas/" + obj.SchemaID + cont, err := client.PatchbyID(path, models.TemplateBDDHCPPolicyModelForUpdate(obj)) + if err != nil { + return nil, err + } + return cont, nil +} + +func (client *Client) DeleteTemplateBDDHCPPolicy(obj *models.TemplateBDDHCPPolicy) (*container.Container, error) { + path := "api/v1/schemas/" + obj.SchemaID + cont, err := client.PatchbyID(path, models.TemplateBDDHCPPolicyModelForDeletion(obj)) + if err != nil { + return nil, CheckForErrors(cont, "PATCH") + } + return cont, nil +} diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/container/gabs.go b/vendor/github.com/ciscoecosystem/mso-go-client/container/gabs.go index 37356b03..deb787b8 100644 --- a/vendor/github.com/ciscoecosystem/mso-go-client/container/gabs.go +++ b/vendor/github.com/ciscoecosystem/mso-go-client/container/gabs.go @@ -27,6 +27,7 @@ import ( "bytes" "encoding/json" "errors" + "fmt" "io" "io/ioutil" "strings" @@ -577,3 +578,17 @@ func ParseJSONBuffer(buffer io.Reader) (*Container, error) { } //-------------------------------------------------------------------------------------------------- + +func (g *Container) SearchInObjectList(condition func(*Container) bool) (*Container, error) { + + children, err := g.Children() + if err != nil { + return nil, err + } + for _, obj := range children { + if condition(obj) { + return obj, nil + } + } + return nil, fmt.Errorf("Object Not found") +} diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/models/dhcp_option_policy.go b/vendor/github.com/ciscoecosystem/mso-go-client/models/dhcp_option_policy.go index cc35a269..443b0621 100644 --- a/vendor/github.com/ciscoecosystem/mso-go-client/models/dhcp_option_policy.go +++ b/vendor/github.com/ciscoecosystem/mso-go-client/models/dhcp_option_policy.go @@ -34,7 +34,7 @@ func (model *DHCPOptionPolicy) ToMap() (map[string]interface{}, error) { if err != nil { return nil, err } - + err = json.Unmarshal(jsonObj, &objMap) if err != nil { return nil, err diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_site_l3_out.go b/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_site_l3_out.go new file mode 100644 index 00000000..ced7fe29 --- /dev/null +++ b/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_site_l3_out.go @@ -0,0 +1,111 @@ +package models + +import ( + "fmt" + "strings" + + "github.com/ciscoecosystem/mso-go-client/container" +) + +type SiteL3Out struct { + Ops string `json:",omitempty"` + Path string `json:",omitempty"` + Value map[string]interface{} `json:",omitempty"` +} + +type IntersiteL3outs struct { + L3outName string + VRFName string + SchemaID string + TemplateName string + SiteId string +} + +func CreateIntersiteL3outsModel(l3out *IntersiteL3outs) *SiteL3Out { + site := SiteL3Out{ + Ops: "add", + Path: fmt.Sprintf("/sites/%s-%s/intersiteL3outs/-", l3out.SiteId, l3out.TemplateName), + } + sitemap := make(map[string]interface{}) + sitemap["l3outRef"] = map[string]string{ + "l3outName": l3out.L3outName, + "schemaId": l3out.SchemaID, + "templateName": l3out.TemplateName, + } + sitemap["vrfRef"] = map[string]string{ + "vrfName": l3out.VRFName, + "schemaId": l3out.SchemaID, + "templateName": l3out.TemplateName, + } + site.Value = sitemap + return &site +} + +func DeleteIntersiteL3outsModel(l3out *IntersiteL3outs) *SiteL3Out { + site := SiteL3Out{ + Ops: "remove", + Path: fmt.Sprintf("/sites/%s-%s/intersiteL3outs/%s", l3out.SiteId, l3out.TemplateName, l3out.L3outName), + } + sitemap := make(map[string]interface{}) + sitemap["l3outRef"] = map[string]string{ + "l3outName": l3out.L3outName, + "schemaId": l3out.SchemaID, + "templateName": l3out.TemplateName, + } + site.Value = sitemap + return &site +} + +func IntersiteL3outsFromContainer(cont *container.Container, tf *IntersiteL3outs) (*IntersiteL3outs, error) { + remoteL3out := IntersiteL3outs{} + var found bool = false + count, err := cont.ArrayCount("sites") + if err != nil { + return nil, fmt.Errorf("no Sites found") + } + for i := 0; i < count; i++ { + tempCont, err := cont.ArrayElement(i, "sites") + if err != nil { + return nil, err + } + apiSite := StripQuotes(tempCont.S("siteId").String()) + templateName := StripQuotes(tempCont.S("templateName").String()) + if apiSite == tf.SiteId && templateName == tf.TemplateName { + l3outCount, err := tempCont.ArrayCount("intersiteL3outs") + if err != nil { + return nil, fmt.Errorf("unable to get l3out list") + } + l3outCont := tempCont.S("intersiteL3outs") + for j := 0; j < l3outCount; j++ { + l3outTempCont := l3outCont.Index(j) + l3outRef := strings.Split(StripQuotes(l3outTempCont.S("l3outRef").String()), "/") + l3outName := l3outRef[len(l3outRef)-1] + vrfRef := strings.Split(StripQuotes(l3outTempCont.S("vrfRef").String()), "/") + vrfName := vrfRef[len(vrfRef)-1] + if l3outName == tf.L3outName && vrfName == tf.VRFName { + remoteL3out.L3outName = l3outName + remoteL3out.VRFName = vrfName + remoteL3out.SchemaID = l3outRef[2] + remoteL3out.SiteId = apiSite + remoteL3out.TemplateName = templateName + found = true + break + } + } + } + } + if !found { + return nil, fmt.Errorf("unable to find siteL3out %s", tf.L3outName) + } + return &remoteL3out, nil +} + +func (l3out *SiteL3Out) ToMap() (map[string]interface{}, error) { + l3outMap := make(map[string]interface{}) + A(l3outMap, "op", l3out.Ops) + A(l3outMap, "path", l3out.Path) + if l3out.Value != nil { + A(l3outMap, "value", l3out.Value) + } + return l3outMap, nil +} diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_template_bd_dhcp_policy.go b/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_template_bd_dhcp_policy.go new file mode 100644 index 00000000..d19d77d5 --- /dev/null +++ b/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_template_bd_dhcp_policy.go @@ -0,0 +1,138 @@ +package models + +import ( + "fmt" + "strconv" + + "github.com/ciscoecosystem/mso-go-client/container" +) + +type TemplateBDDHCPPolicyOps struct { + Ops string `json:"op,omitempty"` + Path string `json:"path,omitempty"` + Value map[string]interface{} `json:"value,omitempty"` +} + +type TemplateBDDHCPPolicy struct { + Name string + Version int + DHCPOptionName string + DHCPOptionVersion int + BDName string + TemplateName string + SchemaID string +} + +func TemplateBDDHCPPolicyModelForCreation(bdDHCPPol *TemplateBDDHCPPolicy) *TemplateBDDHCPPolicyOps { + opsMap := TemplateBDDHCPPolicyOps{ + Ops: "add", + Path: fmt.Sprintf("/templates/%s/bds/%s/dhcpLabels/-", bdDHCPPol.TemplateName, bdDHCPPol.BDName), + } + opsVal := map[string]interface{}{ + "name": bdDHCPPol.Name, + "version": bdDHCPPol.Version, + } + + if bdDHCPPol.DHCPOptionName != "" { + opsVal["dhcpOptionLabel"] = map[string]interface{}{ + "name": bdDHCPPol.DHCPOptionName, + "version": func(v int) int { + if v == 0 { + return 1 + } + return v + }(bdDHCPPol.DHCPOptionVersion), + } + } + opsMap.Value = opsVal + return &opsMap +} + +func TemplateBDDHCPPolicyModelForUpdate(bdDHCPPol *TemplateBDDHCPPolicy) *TemplateBDDHCPPolicyOps { + opsMap := TemplateBDDHCPPolicyOps{ + Ops: "replace", + Path: fmt.Sprintf("/templates/%s/bds/%s/dhcpLabels/%s", bdDHCPPol.TemplateName, bdDHCPPol.BDName, bdDHCPPol.Name), + } + opsVal := map[string]interface{}{ + "name": bdDHCPPol.Name, + "version": bdDHCPPol.Version, + } + + if bdDHCPPol.DHCPOptionName != "" { + opsVal["dhcpOptionLabel"] = map[string]interface{}{ + "name": bdDHCPPol.DHCPOptionName, + "version": func(v int) int { + if v == 0 { + return 1 + } + return v + }(bdDHCPPol.DHCPOptionVersion), + } + } + opsMap.Value = opsVal + return &opsMap +} + +func TemplateBDDHCPPolicyModelForDeletion(bdDHCPPol *TemplateBDDHCPPolicy) *TemplateBDDHCPPolicyOps { + opsMap := TemplateBDDHCPPolicyOps{ + Ops: "remove", + Path: fmt.Sprintf("/templates/%s/bds/%s/dhcpLabels/%s", bdDHCPPol.TemplateName, bdDHCPPol.BDName, bdDHCPPol.Name), + } + return &opsMap +} + +func TemplateBDDHCPPolicyFromContainer(cont *container.Container, tf *TemplateBDDHCPPolicy) (*TemplateBDDHCPPolicy, error) { + remoteBDDHCPPol := TemplateBDDHCPPolicy{} + + templateCont, err := cont.S("templates").SearchInObjectList( + func(cont *container.Container) bool { + return G(cont, "name") == tf.TemplateName + }, + ) + if err != nil { + return nil, err + } + + bdCont, err := templateCont.S("bds").SearchInObjectList( + func(cont *container.Container) bool { + return G(cont, "name") == tf.BDName + }, + ) + if err != nil { + return nil, err + } + + bdDHCPCont, err := bdCont.S("dhcpLabels").SearchInObjectList( + func(cont *container.Container) bool { + return G(cont, "name") == tf.Name + }, + ) + if err != nil { + return nil, err + } + + remoteBDDHCPPol.Name = G(bdDHCPCont, "name") + remoteBDDHCPPol.Version, err = strconv.Atoi(G(bdDHCPCont, "version")) + if err != nil { + return nil, err + } + if bdCont.Exists("dhcpOptionLabel") { + remoteBDDHCPPol.DHCPOptionName = G(bdDHCPCont, "dhcpOptionLabel,name") + remoteBDDHCPPol.DHCPOptionVersion, err = strconv.Atoi(G(bdDHCPCont, "dhcpOptionLabel,version")) + if err != nil { + return nil, err + } + } + + return &remoteBDDHCPPol, nil +} + +func (templateBDDHCPPolicyOps *TemplateBDDHCPPolicyOps) ToMap() (map[string]interface{}, error) { + templateBDDHCPPolicyOpsMap := make(map[string]interface{}, 0) + A(templateBDDHCPPolicyOpsMap, "op", templateBDDHCPPolicyOps.Ops) + A(templateBDDHCPPolicyOpsMap, "path", templateBDDHCPPolicyOps.Path) + if templateBDDHCPPolicyOps.Value != nil { + A(templateBDDHCPPolicyOpsMap, "value", templateBDDHCPPolicyOps.Value) + } + return templateBDDHCPPolicyOpsMap, nil +} diff --git a/vendor/github.com/hashicorp/terraform-plugin-sdk/helper/acctest/acctest.go b/vendor/github.com/hashicorp/terraform-plugin-sdk/helper/acctest/acctest.go new file mode 100644 index 00000000..9d31031a --- /dev/null +++ b/vendor/github.com/hashicorp/terraform-plugin-sdk/helper/acctest/acctest.go @@ -0,0 +1,2 @@ +// Package acctest contains for Terraform Acceptance Tests +package acctest diff --git a/vendor/github.com/hashicorp/terraform-plugin-sdk/helper/acctest/random.go b/vendor/github.com/hashicorp/terraform-plugin-sdk/helper/acctest/random.go new file mode 100644 index 00000000..258e4db7 --- /dev/null +++ b/vendor/github.com/hashicorp/terraform-plugin-sdk/helper/acctest/random.go @@ -0,0 +1,176 @@ +package acctest + +import ( + "bytes" + crand "crypto/rand" + "crypto/rsa" + "crypto/x509" + "crypto/x509/pkix" + "encoding/pem" + "fmt" + "math/big" + "math/rand" + "net" + "strings" + "time" + + "golang.org/x/crypto/ssh" + + "github.com/apparentlymart/go-cidr/cidr" +) + +func init() { + rand.Seed(time.Now().UTC().UnixNano()) +} + +// Helpers for generating random tidbits for use in identifiers to prevent +// collisions in acceptance tests. + +// RandInt generates a random integer +func RandInt() int { + return rand.New(rand.NewSource(time.Now().UnixNano())).Int() +} + +// RandomWithPrefix is used to generate a unique name with a prefix, for +// randomizing names in acceptance tests +func RandomWithPrefix(name string) string { + return fmt.Sprintf("%s-%d", name, rand.New(rand.NewSource(time.Now().UnixNano())).Int()) +} + +func RandIntRange(min int, max int) int { + source := rand.New(rand.NewSource(time.Now().UnixNano())) + rangeMax := max - min + + return int(source.Int31n(int32(rangeMax))) +} + +// RandString generates a random alphanumeric string of the length specified +func RandString(strlen int) string { + return RandStringFromCharSet(strlen, CharSetAlphaNum) +} + +// RandStringFromCharSet generates a random string by selecting characters from +// the charset provided +func RandStringFromCharSet(strlen int, charSet string) string { + result := make([]byte, strlen) + for i := 0; i < strlen; i++ { + result[i] = charSet[rand.Intn(len(charSet))] + } + return string(result) +} + +// RandSSHKeyPair generates a public and private SSH key pair. The public key is +// returned in OpenSSH format, and the private key is PEM encoded. +func RandSSHKeyPair(comment string) (string, string, error) { + privateKey, privateKeyPEM, err := genPrivateKey() + if err != nil { + return "", "", err + } + + publicKey, err := ssh.NewPublicKey(&privateKey.PublicKey) + if err != nil { + return "", "", err + } + keyMaterial := strings.TrimSpace(string(ssh.MarshalAuthorizedKey(publicKey))) + return fmt.Sprintf("%s %s", keyMaterial, comment), privateKeyPEM, nil +} + +// RandTLSCert generates a self-signed TLS certificate with a newly created +// private key, and returns both the cert and the private key PEM encoded. +func RandTLSCert(orgName string) (string, string, error) { + template := &x509.Certificate{ + SerialNumber: big.NewInt(int64(RandInt())), + Subject: pkix.Name{ + Organization: []string{orgName}, + }, + NotBefore: time.Now(), + NotAfter: time.Now().Add(24 * time.Hour), + KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature, + ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth}, + BasicConstraintsValid: true, + } + + privateKey, privateKeyPEM, err := genPrivateKey() + if err != nil { + return "", "", err + } + + cert, err := x509.CreateCertificate(crand.Reader, template, template, &privateKey.PublicKey, privateKey) + if err != nil { + return "", "", err + } + + certPEM, err := pemEncode(cert, "CERTIFICATE") + if err != nil { + return "", "", err + } + + return certPEM, privateKeyPEM, nil +} + +// RandIpAddress returns a random IP address in the specified CIDR block. +// The prefix length must be less than 31. +func RandIpAddress(s string) (string, error) { + _, network, err := net.ParseCIDR(s) + if err != nil { + return "", err + } + + firstIp, lastIp := cidr.AddressRange(network) + first := &big.Int{} + first.SetBytes([]byte(firstIp)) + last := &big.Int{} + last.SetBytes([]byte(lastIp)) + r := &big.Int{} + r.Sub(last, first) + if len := r.BitLen(); len > 31 { + return "", fmt.Errorf("CIDR range is too large: %d", len) + } + + max := int(r.Int64()) + if max == 0 { + // panic: invalid argument to Int31n + return firstIp.String(), nil + } + + host, err := cidr.Host(network, RandIntRange(0, max)) + if err != nil { + return "", err + } + + return host.String(), nil +} + +func genPrivateKey() (*rsa.PrivateKey, string, error) { + privateKey, err := rsa.GenerateKey(crand.Reader, 1024) + if err != nil { + return nil, "", err + } + + privateKeyPEM, err := pemEncode(x509.MarshalPKCS1PrivateKey(privateKey), "RSA PRIVATE KEY") + if err != nil { + return nil, "", err + } + + return privateKey, privateKeyPEM, nil +} + +func pemEncode(b []byte, block string) (string, error) { + var buf bytes.Buffer + pb := &pem.Block{Type: block, Bytes: b} + if err := pem.Encode(&buf, pb); err != nil { + return "", err + } + + return buf.String(), nil +} + +const ( + // CharSetAlphaNum is the alphanumeric character set for use with + // RandStringFromCharSet + CharSetAlphaNum = "abcdefghijklmnopqrstuvwxyz012346789" + + // CharSetAlpha is the alphabetical character set for use with + // RandStringFromCharSet + CharSetAlpha = "abcdefghijklmnopqrstuvwxyz" +) diff --git a/vendor/github.com/hashicorp/terraform-plugin-sdk/helper/acctest/remotetests.go b/vendor/github.com/hashicorp/terraform-plugin-sdk/helper/acctest/remotetests.go new file mode 100644 index 00000000..87c60b8b --- /dev/null +++ b/vendor/github.com/hashicorp/terraform-plugin-sdk/helper/acctest/remotetests.go @@ -0,0 +1,27 @@ +package acctest + +import ( + "net/http" + "os" + "testing" +) + +// SkipRemoteTestsEnvVar is an environment variable that can be set by a user +// running the tests in an environment with limited network connectivity. By +// default, tests requiring internet connectivity make an effort to skip if no +// internet is available, but in some cases the smoke test will pass even +// though the test should still be skipped. +const SkipRemoteTestsEnvVar = "TF_SKIP_REMOTE_TESTS" + +// RemoteTestPrecheck is meant to be run by any unit test that requires +// outbound internet connectivity. The test will be skipped if it's +// unavailable. +func RemoteTestPrecheck(t *testing.T) { + if os.Getenv(SkipRemoteTestsEnvVar) != "" { + t.Skipf("skipping test, %s was set", SkipRemoteTestsEnvVar) + } + + if _, err := http.Get("http://google.com"); err != nil { + t.Skipf("skipping, internet seems to not be available: %s", err) + } +} diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_arm64.go b/vendor/golang.org/x/crypto/chacha20/chacha_arm64.go new file mode 100644 index 00000000..b799e440 --- /dev/null +++ b/vendor/golang.org/x/crypto/chacha20/chacha_arm64.go @@ -0,0 +1,16 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build go1.11,!gccgo,!purego + +package chacha20 + +const bufSize = 256 + +//go:noescape +func xorKeyStreamVX(dst, src []byte, key *[8]uint32, nonce *[3]uint32, counter *uint32) + +func (c *Cipher) xorKeyStreamBlocks(dst, src []byte) { + xorKeyStreamVX(dst, src, &c.key, &c.nonce, &c.counter) +} diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_arm64.s b/vendor/golang.org/x/crypto/chacha20/chacha_arm64.s new file mode 100644 index 00000000..89148153 --- /dev/null +++ b/vendor/golang.org/x/crypto/chacha20/chacha_arm64.s @@ -0,0 +1,307 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build go1.11,!gccgo,!purego + +#include "textflag.h" + +#define NUM_ROUNDS 10 + +// func xorKeyStreamVX(dst, src []byte, key *[8]uint32, nonce *[3]uint32, counter *uint32) +TEXT ·xorKeyStreamVX(SB), NOSPLIT, $0 + MOVD dst+0(FP), R1 + MOVD src+24(FP), R2 + MOVD src_len+32(FP), R3 + MOVD key+48(FP), R4 + MOVD nonce+56(FP), R6 + MOVD counter+64(FP), R7 + + MOVD $·constants(SB), R10 + MOVD $·incRotMatrix(SB), R11 + + MOVW (R7), R20 + + AND $~255, R3, R13 + ADD R2, R13, R12 // R12 for block end + AND $255, R3, R13 +loop: + MOVD $NUM_ROUNDS, R21 + VLD1 (R11), [V30.S4, V31.S4] + + // load contants + // VLD4R (R10), [V0.S4, V1.S4, V2.S4, V3.S4] + WORD $0x4D60E940 + + // load keys + // VLD4R 16(R4), [V4.S4, V5.S4, V6.S4, V7.S4] + WORD $0x4DFFE884 + // VLD4R 16(R4), [V8.S4, V9.S4, V10.S4, V11.S4] + WORD $0x4DFFE888 + SUB $32, R4 + + // load counter + nonce + // VLD1R (R7), [V12.S4] + WORD $0x4D40C8EC + + // VLD3R (R6), [V13.S4, V14.S4, V15.S4] + WORD $0x4D40E8CD + + // update counter + VADD V30.S4, V12.S4, V12.S4 + +chacha: + // V0..V3 += V4..V7 + // V12..V15 <<<= ((V12..V15 XOR V0..V3), 16) + VADD V0.S4, V4.S4, V0.S4 + VADD V1.S4, V5.S4, V1.S4 + VADD V2.S4, V6.S4, V2.S4 + VADD V3.S4, V7.S4, V3.S4 + VEOR V12.B16, V0.B16, V12.B16 + VEOR V13.B16, V1.B16, V13.B16 + VEOR V14.B16, V2.B16, V14.B16 + VEOR V15.B16, V3.B16, V15.B16 + VREV32 V12.H8, V12.H8 + VREV32 V13.H8, V13.H8 + VREV32 V14.H8, V14.H8 + VREV32 V15.H8, V15.H8 + // V8..V11 += V12..V15 + // V4..V7 <<<= ((V4..V7 XOR V8..V11), 12) + VADD V8.S4, V12.S4, V8.S4 + VADD V9.S4, V13.S4, V9.S4 + VADD V10.S4, V14.S4, V10.S4 + VADD V11.S4, V15.S4, V11.S4 + VEOR V8.B16, V4.B16, V16.B16 + VEOR V9.B16, V5.B16, V17.B16 + VEOR V10.B16, V6.B16, V18.B16 + VEOR V11.B16, V7.B16, V19.B16 + VSHL $12, V16.S4, V4.S4 + VSHL $12, V17.S4, V5.S4 + VSHL $12, V18.S4, V6.S4 + VSHL $12, V19.S4, V7.S4 + VSRI $20, V16.S4, V4.S4 + VSRI $20, V17.S4, V5.S4 + VSRI $20, V18.S4, V6.S4 + VSRI $20, V19.S4, V7.S4 + + // V0..V3 += V4..V7 + // V12..V15 <<<= ((V12..V15 XOR V0..V3), 8) + VADD V0.S4, V4.S4, V0.S4 + VADD V1.S4, V5.S4, V1.S4 + VADD V2.S4, V6.S4, V2.S4 + VADD V3.S4, V7.S4, V3.S4 + VEOR V12.B16, V0.B16, V12.B16 + VEOR V13.B16, V1.B16, V13.B16 + VEOR V14.B16, V2.B16, V14.B16 + VEOR V15.B16, V3.B16, V15.B16 + VTBL V31.B16, [V12.B16], V12.B16 + VTBL V31.B16, [V13.B16], V13.B16 + VTBL V31.B16, [V14.B16], V14.B16 + VTBL V31.B16, [V15.B16], V15.B16 + + // V8..V11 += V12..V15 + // V4..V7 <<<= ((V4..V7 XOR V8..V11), 7) + VADD V12.S4, V8.S4, V8.S4 + VADD V13.S4, V9.S4, V9.S4 + VADD V14.S4, V10.S4, V10.S4 + VADD V15.S4, V11.S4, V11.S4 + VEOR V8.B16, V4.B16, V16.B16 + VEOR V9.B16, V5.B16, V17.B16 + VEOR V10.B16, V6.B16, V18.B16 + VEOR V11.B16, V7.B16, V19.B16 + VSHL $7, V16.S4, V4.S4 + VSHL $7, V17.S4, V5.S4 + VSHL $7, V18.S4, V6.S4 + VSHL $7, V19.S4, V7.S4 + VSRI $25, V16.S4, V4.S4 + VSRI $25, V17.S4, V5.S4 + VSRI $25, V18.S4, V6.S4 + VSRI $25, V19.S4, V7.S4 + + // V0..V3 += V5..V7, V4 + // V15,V12-V14 <<<= ((V15,V12-V14 XOR V0..V3), 16) + VADD V0.S4, V5.S4, V0.S4 + VADD V1.S4, V6.S4, V1.S4 + VADD V2.S4, V7.S4, V2.S4 + VADD V3.S4, V4.S4, V3.S4 + VEOR V15.B16, V0.B16, V15.B16 + VEOR V12.B16, V1.B16, V12.B16 + VEOR V13.B16, V2.B16, V13.B16 + VEOR V14.B16, V3.B16, V14.B16 + VREV32 V12.H8, V12.H8 + VREV32 V13.H8, V13.H8 + VREV32 V14.H8, V14.H8 + VREV32 V15.H8, V15.H8 + + // V10 += V15; V5 <<<= ((V10 XOR V5), 12) + // ... + VADD V15.S4, V10.S4, V10.S4 + VADD V12.S4, V11.S4, V11.S4 + VADD V13.S4, V8.S4, V8.S4 + VADD V14.S4, V9.S4, V9.S4 + VEOR V10.B16, V5.B16, V16.B16 + VEOR V11.B16, V6.B16, V17.B16 + VEOR V8.B16, V7.B16, V18.B16 + VEOR V9.B16, V4.B16, V19.B16 + VSHL $12, V16.S4, V5.S4 + VSHL $12, V17.S4, V6.S4 + VSHL $12, V18.S4, V7.S4 + VSHL $12, V19.S4, V4.S4 + VSRI $20, V16.S4, V5.S4 + VSRI $20, V17.S4, V6.S4 + VSRI $20, V18.S4, V7.S4 + VSRI $20, V19.S4, V4.S4 + + // V0 += V5; V15 <<<= ((V0 XOR V15), 8) + // ... + VADD V5.S4, V0.S4, V0.S4 + VADD V6.S4, V1.S4, V1.S4 + VADD V7.S4, V2.S4, V2.S4 + VADD V4.S4, V3.S4, V3.S4 + VEOR V0.B16, V15.B16, V15.B16 + VEOR V1.B16, V12.B16, V12.B16 + VEOR V2.B16, V13.B16, V13.B16 + VEOR V3.B16, V14.B16, V14.B16 + VTBL V31.B16, [V12.B16], V12.B16 + VTBL V31.B16, [V13.B16], V13.B16 + VTBL V31.B16, [V14.B16], V14.B16 + VTBL V31.B16, [V15.B16], V15.B16 + + // V10 += V15; V5 <<<= ((V10 XOR V5), 7) + // ... + VADD V15.S4, V10.S4, V10.S4 + VADD V12.S4, V11.S4, V11.S4 + VADD V13.S4, V8.S4, V8.S4 + VADD V14.S4, V9.S4, V9.S4 + VEOR V10.B16, V5.B16, V16.B16 + VEOR V11.B16, V6.B16, V17.B16 + VEOR V8.B16, V7.B16, V18.B16 + VEOR V9.B16, V4.B16, V19.B16 + VSHL $7, V16.S4, V5.S4 + VSHL $7, V17.S4, V6.S4 + VSHL $7, V18.S4, V7.S4 + VSHL $7, V19.S4, V4.S4 + VSRI $25, V16.S4, V5.S4 + VSRI $25, V17.S4, V6.S4 + VSRI $25, V18.S4, V7.S4 + VSRI $25, V19.S4, V4.S4 + + SUB $1, R21 + CBNZ R21, chacha + + // VLD4R (R10), [V16.S4, V17.S4, V18.S4, V19.S4] + WORD $0x4D60E950 + + // VLD4R 16(R4), [V20.S4, V21.S4, V22.S4, V23.S4] + WORD $0x4DFFE894 + VADD V30.S4, V12.S4, V12.S4 + VADD V16.S4, V0.S4, V0.S4 + VADD V17.S4, V1.S4, V1.S4 + VADD V18.S4, V2.S4, V2.S4 + VADD V19.S4, V3.S4, V3.S4 + // VLD4R 16(R4), [V24.S4, V25.S4, V26.S4, V27.S4] + WORD $0x4DFFE898 + // restore R4 + SUB $32, R4 + + // load counter + nonce + // VLD1R (R7), [V28.S4] + WORD $0x4D40C8FC + // VLD3R (R6), [V29.S4, V30.S4, V31.S4] + WORD $0x4D40E8DD + + VADD V20.S4, V4.S4, V4.S4 + VADD V21.S4, V5.S4, V5.S4 + VADD V22.S4, V6.S4, V6.S4 + VADD V23.S4, V7.S4, V7.S4 + VADD V24.S4, V8.S4, V8.S4 + VADD V25.S4, V9.S4, V9.S4 + VADD V26.S4, V10.S4, V10.S4 + VADD V27.S4, V11.S4, V11.S4 + VADD V28.S4, V12.S4, V12.S4 + VADD V29.S4, V13.S4, V13.S4 + VADD V30.S4, V14.S4, V14.S4 + VADD V31.S4, V15.S4, V15.S4 + + VZIP1 V1.S4, V0.S4, V16.S4 + VZIP2 V1.S4, V0.S4, V17.S4 + VZIP1 V3.S4, V2.S4, V18.S4 + VZIP2 V3.S4, V2.S4, V19.S4 + VZIP1 V5.S4, V4.S4, V20.S4 + VZIP2 V5.S4, V4.S4, V21.S4 + VZIP1 V7.S4, V6.S4, V22.S4 + VZIP2 V7.S4, V6.S4, V23.S4 + VZIP1 V9.S4, V8.S4, V24.S4 + VZIP2 V9.S4, V8.S4, V25.S4 + VZIP1 V11.S4, V10.S4, V26.S4 + VZIP2 V11.S4, V10.S4, V27.S4 + VZIP1 V13.S4, V12.S4, V28.S4 + VZIP2 V13.S4, V12.S4, V29.S4 + VZIP1 V15.S4, V14.S4, V30.S4 + VZIP2 V15.S4, V14.S4, V31.S4 + VZIP1 V18.D2, V16.D2, V0.D2 + VZIP2 V18.D2, V16.D2, V4.D2 + VZIP1 V19.D2, V17.D2, V8.D2 + VZIP2 V19.D2, V17.D2, V12.D2 + VLD1.P 64(R2), [V16.B16, V17.B16, V18.B16, V19.B16] + + VZIP1 V22.D2, V20.D2, V1.D2 + VZIP2 V22.D2, V20.D2, V5.D2 + VZIP1 V23.D2, V21.D2, V9.D2 + VZIP2 V23.D2, V21.D2, V13.D2 + VLD1.P 64(R2), [V20.B16, V21.B16, V22.B16, V23.B16] + VZIP1 V26.D2, V24.D2, V2.D2 + VZIP2 V26.D2, V24.D2, V6.D2 + VZIP1 V27.D2, V25.D2, V10.D2 + VZIP2 V27.D2, V25.D2, V14.D2 + VLD1.P 64(R2), [V24.B16, V25.B16, V26.B16, V27.B16] + VZIP1 V30.D2, V28.D2, V3.D2 + VZIP2 V30.D2, V28.D2, V7.D2 + VZIP1 V31.D2, V29.D2, V11.D2 + VZIP2 V31.D2, V29.D2, V15.D2 + VLD1.P 64(R2), [V28.B16, V29.B16, V30.B16, V31.B16] + VEOR V0.B16, V16.B16, V16.B16 + VEOR V1.B16, V17.B16, V17.B16 + VEOR V2.B16, V18.B16, V18.B16 + VEOR V3.B16, V19.B16, V19.B16 + VST1.P [V16.B16, V17.B16, V18.B16, V19.B16], 64(R1) + VEOR V4.B16, V20.B16, V20.B16 + VEOR V5.B16, V21.B16, V21.B16 + VEOR V6.B16, V22.B16, V22.B16 + VEOR V7.B16, V23.B16, V23.B16 + VST1.P [V20.B16, V21.B16, V22.B16, V23.B16], 64(R1) + VEOR V8.B16, V24.B16, V24.B16 + VEOR V9.B16, V25.B16, V25.B16 + VEOR V10.B16, V26.B16, V26.B16 + VEOR V11.B16, V27.B16, V27.B16 + VST1.P [V24.B16, V25.B16, V26.B16, V27.B16], 64(R1) + VEOR V12.B16, V28.B16, V28.B16 + VEOR V13.B16, V29.B16, V29.B16 + VEOR V14.B16, V30.B16, V30.B16 + VEOR V15.B16, V31.B16, V31.B16 + VST1.P [V28.B16, V29.B16, V30.B16, V31.B16], 64(R1) + + ADD $4, R20 + MOVW R20, (R7) // update counter + + CMP R2, R12 + BGT loop + + RET + + +DATA ·constants+0x00(SB)/4, $0x61707865 +DATA ·constants+0x04(SB)/4, $0x3320646e +DATA ·constants+0x08(SB)/4, $0x79622d32 +DATA ·constants+0x0c(SB)/4, $0x6b206574 +GLOBL ·constants(SB), NOPTR|RODATA, $32 + +DATA ·incRotMatrix+0x00(SB)/4, $0x00000000 +DATA ·incRotMatrix+0x04(SB)/4, $0x00000001 +DATA ·incRotMatrix+0x08(SB)/4, $0x00000002 +DATA ·incRotMatrix+0x0c(SB)/4, $0x00000003 +DATA ·incRotMatrix+0x10(SB)/4, $0x02010003 +DATA ·incRotMatrix+0x14(SB)/4, $0x06050407 +DATA ·incRotMatrix+0x18(SB)/4, $0x0A09080B +DATA ·incRotMatrix+0x1c(SB)/4, $0x0E0D0C0F +GLOBL ·incRotMatrix(SB), NOPTR|RODATA, $32 diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_generic.go b/vendor/golang.org/x/crypto/chacha20/chacha_generic.go new file mode 100644 index 00000000..a2ecf5c3 --- /dev/null +++ b/vendor/golang.org/x/crypto/chacha20/chacha_generic.go @@ -0,0 +1,398 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package chacha20 implements the ChaCha20 and XChaCha20 encryption algorithms +// as specified in RFC 8439 and draft-irtf-cfrg-xchacha-01. +package chacha20 + +import ( + "crypto/cipher" + "encoding/binary" + "errors" + "math/bits" + + "golang.org/x/crypto/internal/subtle" +) + +const ( + // KeySize is the size of the key used by this cipher, in bytes. + KeySize = 32 + + // NonceSize is the size of the nonce used with the standard variant of this + // cipher, in bytes. + // + // Note that this is too short to be safely generated at random if the same + // key is reused more than 2³² times. + NonceSize = 12 + + // NonceSizeX is the size of the nonce used with the XChaCha20 variant of + // this cipher, in bytes. + NonceSizeX = 24 +) + +// Cipher is a stateful instance of ChaCha20 or XChaCha20 using a particular key +// and nonce. A *Cipher implements the cipher.Stream interface. +type Cipher struct { + // The ChaCha20 state is 16 words: 4 constant, 8 of key, 1 of counter + // (incremented after each block), and 3 of nonce. + key [8]uint32 + counter uint32 + nonce [3]uint32 + + // The last len bytes of buf are leftover key stream bytes from the previous + // XORKeyStream invocation. The size of buf depends on how many blocks are + // computed at a time by xorKeyStreamBlocks. + buf [bufSize]byte + len int + + // overflow is set when the counter overflowed, no more blocks can be + // generated, and the next XORKeyStream call should panic. + overflow bool + + // The counter-independent results of the first round are cached after they + // are computed the first time. + precompDone bool + p1, p5, p9, p13 uint32 + p2, p6, p10, p14 uint32 + p3, p7, p11, p15 uint32 +} + +var _ cipher.Stream = (*Cipher)(nil) + +// NewUnauthenticatedCipher creates a new ChaCha20 stream cipher with the given +// 32 bytes key and a 12 or 24 bytes nonce. If a nonce of 24 bytes is provided, +// the XChaCha20 construction will be used. It returns an error if key or nonce +// have any other length. +// +// Note that ChaCha20, like all stream ciphers, is not authenticated and allows +// attackers to silently tamper with the plaintext. For this reason, it is more +// appropriate as a building block than as a standalone encryption mechanism. +// Instead, consider using package golang.org/x/crypto/chacha20poly1305. +func NewUnauthenticatedCipher(key, nonce []byte) (*Cipher, error) { + // This function is split into a wrapper so that the Cipher allocation will + // be inlined, and depending on how the caller uses the return value, won't + // escape to the heap. + c := &Cipher{} + return newUnauthenticatedCipher(c, key, nonce) +} + +func newUnauthenticatedCipher(c *Cipher, key, nonce []byte) (*Cipher, error) { + if len(key) != KeySize { + return nil, errors.New("chacha20: wrong key size") + } + if len(nonce) == NonceSizeX { + // XChaCha20 uses the ChaCha20 core to mix 16 bytes of the nonce into a + // derived key, allowing it to operate on a nonce of 24 bytes. See + // draft-irtf-cfrg-xchacha-01, Section 2.3. + key, _ = HChaCha20(key, nonce[0:16]) + cNonce := make([]byte, NonceSize) + copy(cNonce[4:12], nonce[16:24]) + nonce = cNonce + } else if len(nonce) != NonceSize { + return nil, errors.New("chacha20: wrong nonce size") + } + + key, nonce = key[:KeySize], nonce[:NonceSize] // bounds check elimination hint + c.key = [8]uint32{ + binary.LittleEndian.Uint32(key[0:4]), + binary.LittleEndian.Uint32(key[4:8]), + binary.LittleEndian.Uint32(key[8:12]), + binary.LittleEndian.Uint32(key[12:16]), + binary.LittleEndian.Uint32(key[16:20]), + binary.LittleEndian.Uint32(key[20:24]), + binary.LittleEndian.Uint32(key[24:28]), + binary.LittleEndian.Uint32(key[28:32]), + } + c.nonce = [3]uint32{ + binary.LittleEndian.Uint32(nonce[0:4]), + binary.LittleEndian.Uint32(nonce[4:8]), + binary.LittleEndian.Uint32(nonce[8:12]), + } + return c, nil +} + +// The constant first 4 words of the ChaCha20 state. +const ( + j0 uint32 = 0x61707865 // expa + j1 uint32 = 0x3320646e // nd 3 + j2 uint32 = 0x79622d32 // 2-by + j3 uint32 = 0x6b206574 // te k +) + +const blockSize = 64 + +// quarterRound is the core of ChaCha20. It shuffles the bits of 4 state words. +// It's executed 4 times for each of the 20 ChaCha20 rounds, operating on all 16 +// words each round, in columnar or diagonal groups of 4 at a time. +func quarterRound(a, b, c, d uint32) (uint32, uint32, uint32, uint32) { + a += b + d ^= a + d = bits.RotateLeft32(d, 16) + c += d + b ^= c + b = bits.RotateLeft32(b, 12) + a += b + d ^= a + d = bits.RotateLeft32(d, 8) + c += d + b ^= c + b = bits.RotateLeft32(b, 7) + return a, b, c, d +} + +// SetCounter sets the Cipher counter. The next invocation of XORKeyStream will +// behave as if (64 * counter) bytes had been encrypted so far. +// +// To prevent accidental counter reuse, SetCounter panics if counter is less +// than the current value. +// +// Note that the execution time of XORKeyStream is not independent of the +// counter value. +func (s *Cipher) SetCounter(counter uint32) { + // Internally, s may buffer multiple blocks, which complicates this + // implementation slightly. When checking whether the counter has rolled + // back, we must use both s.counter and s.len to determine how many blocks + // we have already output. + outputCounter := s.counter - uint32(s.len)/blockSize + if s.overflow || counter < outputCounter { + panic("chacha20: SetCounter attempted to rollback counter") + } + + // In the general case, we set the new counter value and reset s.len to 0, + // causing the next call to XORKeyStream to refill the buffer. However, if + // we're advancing within the existing buffer, we can save work by simply + // setting s.len. + if counter < s.counter { + s.len = int(s.counter-counter) * blockSize + } else { + s.counter = counter + s.len = 0 + } +} + +// XORKeyStream XORs each byte in the given slice with a byte from the +// cipher's key stream. Dst and src must overlap entirely or not at all. +// +// If len(dst) < len(src), XORKeyStream will panic. It is acceptable +// to pass a dst bigger than src, and in that case, XORKeyStream will +// only update dst[:len(src)] and will not touch the rest of dst. +// +// Multiple calls to XORKeyStream behave as if the concatenation of +// the src buffers was passed in a single run. That is, Cipher +// maintains state and does not reset at each XORKeyStream call. +func (s *Cipher) XORKeyStream(dst, src []byte) { + if len(src) == 0 { + return + } + if len(dst) < len(src) { + panic("chacha20: output smaller than input") + } + dst = dst[:len(src)] + if subtle.InexactOverlap(dst, src) { + panic("chacha20: invalid buffer overlap") + } + + // First, drain any remaining key stream from a previous XORKeyStream. + if s.len != 0 { + keyStream := s.buf[bufSize-s.len:] + if len(src) < len(keyStream) { + keyStream = keyStream[:len(src)] + } + _ = src[len(keyStream)-1] // bounds check elimination hint + for i, b := range keyStream { + dst[i] = src[i] ^ b + } + s.len -= len(keyStream) + dst, src = dst[len(keyStream):], src[len(keyStream):] + } + if len(src) == 0 { + return + } + + // If we'd need to let the counter overflow and keep generating output, + // panic immediately. If instead we'd only reach the last block, remember + // not to generate any more output after the buffer is drained. + numBlocks := (uint64(len(src)) + blockSize - 1) / blockSize + if s.overflow || uint64(s.counter)+numBlocks > 1<<32 { + panic("chacha20: counter overflow") + } else if uint64(s.counter)+numBlocks == 1<<32 { + s.overflow = true + } + + // xorKeyStreamBlocks implementations expect input lengths that are a + // multiple of bufSize. Platform-specific ones process multiple blocks at a + // time, so have bufSizes that are a multiple of blockSize. + + full := len(src) - len(src)%bufSize + if full > 0 { + s.xorKeyStreamBlocks(dst[:full], src[:full]) + } + dst, src = dst[full:], src[full:] + + // If using a multi-block xorKeyStreamBlocks would overflow, use the generic + // one that does one block at a time. + const blocksPerBuf = bufSize / blockSize + if uint64(s.counter)+blocksPerBuf > 1<<32 { + s.buf = [bufSize]byte{} + numBlocks := (len(src) + blockSize - 1) / blockSize + buf := s.buf[bufSize-numBlocks*blockSize:] + copy(buf, src) + s.xorKeyStreamBlocksGeneric(buf, buf) + s.len = len(buf) - copy(dst, buf) + return + } + + // If we have a partial (multi-)block, pad it for xorKeyStreamBlocks, and + // keep the leftover keystream for the next XORKeyStream invocation. + if len(src) > 0 { + s.buf = [bufSize]byte{} + copy(s.buf[:], src) + s.xorKeyStreamBlocks(s.buf[:], s.buf[:]) + s.len = bufSize - copy(dst, s.buf[:]) + } +} + +func (s *Cipher) xorKeyStreamBlocksGeneric(dst, src []byte) { + if len(dst) != len(src) || len(dst)%blockSize != 0 { + panic("chacha20: internal error: wrong dst and/or src length") + } + + // To generate each block of key stream, the initial cipher state + // (represented below) is passed through 20 rounds of shuffling, + // alternatively applying quarterRounds by columns (like 1, 5, 9, 13) + // or by diagonals (like 1, 6, 11, 12). + // + // 0:cccccccc 1:cccccccc 2:cccccccc 3:cccccccc + // 4:kkkkkkkk 5:kkkkkkkk 6:kkkkkkkk 7:kkkkkkkk + // 8:kkkkkkkk 9:kkkkkkkk 10:kkkkkkkk 11:kkkkkkkk + // 12:bbbbbbbb 13:nnnnnnnn 14:nnnnnnnn 15:nnnnnnnn + // + // c=constant k=key b=blockcount n=nonce + var ( + c0, c1, c2, c3 = j0, j1, j2, j3 + c4, c5, c6, c7 = s.key[0], s.key[1], s.key[2], s.key[3] + c8, c9, c10, c11 = s.key[4], s.key[5], s.key[6], s.key[7] + _, c13, c14, c15 = s.counter, s.nonce[0], s.nonce[1], s.nonce[2] + ) + + // Three quarters of the first round don't depend on the counter, so we can + // calculate them here, and reuse them for multiple blocks in the loop, and + // for future XORKeyStream invocations. + if !s.precompDone { + s.p1, s.p5, s.p9, s.p13 = quarterRound(c1, c5, c9, c13) + s.p2, s.p6, s.p10, s.p14 = quarterRound(c2, c6, c10, c14) + s.p3, s.p7, s.p11, s.p15 = quarterRound(c3, c7, c11, c15) + s.precompDone = true + } + + // A condition of len(src) > 0 would be sufficient, but this also + // acts as a bounds check elimination hint. + for len(src) >= 64 && len(dst) >= 64 { + // The remainder of the first column round. + fcr0, fcr4, fcr8, fcr12 := quarterRound(c0, c4, c8, s.counter) + + // The second diagonal round. + x0, x5, x10, x15 := quarterRound(fcr0, s.p5, s.p10, s.p15) + x1, x6, x11, x12 := quarterRound(s.p1, s.p6, s.p11, fcr12) + x2, x7, x8, x13 := quarterRound(s.p2, s.p7, fcr8, s.p13) + x3, x4, x9, x14 := quarterRound(s.p3, fcr4, s.p9, s.p14) + + // The remaining 18 rounds. + for i := 0; i < 9; i++ { + // Column round. + x0, x4, x8, x12 = quarterRound(x0, x4, x8, x12) + x1, x5, x9, x13 = quarterRound(x1, x5, x9, x13) + x2, x6, x10, x14 = quarterRound(x2, x6, x10, x14) + x3, x7, x11, x15 = quarterRound(x3, x7, x11, x15) + + // Diagonal round. + x0, x5, x10, x15 = quarterRound(x0, x5, x10, x15) + x1, x6, x11, x12 = quarterRound(x1, x6, x11, x12) + x2, x7, x8, x13 = quarterRound(x2, x7, x8, x13) + x3, x4, x9, x14 = quarterRound(x3, x4, x9, x14) + } + + // Add back the initial state to generate the key stream, then + // XOR the key stream with the source and write out the result. + addXor(dst[0:4], src[0:4], x0, c0) + addXor(dst[4:8], src[4:8], x1, c1) + addXor(dst[8:12], src[8:12], x2, c2) + addXor(dst[12:16], src[12:16], x3, c3) + addXor(dst[16:20], src[16:20], x4, c4) + addXor(dst[20:24], src[20:24], x5, c5) + addXor(dst[24:28], src[24:28], x6, c6) + addXor(dst[28:32], src[28:32], x7, c7) + addXor(dst[32:36], src[32:36], x8, c8) + addXor(dst[36:40], src[36:40], x9, c9) + addXor(dst[40:44], src[40:44], x10, c10) + addXor(dst[44:48], src[44:48], x11, c11) + addXor(dst[48:52], src[48:52], x12, s.counter) + addXor(dst[52:56], src[52:56], x13, c13) + addXor(dst[56:60], src[56:60], x14, c14) + addXor(dst[60:64], src[60:64], x15, c15) + + s.counter += 1 + + src, dst = src[blockSize:], dst[blockSize:] + } +} + +// HChaCha20 uses the ChaCha20 core to generate a derived key from a 32 bytes +// key and a 16 bytes nonce. It returns an error if key or nonce have any other +// length. It is used as part of the XChaCha20 construction. +func HChaCha20(key, nonce []byte) ([]byte, error) { + // This function is split into a wrapper so that the slice allocation will + // be inlined, and depending on how the caller uses the return value, won't + // escape to the heap. + out := make([]byte, 32) + return hChaCha20(out, key, nonce) +} + +func hChaCha20(out, key, nonce []byte) ([]byte, error) { + if len(key) != KeySize { + return nil, errors.New("chacha20: wrong HChaCha20 key size") + } + if len(nonce) != 16 { + return nil, errors.New("chacha20: wrong HChaCha20 nonce size") + } + + x0, x1, x2, x3 := j0, j1, j2, j3 + x4 := binary.LittleEndian.Uint32(key[0:4]) + x5 := binary.LittleEndian.Uint32(key[4:8]) + x6 := binary.LittleEndian.Uint32(key[8:12]) + x7 := binary.LittleEndian.Uint32(key[12:16]) + x8 := binary.LittleEndian.Uint32(key[16:20]) + x9 := binary.LittleEndian.Uint32(key[20:24]) + x10 := binary.LittleEndian.Uint32(key[24:28]) + x11 := binary.LittleEndian.Uint32(key[28:32]) + x12 := binary.LittleEndian.Uint32(nonce[0:4]) + x13 := binary.LittleEndian.Uint32(nonce[4:8]) + x14 := binary.LittleEndian.Uint32(nonce[8:12]) + x15 := binary.LittleEndian.Uint32(nonce[12:16]) + + for i := 0; i < 10; i++ { + // Diagonal round. + x0, x4, x8, x12 = quarterRound(x0, x4, x8, x12) + x1, x5, x9, x13 = quarterRound(x1, x5, x9, x13) + x2, x6, x10, x14 = quarterRound(x2, x6, x10, x14) + x3, x7, x11, x15 = quarterRound(x3, x7, x11, x15) + + // Column round. + x0, x5, x10, x15 = quarterRound(x0, x5, x10, x15) + x1, x6, x11, x12 = quarterRound(x1, x6, x11, x12) + x2, x7, x8, x13 = quarterRound(x2, x7, x8, x13) + x3, x4, x9, x14 = quarterRound(x3, x4, x9, x14) + } + + _ = out[31] // bounds check elimination hint + binary.LittleEndian.PutUint32(out[0:4], x0) + binary.LittleEndian.PutUint32(out[4:8], x1) + binary.LittleEndian.PutUint32(out[8:12], x2) + binary.LittleEndian.PutUint32(out[12:16], x3) + binary.LittleEndian.PutUint32(out[16:20], x12) + binary.LittleEndian.PutUint32(out[20:24], x13) + binary.LittleEndian.PutUint32(out[24:28], x14) + binary.LittleEndian.PutUint32(out[28:32], x15) + return out, nil +} diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_noasm.go b/vendor/golang.org/x/crypto/chacha20/chacha_noasm.go new file mode 100644 index 00000000..4635307b --- /dev/null +++ b/vendor/golang.org/x/crypto/chacha20/chacha_noasm.go @@ -0,0 +1,13 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !arm64,!s390x,!ppc64le arm64,!go1.11 gccgo purego + +package chacha20 + +const bufSize = blockSize + +func (s *Cipher) xorKeyStreamBlocks(dst, src []byte) { + s.xorKeyStreamBlocksGeneric(dst, src) +} diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go b/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go new file mode 100644 index 00000000..b7993303 --- /dev/null +++ b/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go @@ -0,0 +1,16 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo,!purego + +package chacha20 + +const bufSize = 256 + +//go:noescape +func chaCha20_ctr32_vsx(out, inp *byte, len int, key *[8]uint32, counter *uint32) + +func (c *Cipher) xorKeyStreamBlocks(dst, src []byte) { + chaCha20_ctr32_vsx(&dst[0], &src[0], len(src), &c.key, &c.counter) +} diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s b/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s new file mode 100644 index 00000000..23c60216 --- /dev/null +++ b/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s @@ -0,0 +1,449 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Based on CRYPTOGAMS code with the following comment: +// # ==================================================================== +// # Written by Andy Polyakov for the OpenSSL +// # project. The module is, however, dual licensed under OpenSSL and +// # CRYPTOGAMS licenses depending on where you obtain it. For further +// # details see http://www.openssl.org/~appro/cryptogams/. +// # ==================================================================== + +// Code for the perl script that generates the ppc64 assembler +// can be found in the cryptogams repository at the link below. It is based on +// the original from openssl. + +// https://github.com/dot-asm/cryptogams/commit/a60f5b50ed908e91 + +// The differences in this and the original implementation are +// due to the calling conventions and initialization of constants. + +// +build !gccgo,!purego + +#include "textflag.h" + +#define OUT R3 +#define INP R4 +#define LEN R5 +#define KEY R6 +#define CNT R7 +#define TMP R15 + +#define CONSTBASE R16 +#define BLOCKS R17 + +DATA consts<>+0x00(SB)/8, $0x3320646e61707865 +DATA consts<>+0x08(SB)/8, $0x6b20657479622d32 +DATA consts<>+0x10(SB)/8, $0x0000000000000001 +DATA consts<>+0x18(SB)/8, $0x0000000000000000 +DATA consts<>+0x20(SB)/8, $0x0000000000000004 +DATA consts<>+0x28(SB)/8, $0x0000000000000000 +DATA consts<>+0x30(SB)/8, $0x0a0b08090e0f0c0d +DATA consts<>+0x38(SB)/8, $0x0203000106070405 +DATA consts<>+0x40(SB)/8, $0x090a0b080d0e0f0c +DATA consts<>+0x48(SB)/8, $0x0102030005060704 +DATA consts<>+0x50(SB)/8, $0x6170786561707865 +DATA consts<>+0x58(SB)/8, $0x6170786561707865 +DATA consts<>+0x60(SB)/8, $0x3320646e3320646e +DATA consts<>+0x68(SB)/8, $0x3320646e3320646e +DATA consts<>+0x70(SB)/8, $0x79622d3279622d32 +DATA consts<>+0x78(SB)/8, $0x79622d3279622d32 +DATA consts<>+0x80(SB)/8, $0x6b2065746b206574 +DATA consts<>+0x88(SB)/8, $0x6b2065746b206574 +DATA consts<>+0x90(SB)/8, $0x0000000100000000 +DATA consts<>+0x98(SB)/8, $0x0000000300000002 +GLOBL consts<>(SB), RODATA, $0xa0 + +//func chaCha20_ctr32_vsx(out, inp *byte, len int, key *[8]uint32, counter *uint32) +TEXT ·chaCha20_ctr32_vsx(SB),NOSPLIT,$64-40 + MOVD out+0(FP), OUT + MOVD inp+8(FP), INP + MOVD len+16(FP), LEN + MOVD key+24(FP), KEY + MOVD counter+32(FP), CNT + + // Addressing for constants + MOVD $consts<>+0x00(SB), CONSTBASE + MOVD $16, R8 + MOVD $32, R9 + MOVD $48, R10 + MOVD $64, R11 + SRD $6, LEN, BLOCKS + // V16 + LXVW4X (CONSTBASE)(R0), VS48 + ADD $80,CONSTBASE + + // Load key into V17,V18 + LXVW4X (KEY)(R0), VS49 + LXVW4X (KEY)(R8), VS50 + + // Load CNT, NONCE into V19 + LXVW4X (CNT)(R0), VS51 + + // Clear V27 + VXOR V27, V27, V27 + + // V28 + LXVW4X (CONSTBASE)(R11), VS60 + + // splat slot from V19 -> V26 + VSPLTW $0, V19, V26 + + VSLDOI $4, V19, V27, V19 + VSLDOI $12, V27, V19, V19 + + VADDUWM V26, V28, V26 + + MOVD $10, R14 + MOVD R14, CTR + +loop_outer_vsx: + // V0, V1, V2, V3 + LXVW4X (R0)(CONSTBASE), VS32 + LXVW4X (R8)(CONSTBASE), VS33 + LXVW4X (R9)(CONSTBASE), VS34 + LXVW4X (R10)(CONSTBASE), VS35 + + // splat values from V17, V18 into V4-V11 + VSPLTW $0, V17, V4 + VSPLTW $1, V17, V5 + VSPLTW $2, V17, V6 + VSPLTW $3, V17, V7 + VSPLTW $0, V18, V8 + VSPLTW $1, V18, V9 + VSPLTW $2, V18, V10 + VSPLTW $3, V18, V11 + + // VOR + VOR V26, V26, V12 + + // splat values from V19 -> V13, V14, V15 + VSPLTW $1, V19, V13 + VSPLTW $2, V19, V14 + VSPLTW $3, V19, V15 + + // splat const values + VSPLTISW $-16, V27 + VSPLTISW $12, V28 + VSPLTISW $8, V29 + VSPLTISW $7, V30 + +loop_vsx: + VADDUWM V0, V4, V0 + VADDUWM V1, V5, V1 + VADDUWM V2, V6, V2 + VADDUWM V3, V7, V3 + + VXOR V12, V0, V12 + VXOR V13, V1, V13 + VXOR V14, V2, V14 + VXOR V15, V3, V15 + + VRLW V12, V27, V12 + VRLW V13, V27, V13 + VRLW V14, V27, V14 + VRLW V15, V27, V15 + + VADDUWM V8, V12, V8 + VADDUWM V9, V13, V9 + VADDUWM V10, V14, V10 + VADDUWM V11, V15, V11 + + VXOR V4, V8, V4 + VXOR V5, V9, V5 + VXOR V6, V10, V6 + VXOR V7, V11, V7 + + VRLW V4, V28, V4 + VRLW V5, V28, V5 + VRLW V6, V28, V6 + VRLW V7, V28, V7 + + VADDUWM V0, V4, V0 + VADDUWM V1, V5, V1 + VADDUWM V2, V6, V2 + VADDUWM V3, V7, V3 + + VXOR V12, V0, V12 + VXOR V13, V1, V13 + VXOR V14, V2, V14 + VXOR V15, V3, V15 + + VRLW V12, V29, V12 + VRLW V13, V29, V13 + VRLW V14, V29, V14 + VRLW V15, V29, V15 + + VADDUWM V8, V12, V8 + VADDUWM V9, V13, V9 + VADDUWM V10, V14, V10 + VADDUWM V11, V15, V11 + + VXOR V4, V8, V4 + VXOR V5, V9, V5 + VXOR V6, V10, V6 + VXOR V7, V11, V7 + + VRLW V4, V30, V4 + VRLW V5, V30, V5 + VRLW V6, V30, V6 + VRLW V7, V30, V7 + + VADDUWM V0, V5, V0 + VADDUWM V1, V6, V1 + VADDUWM V2, V7, V2 + VADDUWM V3, V4, V3 + + VXOR V15, V0, V15 + VXOR V12, V1, V12 + VXOR V13, V2, V13 + VXOR V14, V3, V14 + + VRLW V15, V27, V15 + VRLW V12, V27, V12 + VRLW V13, V27, V13 + VRLW V14, V27, V14 + + VADDUWM V10, V15, V10 + VADDUWM V11, V12, V11 + VADDUWM V8, V13, V8 + VADDUWM V9, V14, V9 + + VXOR V5, V10, V5 + VXOR V6, V11, V6 + VXOR V7, V8, V7 + VXOR V4, V9, V4 + + VRLW V5, V28, V5 + VRLW V6, V28, V6 + VRLW V7, V28, V7 + VRLW V4, V28, V4 + + VADDUWM V0, V5, V0 + VADDUWM V1, V6, V1 + VADDUWM V2, V7, V2 + VADDUWM V3, V4, V3 + + VXOR V15, V0, V15 + VXOR V12, V1, V12 + VXOR V13, V2, V13 + VXOR V14, V3, V14 + + VRLW V15, V29, V15 + VRLW V12, V29, V12 + VRLW V13, V29, V13 + VRLW V14, V29, V14 + + VADDUWM V10, V15, V10 + VADDUWM V11, V12, V11 + VADDUWM V8, V13, V8 + VADDUWM V9, V14, V9 + + VXOR V5, V10, V5 + VXOR V6, V11, V6 + VXOR V7, V8, V7 + VXOR V4, V9, V4 + + VRLW V5, V30, V5 + VRLW V6, V30, V6 + VRLW V7, V30, V7 + VRLW V4, V30, V4 + BC 16, LT, loop_vsx + + VADDUWM V12, V26, V12 + + WORD $0x13600F8C // VMRGEW V0, V1, V27 + WORD $0x13821F8C // VMRGEW V2, V3, V28 + + WORD $0x10000E8C // VMRGOW V0, V1, V0 + WORD $0x10421E8C // VMRGOW V2, V3, V2 + + WORD $0x13A42F8C // VMRGEW V4, V5, V29 + WORD $0x13C63F8C // VMRGEW V6, V7, V30 + + XXPERMDI VS32, VS34, $0, VS33 + XXPERMDI VS32, VS34, $3, VS35 + XXPERMDI VS59, VS60, $0, VS32 + XXPERMDI VS59, VS60, $3, VS34 + + WORD $0x10842E8C // VMRGOW V4, V5, V4 + WORD $0x10C63E8C // VMRGOW V6, V7, V6 + + WORD $0x13684F8C // VMRGEW V8, V9, V27 + WORD $0x138A5F8C // VMRGEW V10, V11, V28 + + XXPERMDI VS36, VS38, $0, VS37 + XXPERMDI VS36, VS38, $3, VS39 + XXPERMDI VS61, VS62, $0, VS36 + XXPERMDI VS61, VS62, $3, VS38 + + WORD $0x11084E8C // VMRGOW V8, V9, V8 + WORD $0x114A5E8C // VMRGOW V10, V11, V10 + + WORD $0x13AC6F8C // VMRGEW V12, V13, V29 + WORD $0x13CE7F8C // VMRGEW V14, V15, V30 + + XXPERMDI VS40, VS42, $0, VS41 + XXPERMDI VS40, VS42, $3, VS43 + XXPERMDI VS59, VS60, $0, VS40 + XXPERMDI VS59, VS60, $3, VS42 + + WORD $0x118C6E8C // VMRGOW V12, V13, V12 + WORD $0x11CE7E8C // VMRGOW V14, V15, V14 + + VSPLTISW $4, V27 + VADDUWM V26, V27, V26 + + XXPERMDI VS44, VS46, $0, VS45 + XXPERMDI VS44, VS46, $3, VS47 + XXPERMDI VS61, VS62, $0, VS44 + XXPERMDI VS61, VS62, $3, VS46 + + VADDUWM V0, V16, V0 + VADDUWM V4, V17, V4 + VADDUWM V8, V18, V8 + VADDUWM V12, V19, V12 + + CMPU LEN, $64 + BLT tail_vsx + + // Bottom of loop + LXVW4X (INP)(R0), VS59 + LXVW4X (INP)(R8), VS60 + LXVW4X (INP)(R9), VS61 + LXVW4X (INP)(R10), VS62 + + VXOR V27, V0, V27 + VXOR V28, V4, V28 + VXOR V29, V8, V29 + VXOR V30, V12, V30 + + STXVW4X VS59, (OUT)(R0) + STXVW4X VS60, (OUT)(R8) + ADD $64, INP + STXVW4X VS61, (OUT)(R9) + ADD $-64, LEN + STXVW4X VS62, (OUT)(R10) + ADD $64, OUT + BEQ done_vsx + + VADDUWM V1, V16, V0 + VADDUWM V5, V17, V4 + VADDUWM V9, V18, V8 + VADDUWM V13, V19, V12 + + CMPU LEN, $64 + BLT tail_vsx + + LXVW4X (INP)(R0), VS59 + LXVW4X (INP)(R8), VS60 + LXVW4X (INP)(R9), VS61 + LXVW4X (INP)(R10), VS62 + VXOR V27, V0, V27 + + VXOR V28, V4, V28 + VXOR V29, V8, V29 + VXOR V30, V12, V30 + + STXVW4X VS59, (OUT)(R0) + STXVW4X VS60, (OUT)(R8) + ADD $64, INP + STXVW4X VS61, (OUT)(R9) + ADD $-64, LEN + STXVW4X VS62, (OUT)(V10) + ADD $64, OUT + BEQ done_vsx + + VADDUWM V2, V16, V0 + VADDUWM V6, V17, V4 + VADDUWM V10, V18, V8 + VADDUWM V14, V19, V12 + + CMPU LEN, $64 + BLT tail_vsx + + LXVW4X (INP)(R0), VS59 + LXVW4X (INP)(R8), VS60 + LXVW4X (INP)(R9), VS61 + LXVW4X (INP)(R10), VS62 + + VXOR V27, V0, V27 + VXOR V28, V4, V28 + VXOR V29, V8, V29 + VXOR V30, V12, V30 + + STXVW4X VS59, (OUT)(R0) + STXVW4X VS60, (OUT)(R8) + ADD $64, INP + STXVW4X VS61, (OUT)(R9) + ADD $-64, LEN + STXVW4X VS62, (OUT)(R10) + ADD $64, OUT + BEQ done_vsx + + VADDUWM V3, V16, V0 + VADDUWM V7, V17, V4 + VADDUWM V11, V18, V8 + VADDUWM V15, V19, V12 + + CMPU LEN, $64 + BLT tail_vsx + + LXVW4X (INP)(R0), VS59 + LXVW4X (INP)(R8), VS60 + LXVW4X (INP)(R9), VS61 + LXVW4X (INP)(R10), VS62 + + VXOR V27, V0, V27 + VXOR V28, V4, V28 + VXOR V29, V8, V29 + VXOR V30, V12, V30 + + STXVW4X VS59, (OUT)(R0) + STXVW4X VS60, (OUT)(R8) + ADD $64, INP + STXVW4X VS61, (OUT)(R9) + ADD $-64, LEN + STXVW4X VS62, (OUT)(R10) + ADD $64, OUT + + MOVD $10, R14 + MOVD R14, CTR + BNE loop_outer_vsx + +done_vsx: + // Increment counter by number of 64 byte blocks + MOVD (CNT), R14 + ADD BLOCKS, R14 + MOVD R14, (CNT) + RET + +tail_vsx: + ADD $32, R1, R11 + MOVD LEN, CTR + + // Save values on stack to copy from + STXVW4X VS32, (R11)(R0) + STXVW4X VS36, (R11)(R8) + STXVW4X VS40, (R11)(R9) + STXVW4X VS44, (R11)(R10) + ADD $-1, R11, R12 + ADD $-1, INP + ADD $-1, OUT + +looptail_vsx: + // Copying the result to OUT + // in bytes. + MOVBZU 1(R12), KEY + MOVBZU 1(INP), TMP + XOR KEY, TMP, KEY + MOVBU KEY, 1(OUT) + BC 16, LT, looptail_vsx + + // Clear the stack values + STXVW4X VS48, (R11)(R0) + STXVW4X VS48, (R11)(R8) + STXVW4X VS48, (R11)(R9) + STXVW4X VS48, (R11)(R10) + BR done_vsx diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_s390x.go b/vendor/golang.org/x/crypto/chacha20/chacha_s390x.go new file mode 100644 index 00000000..a9244bdf --- /dev/null +++ b/vendor/golang.org/x/crypto/chacha20/chacha_s390x.go @@ -0,0 +1,26 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo,!purego + +package chacha20 + +import "golang.org/x/sys/cpu" + +var haveAsm = cpu.S390X.HasVX + +const bufSize = 256 + +// xorKeyStreamVX is an assembly implementation of XORKeyStream. It must only +// be called when the vector facility is available. Implementation in asm_s390x.s. +//go:noescape +func xorKeyStreamVX(dst, src []byte, key *[8]uint32, nonce *[3]uint32, counter *uint32) + +func (c *Cipher) xorKeyStreamBlocks(dst, src []byte) { + if cpu.S390X.HasVX { + xorKeyStreamVX(dst, src, &c.key, &c.nonce, &c.counter) + } else { + c.xorKeyStreamBlocksGeneric(dst, src) + } +} diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s b/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s new file mode 100644 index 00000000..89c658c4 --- /dev/null +++ b/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s @@ -0,0 +1,224 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo,!purego + +#include "go_asm.h" +#include "textflag.h" + +// This is an implementation of the ChaCha20 encryption algorithm as +// specified in RFC 7539. It uses vector instructions to compute +// 4 keystream blocks in parallel (256 bytes) which are then XORed +// with the bytes in the input slice. + +GLOBL ·constants<>(SB), RODATA|NOPTR, $32 +// BSWAP: swap bytes in each 4-byte element +DATA ·constants<>+0x00(SB)/4, $0x03020100 +DATA ·constants<>+0x04(SB)/4, $0x07060504 +DATA ·constants<>+0x08(SB)/4, $0x0b0a0908 +DATA ·constants<>+0x0c(SB)/4, $0x0f0e0d0c +// J0: [j0, j1, j2, j3] +DATA ·constants<>+0x10(SB)/4, $0x61707865 +DATA ·constants<>+0x14(SB)/4, $0x3320646e +DATA ·constants<>+0x18(SB)/4, $0x79622d32 +DATA ·constants<>+0x1c(SB)/4, $0x6b206574 + +#define BSWAP V5 +#define J0 V6 +#define KEY0 V7 +#define KEY1 V8 +#define NONCE V9 +#define CTR V10 +#define M0 V11 +#define M1 V12 +#define M2 V13 +#define M3 V14 +#define INC V15 +#define X0 V16 +#define X1 V17 +#define X2 V18 +#define X3 V19 +#define X4 V20 +#define X5 V21 +#define X6 V22 +#define X7 V23 +#define X8 V24 +#define X9 V25 +#define X10 V26 +#define X11 V27 +#define X12 V28 +#define X13 V29 +#define X14 V30 +#define X15 V31 + +#define NUM_ROUNDS 20 + +#define ROUND4(a0, a1, a2, a3, b0, b1, b2, b3, c0, c1, c2, c3, d0, d1, d2, d3) \ + VAF a1, a0, a0 \ + VAF b1, b0, b0 \ + VAF c1, c0, c0 \ + VAF d1, d0, d0 \ + VX a0, a2, a2 \ + VX b0, b2, b2 \ + VX c0, c2, c2 \ + VX d0, d2, d2 \ + VERLLF $16, a2, a2 \ + VERLLF $16, b2, b2 \ + VERLLF $16, c2, c2 \ + VERLLF $16, d2, d2 \ + VAF a2, a3, a3 \ + VAF b2, b3, b3 \ + VAF c2, c3, c3 \ + VAF d2, d3, d3 \ + VX a3, a1, a1 \ + VX b3, b1, b1 \ + VX c3, c1, c1 \ + VX d3, d1, d1 \ + VERLLF $12, a1, a1 \ + VERLLF $12, b1, b1 \ + VERLLF $12, c1, c1 \ + VERLLF $12, d1, d1 \ + VAF a1, a0, a0 \ + VAF b1, b0, b0 \ + VAF c1, c0, c0 \ + VAF d1, d0, d0 \ + VX a0, a2, a2 \ + VX b0, b2, b2 \ + VX c0, c2, c2 \ + VX d0, d2, d2 \ + VERLLF $8, a2, a2 \ + VERLLF $8, b2, b2 \ + VERLLF $8, c2, c2 \ + VERLLF $8, d2, d2 \ + VAF a2, a3, a3 \ + VAF b2, b3, b3 \ + VAF c2, c3, c3 \ + VAF d2, d3, d3 \ + VX a3, a1, a1 \ + VX b3, b1, b1 \ + VX c3, c1, c1 \ + VX d3, d1, d1 \ + VERLLF $7, a1, a1 \ + VERLLF $7, b1, b1 \ + VERLLF $7, c1, c1 \ + VERLLF $7, d1, d1 + +#define PERMUTE(mask, v0, v1, v2, v3) \ + VPERM v0, v0, mask, v0 \ + VPERM v1, v1, mask, v1 \ + VPERM v2, v2, mask, v2 \ + VPERM v3, v3, mask, v3 + +#define ADDV(x, v0, v1, v2, v3) \ + VAF x, v0, v0 \ + VAF x, v1, v1 \ + VAF x, v2, v2 \ + VAF x, v3, v3 + +#define XORV(off, dst, src, v0, v1, v2, v3) \ + VLM off(src), M0, M3 \ + PERMUTE(BSWAP, v0, v1, v2, v3) \ + VX v0, M0, M0 \ + VX v1, M1, M1 \ + VX v2, M2, M2 \ + VX v3, M3, M3 \ + VSTM M0, M3, off(dst) + +#define SHUFFLE(a, b, c, d, t, u, v, w) \ + VMRHF a, c, t \ // t = {a[0], c[0], a[1], c[1]} + VMRHF b, d, u \ // u = {b[0], d[0], b[1], d[1]} + VMRLF a, c, v \ // v = {a[2], c[2], a[3], c[3]} + VMRLF b, d, w \ // w = {b[2], d[2], b[3], d[3]} + VMRHF t, u, a \ // a = {a[0], b[0], c[0], d[0]} + VMRLF t, u, b \ // b = {a[1], b[1], c[1], d[1]} + VMRHF v, w, c \ // c = {a[2], b[2], c[2], d[2]} + VMRLF v, w, d // d = {a[3], b[3], c[3], d[3]} + +// func xorKeyStreamVX(dst, src []byte, key *[8]uint32, nonce *[3]uint32, counter *uint32) +TEXT ·xorKeyStreamVX(SB), NOSPLIT, $0 + MOVD $·constants<>(SB), R1 + MOVD dst+0(FP), R2 // R2=&dst[0] + LMG src+24(FP), R3, R4 // R3=&src[0] R4=len(src) + MOVD key+48(FP), R5 // R5=key + MOVD nonce+56(FP), R6 // R6=nonce + MOVD counter+64(FP), R7 // R7=counter + + // load BSWAP and J0 + VLM (R1), BSWAP, J0 + + // setup + MOVD $95, R0 + VLM (R5), KEY0, KEY1 + VLL R0, (R6), NONCE + VZERO M0 + VLEIB $7, $32, M0 + VSRLB M0, NONCE, NONCE + + // initialize counter values + VLREPF (R7), CTR + VZERO INC + VLEIF $1, $1, INC + VLEIF $2, $2, INC + VLEIF $3, $3, INC + VAF INC, CTR, CTR + VREPIF $4, INC + +chacha: + VREPF $0, J0, X0 + VREPF $1, J0, X1 + VREPF $2, J0, X2 + VREPF $3, J0, X3 + VREPF $0, KEY0, X4 + VREPF $1, KEY0, X5 + VREPF $2, KEY0, X6 + VREPF $3, KEY0, X7 + VREPF $0, KEY1, X8 + VREPF $1, KEY1, X9 + VREPF $2, KEY1, X10 + VREPF $3, KEY1, X11 + VLR CTR, X12 + VREPF $1, NONCE, X13 + VREPF $2, NONCE, X14 + VREPF $3, NONCE, X15 + + MOVD $(NUM_ROUNDS/2), R1 + +loop: + ROUND4(X0, X4, X12, X8, X1, X5, X13, X9, X2, X6, X14, X10, X3, X7, X15, X11) + ROUND4(X0, X5, X15, X10, X1, X6, X12, X11, X2, X7, X13, X8, X3, X4, X14, X9) + + ADD $-1, R1 + BNE loop + + // decrement length + ADD $-256, R4 + + // rearrange vectors + SHUFFLE(X0, X1, X2, X3, M0, M1, M2, M3) + ADDV(J0, X0, X1, X2, X3) + SHUFFLE(X4, X5, X6, X7, M0, M1, M2, M3) + ADDV(KEY0, X4, X5, X6, X7) + SHUFFLE(X8, X9, X10, X11, M0, M1, M2, M3) + ADDV(KEY1, X8, X9, X10, X11) + VAF CTR, X12, X12 + SHUFFLE(X12, X13, X14, X15, M0, M1, M2, M3) + ADDV(NONCE, X12, X13, X14, X15) + + // increment counters + VAF INC, CTR, CTR + + // xor keystream with plaintext + XORV(0*64, R2, R3, X0, X4, X8, X12) + XORV(1*64, R2, R3, X1, X5, X9, X13) + XORV(2*64, R2, R3, X2, X6, X10, X14) + XORV(3*64, R2, R3, X3, X7, X11, X15) + + // increment pointers + MOVD $256(R2), R2 + MOVD $256(R3), R3 + + CMPBNE R4, $0, chacha + + VSTEF $0, CTR, (R7) + RET diff --git a/vendor/golang.org/x/crypto/chacha20/xor.go b/vendor/golang.org/x/crypto/chacha20/xor.go new file mode 100644 index 00000000..c2d04851 --- /dev/null +++ b/vendor/golang.org/x/crypto/chacha20/xor.go @@ -0,0 +1,42 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found src the LICENSE file. + +package chacha20 + +import "runtime" + +// Platforms that have fast unaligned 32-bit little endian accesses. +const unaligned = runtime.GOARCH == "386" || + runtime.GOARCH == "amd64" || + runtime.GOARCH == "arm64" || + runtime.GOARCH == "ppc64le" || + runtime.GOARCH == "s390x" + +// addXor reads a little endian uint32 from src, XORs it with (a + b) and +// places the result in little endian byte order in dst. +func addXor(dst, src []byte, a, b uint32) { + _, _ = src[3], dst[3] // bounds check elimination hint + if unaligned { + // The compiler should optimize this code into + // 32-bit unaligned little endian loads and stores. + // TODO: delete once the compiler does a reliably + // good job with the generic code below. + // See issue #25111 for more details. + v := uint32(src[0]) + v |= uint32(src[1]) << 8 + v |= uint32(src[2]) << 16 + v |= uint32(src[3]) << 24 + v ^= a + b + dst[0] = byte(v) + dst[1] = byte(v >> 8) + dst[2] = byte(v >> 16) + dst[3] = byte(v >> 24) + } else { + a += b + dst[0] = src[0] ^ byte(a) + dst[1] = src[1] ^ byte(a>>8) + dst[2] = src[2] ^ byte(a>>16) + dst[3] = src[3] ^ byte(a>>24) + } +} diff --git a/vendor/golang.org/x/crypto/curve25519/curve25519.go b/vendor/golang.org/x/crypto/curve25519/curve25519.go new file mode 100644 index 00000000..4b9a655d --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/curve25519.go @@ -0,0 +1,95 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package curve25519 provides an implementation of the X25519 function, which +// performs scalar multiplication on the elliptic curve known as Curve25519. +// See RFC 7748. +package curve25519 // import "golang.org/x/crypto/curve25519" + +import ( + "crypto/subtle" + "fmt" +) + +// ScalarMult sets dst to the product scalar * point. +// +// Deprecated: when provided a low-order point, ScalarMult will set dst to all +// zeroes, irrespective of the scalar. Instead, use the X25519 function, which +// will return an error. +func ScalarMult(dst, scalar, point *[32]byte) { + scalarMult(dst, scalar, point) +} + +// ScalarBaseMult sets dst to the product scalar * base where base is the +// standard generator. +// +// It is recommended to use the X25519 function with Basepoint instead, as +// copying into fixed size arrays can lead to unexpected bugs. +func ScalarBaseMult(dst, scalar *[32]byte) { + ScalarMult(dst, scalar, &basePoint) +} + +const ( + // ScalarSize is the size of the scalar input to X25519. + ScalarSize = 32 + // PointSize is the size of the point input to X25519. + PointSize = 32 +) + +// Basepoint is the canonical Curve25519 generator. +var Basepoint []byte + +var basePoint = [32]byte{9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} + +func init() { Basepoint = basePoint[:] } + +func checkBasepoint() { + if subtle.ConstantTimeCompare(Basepoint, []byte{ + 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + }) != 1 { + panic("curve25519: global Basepoint value was modified") + } +} + +// X25519 returns the result of the scalar multiplication (scalar * point), +// according to RFC 7748, Section 5. scalar, point and the return value are +// slices of 32 bytes. +// +// scalar can be generated at random, for example with crypto/rand. point should +// be either Basepoint or the output of another X25519 call. +// +// If point is Basepoint (but not if it's a different slice with the same +// contents) a precomputed implementation might be used for performance. +func X25519(scalar, point []byte) ([]byte, error) { + // Outline the body of function, to let the allocation be inlined in the + // caller, and possibly avoid escaping to the heap. + var dst [32]byte + return x25519(&dst, scalar, point) +} + +func x25519(dst *[32]byte, scalar, point []byte) ([]byte, error) { + var in [32]byte + if l := len(scalar); l != 32 { + return nil, fmt.Errorf("bad scalar length: %d, expected %d", l, 32) + } + if l := len(point); l != 32 { + return nil, fmt.Errorf("bad point length: %d, expected %d", l, 32) + } + copy(in[:], scalar) + if &point[0] == &Basepoint[0] { + checkBasepoint() + ScalarBaseMult(dst, &in) + } else { + var base, zero [32]byte + copy(base[:], point) + ScalarMult(dst, &in, &base) + if subtle.ConstantTimeCompare(dst[:], zero[:]) == 1 { + return nil, fmt.Errorf("bad input point: low order point") + } + } + return dst[:], nil +} diff --git a/vendor/golang.org/x/crypto/curve25519/curve25519_amd64.go b/vendor/golang.org/x/crypto/curve25519/curve25519_amd64.go new file mode 100644 index 00000000..5120b779 --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/curve25519_amd64.go @@ -0,0 +1,240 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build amd64,!gccgo,!appengine,!purego + +package curve25519 + +// These functions are implemented in the .s files. The names of the functions +// in the rest of the file are also taken from the SUPERCOP sources to help +// people following along. + +//go:noescape + +func cswap(inout *[5]uint64, v uint64) + +//go:noescape + +func ladderstep(inout *[5][5]uint64) + +//go:noescape + +func freeze(inout *[5]uint64) + +//go:noescape + +func mul(dest, a, b *[5]uint64) + +//go:noescape + +func square(out, in *[5]uint64) + +// mladder uses a Montgomery ladder to calculate (xr/zr) *= s. +func mladder(xr, zr *[5]uint64, s *[32]byte) { + var work [5][5]uint64 + + work[0] = *xr + setint(&work[1], 1) + setint(&work[2], 0) + work[3] = *xr + setint(&work[4], 1) + + j := uint(6) + var prevbit byte + + for i := 31; i >= 0; i-- { + for j < 8 { + bit := ((*s)[i] >> j) & 1 + swap := bit ^ prevbit + prevbit = bit + cswap(&work[1], uint64(swap)) + ladderstep(&work) + j-- + } + j = 7 + } + + *xr = work[1] + *zr = work[2] +} + +func scalarMult(out, in, base *[32]byte) { + var e [32]byte + copy(e[:], (*in)[:]) + e[0] &= 248 + e[31] &= 127 + e[31] |= 64 + + var t, z [5]uint64 + unpack(&t, base) + mladder(&t, &z, &e) + invert(&z, &z) + mul(&t, &t, &z) + pack(out, &t) +} + +func setint(r *[5]uint64, v uint64) { + r[0] = v + r[1] = 0 + r[2] = 0 + r[3] = 0 + r[4] = 0 +} + +// unpack sets r = x where r consists of 5, 51-bit limbs in little-endian +// order. +func unpack(r *[5]uint64, x *[32]byte) { + r[0] = uint64(x[0]) | + uint64(x[1])<<8 | + uint64(x[2])<<16 | + uint64(x[3])<<24 | + uint64(x[4])<<32 | + uint64(x[5])<<40 | + uint64(x[6]&7)<<48 + + r[1] = uint64(x[6])>>3 | + uint64(x[7])<<5 | + uint64(x[8])<<13 | + uint64(x[9])<<21 | + uint64(x[10])<<29 | + uint64(x[11])<<37 | + uint64(x[12]&63)<<45 + + r[2] = uint64(x[12])>>6 | + uint64(x[13])<<2 | + uint64(x[14])<<10 | + uint64(x[15])<<18 | + uint64(x[16])<<26 | + uint64(x[17])<<34 | + uint64(x[18])<<42 | + uint64(x[19]&1)<<50 + + r[3] = uint64(x[19])>>1 | + uint64(x[20])<<7 | + uint64(x[21])<<15 | + uint64(x[22])<<23 | + uint64(x[23])<<31 | + uint64(x[24])<<39 | + uint64(x[25]&15)<<47 + + r[4] = uint64(x[25])>>4 | + uint64(x[26])<<4 | + uint64(x[27])<<12 | + uint64(x[28])<<20 | + uint64(x[29])<<28 | + uint64(x[30])<<36 | + uint64(x[31]&127)<<44 +} + +// pack sets out = x where out is the usual, little-endian form of the 5, +// 51-bit limbs in x. +func pack(out *[32]byte, x *[5]uint64) { + t := *x + freeze(&t) + + out[0] = byte(t[0]) + out[1] = byte(t[0] >> 8) + out[2] = byte(t[0] >> 16) + out[3] = byte(t[0] >> 24) + out[4] = byte(t[0] >> 32) + out[5] = byte(t[0] >> 40) + out[6] = byte(t[0] >> 48) + + out[6] ^= byte(t[1]<<3) & 0xf8 + out[7] = byte(t[1] >> 5) + out[8] = byte(t[1] >> 13) + out[9] = byte(t[1] >> 21) + out[10] = byte(t[1] >> 29) + out[11] = byte(t[1] >> 37) + out[12] = byte(t[1] >> 45) + + out[12] ^= byte(t[2]<<6) & 0xc0 + out[13] = byte(t[2] >> 2) + out[14] = byte(t[2] >> 10) + out[15] = byte(t[2] >> 18) + out[16] = byte(t[2] >> 26) + out[17] = byte(t[2] >> 34) + out[18] = byte(t[2] >> 42) + out[19] = byte(t[2] >> 50) + + out[19] ^= byte(t[3]<<1) & 0xfe + out[20] = byte(t[3] >> 7) + out[21] = byte(t[3] >> 15) + out[22] = byte(t[3] >> 23) + out[23] = byte(t[3] >> 31) + out[24] = byte(t[3] >> 39) + out[25] = byte(t[3] >> 47) + + out[25] ^= byte(t[4]<<4) & 0xf0 + out[26] = byte(t[4] >> 4) + out[27] = byte(t[4] >> 12) + out[28] = byte(t[4] >> 20) + out[29] = byte(t[4] >> 28) + out[30] = byte(t[4] >> 36) + out[31] = byte(t[4] >> 44) +} + +// invert calculates r = x^-1 mod p using Fermat's little theorem. +func invert(r *[5]uint64, x *[5]uint64) { + var z2, z9, z11, z2_5_0, z2_10_0, z2_20_0, z2_50_0, z2_100_0, t [5]uint64 + + square(&z2, x) /* 2 */ + square(&t, &z2) /* 4 */ + square(&t, &t) /* 8 */ + mul(&z9, &t, x) /* 9 */ + mul(&z11, &z9, &z2) /* 11 */ + square(&t, &z11) /* 22 */ + mul(&z2_5_0, &t, &z9) /* 2^5 - 2^0 = 31 */ + + square(&t, &z2_5_0) /* 2^6 - 2^1 */ + for i := 1; i < 5; i++ { /* 2^20 - 2^10 */ + square(&t, &t) + } + mul(&z2_10_0, &t, &z2_5_0) /* 2^10 - 2^0 */ + + square(&t, &z2_10_0) /* 2^11 - 2^1 */ + for i := 1; i < 10; i++ { /* 2^20 - 2^10 */ + square(&t, &t) + } + mul(&z2_20_0, &t, &z2_10_0) /* 2^20 - 2^0 */ + + square(&t, &z2_20_0) /* 2^21 - 2^1 */ + for i := 1; i < 20; i++ { /* 2^40 - 2^20 */ + square(&t, &t) + } + mul(&t, &t, &z2_20_0) /* 2^40 - 2^0 */ + + square(&t, &t) /* 2^41 - 2^1 */ + for i := 1; i < 10; i++ { /* 2^50 - 2^10 */ + square(&t, &t) + } + mul(&z2_50_0, &t, &z2_10_0) /* 2^50 - 2^0 */ + + square(&t, &z2_50_0) /* 2^51 - 2^1 */ + for i := 1; i < 50; i++ { /* 2^100 - 2^50 */ + square(&t, &t) + } + mul(&z2_100_0, &t, &z2_50_0) /* 2^100 - 2^0 */ + + square(&t, &z2_100_0) /* 2^101 - 2^1 */ + for i := 1; i < 100; i++ { /* 2^200 - 2^100 */ + square(&t, &t) + } + mul(&t, &t, &z2_100_0) /* 2^200 - 2^0 */ + + square(&t, &t) /* 2^201 - 2^1 */ + for i := 1; i < 50; i++ { /* 2^250 - 2^50 */ + square(&t, &t) + } + mul(&t, &t, &z2_50_0) /* 2^250 - 2^0 */ + + square(&t, &t) /* 2^251 - 2^1 */ + square(&t, &t) /* 2^252 - 2^2 */ + square(&t, &t) /* 2^253 - 2^3 */ + + square(&t, &t) /* 2^254 - 2^4 */ + + square(&t, &t) /* 2^255 - 2^5 */ + mul(r, &t, &z11) /* 2^255 - 21 */ +} diff --git a/vendor/golang.org/x/crypto/curve25519/curve25519_amd64.s b/vendor/golang.org/x/crypto/curve25519/curve25519_amd64.s new file mode 100644 index 00000000..0250c888 --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/curve25519_amd64.s @@ -0,0 +1,1793 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo,!appengine,!purego + +#define REDMASK51 0x0007FFFFFFFFFFFF + +// These constants cannot be encoded in non-MOVQ immediates. +// We access them directly from memory instead. + +DATA ·_121666_213(SB)/8, $996687872 +GLOBL ·_121666_213(SB), 8, $8 + +DATA ·_2P0(SB)/8, $0xFFFFFFFFFFFDA +GLOBL ·_2P0(SB), 8, $8 + +DATA ·_2P1234(SB)/8, $0xFFFFFFFFFFFFE +GLOBL ·_2P1234(SB), 8, $8 + +// func freeze(inout *[5]uint64) +TEXT ·freeze(SB),7,$0-8 + MOVQ inout+0(FP), DI + + MOVQ 0(DI),SI + MOVQ 8(DI),DX + MOVQ 16(DI),CX + MOVQ 24(DI),R8 + MOVQ 32(DI),R9 + MOVQ $REDMASK51,AX + MOVQ AX,R10 + SUBQ $18,R10 + MOVQ $3,R11 +REDUCELOOP: + MOVQ SI,R12 + SHRQ $51,R12 + ANDQ AX,SI + ADDQ R12,DX + MOVQ DX,R12 + SHRQ $51,R12 + ANDQ AX,DX + ADDQ R12,CX + MOVQ CX,R12 + SHRQ $51,R12 + ANDQ AX,CX + ADDQ R12,R8 + MOVQ R8,R12 + SHRQ $51,R12 + ANDQ AX,R8 + ADDQ R12,R9 + MOVQ R9,R12 + SHRQ $51,R12 + ANDQ AX,R9 + IMUL3Q $19,R12,R12 + ADDQ R12,SI + SUBQ $1,R11 + JA REDUCELOOP + MOVQ $1,R12 + CMPQ R10,SI + CMOVQLT R11,R12 + CMPQ AX,DX + CMOVQNE R11,R12 + CMPQ AX,CX + CMOVQNE R11,R12 + CMPQ AX,R8 + CMOVQNE R11,R12 + CMPQ AX,R9 + CMOVQNE R11,R12 + NEGQ R12 + ANDQ R12,AX + ANDQ R12,R10 + SUBQ R10,SI + SUBQ AX,DX + SUBQ AX,CX + SUBQ AX,R8 + SUBQ AX,R9 + MOVQ SI,0(DI) + MOVQ DX,8(DI) + MOVQ CX,16(DI) + MOVQ R8,24(DI) + MOVQ R9,32(DI) + RET + +// func ladderstep(inout *[5][5]uint64) +TEXT ·ladderstep(SB),0,$296-8 + MOVQ inout+0(FP),DI + + MOVQ 40(DI),SI + MOVQ 48(DI),DX + MOVQ 56(DI),CX + MOVQ 64(DI),R8 + MOVQ 72(DI),R9 + MOVQ SI,AX + MOVQ DX,R10 + MOVQ CX,R11 + MOVQ R8,R12 + MOVQ R9,R13 + ADDQ ·_2P0(SB),AX + ADDQ ·_2P1234(SB),R10 + ADDQ ·_2P1234(SB),R11 + ADDQ ·_2P1234(SB),R12 + ADDQ ·_2P1234(SB),R13 + ADDQ 80(DI),SI + ADDQ 88(DI),DX + ADDQ 96(DI),CX + ADDQ 104(DI),R8 + ADDQ 112(DI),R9 + SUBQ 80(DI),AX + SUBQ 88(DI),R10 + SUBQ 96(DI),R11 + SUBQ 104(DI),R12 + SUBQ 112(DI),R13 + MOVQ SI,0(SP) + MOVQ DX,8(SP) + MOVQ CX,16(SP) + MOVQ R8,24(SP) + MOVQ R9,32(SP) + MOVQ AX,40(SP) + MOVQ R10,48(SP) + MOVQ R11,56(SP) + MOVQ R12,64(SP) + MOVQ R13,72(SP) + MOVQ 40(SP),AX + MULQ 40(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 40(SP),AX + SHLQ $1,AX + MULQ 48(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 40(SP),AX + SHLQ $1,AX + MULQ 56(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 40(SP),AX + SHLQ $1,AX + MULQ 64(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 40(SP),AX + SHLQ $1,AX + MULQ 72(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 48(SP),AX + MULQ 48(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 48(SP),AX + SHLQ $1,AX + MULQ 56(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 48(SP),AX + SHLQ $1,AX + MULQ 64(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 48(SP),DX + IMUL3Q $38,DX,AX + MULQ 72(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 56(SP),AX + MULQ 56(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 56(SP),DX + IMUL3Q $38,DX,AX + MULQ 64(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 56(SP),DX + IMUL3Q $38,DX,AX + MULQ 72(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 64(SP),DX + IMUL3Q $19,DX,AX + MULQ 64(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 64(SP),DX + IMUL3Q $38,DX,AX + MULQ 72(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 72(SP),DX + IMUL3Q $19,DX,AX + MULQ 72(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,SI,CX + ANDQ DX,SI + SHLQ $13,R8,R9 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R10,R11 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R12,R13 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R14,R15 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + ANDQ DX,SI + MOVQ CX,R8 + SHRQ $51,CX + ADDQ R10,CX + ANDQ DX,R8 + MOVQ CX,R9 + SHRQ $51,CX + ADDQ R12,CX + ANDQ DX,R9 + MOVQ CX,AX + SHRQ $51,CX + ADDQ R14,CX + ANDQ DX,AX + MOVQ CX,R10 + SHRQ $51,CX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,80(SP) + MOVQ R8,88(SP) + MOVQ R9,96(SP) + MOVQ AX,104(SP) + MOVQ R10,112(SP) + MOVQ 0(SP),AX + MULQ 0(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 0(SP),AX + SHLQ $1,AX + MULQ 8(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 0(SP),AX + SHLQ $1,AX + MULQ 16(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 0(SP),AX + SHLQ $1,AX + MULQ 24(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 0(SP),AX + SHLQ $1,AX + MULQ 32(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 8(SP),AX + MULQ 8(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SP),AX + SHLQ $1,AX + MULQ 16(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 8(SP),AX + SHLQ $1,AX + MULQ 24(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 8(SP),DX + IMUL3Q $38,DX,AX + MULQ 32(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 16(SP),AX + MULQ 16(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 16(SP),DX + IMUL3Q $38,DX,AX + MULQ 24(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 16(SP),DX + IMUL3Q $38,DX,AX + MULQ 32(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 24(SP),DX + IMUL3Q $19,DX,AX + MULQ 24(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 24(SP),DX + IMUL3Q $38,DX,AX + MULQ 32(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 32(SP),DX + IMUL3Q $19,DX,AX + MULQ 32(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,SI,CX + ANDQ DX,SI + SHLQ $13,R8,R9 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R10,R11 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R12,R13 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R14,R15 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + ANDQ DX,SI + MOVQ CX,R8 + SHRQ $51,CX + ADDQ R10,CX + ANDQ DX,R8 + MOVQ CX,R9 + SHRQ $51,CX + ADDQ R12,CX + ANDQ DX,R9 + MOVQ CX,AX + SHRQ $51,CX + ADDQ R14,CX + ANDQ DX,AX + MOVQ CX,R10 + SHRQ $51,CX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,120(SP) + MOVQ R8,128(SP) + MOVQ R9,136(SP) + MOVQ AX,144(SP) + MOVQ R10,152(SP) + MOVQ SI,SI + MOVQ R8,DX + MOVQ R9,CX + MOVQ AX,R8 + MOVQ R10,R9 + ADDQ ·_2P0(SB),SI + ADDQ ·_2P1234(SB),DX + ADDQ ·_2P1234(SB),CX + ADDQ ·_2P1234(SB),R8 + ADDQ ·_2P1234(SB),R9 + SUBQ 80(SP),SI + SUBQ 88(SP),DX + SUBQ 96(SP),CX + SUBQ 104(SP),R8 + SUBQ 112(SP),R9 + MOVQ SI,160(SP) + MOVQ DX,168(SP) + MOVQ CX,176(SP) + MOVQ R8,184(SP) + MOVQ R9,192(SP) + MOVQ 120(DI),SI + MOVQ 128(DI),DX + MOVQ 136(DI),CX + MOVQ 144(DI),R8 + MOVQ 152(DI),R9 + MOVQ SI,AX + MOVQ DX,R10 + MOVQ CX,R11 + MOVQ R8,R12 + MOVQ R9,R13 + ADDQ ·_2P0(SB),AX + ADDQ ·_2P1234(SB),R10 + ADDQ ·_2P1234(SB),R11 + ADDQ ·_2P1234(SB),R12 + ADDQ ·_2P1234(SB),R13 + ADDQ 160(DI),SI + ADDQ 168(DI),DX + ADDQ 176(DI),CX + ADDQ 184(DI),R8 + ADDQ 192(DI),R9 + SUBQ 160(DI),AX + SUBQ 168(DI),R10 + SUBQ 176(DI),R11 + SUBQ 184(DI),R12 + SUBQ 192(DI),R13 + MOVQ SI,200(SP) + MOVQ DX,208(SP) + MOVQ CX,216(SP) + MOVQ R8,224(SP) + MOVQ R9,232(SP) + MOVQ AX,240(SP) + MOVQ R10,248(SP) + MOVQ R11,256(SP) + MOVQ R12,264(SP) + MOVQ R13,272(SP) + MOVQ 224(SP),SI + IMUL3Q $19,SI,AX + MOVQ AX,280(SP) + MULQ 56(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 232(SP),DX + IMUL3Q $19,DX,AX + MOVQ AX,288(SP) + MULQ 48(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 200(SP),AX + MULQ 40(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 200(SP),AX + MULQ 48(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 200(SP),AX + MULQ 56(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 200(SP),AX + MULQ 64(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 200(SP),AX + MULQ 72(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 208(SP),AX + MULQ 40(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 208(SP),AX + MULQ 48(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 208(SP),AX + MULQ 56(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 208(SP),AX + MULQ 64(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 208(SP),DX + IMUL3Q $19,DX,AX + MULQ 72(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 216(SP),AX + MULQ 40(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 216(SP),AX + MULQ 48(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 216(SP),AX + MULQ 56(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 216(SP),DX + IMUL3Q $19,DX,AX + MULQ 64(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 216(SP),DX + IMUL3Q $19,DX,AX + MULQ 72(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 224(SP),AX + MULQ 40(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 224(SP),AX + MULQ 48(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 280(SP),AX + MULQ 64(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 280(SP),AX + MULQ 72(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 232(SP),AX + MULQ 40(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 288(SP),AX + MULQ 56(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 288(SP),AX + MULQ 64(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 288(SP),AX + MULQ 72(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,SI,CX + ANDQ DX,SI + SHLQ $13,R8,R9 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R10,R11 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R12,R13 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R14,R15 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,40(SP) + MOVQ R8,48(SP) + MOVQ R9,56(SP) + MOVQ AX,64(SP) + MOVQ R10,72(SP) + MOVQ 264(SP),SI + IMUL3Q $19,SI,AX + MOVQ AX,200(SP) + MULQ 16(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 272(SP),DX + IMUL3Q $19,DX,AX + MOVQ AX,208(SP) + MULQ 8(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 240(SP),AX + MULQ 0(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 240(SP),AX + MULQ 8(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 240(SP),AX + MULQ 16(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 240(SP),AX + MULQ 24(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 240(SP),AX + MULQ 32(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 248(SP),AX + MULQ 0(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 248(SP),AX + MULQ 8(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 248(SP),AX + MULQ 16(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 248(SP),AX + MULQ 24(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 248(SP),DX + IMUL3Q $19,DX,AX + MULQ 32(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 256(SP),AX + MULQ 0(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 256(SP),AX + MULQ 8(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 256(SP),AX + MULQ 16(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 256(SP),DX + IMUL3Q $19,DX,AX + MULQ 24(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 256(SP),DX + IMUL3Q $19,DX,AX + MULQ 32(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 264(SP),AX + MULQ 0(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 264(SP),AX + MULQ 8(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 200(SP),AX + MULQ 24(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 200(SP),AX + MULQ 32(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 272(SP),AX + MULQ 0(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 208(SP),AX + MULQ 16(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 208(SP),AX + MULQ 24(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 208(SP),AX + MULQ 32(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,SI,CX + ANDQ DX,SI + SHLQ $13,R8,R9 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R10,R11 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R12,R13 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R14,R15 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,DX + MOVQ R8,CX + MOVQ R9,R11 + MOVQ AX,R12 + MOVQ R10,R13 + ADDQ ·_2P0(SB),DX + ADDQ ·_2P1234(SB),CX + ADDQ ·_2P1234(SB),R11 + ADDQ ·_2P1234(SB),R12 + ADDQ ·_2P1234(SB),R13 + ADDQ 40(SP),SI + ADDQ 48(SP),R8 + ADDQ 56(SP),R9 + ADDQ 64(SP),AX + ADDQ 72(SP),R10 + SUBQ 40(SP),DX + SUBQ 48(SP),CX + SUBQ 56(SP),R11 + SUBQ 64(SP),R12 + SUBQ 72(SP),R13 + MOVQ SI,120(DI) + MOVQ R8,128(DI) + MOVQ R9,136(DI) + MOVQ AX,144(DI) + MOVQ R10,152(DI) + MOVQ DX,160(DI) + MOVQ CX,168(DI) + MOVQ R11,176(DI) + MOVQ R12,184(DI) + MOVQ R13,192(DI) + MOVQ 120(DI),AX + MULQ 120(DI) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 120(DI),AX + SHLQ $1,AX + MULQ 128(DI) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 120(DI),AX + SHLQ $1,AX + MULQ 136(DI) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 120(DI),AX + SHLQ $1,AX + MULQ 144(DI) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 120(DI),AX + SHLQ $1,AX + MULQ 152(DI) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 128(DI),AX + MULQ 128(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 128(DI),AX + SHLQ $1,AX + MULQ 136(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 128(DI),AX + SHLQ $1,AX + MULQ 144(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 128(DI),DX + IMUL3Q $38,DX,AX + MULQ 152(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 136(DI),AX + MULQ 136(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 136(DI),DX + IMUL3Q $38,DX,AX + MULQ 144(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 136(DI),DX + IMUL3Q $38,DX,AX + MULQ 152(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 144(DI),DX + IMUL3Q $19,DX,AX + MULQ 144(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 144(DI),DX + IMUL3Q $38,DX,AX + MULQ 152(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 152(DI),DX + IMUL3Q $19,DX,AX + MULQ 152(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,SI,CX + ANDQ DX,SI + SHLQ $13,R8,R9 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R10,R11 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R12,R13 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R14,R15 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + ANDQ DX,SI + MOVQ CX,R8 + SHRQ $51,CX + ADDQ R10,CX + ANDQ DX,R8 + MOVQ CX,R9 + SHRQ $51,CX + ADDQ R12,CX + ANDQ DX,R9 + MOVQ CX,AX + SHRQ $51,CX + ADDQ R14,CX + ANDQ DX,AX + MOVQ CX,R10 + SHRQ $51,CX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,120(DI) + MOVQ R8,128(DI) + MOVQ R9,136(DI) + MOVQ AX,144(DI) + MOVQ R10,152(DI) + MOVQ 160(DI),AX + MULQ 160(DI) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 160(DI),AX + SHLQ $1,AX + MULQ 168(DI) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 160(DI),AX + SHLQ $1,AX + MULQ 176(DI) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 160(DI),AX + SHLQ $1,AX + MULQ 184(DI) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 160(DI),AX + SHLQ $1,AX + MULQ 192(DI) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 168(DI),AX + MULQ 168(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 168(DI),AX + SHLQ $1,AX + MULQ 176(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 168(DI),AX + SHLQ $1,AX + MULQ 184(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 168(DI),DX + IMUL3Q $38,DX,AX + MULQ 192(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(DI),AX + MULQ 176(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 176(DI),DX + IMUL3Q $38,DX,AX + MULQ 184(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(DI),DX + IMUL3Q $38,DX,AX + MULQ 192(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 184(DI),DX + IMUL3Q $19,DX,AX + MULQ 184(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 184(DI),DX + IMUL3Q $38,DX,AX + MULQ 192(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 192(DI),DX + IMUL3Q $19,DX,AX + MULQ 192(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,SI,CX + ANDQ DX,SI + SHLQ $13,R8,R9 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R10,R11 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R12,R13 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R14,R15 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + ANDQ DX,SI + MOVQ CX,R8 + SHRQ $51,CX + ADDQ R10,CX + ANDQ DX,R8 + MOVQ CX,R9 + SHRQ $51,CX + ADDQ R12,CX + ANDQ DX,R9 + MOVQ CX,AX + SHRQ $51,CX + ADDQ R14,CX + ANDQ DX,AX + MOVQ CX,R10 + SHRQ $51,CX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,160(DI) + MOVQ R8,168(DI) + MOVQ R9,176(DI) + MOVQ AX,184(DI) + MOVQ R10,192(DI) + MOVQ 184(DI),SI + IMUL3Q $19,SI,AX + MOVQ AX,0(SP) + MULQ 16(DI) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 192(DI),DX + IMUL3Q $19,DX,AX + MOVQ AX,8(SP) + MULQ 8(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 160(DI),AX + MULQ 0(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 160(DI),AX + MULQ 8(DI) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 160(DI),AX + MULQ 16(DI) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 160(DI),AX + MULQ 24(DI) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 160(DI),AX + MULQ 32(DI) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 168(DI),AX + MULQ 0(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 168(DI),AX + MULQ 8(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 168(DI),AX + MULQ 16(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 168(DI),AX + MULQ 24(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 168(DI),DX + IMUL3Q $19,DX,AX + MULQ 32(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(DI),AX + MULQ 0(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 176(DI),AX + MULQ 8(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 176(DI),AX + MULQ 16(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 176(DI),DX + IMUL3Q $19,DX,AX + MULQ 24(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(DI),DX + IMUL3Q $19,DX,AX + MULQ 32(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 184(DI),AX + MULQ 0(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 184(DI),AX + MULQ 8(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 0(SP),AX + MULQ 24(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 0(SP),AX + MULQ 32(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 192(DI),AX + MULQ 0(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 8(SP),AX + MULQ 16(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 8(SP),AX + MULQ 24(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SP),AX + MULQ 32(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,SI,CX + ANDQ DX,SI + SHLQ $13,R8,R9 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R10,R11 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R12,R13 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R14,R15 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,160(DI) + MOVQ R8,168(DI) + MOVQ R9,176(DI) + MOVQ AX,184(DI) + MOVQ R10,192(DI) + MOVQ 144(SP),SI + IMUL3Q $19,SI,AX + MOVQ AX,0(SP) + MULQ 96(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 152(SP),DX + IMUL3Q $19,DX,AX + MOVQ AX,8(SP) + MULQ 88(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 120(SP),AX + MULQ 80(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 120(SP),AX + MULQ 88(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 120(SP),AX + MULQ 96(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 120(SP),AX + MULQ 104(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 120(SP),AX + MULQ 112(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 128(SP),AX + MULQ 80(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 128(SP),AX + MULQ 88(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 128(SP),AX + MULQ 96(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 128(SP),AX + MULQ 104(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 128(SP),DX + IMUL3Q $19,DX,AX + MULQ 112(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 136(SP),AX + MULQ 80(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 136(SP),AX + MULQ 88(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 136(SP),AX + MULQ 96(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 136(SP),DX + IMUL3Q $19,DX,AX + MULQ 104(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 136(SP),DX + IMUL3Q $19,DX,AX + MULQ 112(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 144(SP),AX + MULQ 80(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 144(SP),AX + MULQ 88(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 0(SP),AX + MULQ 104(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 0(SP),AX + MULQ 112(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 152(SP),AX + MULQ 80(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 8(SP),AX + MULQ 96(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 8(SP),AX + MULQ 104(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SP),AX + MULQ 112(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,SI,CX + ANDQ DX,SI + SHLQ $13,R8,R9 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R10,R11 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R12,R13 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R14,R15 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,40(DI) + MOVQ R8,48(DI) + MOVQ R9,56(DI) + MOVQ AX,64(DI) + MOVQ R10,72(DI) + MOVQ 160(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + MOVQ AX,SI + MOVQ DX,CX + MOVQ 168(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + ADDQ AX,CX + MOVQ DX,R8 + MOVQ 176(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + ADDQ AX,R8 + MOVQ DX,R9 + MOVQ 184(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + ADDQ AX,R9 + MOVQ DX,R10 + MOVQ 192(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + ADDQ AX,R10 + IMUL3Q $19,DX,DX + ADDQ DX,SI + ADDQ 80(SP),SI + ADDQ 88(SP),CX + ADDQ 96(SP),R8 + ADDQ 104(SP),R9 + ADDQ 112(SP),R10 + MOVQ SI,80(DI) + MOVQ CX,88(DI) + MOVQ R8,96(DI) + MOVQ R9,104(DI) + MOVQ R10,112(DI) + MOVQ 104(DI),SI + IMUL3Q $19,SI,AX + MOVQ AX,0(SP) + MULQ 176(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 112(DI),DX + IMUL3Q $19,DX,AX + MOVQ AX,8(SP) + MULQ 168(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 80(DI),AX + MULQ 160(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 80(DI),AX + MULQ 168(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 80(DI),AX + MULQ 176(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 80(DI),AX + MULQ 184(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 80(DI),AX + MULQ 192(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 88(DI),AX + MULQ 160(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 88(DI),AX + MULQ 168(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 88(DI),AX + MULQ 176(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 88(DI),AX + MULQ 184(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 88(DI),DX + IMUL3Q $19,DX,AX + MULQ 192(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 96(DI),AX + MULQ 160(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 96(DI),AX + MULQ 168(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 96(DI),AX + MULQ 176(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 96(DI),DX + IMUL3Q $19,DX,AX + MULQ 184(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 96(DI),DX + IMUL3Q $19,DX,AX + MULQ 192(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 104(DI),AX + MULQ 160(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 104(DI),AX + MULQ 168(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 0(SP),AX + MULQ 184(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 0(SP),AX + MULQ 192(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 112(DI),AX + MULQ 160(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 8(SP),AX + MULQ 176(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 8(SP),AX + MULQ 184(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SP),AX + MULQ 192(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,SI,CX + ANDQ DX,SI + SHLQ $13,R8,R9 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R10,R11 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R12,R13 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R14,R15 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,80(DI) + MOVQ R8,88(DI) + MOVQ R9,96(DI) + MOVQ AX,104(DI) + MOVQ R10,112(DI) + RET + +// func cswap(inout *[4][5]uint64, v uint64) +TEXT ·cswap(SB),7,$0 + MOVQ inout+0(FP),DI + MOVQ v+8(FP),SI + + SUBQ $1, SI + NOTQ SI + MOVQ SI, X15 + PSHUFD $0x44, X15, X15 + + MOVOU 0(DI), X0 + MOVOU 16(DI), X2 + MOVOU 32(DI), X4 + MOVOU 48(DI), X6 + MOVOU 64(DI), X8 + MOVOU 80(DI), X1 + MOVOU 96(DI), X3 + MOVOU 112(DI), X5 + MOVOU 128(DI), X7 + MOVOU 144(DI), X9 + + MOVO X1, X10 + MOVO X3, X11 + MOVO X5, X12 + MOVO X7, X13 + MOVO X9, X14 + + PXOR X0, X10 + PXOR X2, X11 + PXOR X4, X12 + PXOR X6, X13 + PXOR X8, X14 + PAND X15, X10 + PAND X15, X11 + PAND X15, X12 + PAND X15, X13 + PAND X15, X14 + PXOR X10, X0 + PXOR X10, X1 + PXOR X11, X2 + PXOR X11, X3 + PXOR X12, X4 + PXOR X12, X5 + PXOR X13, X6 + PXOR X13, X7 + PXOR X14, X8 + PXOR X14, X9 + + MOVOU X0, 0(DI) + MOVOU X2, 16(DI) + MOVOU X4, 32(DI) + MOVOU X6, 48(DI) + MOVOU X8, 64(DI) + MOVOU X1, 80(DI) + MOVOU X3, 96(DI) + MOVOU X5, 112(DI) + MOVOU X7, 128(DI) + MOVOU X9, 144(DI) + RET + +// func mul(dest, a, b *[5]uint64) +TEXT ·mul(SB),0,$16-24 + MOVQ dest+0(FP), DI + MOVQ a+8(FP), SI + MOVQ b+16(FP), DX + + MOVQ DX,CX + MOVQ 24(SI),DX + IMUL3Q $19,DX,AX + MOVQ AX,0(SP) + MULQ 16(CX) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 32(SI),DX + IMUL3Q $19,DX,AX + MOVQ AX,8(SP) + MULQ 8(CX) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 0(SI),AX + MULQ 0(CX) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 0(SI),AX + MULQ 8(CX) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 0(SI),AX + MULQ 16(CX) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 0(SI),AX + MULQ 24(CX) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 0(SI),AX + MULQ 32(CX) + MOVQ AX,BX + MOVQ DX,BP + MOVQ 8(SI),AX + MULQ 0(CX) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SI),AX + MULQ 8(CX) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 8(SI),AX + MULQ 16(CX) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 8(SI),AX + MULQ 24(CX) + ADDQ AX,BX + ADCQ DX,BP + MOVQ 8(SI),DX + IMUL3Q $19,DX,AX + MULQ 32(CX) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 16(SI),AX + MULQ 0(CX) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 16(SI),AX + MULQ 8(CX) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 16(SI),AX + MULQ 16(CX) + ADDQ AX,BX + ADCQ DX,BP + MOVQ 16(SI),DX + IMUL3Q $19,DX,AX + MULQ 24(CX) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 16(SI),DX + IMUL3Q $19,DX,AX + MULQ 32(CX) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 24(SI),AX + MULQ 0(CX) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 24(SI),AX + MULQ 8(CX) + ADDQ AX,BX + ADCQ DX,BP + MOVQ 0(SP),AX + MULQ 24(CX) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 0(SP),AX + MULQ 32(CX) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 32(SI),AX + MULQ 0(CX) + ADDQ AX,BX + ADCQ DX,BP + MOVQ 8(SP),AX + MULQ 16(CX) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SP),AX + MULQ 24(CX) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 8(SP),AX + MULQ 32(CX) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ $REDMASK51,SI + SHLQ $13,R8,R9 + ANDQ SI,R8 + SHLQ $13,R10,R11 + ANDQ SI,R10 + ADDQ R9,R10 + SHLQ $13,R12,R13 + ANDQ SI,R12 + ADDQ R11,R12 + SHLQ $13,R14,R15 + ANDQ SI,R14 + ADDQ R13,R14 + SHLQ $13,BX,BP + ANDQ SI,BX + ADDQ R15,BX + IMUL3Q $19,BP,DX + ADDQ DX,R8 + MOVQ R8,DX + SHRQ $51,DX + ADDQ R10,DX + MOVQ DX,CX + SHRQ $51,DX + ANDQ SI,R8 + ADDQ R12,DX + MOVQ DX,R9 + SHRQ $51,DX + ANDQ SI,CX + ADDQ R14,DX + MOVQ DX,AX + SHRQ $51,DX + ANDQ SI,R9 + ADDQ BX,DX + MOVQ DX,R10 + SHRQ $51,DX + ANDQ SI,AX + IMUL3Q $19,DX,DX + ADDQ DX,R8 + ANDQ SI,R10 + MOVQ R8,0(DI) + MOVQ CX,8(DI) + MOVQ R9,16(DI) + MOVQ AX,24(DI) + MOVQ R10,32(DI) + RET + +// func square(out, in *[5]uint64) +TEXT ·square(SB),7,$0-16 + MOVQ out+0(FP), DI + MOVQ in+8(FP), SI + + MOVQ 0(SI),AX + MULQ 0(SI) + MOVQ AX,CX + MOVQ DX,R8 + MOVQ 0(SI),AX + SHLQ $1,AX + MULQ 8(SI) + MOVQ AX,R9 + MOVQ DX,R10 + MOVQ 0(SI),AX + SHLQ $1,AX + MULQ 16(SI) + MOVQ AX,R11 + MOVQ DX,R12 + MOVQ 0(SI),AX + SHLQ $1,AX + MULQ 24(SI) + MOVQ AX,R13 + MOVQ DX,R14 + MOVQ 0(SI),AX + SHLQ $1,AX + MULQ 32(SI) + MOVQ AX,R15 + MOVQ DX,BX + MOVQ 8(SI),AX + MULQ 8(SI) + ADDQ AX,R11 + ADCQ DX,R12 + MOVQ 8(SI),AX + SHLQ $1,AX + MULQ 16(SI) + ADDQ AX,R13 + ADCQ DX,R14 + MOVQ 8(SI),AX + SHLQ $1,AX + MULQ 24(SI) + ADDQ AX,R15 + ADCQ DX,BX + MOVQ 8(SI),DX + IMUL3Q $38,DX,AX + MULQ 32(SI) + ADDQ AX,CX + ADCQ DX,R8 + MOVQ 16(SI),AX + MULQ 16(SI) + ADDQ AX,R15 + ADCQ DX,BX + MOVQ 16(SI),DX + IMUL3Q $38,DX,AX + MULQ 24(SI) + ADDQ AX,CX + ADCQ DX,R8 + MOVQ 16(SI),DX + IMUL3Q $38,DX,AX + MULQ 32(SI) + ADDQ AX,R9 + ADCQ DX,R10 + MOVQ 24(SI),DX + IMUL3Q $19,DX,AX + MULQ 24(SI) + ADDQ AX,R9 + ADCQ DX,R10 + MOVQ 24(SI),DX + IMUL3Q $38,DX,AX + MULQ 32(SI) + ADDQ AX,R11 + ADCQ DX,R12 + MOVQ 32(SI),DX + IMUL3Q $19,DX,AX + MULQ 32(SI) + ADDQ AX,R13 + ADCQ DX,R14 + MOVQ $REDMASK51,SI + SHLQ $13,CX,R8 + ANDQ SI,CX + SHLQ $13,R9,R10 + ANDQ SI,R9 + ADDQ R8,R9 + SHLQ $13,R11,R12 + ANDQ SI,R11 + ADDQ R10,R11 + SHLQ $13,R13,R14 + ANDQ SI,R13 + ADDQ R12,R13 + SHLQ $13,R15,BX + ANDQ SI,R15 + ADDQ R14,R15 + IMUL3Q $19,BX,DX + ADDQ DX,CX + MOVQ CX,DX + SHRQ $51,DX + ADDQ R9,DX + ANDQ SI,CX + MOVQ DX,R8 + SHRQ $51,DX + ADDQ R11,DX + ANDQ SI,R8 + MOVQ DX,R9 + SHRQ $51,DX + ADDQ R13,DX + ANDQ SI,R9 + MOVQ DX,AX + SHRQ $51,DX + ADDQ R15,DX + ANDQ SI,AX + MOVQ DX,R10 + SHRQ $51,DX + IMUL3Q $19,DX,DX + ADDQ DX,CX + ANDQ SI,R10 + MOVQ CX,0(DI) + MOVQ R8,8(DI) + MOVQ R9,16(DI) + MOVQ AX,24(DI) + MOVQ R10,32(DI) + RET diff --git a/vendor/golang.org/x/crypto/curve25519/curve25519_generic.go b/vendor/golang.org/x/crypto/curve25519/curve25519_generic.go new file mode 100644 index 00000000..c43b13fc --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/curve25519_generic.go @@ -0,0 +1,828 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package curve25519 + +import "encoding/binary" + +// This code is a port of the public domain, "ref10" implementation of +// curve25519 from SUPERCOP 20130419 by D. J. Bernstein. + +// fieldElement represents an element of the field GF(2^255 - 19). An element +// t, entries t[0]...t[9], represents the integer t[0]+2^26 t[1]+2^51 t[2]+2^77 +// t[3]+2^102 t[4]+...+2^230 t[9]. Bounds on each t[i] vary depending on +// context. +type fieldElement [10]int32 + +func feZero(fe *fieldElement) { + for i := range fe { + fe[i] = 0 + } +} + +func feOne(fe *fieldElement) { + feZero(fe) + fe[0] = 1 +} + +func feAdd(dst, a, b *fieldElement) { + for i := range dst { + dst[i] = a[i] + b[i] + } +} + +func feSub(dst, a, b *fieldElement) { + for i := range dst { + dst[i] = a[i] - b[i] + } +} + +func feCopy(dst, src *fieldElement) { + for i := range dst { + dst[i] = src[i] + } +} + +// feCSwap replaces (f,g) with (g,f) if b == 1; replaces (f,g) with (f,g) if b == 0. +// +// Preconditions: b in {0,1}. +func feCSwap(f, g *fieldElement, b int32) { + b = -b + for i := range f { + t := b & (f[i] ^ g[i]) + f[i] ^= t + g[i] ^= t + } +} + +// load3 reads a 24-bit, little-endian value from in. +func load3(in []byte) int64 { + var r int64 + r = int64(in[0]) + r |= int64(in[1]) << 8 + r |= int64(in[2]) << 16 + return r +} + +// load4 reads a 32-bit, little-endian value from in. +func load4(in []byte) int64 { + return int64(binary.LittleEndian.Uint32(in)) +} + +func feFromBytes(dst *fieldElement, src *[32]byte) { + h0 := load4(src[:]) + h1 := load3(src[4:]) << 6 + h2 := load3(src[7:]) << 5 + h3 := load3(src[10:]) << 3 + h4 := load3(src[13:]) << 2 + h5 := load4(src[16:]) + h6 := load3(src[20:]) << 7 + h7 := load3(src[23:]) << 5 + h8 := load3(src[26:]) << 4 + h9 := (load3(src[29:]) & 0x7fffff) << 2 + + var carry [10]int64 + carry[9] = (h9 + 1<<24) >> 25 + h0 += carry[9] * 19 + h9 -= carry[9] << 25 + carry[1] = (h1 + 1<<24) >> 25 + h2 += carry[1] + h1 -= carry[1] << 25 + carry[3] = (h3 + 1<<24) >> 25 + h4 += carry[3] + h3 -= carry[3] << 25 + carry[5] = (h5 + 1<<24) >> 25 + h6 += carry[5] + h5 -= carry[5] << 25 + carry[7] = (h7 + 1<<24) >> 25 + h8 += carry[7] + h7 -= carry[7] << 25 + + carry[0] = (h0 + 1<<25) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + carry[2] = (h2 + 1<<25) >> 26 + h3 += carry[2] + h2 -= carry[2] << 26 + carry[4] = (h4 + 1<<25) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + carry[6] = (h6 + 1<<25) >> 26 + h7 += carry[6] + h6 -= carry[6] << 26 + carry[8] = (h8 + 1<<25) >> 26 + h9 += carry[8] + h8 -= carry[8] << 26 + + dst[0] = int32(h0) + dst[1] = int32(h1) + dst[2] = int32(h2) + dst[3] = int32(h3) + dst[4] = int32(h4) + dst[5] = int32(h5) + dst[6] = int32(h6) + dst[7] = int32(h7) + dst[8] = int32(h8) + dst[9] = int32(h9) +} + +// feToBytes marshals h to s. +// Preconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +// +// Write p=2^255-19; q=floor(h/p). +// Basic claim: q = floor(2^(-255)(h + 19 2^(-25)h9 + 2^(-1))). +// +// Proof: +// Have |h|<=p so |q|<=1 so |19^2 2^(-255) q|<1/4. +// Also have |h-2^230 h9|<2^230 so |19 2^(-255)(h-2^230 h9)|<1/4. +// +// Write y=2^(-1)-19^2 2^(-255)q-19 2^(-255)(h-2^230 h9). +// Then 0> 25 + q = (h[0] + q) >> 26 + q = (h[1] + q) >> 25 + q = (h[2] + q) >> 26 + q = (h[3] + q) >> 25 + q = (h[4] + q) >> 26 + q = (h[5] + q) >> 25 + q = (h[6] + q) >> 26 + q = (h[7] + q) >> 25 + q = (h[8] + q) >> 26 + q = (h[9] + q) >> 25 + + // Goal: Output h-(2^255-19)q, which is between 0 and 2^255-20. + h[0] += 19 * q + // Goal: Output h-2^255 q, which is between 0 and 2^255-20. + + carry[0] = h[0] >> 26 + h[1] += carry[0] + h[0] -= carry[0] << 26 + carry[1] = h[1] >> 25 + h[2] += carry[1] + h[1] -= carry[1] << 25 + carry[2] = h[2] >> 26 + h[3] += carry[2] + h[2] -= carry[2] << 26 + carry[3] = h[3] >> 25 + h[4] += carry[3] + h[3] -= carry[3] << 25 + carry[4] = h[4] >> 26 + h[5] += carry[4] + h[4] -= carry[4] << 26 + carry[5] = h[5] >> 25 + h[6] += carry[5] + h[5] -= carry[5] << 25 + carry[6] = h[6] >> 26 + h[7] += carry[6] + h[6] -= carry[6] << 26 + carry[7] = h[7] >> 25 + h[8] += carry[7] + h[7] -= carry[7] << 25 + carry[8] = h[8] >> 26 + h[9] += carry[8] + h[8] -= carry[8] << 26 + carry[9] = h[9] >> 25 + h[9] -= carry[9] << 25 + // h10 = carry9 + + // Goal: Output h[0]+...+2^255 h10-2^255 q, which is between 0 and 2^255-20. + // Have h[0]+...+2^230 h[9] between 0 and 2^255-1; + // evidently 2^255 h10-2^255 q = 0. + // Goal: Output h[0]+...+2^230 h[9]. + + s[0] = byte(h[0] >> 0) + s[1] = byte(h[0] >> 8) + s[2] = byte(h[0] >> 16) + s[3] = byte((h[0] >> 24) | (h[1] << 2)) + s[4] = byte(h[1] >> 6) + s[5] = byte(h[1] >> 14) + s[6] = byte((h[1] >> 22) | (h[2] << 3)) + s[7] = byte(h[2] >> 5) + s[8] = byte(h[2] >> 13) + s[9] = byte((h[2] >> 21) | (h[3] << 5)) + s[10] = byte(h[3] >> 3) + s[11] = byte(h[3] >> 11) + s[12] = byte((h[3] >> 19) | (h[4] << 6)) + s[13] = byte(h[4] >> 2) + s[14] = byte(h[4] >> 10) + s[15] = byte(h[4] >> 18) + s[16] = byte(h[5] >> 0) + s[17] = byte(h[5] >> 8) + s[18] = byte(h[5] >> 16) + s[19] = byte((h[5] >> 24) | (h[6] << 1)) + s[20] = byte(h[6] >> 7) + s[21] = byte(h[6] >> 15) + s[22] = byte((h[6] >> 23) | (h[7] << 3)) + s[23] = byte(h[7] >> 5) + s[24] = byte(h[7] >> 13) + s[25] = byte((h[7] >> 21) | (h[8] << 4)) + s[26] = byte(h[8] >> 4) + s[27] = byte(h[8] >> 12) + s[28] = byte((h[8] >> 20) | (h[9] << 6)) + s[29] = byte(h[9] >> 2) + s[30] = byte(h[9] >> 10) + s[31] = byte(h[9] >> 18) +} + +// feMul calculates h = f * g +// Can overlap h with f or g. +// +// Preconditions: +// |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// |g| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// +// Postconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +// +// Notes on implementation strategy: +// +// Using schoolbook multiplication. +// Karatsuba would save a little in some cost models. +// +// Most multiplications by 2 and 19 are 32-bit precomputations; +// cheaper than 64-bit postcomputations. +// +// There is one remaining multiplication by 19 in the carry chain; +// one *19 precomputation can be merged into this, +// but the resulting data flow is considerably less clean. +// +// There are 12 carries below. +// 10 of them are 2-way parallelizable and vectorizable. +// Can get away with 11 carries, but then data flow is much deeper. +// +// With tighter constraints on inputs can squeeze carries into int32. +func feMul(h, f, g *fieldElement) { + f0 := f[0] + f1 := f[1] + f2 := f[2] + f3 := f[3] + f4 := f[4] + f5 := f[5] + f6 := f[6] + f7 := f[7] + f8 := f[8] + f9 := f[9] + g0 := g[0] + g1 := g[1] + g2 := g[2] + g3 := g[3] + g4 := g[4] + g5 := g[5] + g6 := g[6] + g7 := g[7] + g8 := g[8] + g9 := g[9] + g1_19 := 19 * g1 // 1.4*2^29 + g2_19 := 19 * g2 // 1.4*2^30; still ok + g3_19 := 19 * g3 + g4_19 := 19 * g4 + g5_19 := 19 * g5 + g6_19 := 19 * g6 + g7_19 := 19 * g7 + g8_19 := 19 * g8 + g9_19 := 19 * g9 + f1_2 := 2 * f1 + f3_2 := 2 * f3 + f5_2 := 2 * f5 + f7_2 := 2 * f7 + f9_2 := 2 * f9 + f0g0 := int64(f0) * int64(g0) + f0g1 := int64(f0) * int64(g1) + f0g2 := int64(f0) * int64(g2) + f0g3 := int64(f0) * int64(g3) + f0g4 := int64(f0) * int64(g4) + f0g5 := int64(f0) * int64(g5) + f0g6 := int64(f0) * int64(g6) + f0g7 := int64(f0) * int64(g7) + f0g8 := int64(f0) * int64(g8) + f0g9 := int64(f0) * int64(g9) + f1g0 := int64(f1) * int64(g0) + f1g1_2 := int64(f1_2) * int64(g1) + f1g2 := int64(f1) * int64(g2) + f1g3_2 := int64(f1_2) * int64(g3) + f1g4 := int64(f1) * int64(g4) + f1g5_2 := int64(f1_2) * int64(g5) + f1g6 := int64(f1) * int64(g6) + f1g7_2 := int64(f1_2) * int64(g7) + f1g8 := int64(f1) * int64(g8) + f1g9_38 := int64(f1_2) * int64(g9_19) + f2g0 := int64(f2) * int64(g0) + f2g1 := int64(f2) * int64(g1) + f2g2 := int64(f2) * int64(g2) + f2g3 := int64(f2) * int64(g3) + f2g4 := int64(f2) * int64(g4) + f2g5 := int64(f2) * int64(g5) + f2g6 := int64(f2) * int64(g6) + f2g7 := int64(f2) * int64(g7) + f2g8_19 := int64(f2) * int64(g8_19) + f2g9_19 := int64(f2) * int64(g9_19) + f3g0 := int64(f3) * int64(g0) + f3g1_2 := int64(f3_2) * int64(g1) + f3g2 := int64(f3) * int64(g2) + f3g3_2 := int64(f3_2) * int64(g3) + f3g4 := int64(f3) * int64(g4) + f3g5_2 := int64(f3_2) * int64(g5) + f3g6 := int64(f3) * int64(g6) + f3g7_38 := int64(f3_2) * int64(g7_19) + f3g8_19 := int64(f3) * int64(g8_19) + f3g9_38 := int64(f3_2) * int64(g9_19) + f4g0 := int64(f4) * int64(g0) + f4g1 := int64(f4) * int64(g1) + f4g2 := int64(f4) * int64(g2) + f4g3 := int64(f4) * int64(g3) + f4g4 := int64(f4) * int64(g4) + f4g5 := int64(f4) * int64(g5) + f4g6_19 := int64(f4) * int64(g6_19) + f4g7_19 := int64(f4) * int64(g7_19) + f4g8_19 := int64(f4) * int64(g8_19) + f4g9_19 := int64(f4) * int64(g9_19) + f5g0 := int64(f5) * int64(g0) + f5g1_2 := int64(f5_2) * int64(g1) + f5g2 := int64(f5) * int64(g2) + f5g3_2 := int64(f5_2) * int64(g3) + f5g4 := int64(f5) * int64(g4) + f5g5_38 := int64(f5_2) * int64(g5_19) + f5g6_19 := int64(f5) * int64(g6_19) + f5g7_38 := int64(f5_2) * int64(g7_19) + f5g8_19 := int64(f5) * int64(g8_19) + f5g9_38 := int64(f5_2) * int64(g9_19) + f6g0 := int64(f6) * int64(g0) + f6g1 := int64(f6) * int64(g1) + f6g2 := int64(f6) * int64(g2) + f6g3 := int64(f6) * int64(g3) + f6g4_19 := int64(f6) * int64(g4_19) + f6g5_19 := int64(f6) * int64(g5_19) + f6g6_19 := int64(f6) * int64(g6_19) + f6g7_19 := int64(f6) * int64(g7_19) + f6g8_19 := int64(f6) * int64(g8_19) + f6g9_19 := int64(f6) * int64(g9_19) + f7g0 := int64(f7) * int64(g0) + f7g1_2 := int64(f7_2) * int64(g1) + f7g2 := int64(f7) * int64(g2) + f7g3_38 := int64(f7_2) * int64(g3_19) + f7g4_19 := int64(f7) * int64(g4_19) + f7g5_38 := int64(f7_2) * int64(g5_19) + f7g6_19 := int64(f7) * int64(g6_19) + f7g7_38 := int64(f7_2) * int64(g7_19) + f7g8_19 := int64(f7) * int64(g8_19) + f7g9_38 := int64(f7_2) * int64(g9_19) + f8g0 := int64(f8) * int64(g0) + f8g1 := int64(f8) * int64(g1) + f8g2_19 := int64(f8) * int64(g2_19) + f8g3_19 := int64(f8) * int64(g3_19) + f8g4_19 := int64(f8) * int64(g4_19) + f8g5_19 := int64(f8) * int64(g5_19) + f8g6_19 := int64(f8) * int64(g6_19) + f8g7_19 := int64(f8) * int64(g7_19) + f8g8_19 := int64(f8) * int64(g8_19) + f8g9_19 := int64(f8) * int64(g9_19) + f9g0 := int64(f9) * int64(g0) + f9g1_38 := int64(f9_2) * int64(g1_19) + f9g2_19 := int64(f9) * int64(g2_19) + f9g3_38 := int64(f9_2) * int64(g3_19) + f9g4_19 := int64(f9) * int64(g4_19) + f9g5_38 := int64(f9_2) * int64(g5_19) + f9g6_19 := int64(f9) * int64(g6_19) + f9g7_38 := int64(f9_2) * int64(g7_19) + f9g8_19 := int64(f9) * int64(g8_19) + f9g9_38 := int64(f9_2) * int64(g9_19) + h0 := f0g0 + f1g9_38 + f2g8_19 + f3g7_38 + f4g6_19 + f5g5_38 + f6g4_19 + f7g3_38 + f8g2_19 + f9g1_38 + h1 := f0g1 + f1g0 + f2g9_19 + f3g8_19 + f4g7_19 + f5g6_19 + f6g5_19 + f7g4_19 + f8g3_19 + f9g2_19 + h2 := f0g2 + f1g1_2 + f2g0 + f3g9_38 + f4g8_19 + f5g7_38 + f6g6_19 + f7g5_38 + f8g4_19 + f9g3_38 + h3 := f0g3 + f1g2 + f2g1 + f3g0 + f4g9_19 + f5g8_19 + f6g7_19 + f7g6_19 + f8g5_19 + f9g4_19 + h4 := f0g4 + f1g3_2 + f2g2 + f3g1_2 + f4g0 + f5g9_38 + f6g8_19 + f7g7_38 + f8g6_19 + f9g5_38 + h5 := f0g5 + f1g4 + f2g3 + f3g2 + f4g1 + f5g0 + f6g9_19 + f7g8_19 + f8g7_19 + f9g6_19 + h6 := f0g6 + f1g5_2 + f2g4 + f3g3_2 + f4g2 + f5g1_2 + f6g0 + f7g9_38 + f8g8_19 + f9g7_38 + h7 := f0g7 + f1g6 + f2g5 + f3g4 + f4g3 + f5g2 + f6g1 + f7g0 + f8g9_19 + f9g8_19 + h8 := f0g8 + f1g7_2 + f2g6 + f3g5_2 + f4g4 + f5g3_2 + f6g2 + f7g1_2 + f8g0 + f9g9_38 + h9 := f0g9 + f1g8 + f2g7 + f3g6 + f4g5 + f5g4 + f6g3 + f7g2 + f8g1 + f9g0 + var carry [10]int64 + + // |h0| <= (1.1*1.1*2^52*(1+19+19+19+19)+1.1*1.1*2^50*(38+38+38+38+38)) + // i.e. |h0| <= 1.2*2^59; narrower ranges for h2, h4, h6, h8 + // |h1| <= (1.1*1.1*2^51*(1+1+19+19+19+19+19+19+19+19)) + // i.e. |h1| <= 1.5*2^58; narrower ranges for h3, h5, h7, h9 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + // |h0| <= 2^25 + // |h4| <= 2^25 + // |h1| <= 1.51*2^58 + // |h5| <= 1.51*2^58 + + carry[1] = (h1 + (1 << 24)) >> 25 + h2 += carry[1] + h1 -= carry[1] << 25 + carry[5] = (h5 + (1 << 24)) >> 25 + h6 += carry[5] + h5 -= carry[5] << 25 + // |h1| <= 2^24; from now on fits into int32 + // |h5| <= 2^24; from now on fits into int32 + // |h2| <= 1.21*2^59 + // |h6| <= 1.21*2^59 + + carry[2] = (h2 + (1 << 25)) >> 26 + h3 += carry[2] + h2 -= carry[2] << 26 + carry[6] = (h6 + (1 << 25)) >> 26 + h7 += carry[6] + h6 -= carry[6] << 26 + // |h2| <= 2^25; from now on fits into int32 unchanged + // |h6| <= 2^25; from now on fits into int32 unchanged + // |h3| <= 1.51*2^58 + // |h7| <= 1.51*2^58 + + carry[3] = (h3 + (1 << 24)) >> 25 + h4 += carry[3] + h3 -= carry[3] << 25 + carry[7] = (h7 + (1 << 24)) >> 25 + h8 += carry[7] + h7 -= carry[7] << 25 + // |h3| <= 2^24; from now on fits into int32 unchanged + // |h7| <= 2^24; from now on fits into int32 unchanged + // |h4| <= 1.52*2^33 + // |h8| <= 1.52*2^33 + + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + carry[8] = (h8 + (1 << 25)) >> 26 + h9 += carry[8] + h8 -= carry[8] << 26 + // |h4| <= 2^25; from now on fits into int32 unchanged + // |h8| <= 2^25; from now on fits into int32 unchanged + // |h5| <= 1.01*2^24 + // |h9| <= 1.51*2^58 + + carry[9] = (h9 + (1 << 24)) >> 25 + h0 += carry[9] * 19 + h9 -= carry[9] << 25 + // |h9| <= 2^24; from now on fits into int32 unchanged + // |h0| <= 1.8*2^37 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + // |h0| <= 2^25; from now on fits into int32 unchanged + // |h1| <= 1.01*2^24 + + h[0] = int32(h0) + h[1] = int32(h1) + h[2] = int32(h2) + h[3] = int32(h3) + h[4] = int32(h4) + h[5] = int32(h5) + h[6] = int32(h6) + h[7] = int32(h7) + h[8] = int32(h8) + h[9] = int32(h9) +} + +// feSquare calculates h = f*f. Can overlap h with f. +// +// Preconditions: +// |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// +// Postconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +func feSquare(h, f *fieldElement) { + f0 := f[0] + f1 := f[1] + f2 := f[2] + f3 := f[3] + f4 := f[4] + f5 := f[5] + f6 := f[6] + f7 := f[7] + f8 := f[8] + f9 := f[9] + f0_2 := 2 * f0 + f1_2 := 2 * f1 + f2_2 := 2 * f2 + f3_2 := 2 * f3 + f4_2 := 2 * f4 + f5_2 := 2 * f5 + f6_2 := 2 * f6 + f7_2 := 2 * f7 + f5_38 := 38 * f5 // 1.31*2^30 + f6_19 := 19 * f6 // 1.31*2^30 + f7_38 := 38 * f7 // 1.31*2^30 + f8_19 := 19 * f8 // 1.31*2^30 + f9_38 := 38 * f9 // 1.31*2^30 + f0f0 := int64(f0) * int64(f0) + f0f1_2 := int64(f0_2) * int64(f1) + f0f2_2 := int64(f0_2) * int64(f2) + f0f3_2 := int64(f0_2) * int64(f3) + f0f4_2 := int64(f0_2) * int64(f4) + f0f5_2 := int64(f0_2) * int64(f5) + f0f6_2 := int64(f0_2) * int64(f6) + f0f7_2 := int64(f0_2) * int64(f7) + f0f8_2 := int64(f0_2) * int64(f8) + f0f9_2 := int64(f0_2) * int64(f9) + f1f1_2 := int64(f1_2) * int64(f1) + f1f2_2 := int64(f1_2) * int64(f2) + f1f3_4 := int64(f1_2) * int64(f3_2) + f1f4_2 := int64(f1_2) * int64(f4) + f1f5_4 := int64(f1_2) * int64(f5_2) + f1f6_2 := int64(f1_2) * int64(f6) + f1f7_4 := int64(f1_2) * int64(f7_2) + f1f8_2 := int64(f1_2) * int64(f8) + f1f9_76 := int64(f1_2) * int64(f9_38) + f2f2 := int64(f2) * int64(f2) + f2f3_2 := int64(f2_2) * int64(f3) + f2f4_2 := int64(f2_2) * int64(f4) + f2f5_2 := int64(f2_2) * int64(f5) + f2f6_2 := int64(f2_2) * int64(f6) + f2f7_2 := int64(f2_2) * int64(f7) + f2f8_38 := int64(f2_2) * int64(f8_19) + f2f9_38 := int64(f2) * int64(f9_38) + f3f3_2 := int64(f3_2) * int64(f3) + f3f4_2 := int64(f3_2) * int64(f4) + f3f5_4 := int64(f3_2) * int64(f5_2) + f3f6_2 := int64(f3_2) * int64(f6) + f3f7_76 := int64(f3_2) * int64(f7_38) + f3f8_38 := int64(f3_2) * int64(f8_19) + f3f9_76 := int64(f3_2) * int64(f9_38) + f4f4 := int64(f4) * int64(f4) + f4f5_2 := int64(f4_2) * int64(f5) + f4f6_38 := int64(f4_2) * int64(f6_19) + f4f7_38 := int64(f4) * int64(f7_38) + f4f8_38 := int64(f4_2) * int64(f8_19) + f4f9_38 := int64(f4) * int64(f9_38) + f5f5_38 := int64(f5) * int64(f5_38) + f5f6_38 := int64(f5_2) * int64(f6_19) + f5f7_76 := int64(f5_2) * int64(f7_38) + f5f8_38 := int64(f5_2) * int64(f8_19) + f5f9_76 := int64(f5_2) * int64(f9_38) + f6f6_19 := int64(f6) * int64(f6_19) + f6f7_38 := int64(f6) * int64(f7_38) + f6f8_38 := int64(f6_2) * int64(f8_19) + f6f9_38 := int64(f6) * int64(f9_38) + f7f7_38 := int64(f7) * int64(f7_38) + f7f8_38 := int64(f7_2) * int64(f8_19) + f7f9_76 := int64(f7_2) * int64(f9_38) + f8f8_19 := int64(f8) * int64(f8_19) + f8f9_38 := int64(f8) * int64(f9_38) + f9f9_38 := int64(f9) * int64(f9_38) + h0 := f0f0 + f1f9_76 + f2f8_38 + f3f7_76 + f4f6_38 + f5f5_38 + h1 := f0f1_2 + f2f9_38 + f3f8_38 + f4f7_38 + f5f6_38 + h2 := f0f2_2 + f1f1_2 + f3f9_76 + f4f8_38 + f5f7_76 + f6f6_19 + h3 := f0f3_2 + f1f2_2 + f4f9_38 + f5f8_38 + f6f7_38 + h4 := f0f4_2 + f1f3_4 + f2f2 + f5f9_76 + f6f8_38 + f7f7_38 + h5 := f0f5_2 + f1f4_2 + f2f3_2 + f6f9_38 + f7f8_38 + h6 := f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19 + h7 := f0f7_2 + f1f6_2 + f2f5_2 + f3f4_2 + f8f9_38 + h8 := f0f8_2 + f1f7_4 + f2f6_2 + f3f5_4 + f4f4 + f9f9_38 + h9 := f0f9_2 + f1f8_2 + f2f7_2 + f3f6_2 + f4f5_2 + var carry [10]int64 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + + carry[1] = (h1 + (1 << 24)) >> 25 + h2 += carry[1] + h1 -= carry[1] << 25 + carry[5] = (h5 + (1 << 24)) >> 25 + h6 += carry[5] + h5 -= carry[5] << 25 + + carry[2] = (h2 + (1 << 25)) >> 26 + h3 += carry[2] + h2 -= carry[2] << 26 + carry[6] = (h6 + (1 << 25)) >> 26 + h7 += carry[6] + h6 -= carry[6] << 26 + + carry[3] = (h3 + (1 << 24)) >> 25 + h4 += carry[3] + h3 -= carry[3] << 25 + carry[7] = (h7 + (1 << 24)) >> 25 + h8 += carry[7] + h7 -= carry[7] << 25 + + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + carry[8] = (h8 + (1 << 25)) >> 26 + h9 += carry[8] + h8 -= carry[8] << 26 + + carry[9] = (h9 + (1 << 24)) >> 25 + h0 += carry[9] * 19 + h9 -= carry[9] << 25 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + + h[0] = int32(h0) + h[1] = int32(h1) + h[2] = int32(h2) + h[3] = int32(h3) + h[4] = int32(h4) + h[5] = int32(h5) + h[6] = int32(h6) + h[7] = int32(h7) + h[8] = int32(h8) + h[9] = int32(h9) +} + +// feMul121666 calculates h = f * 121666. Can overlap h with f. +// +// Preconditions: +// |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// +// Postconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +func feMul121666(h, f *fieldElement) { + h0 := int64(f[0]) * 121666 + h1 := int64(f[1]) * 121666 + h2 := int64(f[2]) * 121666 + h3 := int64(f[3]) * 121666 + h4 := int64(f[4]) * 121666 + h5 := int64(f[5]) * 121666 + h6 := int64(f[6]) * 121666 + h7 := int64(f[7]) * 121666 + h8 := int64(f[8]) * 121666 + h9 := int64(f[9]) * 121666 + var carry [10]int64 + + carry[9] = (h9 + (1 << 24)) >> 25 + h0 += carry[9] * 19 + h9 -= carry[9] << 25 + carry[1] = (h1 + (1 << 24)) >> 25 + h2 += carry[1] + h1 -= carry[1] << 25 + carry[3] = (h3 + (1 << 24)) >> 25 + h4 += carry[3] + h3 -= carry[3] << 25 + carry[5] = (h5 + (1 << 24)) >> 25 + h6 += carry[5] + h5 -= carry[5] << 25 + carry[7] = (h7 + (1 << 24)) >> 25 + h8 += carry[7] + h7 -= carry[7] << 25 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + carry[2] = (h2 + (1 << 25)) >> 26 + h3 += carry[2] + h2 -= carry[2] << 26 + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + carry[6] = (h6 + (1 << 25)) >> 26 + h7 += carry[6] + h6 -= carry[6] << 26 + carry[8] = (h8 + (1 << 25)) >> 26 + h9 += carry[8] + h8 -= carry[8] << 26 + + h[0] = int32(h0) + h[1] = int32(h1) + h[2] = int32(h2) + h[3] = int32(h3) + h[4] = int32(h4) + h[5] = int32(h5) + h[6] = int32(h6) + h[7] = int32(h7) + h[8] = int32(h8) + h[9] = int32(h9) +} + +// feInvert sets out = z^-1. +func feInvert(out, z *fieldElement) { + var t0, t1, t2, t3 fieldElement + var i int + + feSquare(&t0, z) + for i = 1; i < 1; i++ { + feSquare(&t0, &t0) + } + feSquare(&t1, &t0) + for i = 1; i < 2; i++ { + feSquare(&t1, &t1) + } + feMul(&t1, z, &t1) + feMul(&t0, &t0, &t1) + feSquare(&t2, &t0) + for i = 1; i < 1; i++ { + feSquare(&t2, &t2) + } + feMul(&t1, &t1, &t2) + feSquare(&t2, &t1) + for i = 1; i < 5; i++ { + feSquare(&t2, &t2) + } + feMul(&t1, &t2, &t1) + feSquare(&t2, &t1) + for i = 1; i < 10; i++ { + feSquare(&t2, &t2) + } + feMul(&t2, &t2, &t1) + feSquare(&t3, &t2) + for i = 1; i < 20; i++ { + feSquare(&t3, &t3) + } + feMul(&t2, &t3, &t2) + feSquare(&t2, &t2) + for i = 1; i < 10; i++ { + feSquare(&t2, &t2) + } + feMul(&t1, &t2, &t1) + feSquare(&t2, &t1) + for i = 1; i < 50; i++ { + feSquare(&t2, &t2) + } + feMul(&t2, &t2, &t1) + feSquare(&t3, &t2) + for i = 1; i < 100; i++ { + feSquare(&t3, &t3) + } + feMul(&t2, &t3, &t2) + feSquare(&t2, &t2) + for i = 1; i < 50; i++ { + feSquare(&t2, &t2) + } + feMul(&t1, &t2, &t1) + feSquare(&t1, &t1) + for i = 1; i < 5; i++ { + feSquare(&t1, &t1) + } + feMul(out, &t1, &t0) +} + +func scalarMultGeneric(out, in, base *[32]byte) { + var e [32]byte + + copy(e[:], in[:]) + e[0] &= 248 + e[31] &= 127 + e[31] |= 64 + + var x1, x2, z2, x3, z3, tmp0, tmp1 fieldElement + feFromBytes(&x1, base) + feOne(&x2) + feCopy(&x3, &x1) + feOne(&z3) + + swap := int32(0) + for pos := 254; pos >= 0; pos-- { + b := e[pos/8] >> uint(pos&7) + b &= 1 + swap ^= int32(b) + feCSwap(&x2, &x3, swap) + feCSwap(&z2, &z3, swap) + swap = int32(b) + + feSub(&tmp0, &x3, &z3) + feSub(&tmp1, &x2, &z2) + feAdd(&x2, &x2, &z2) + feAdd(&z2, &x3, &z3) + feMul(&z3, &tmp0, &x2) + feMul(&z2, &z2, &tmp1) + feSquare(&tmp0, &tmp1) + feSquare(&tmp1, &x2) + feAdd(&x3, &z3, &z2) + feSub(&z2, &z3, &z2) + feMul(&x2, &tmp1, &tmp0) + feSub(&tmp1, &tmp1, &tmp0) + feSquare(&z2, &z2) + feMul121666(&z3, &tmp1) + feSquare(&x3, &x3) + feAdd(&tmp0, &tmp0, &z3) + feMul(&z3, &x1, &z2) + feMul(&z2, &tmp1, &tmp0) + } + + feCSwap(&x2, &x3, swap) + feCSwap(&z2, &z3, swap) + + feInvert(&z2, &z2) + feMul(&x2, &x2, &z2) + feToBytes(out, &x2) +} diff --git a/vendor/golang.org/x/crypto/curve25519/curve25519_noasm.go b/vendor/golang.org/x/crypto/curve25519/curve25519_noasm.go new file mode 100644 index 00000000..047d49af --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/curve25519_noasm.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !amd64 gccgo appengine purego + +package curve25519 + +func scalarMult(out, in, base *[32]byte) { + scalarMultGeneric(out, in, base) +} diff --git a/vendor/golang.org/x/crypto/ed25519/ed25519.go b/vendor/golang.org/x/crypto/ed25519/ed25519.go new file mode 100644 index 00000000..c7f8c7e6 --- /dev/null +++ b/vendor/golang.org/x/crypto/ed25519/ed25519.go @@ -0,0 +1,222 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// In Go 1.13, the ed25519 package was promoted to the standard library as +// crypto/ed25519, and this package became a wrapper for the standard library one. +// +// +build !go1.13 + +// Package ed25519 implements the Ed25519 signature algorithm. See +// https://ed25519.cr.yp.to/. +// +// These functions are also compatible with the “Ed25519” function defined in +// RFC 8032. However, unlike RFC 8032's formulation, this package's private key +// representation includes a public key suffix to make multiple signing +// operations with the same key more efficient. This package refers to the RFC +// 8032 private key as the “seed”. +package ed25519 + +// This code is a port of the public domain, “ref10” implementation of ed25519 +// from SUPERCOP. + +import ( + "bytes" + "crypto" + cryptorand "crypto/rand" + "crypto/sha512" + "errors" + "io" + "strconv" + + "golang.org/x/crypto/ed25519/internal/edwards25519" +) + +const ( + // PublicKeySize is the size, in bytes, of public keys as used in this package. + PublicKeySize = 32 + // PrivateKeySize is the size, in bytes, of private keys as used in this package. + PrivateKeySize = 64 + // SignatureSize is the size, in bytes, of signatures generated and verified by this package. + SignatureSize = 64 + // SeedSize is the size, in bytes, of private key seeds. These are the private key representations used by RFC 8032. + SeedSize = 32 +) + +// PublicKey is the type of Ed25519 public keys. +type PublicKey []byte + +// PrivateKey is the type of Ed25519 private keys. It implements crypto.Signer. +type PrivateKey []byte + +// Public returns the PublicKey corresponding to priv. +func (priv PrivateKey) Public() crypto.PublicKey { + publicKey := make([]byte, PublicKeySize) + copy(publicKey, priv[32:]) + return PublicKey(publicKey) +} + +// Seed returns the private key seed corresponding to priv. It is provided for +// interoperability with RFC 8032. RFC 8032's private keys correspond to seeds +// in this package. +func (priv PrivateKey) Seed() []byte { + seed := make([]byte, SeedSize) + copy(seed, priv[:32]) + return seed +} + +// Sign signs the given message with priv. +// Ed25519 performs two passes over messages to be signed and therefore cannot +// handle pre-hashed messages. Thus opts.HashFunc() must return zero to +// indicate the message hasn't been hashed. This can be achieved by passing +// crypto.Hash(0) as the value for opts. +func (priv PrivateKey) Sign(rand io.Reader, message []byte, opts crypto.SignerOpts) (signature []byte, err error) { + if opts.HashFunc() != crypto.Hash(0) { + return nil, errors.New("ed25519: cannot sign hashed message") + } + + return Sign(priv, message), nil +} + +// GenerateKey generates a public/private key pair using entropy from rand. +// If rand is nil, crypto/rand.Reader will be used. +func GenerateKey(rand io.Reader) (PublicKey, PrivateKey, error) { + if rand == nil { + rand = cryptorand.Reader + } + + seed := make([]byte, SeedSize) + if _, err := io.ReadFull(rand, seed); err != nil { + return nil, nil, err + } + + privateKey := NewKeyFromSeed(seed) + publicKey := make([]byte, PublicKeySize) + copy(publicKey, privateKey[32:]) + + return publicKey, privateKey, nil +} + +// NewKeyFromSeed calculates a private key from a seed. It will panic if +// len(seed) is not SeedSize. This function is provided for interoperability +// with RFC 8032. RFC 8032's private keys correspond to seeds in this +// package. +func NewKeyFromSeed(seed []byte) PrivateKey { + if l := len(seed); l != SeedSize { + panic("ed25519: bad seed length: " + strconv.Itoa(l)) + } + + digest := sha512.Sum512(seed) + digest[0] &= 248 + digest[31] &= 127 + digest[31] |= 64 + + var A edwards25519.ExtendedGroupElement + var hBytes [32]byte + copy(hBytes[:], digest[:]) + edwards25519.GeScalarMultBase(&A, &hBytes) + var publicKeyBytes [32]byte + A.ToBytes(&publicKeyBytes) + + privateKey := make([]byte, PrivateKeySize) + copy(privateKey, seed) + copy(privateKey[32:], publicKeyBytes[:]) + + return privateKey +} + +// Sign signs the message with privateKey and returns a signature. It will +// panic if len(privateKey) is not PrivateKeySize. +func Sign(privateKey PrivateKey, message []byte) []byte { + if l := len(privateKey); l != PrivateKeySize { + panic("ed25519: bad private key length: " + strconv.Itoa(l)) + } + + h := sha512.New() + h.Write(privateKey[:32]) + + var digest1, messageDigest, hramDigest [64]byte + var expandedSecretKey [32]byte + h.Sum(digest1[:0]) + copy(expandedSecretKey[:], digest1[:]) + expandedSecretKey[0] &= 248 + expandedSecretKey[31] &= 63 + expandedSecretKey[31] |= 64 + + h.Reset() + h.Write(digest1[32:]) + h.Write(message) + h.Sum(messageDigest[:0]) + + var messageDigestReduced [32]byte + edwards25519.ScReduce(&messageDigestReduced, &messageDigest) + var R edwards25519.ExtendedGroupElement + edwards25519.GeScalarMultBase(&R, &messageDigestReduced) + + var encodedR [32]byte + R.ToBytes(&encodedR) + + h.Reset() + h.Write(encodedR[:]) + h.Write(privateKey[32:]) + h.Write(message) + h.Sum(hramDigest[:0]) + var hramDigestReduced [32]byte + edwards25519.ScReduce(&hramDigestReduced, &hramDigest) + + var s [32]byte + edwards25519.ScMulAdd(&s, &hramDigestReduced, &expandedSecretKey, &messageDigestReduced) + + signature := make([]byte, SignatureSize) + copy(signature[:], encodedR[:]) + copy(signature[32:], s[:]) + + return signature +} + +// Verify reports whether sig is a valid signature of message by publicKey. It +// will panic if len(publicKey) is not PublicKeySize. +func Verify(publicKey PublicKey, message, sig []byte) bool { + if l := len(publicKey); l != PublicKeySize { + panic("ed25519: bad public key length: " + strconv.Itoa(l)) + } + + if len(sig) != SignatureSize || sig[63]&224 != 0 { + return false + } + + var A edwards25519.ExtendedGroupElement + var publicKeyBytes [32]byte + copy(publicKeyBytes[:], publicKey) + if !A.FromBytes(&publicKeyBytes) { + return false + } + edwards25519.FeNeg(&A.X, &A.X) + edwards25519.FeNeg(&A.T, &A.T) + + h := sha512.New() + h.Write(sig[:32]) + h.Write(publicKey[:]) + h.Write(message) + var digest [64]byte + h.Sum(digest[:0]) + + var hReduced [32]byte + edwards25519.ScReduce(&hReduced, &digest) + + var R edwards25519.ProjectiveGroupElement + var s [32]byte + copy(s[:], sig[32:]) + + // https://tools.ietf.org/html/rfc8032#section-5.1.7 requires that s be in + // the range [0, order) in order to prevent signature malleability. + if !edwards25519.ScMinimal(&s) { + return false + } + + edwards25519.GeDoubleScalarMultVartime(&R, &hReduced, &A, &s) + + var checkR [32]byte + R.ToBytes(&checkR) + return bytes.Equal(sig[:32], checkR[:]) +} diff --git a/vendor/golang.org/x/crypto/ed25519/ed25519_go113.go b/vendor/golang.org/x/crypto/ed25519/ed25519_go113.go new file mode 100644 index 00000000..d1448d8d --- /dev/null +++ b/vendor/golang.org/x/crypto/ed25519/ed25519_go113.go @@ -0,0 +1,73 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build go1.13 + +// Package ed25519 implements the Ed25519 signature algorithm. See +// https://ed25519.cr.yp.to/. +// +// These functions are also compatible with the “Ed25519” function defined in +// RFC 8032. However, unlike RFC 8032's formulation, this package's private key +// representation includes a public key suffix to make multiple signing +// operations with the same key more efficient. This package refers to the RFC +// 8032 private key as the “seed”. +// +// Beginning with Go 1.13, the functionality of this package was moved to the +// standard library as crypto/ed25519. This package only acts as a compatibility +// wrapper. +package ed25519 + +import ( + "crypto/ed25519" + "io" +) + +const ( + // PublicKeySize is the size, in bytes, of public keys as used in this package. + PublicKeySize = 32 + // PrivateKeySize is the size, in bytes, of private keys as used in this package. + PrivateKeySize = 64 + // SignatureSize is the size, in bytes, of signatures generated and verified by this package. + SignatureSize = 64 + // SeedSize is the size, in bytes, of private key seeds. These are the private key representations used by RFC 8032. + SeedSize = 32 +) + +// PublicKey is the type of Ed25519 public keys. +// +// This type is an alias for crypto/ed25519's PublicKey type. +// See the crypto/ed25519 package for the methods on this type. +type PublicKey = ed25519.PublicKey + +// PrivateKey is the type of Ed25519 private keys. It implements crypto.Signer. +// +// This type is an alias for crypto/ed25519's PrivateKey type. +// See the crypto/ed25519 package for the methods on this type. +type PrivateKey = ed25519.PrivateKey + +// GenerateKey generates a public/private key pair using entropy from rand. +// If rand is nil, crypto/rand.Reader will be used. +func GenerateKey(rand io.Reader) (PublicKey, PrivateKey, error) { + return ed25519.GenerateKey(rand) +} + +// NewKeyFromSeed calculates a private key from a seed. It will panic if +// len(seed) is not SeedSize. This function is provided for interoperability +// with RFC 8032. RFC 8032's private keys correspond to seeds in this +// package. +func NewKeyFromSeed(seed []byte) PrivateKey { + return ed25519.NewKeyFromSeed(seed) +} + +// Sign signs the message with privateKey and returns a signature. It will +// panic if len(privateKey) is not PrivateKeySize. +func Sign(privateKey PrivateKey, message []byte) []byte { + return ed25519.Sign(privateKey, message) +} + +// Verify reports whether sig is a valid signature of message by publicKey. It +// will panic if len(publicKey) is not PublicKeySize. +func Verify(publicKey PublicKey, message, sig []byte) bool { + return ed25519.Verify(publicKey, message, sig) +} diff --git a/vendor/golang.org/x/crypto/ed25519/internal/edwards25519/const.go b/vendor/golang.org/x/crypto/ed25519/internal/edwards25519/const.go new file mode 100644 index 00000000..e39f086c --- /dev/null +++ b/vendor/golang.org/x/crypto/ed25519/internal/edwards25519/const.go @@ -0,0 +1,1422 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package edwards25519 + +// These values are from the public domain, “ref10” implementation of ed25519 +// from SUPERCOP. + +// d is a constant in the Edwards curve equation. +var d = FieldElement{ + -10913610, 13857413, -15372611, 6949391, 114729, -8787816, -6275908, -3247719, -18696448, -12055116, +} + +// d2 is 2*d. +var d2 = FieldElement{ + -21827239, -5839606, -30745221, 13898782, 229458, 15978800, -12551817, -6495438, 29715968, 9444199, +} + +// SqrtM1 is the square-root of -1 in the field. +var SqrtM1 = FieldElement{ + -32595792, -7943725, 9377950, 3500415, 12389472, -272473, -25146209, -2005654, 326686, 11406482, +} + +// A is a constant in the Montgomery-form of curve25519. +var A = FieldElement{ + 486662, 0, 0, 0, 0, 0, 0, 0, 0, 0, +} + +// bi contains precomputed multiples of the base-point. See the Ed25519 paper +// for a discussion about how these values are used. +var bi = [8]PreComputedGroupElement{ + { + FieldElement{25967493, -14356035, 29566456, 3660896, -12694345, 4014787, 27544626, -11754271, -6079156, 2047605}, + FieldElement{-12545711, 934262, -2722910, 3049990, -727428, 9406986, 12720692, 5043384, 19500929, -15469378}, + FieldElement{-8738181, 4489570, 9688441, -14785194, 10184609, -12363380, 29287919, 11864899, -24514362, -4438546}, + }, + { + FieldElement{15636291, -9688557, 24204773, -7912398, 616977, -16685262, 27787600, -14772189, 28944400, -1550024}, + FieldElement{16568933, 4717097, -11556148, -1102322, 15682896, -11807043, 16354577, -11775962, 7689662, 11199574}, + FieldElement{30464156, -5976125, -11779434, -15670865, 23220365, 15915852, 7512774, 10017326, -17749093, -9920357}, + }, + { + FieldElement{10861363, 11473154, 27284546, 1981175, -30064349, 12577861, 32867885, 14515107, -15438304, 10819380}, + FieldElement{4708026, 6336745, 20377586, 9066809, -11272109, 6594696, -25653668, 12483688, -12668491, 5581306}, + FieldElement{19563160, 16186464, -29386857, 4097519, 10237984, -4348115, 28542350, 13850243, -23678021, -15815942}, + }, + { + FieldElement{5153746, 9909285, 1723747, -2777874, 30523605, 5516873, 19480852, 5230134, -23952439, -15175766}, + FieldElement{-30269007, -3463509, 7665486, 10083793, 28475525, 1649722, 20654025, 16520125, 30598449, 7715701}, + FieldElement{28881845, 14381568, 9657904, 3680757, -20181635, 7843316, -31400660, 1370708, 29794553, -1409300}, + }, + { + FieldElement{-22518993, -6692182, 14201702, -8745502, -23510406, 8844726, 18474211, -1361450, -13062696, 13821877}, + FieldElement{-6455177, -7839871, 3374702, -4740862, -27098617, -10571707, 31655028, -7212327, 18853322, -14220951}, + FieldElement{4566830, -12963868, -28974889, -12240689, -7602672, -2830569, -8514358, -10431137, 2207753, -3209784}, + }, + { + FieldElement{-25154831, -4185821, 29681144, 7868801, -6854661, -9423865, -12437364, -663000, -31111463, -16132436}, + FieldElement{25576264, -2703214, 7349804, -11814844, 16472782, 9300885, 3844789, 15725684, 171356, 6466918}, + FieldElement{23103977, 13316479, 9739013, -16149481, 817875, -15038942, 8965339, -14088058, -30714912, 16193877}, + }, + { + FieldElement{-33521811, 3180713, -2394130, 14003687, -16903474, -16270840, 17238398, 4729455, -18074513, 9256800}, + FieldElement{-25182317, -4174131, 32336398, 5036987, -21236817, 11360617, 22616405, 9761698, -19827198, 630305}, + FieldElement{-13720693, 2639453, -24237460, -7406481, 9494427, -5774029, -6554551, -15960994, -2449256, -14291300}, + }, + { + FieldElement{-3151181, -5046075, 9282714, 6866145, -31907062, -863023, -18940575, 15033784, 25105118, -7894876}, + FieldElement{-24326370, 15950226, -31801215, -14592823, -11662737, -5090925, 1573892, -2625887, 2198790, -15804619}, + FieldElement{-3099351, 10324967, -2241613, 7453183, -5446979, -2735503, -13812022, -16236442, -32461234, -12290683}, + }, +} + +// base contains precomputed multiples of the base-point. See the Ed25519 paper +// for a discussion about how these values are used. +var base = [32][8]PreComputedGroupElement{ + { + { + FieldElement{25967493, -14356035, 29566456, 3660896, -12694345, 4014787, 27544626, -11754271, -6079156, 2047605}, + FieldElement{-12545711, 934262, -2722910, 3049990, -727428, 9406986, 12720692, 5043384, 19500929, -15469378}, + FieldElement{-8738181, 4489570, 9688441, -14785194, 10184609, -12363380, 29287919, 11864899, -24514362, -4438546}, + }, + { + FieldElement{-12815894, -12976347, -21581243, 11784320, -25355658, -2750717, -11717903, -3814571, -358445, -10211303}, + FieldElement{-21703237, 6903825, 27185491, 6451973, -29577724, -9554005, -15616551, 11189268, -26829678, -5319081}, + FieldElement{26966642, 11152617, 32442495, 15396054, 14353839, -12752335, -3128826, -9541118, -15472047, -4166697}, + }, + { + FieldElement{15636291, -9688557, 24204773, -7912398, 616977, -16685262, 27787600, -14772189, 28944400, -1550024}, + FieldElement{16568933, 4717097, -11556148, -1102322, 15682896, -11807043, 16354577, -11775962, 7689662, 11199574}, + FieldElement{30464156, -5976125, -11779434, -15670865, 23220365, 15915852, 7512774, 10017326, -17749093, -9920357}, + }, + { + FieldElement{-17036878, 13921892, 10945806, -6033431, 27105052, -16084379, -28926210, 15006023, 3284568, -6276540}, + FieldElement{23599295, -8306047, -11193664, -7687416, 13236774, 10506355, 7464579, 9656445, 13059162, 10374397}, + FieldElement{7798556, 16710257, 3033922, 2874086, 28997861, 2835604, 32406664, -3839045, -641708, -101325}, + }, + { + FieldElement{10861363, 11473154, 27284546, 1981175, -30064349, 12577861, 32867885, 14515107, -15438304, 10819380}, + FieldElement{4708026, 6336745, 20377586, 9066809, -11272109, 6594696, -25653668, 12483688, -12668491, 5581306}, + FieldElement{19563160, 16186464, -29386857, 4097519, 10237984, -4348115, 28542350, 13850243, -23678021, -15815942}, + }, + { + FieldElement{-15371964, -12862754, 32573250, 4720197, -26436522, 5875511, -19188627, -15224819, -9818940, -12085777}, + FieldElement{-8549212, 109983, 15149363, 2178705, 22900618, 4543417, 3044240, -15689887, 1762328, 14866737}, + FieldElement{-18199695, -15951423, -10473290, 1707278, -17185920, 3916101, -28236412, 3959421, 27914454, 4383652}, + }, + { + FieldElement{5153746, 9909285, 1723747, -2777874, 30523605, 5516873, 19480852, 5230134, -23952439, -15175766}, + FieldElement{-30269007, -3463509, 7665486, 10083793, 28475525, 1649722, 20654025, 16520125, 30598449, 7715701}, + FieldElement{28881845, 14381568, 9657904, 3680757, -20181635, 7843316, -31400660, 1370708, 29794553, -1409300}, + }, + { + FieldElement{14499471, -2729599, -33191113, -4254652, 28494862, 14271267, 30290735, 10876454, -33154098, 2381726}, + FieldElement{-7195431, -2655363, -14730155, 462251, -27724326, 3941372, -6236617, 3696005, -32300832, 15351955}, + FieldElement{27431194, 8222322, 16448760, -3907995, -18707002, 11938355, -32961401, -2970515, 29551813, 10109425}, + }, + }, + { + { + FieldElement{-13657040, -13155431, -31283750, 11777098, 21447386, 6519384, -2378284, -1627556, 10092783, -4764171}, + FieldElement{27939166, 14210322, 4677035, 16277044, -22964462, -12398139, -32508754, 12005538, -17810127, 12803510}, + FieldElement{17228999, -15661624, -1233527, 300140, -1224870, -11714777, 30364213, -9038194, 18016357, 4397660}, + }, + { + FieldElement{-10958843, -7690207, 4776341, -14954238, 27850028, -15602212, -26619106, 14544525, -17477504, 982639}, + FieldElement{29253598, 15796703, -2863982, -9908884, 10057023, 3163536, 7332899, -4120128, -21047696, 9934963}, + FieldElement{5793303, 16271923, -24131614, -10116404, 29188560, 1206517, -14747930, 4559895, -30123922, -10897950}, + }, + { + FieldElement{-27643952, -11493006, 16282657, -11036493, 28414021, -15012264, 24191034, 4541697, -13338309, 5500568}, + FieldElement{12650548, -1497113, 9052871, 11355358, -17680037, -8400164, -17430592, 12264343, 10874051, 13524335}, + FieldElement{25556948, -3045990, 714651, 2510400, 23394682, -10415330, 33119038, 5080568, -22528059, 5376628}, + }, + { + FieldElement{-26088264, -4011052, -17013699, -3537628, -6726793, 1920897, -22321305, -9447443, 4535768, 1569007}, + FieldElement{-2255422, 14606630, -21692440, -8039818, 28430649, 8775819, -30494562, 3044290, 31848280, 12543772}, + FieldElement{-22028579, 2943893, -31857513, 6777306, 13784462, -4292203, -27377195, -2062731, 7718482, 14474653}, + }, + { + FieldElement{2385315, 2454213, -22631320, 46603, -4437935, -15680415, 656965, -7236665, 24316168, -5253567}, + FieldElement{13741529, 10911568, -33233417, -8603737, -20177830, -1033297, 33040651, -13424532, -20729456, 8321686}, + FieldElement{21060490, -2212744, 15712757, -4336099, 1639040, 10656336, 23845965, -11874838, -9984458, 608372}, + }, + { + FieldElement{-13672732, -15087586, -10889693, -7557059, -6036909, 11305547, 1123968, -6780577, 27229399, 23887}, + FieldElement{-23244140, -294205, -11744728, 14712571, -29465699, -2029617, 12797024, -6440308, -1633405, 16678954}, + FieldElement{-29500620, 4770662, -16054387, 14001338, 7830047, 9564805, -1508144, -4795045, -17169265, 4904953}, + }, + { + FieldElement{24059557, 14617003, 19037157, -15039908, 19766093, -14906429, 5169211, 16191880, 2128236, -4326833}, + FieldElement{-16981152, 4124966, -8540610, -10653797, 30336522, -14105247, -29806336, 916033, -6882542, -2986532}, + FieldElement{-22630907, 12419372, -7134229, -7473371, -16478904, 16739175, 285431, 2763829, 15736322, 4143876}, + }, + { + FieldElement{2379352, 11839345, -4110402, -5988665, 11274298, 794957, 212801, -14594663, 23527084, -16458268}, + FieldElement{33431127, -11130478, -17838966, -15626900, 8909499, 8376530, -32625340, 4087881, -15188911, -14416214}, + FieldElement{1767683, 7197987, -13205226, -2022635, -13091350, 448826, 5799055, 4357868, -4774191, -16323038}, + }, + }, + { + { + FieldElement{6721966, 13833823, -23523388, -1551314, 26354293, -11863321, 23365147, -3949732, 7390890, 2759800}, + FieldElement{4409041, 2052381, 23373853, 10530217, 7676779, -12885954, 21302353, -4264057, 1244380, -12919645}, + FieldElement{-4421239, 7169619, 4982368, -2957590, 30256825, -2777540, 14086413, 9208236, 15886429, 16489664}, + }, + { + FieldElement{1996075, 10375649, 14346367, 13311202, -6874135, -16438411, -13693198, 398369, -30606455, -712933}, + FieldElement{-25307465, 9795880, -2777414, 14878809, -33531835, 14780363, 13348553, 12076947, -30836462, 5113182}, + FieldElement{-17770784, 11797796, 31950843, 13929123, -25888302, 12288344, -30341101, -7336386, 13847711, 5387222}, + }, + { + FieldElement{-18582163, -3416217, 17824843, -2340966, 22744343, -10442611, 8763061, 3617786, -19600662, 10370991}, + FieldElement{20246567, -14369378, 22358229, -543712, 18507283, -10413996, 14554437, -8746092, 32232924, 16763880}, + FieldElement{9648505, 10094563, 26416693, 14745928, -30374318, -6472621, 11094161, 15689506, 3140038, -16510092}, + }, + { + FieldElement{-16160072, 5472695, 31895588, 4744994, 8823515, 10365685, -27224800, 9448613, -28774454, 366295}, + FieldElement{19153450, 11523972, -11096490, -6503142, -24647631, 5420647, 28344573, 8041113, 719605, 11671788}, + FieldElement{8678025, 2694440, -6808014, 2517372, 4964326, 11152271, -15432916, -15266516, 27000813, -10195553}, + }, + { + FieldElement{-15157904, 7134312, 8639287, -2814877, -7235688, 10421742, 564065, 5336097, 6750977, -14521026}, + FieldElement{11836410, -3979488, 26297894, 16080799, 23455045, 15735944, 1695823, -8819122, 8169720, 16220347}, + FieldElement{-18115838, 8653647, 17578566, -6092619, -8025777, -16012763, -11144307, -2627664, -5990708, -14166033}, + }, + { + FieldElement{-23308498, -10968312, 15213228, -10081214, -30853605, -11050004, 27884329, 2847284, 2655861, 1738395}, + FieldElement{-27537433, -14253021, -25336301, -8002780, -9370762, 8129821, 21651608, -3239336, -19087449, -11005278}, + FieldElement{1533110, 3437855, 23735889, 459276, 29970501, 11335377, 26030092, 5821408, 10478196, 8544890}, + }, + { + FieldElement{32173121, -16129311, 24896207, 3921497, 22579056, -3410854, 19270449, 12217473, 17789017, -3395995}, + FieldElement{-30552961, -2228401, -15578829, -10147201, 13243889, 517024, 15479401, -3853233, 30460520, 1052596}, + FieldElement{-11614875, 13323618, 32618793, 8175907, -15230173, 12596687, 27491595, -4612359, 3179268, -9478891}, + }, + { + FieldElement{31947069, -14366651, -4640583, -15339921, -15125977, -6039709, -14756777, -16411740, 19072640, -9511060}, + FieldElement{11685058, 11822410, 3158003, -13952594, 33402194, -4165066, 5977896, -5215017, 473099, 5040608}, + FieldElement{-20290863, 8198642, -27410132, 11602123, 1290375, -2799760, 28326862, 1721092, -19558642, -3131606}, + }, + }, + { + { + FieldElement{7881532, 10687937, 7578723, 7738378, -18951012, -2553952, 21820786, 8076149, -27868496, 11538389}, + FieldElement{-19935666, 3899861, 18283497, -6801568, -15728660, -11249211, 8754525, 7446702, -5676054, 5797016}, + FieldElement{-11295600, -3793569, -15782110, -7964573, 12708869, -8456199, 2014099, -9050574, -2369172, -5877341}, + }, + { + FieldElement{-22472376, -11568741, -27682020, 1146375, 18956691, 16640559, 1192730, -3714199, 15123619, 10811505}, + FieldElement{14352098, -3419715, -18942044, 10822655, 32750596, 4699007, -70363, 15776356, -28886779, -11974553}, + FieldElement{-28241164, -8072475, -4978962, -5315317, 29416931, 1847569, -20654173, -16484855, 4714547, -9600655}, + }, + { + FieldElement{15200332, 8368572, 19679101, 15970074, -31872674, 1959451, 24611599, -4543832, -11745876, 12340220}, + FieldElement{12876937, -10480056, 33134381, 6590940, -6307776, 14872440, 9613953, 8241152, 15370987, 9608631}, + FieldElement{-4143277, -12014408, 8446281, -391603, 4407738, 13629032, -7724868, 15866074, -28210621, -8814099}, + }, + { + FieldElement{26660628, -15677655, 8393734, 358047, -7401291, 992988, -23904233, 858697, 20571223, 8420556}, + FieldElement{14620715, 13067227, -15447274, 8264467, 14106269, 15080814, 33531827, 12516406, -21574435, -12476749}, + FieldElement{236881, 10476226, 57258, -14677024, 6472998, 2466984, 17258519, 7256740, 8791136, 15069930}, + }, + { + FieldElement{1276410, -9371918, 22949635, -16322807, -23493039, -5702186, 14711875, 4874229, -30663140, -2331391}, + FieldElement{5855666, 4990204, -13711848, 7294284, -7804282, 1924647, -1423175, -7912378, -33069337, 9234253}, + FieldElement{20590503, -9018988, 31529744, -7352666, -2706834, 10650548, 31559055, -11609587, 18979186, 13396066}, + }, + { + FieldElement{24474287, 4968103, 22267082, 4407354, 24063882, -8325180, -18816887, 13594782, 33514650, 7021958}, + FieldElement{-11566906, -6565505, -21365085, 15928892, -26158305, 4315421, -25948728, -3916677, -21480480, 12868082}, + FieldElement{-28635013, 13504661, 19988037, -2132761, 21078225, 6443208, -21446107, 2244500, -12455797, -8089383}, + }, + { + FieldElement{-30595528, 13793479, -5852820, 319136, -25723172, -6263899, 33086546, 8957937, -15233648, 5540521}, + FieldElement{-11630176, -11503902, -8119500, -7643073, 2620056, 1022908, -23710744, -1568984, -16128528, -14962807}, + FieldElement{23152971, 775386, 27395463, 14006635, -9701118, 4649512, 1689819, 892185, -11513277, -15205948}, + }, + { + FieldElement{9770129, 9586738, 26496094, 4324120, 1556511, -3550024, 27453819, 4763127, -19179614, 5867134}, + FieldElement{-32765025, 1927590, 31726409, -4753295, 23962434, -16019500, 27846559, 5931263, -29749703, -16108455}, + FieldElement{27461885, -2977536, 22380810, 1815854, -23033753, -3031938, 7283490, -15148073, -19526700, 7734629}, + }, + }, + { + { + FieldElement{-8010264, -9590817, -11120403, 6196038, 29344158, -13430885, 7585295, -3176626, 18549497, 15302069}, + FieldElement{-32658337, -6171222, -7672793, -11051681, 6258878, 13504381, 10458790, -6418461, -8872242, 8424746}, + FieldElement{24687205, 8613276, -30667046, -3233545, 1863892, -1830544, 19206234, 7134917, -11284482, -828919}, + }, + { + FieldElement{11334899, -9218022, 8025293, 12707519, 17523892, -10476071, 10243738, -14685461, -5066034, 16498837}, + FieldElement{8911542, 6887158, -9584260, -6958590, 11145641, -9543680, 17303925, -14124238, 6536641, 10543906}, + FieldElement{-28946384, 15479763, -17466835, 568876, -1497683, 11223454, -2669190, -16625574, -27235709, 8876771}, + }, + { + FieldElement{-25742899, -12566864, -15649966, -846607, -33026686, -796288, -33481822, 15824474, -604426, -9039817}, + FieldElement{10330056, 70051, 7957388, -9002667, 9764902, 15609756, 27698697, -4890037, 1657394, 3084098}, + FieldElement{10477963, -7470260, 12119566, -13250805, 29016247, -5365589, 31280319, 14396151, -30233575, 15272409}, + }, + { + FieldElement{-12288309, 3169463, 28813183, 16658753, 25116432, -5630466, -25173957, -12636138, -25014757, 1950504}, + FieldElement{-26180358, 9489187, 11053416, -14746161, -31053720, 5825630, -8384306, -8767532, 15341279, 8373727}, + FieldElement{28685821, 7759505, -14378516, -12002860, -31971820, 4079242, 298136, -10232602, -2878207, 15190420}, + }, + { + FieldElement{-32932876, 13806336, -14337485, -15794431, -24004620, 10940928, 8669718, 2742393, -26033313, -6875003}, + FieldElement{-1580388, -11729417, -25979658, -11445023, -17411874, -10912854, 9291594, -16247779, -12154742, 6048605}, + FieldElement{-30305315, 14843444, 1539301, 11864366, 20201677, 1900163, 13934231, 5128323, 11213262, 9168384}, + }, + { + FieldElement{-26280513, 11007847, 19408960, -940758, -18592965, -4328580, -5088060, -11105150, 20470157, -16398701}, + FieldElement{-23136053, 9282192, 14855179, -15390078, -7362815, -14408560, -22783952, 14461608, 14042978, 5230683}, + FieldElement{29969567, -2741594, -16711867, -8552442, 9175486, -2468974, 21556951, 3506042, -5933891, -12449708}, + }, + { + FieldElement{-3144746, 8744661, 19704003, 4581278, -20430686, 6830683, -21284170, 8971513, -28539189, 15326563}, + FieldElement{-19464629, 10110288, -17262528, -3503892, -23500387, 1355669, -15523050, 15300988, -20514118, 9168260}, + FieldElement{-5353335, 4488613, -23803248, 16314347, 7780487, -15638939, -28948358, 9601605, 33087103, -9011387}, + }, + { + FieldElement{-19443170, -15512900, -20797467, -12445323, -29824447, 10229461, -27444329, -15000531, -5996870, 15664672}, + FieldElement{23294591, -16632613, -22650781, -8470978, 27844204, 11461195, 13099750, -2460356, 18151676, 13417686}, + FieldElement{-24722913, -4176517, -31150679, 5988919, -26858785, 6685065, 1661597, -12551441, 15271676, -15452665}, + }, + }, + { + { + FieldElement{11433042, -13228665, 8239631, -5279517, -1985436, -725718, -18698764, 2167544, -6921301, -13440182}, + FieldElement{-31436171, 15575146, 30436815, 12192228, -22463353, 9395379, -9917708, -8638997, 12215110, 12028277}, + FieldElement{14098400, 6555944, 23007258, 5757252, -15427832, -12950502, 30123440, 4617780, -16900089, -655628}, + }, + { + FieldElement{-4026201, -15240835, 11893168, 13718664, -14809462, 1847385, -15819999, 10154009, 23973261, -12684474}, + FieldElement{-26531820, -3695990, -1908898, 2534301, -31870557, -16550355, 18341390, -11419951, 32013174, -10103539}, + FieldElement{-25479301, 10876443, -11771086, -14625140, -12369567, 1838104, 21911214, 6354752, 4425632, -837822}, + }, + { + FieldElement{-10433389, -14612966, 22229858, -3091047, -13191166, 776729, -17415375, -12020462, 4725005, 14044970}, + FieldElement{19268650, -7304421, 1555349, 8692754, -21474059, -9910664, 6347390, -1411784, -19522291, -16109756}, + FieldElement{-24864089, 12986008, -10898878, -5558584, -11312371, -148526, 19541418, 8180106, 9282262, 10282508}, + }, + { + FieldElement{-26205082, 4428547, -8661196, -13194263, 4098402, -14165257, 15522535, 8372215, 5542595, -10702683}, + FieldElement{-10562541, 14895633, 26814552, -16673850, -17480754, -2489360, -2781891, 6993761, -18093885, 10114655}, + FieldElement{-20107055, -929418, 31422704, 10427861, -7110749, 6150669, -29091755, -11529146, 25953725, -106158}, + }, + { + FieldElement{-4234397, -8039292, -9119125, 3046000, 2101609, -12607294, 19390020, 6094296, -3315279, 12831125}, + FieldElement{-15998678, 7578152, 5310217, 14408357, -33548620, -224739, 31575954, 6326196, 7381791, -2421839}, + FieldElement{-20902779, 3296811, 24736065, -16328389, 18374254, 7318640, 6295303, 8082724, -15362489, 12339664}, + }, + { + FieldElement{27724736, 2291157, 6088201, -14184798, 1792727, 5857634, 13848414, 15768922, 25091167, 14856294}, + FieldElement{-18866652, 8331043, 24373479, 8541013, -701998, -9269457, 12927300, -12695493, -22182473, -9012899}, + FieldElement{-11423429, -5421590, 11632845, 3405020, 30536730, -11674039, -27260765, 13866390, 30146206, 9142070}, + }, + { + FieldElement{3924129, -15307516, -13817122, -10054960, 12291820, -668366, -27702774, 9326384, -8237858, 4171294}, + FieldElement{-15921940, 16037937, 6713787, 16606682, -21612135, 2790944, 26396185, 3731949, 345228, -5462949}, + FieldElement{-21327538, 13448259, 25284571, 1143661, 20614966, -8849387, 2031539, -12391231, -16253183, -13582083}, + }, + { + FieldElement{31016211, -16722429, 26371392, -14451233, -5027349, 14854137, 17477601, 3842657, 28012650, -16405420}, + FieldElement{-5075835, 9368966, -8562079, -4600902, -15249953, 6970560, -9189873, 16292057, -8867157, 3507940}, + FieldElement{29439664, 3537914, 23333589, 6997794, -17555561, -11018068, -15209202, -15051267, -9164929, 6580396}, + }, + }, + { + { + FieldElement{-12185861, -7679788, 16438269, 10826160, -8696817, -6235611, 17860444, -9273846, -2095802, 9304567}, + FieldElement{20714564, -4336911, 29088195, 7406487, 11426967, -5095705, 14792667, -14608617, 5289421, -477127}, + FieldElement{-16665533, -10650790, -6160345, -13305760, 9192020, -1802462, 17271490, 12349094, 26939669, -3752294}, + }, + { + FieldElement{-12889898, 9373458, 31595848, 16374215, 21471720, 13221525, -27283495, -12348559, -3698806, 117887}, + FieldElement{22263325, -6560050, 3984570, -11174646, -15114008, -566785, 28311253, 5358056, -23319780, 541964}, + FieldElement{16259219, 3261970, 2309254, -15534474, -16885711, -4581916, 24134070, -16705829, -13337066, -13552195}, + }, + { + FieldElement{9378160, -13140186, -22845982, -12745264, 28198281, -7244098, -2399684, -717351, 690426, 14876244}, + FieldElement{24977353, -314384, -8223969, -13465086, 28432343, -1176353, -13068804, -12297348, -22380984, 6618999}, + FieldElement{-1538174, 11685646, 12944378, 13682314, -24389511, -14413193, 8044829, -13817328, 32239829, -5652762}, + }, + { + FieldElement{-18603066, 4762990, -926250, 8885304, -28412480, -3187315, 9781647, -10350059, 32779359, 5095274}, + FieldElement{-33008130, -5214506, -32264887, -3685216, 9460461, -9327423, -24601656, 14506724, 21639561, -2630236}, + FieldElement{-16400943, -13112215, 25239338, 15531969, 3987758, -4499318, -1289502, -6863535, 17874574, 558605}, + }, + { + FieldElement{-13600129, 10240081, 9171883, 16131053, -20869254, 9599700, 33499487, 5080151, 2085892, 5119761}, + FieldElement{-22205145, -2519528, -16381601, 414691, -25019550, 2170430, 30634760, -8363614, -31999993, -5759884}, + FieldElement{-6845704, 15791202, 8550074, -1312654, 29928809, -12092256, 27534430, -7192145, -22351378, 12961482}, + }, + { + FieldElement{-24492060, -9570771, 10368194, 11582341, -23397293, -2245287, 16533930, 8206996, -30194652, -5159638}, + FieldElement{-11121496, -3382234, 2307366, 6362031, -135455, 8868177, -16835630, 7031275, 7589640, 8945490}, + FieldElement{-32152748, 8917967, 6661220, -11677616, -1192060, -15793393, 7251489, -11182180, 24099109, -14456170}, + }, + { + FieldElement{5019558, -7907470, 4244127, -14714356, -26933272, 6453165, -19118182, -13289025, -6231896, -10280736}, + FieldElement{10853594, 10721687, 26480089, 5861829, -22995819, 1972175, -1866647, -10557898, -3363451, -6441124}, + FieldElement{-17002408, 5906790, 221599, -6563147, 7828208, -13248918, 24362661, -2008168, -13866408, 7421392}, + }, + { + FieldElement{8139927, -6546497, 32257646, -5890546, 30375719, 1886181, -21175108, 15441252, 28826358, -4123029}, + FieldElement{6267086, 9695052, 7709135, -16603597, -32869068, -1886135, 14795160, -7840124, 13746021, -1742048}, + FieldElement{28584902, 7787108, -6732942, -15050729, 22846041, -7571236, -3181936, -363524, 4771362, -8419958}, + }, + }, + { + { + FieldElement{24949256, 6376279, -27466481, -8174608, -18646154, -9930606, 33543569, -12141695, 3569627, 11342593}, + FieldElement{26514989, 4740088, 27912651, 3697550, 19331575, -11472339, 6809886, 4608608, 7325975, -14801071}, + FieldElement{-11618399, -14554430, -24321212, 7655128, -1369274, 5214312, -27400540, 10258390, -17646694, -8186692}, + }, + { + FieldElement{11431204, 15823007, 26570245, 14329124, 18029990, 4796082, -31446179, 15580664, 9280358, -3973687}, + FieldElement{-160783, -10326257, -22855316, -4304997, -20861367, -13621002, -32810901, -11181622, -15545091, 4387441}, + FieldElement{-20799378, 12194512, 3937617, -5805892, -27154820, 9340370, -24513992, 8548137, 20617071, -7482001}, + }, + { + FieldElement{-938825, -3930586, -8714311, 16124718, 24603125, -6225393, -13775352, -11875822, 24345683, 10325460}, + FieldElement{-19855277, -1568885, -22202708, 8714034, 14007766, 6928528, 16318175, -1010689, 4766743, 3552007}, + FieldElement{-21751364, -16730916, 1351763, -803421, -4009670, 3950935, 3217514, 14481909, 10988822, -3994762}, + }, + { + FieldElement{15564307, -14311570, 3101243, 5684148, 30446780, -8051356, 12677127, -6505343, -8295852, 13296005}, + FieldElement{-9442290, 6624296, -30298964, -11913677, -4670981, -2057379, 31521204, 9614054, -30000824, 12074674}, + FieldElement{4771191, -135239, 14290749, -13089852, 27992298, 14998318, -1413936, -1556716, 29832613, -16391035}, + }, + { + FieldElement{7064884, -7541174, -19161962, -5067537, -18891269, -2912736, 25825242, 5293297, -27122660, 13101590}, + FieldElement{-2298563, 2439670, -7466610, 1719965, -27267541, -16328445, 32512469, -5317593, -30356070, -4190957}, + FieldElement{-30006540, 10162316, -33180176, 3981723, -16482138, -13070044, 14413974, 9515896, 19568978, 9628812}, + }, + { + FieldElement{33053803, 199357, 15894591, 1583059, 27380243, -4580435, -17838894, -6106839, -6291786, 3437740}, + FieldElement{-18978877, 3884493, 19469877, 12726490, 15913552, 13614290, -22961733, 70104, 7463304, 4176122}, + FieldElement{-27124001, 10659917, 11482427, -16070381, 12771467, -6635117, -32719404, -5322751, 24216882, 5944158}, + }, + { + FieldElement{8894125, 7450974, -2664149, -9765752, -28080517, -12389115, 19345746, 14680796, 11632993, 5847885}, + FieldElement{26942781, -2315317, 9129564, -4906607, 26024105, 11769399, -11518837, 6367194, -9727230, 4782140}, + FieldElement{19916461, -4828410, -22910704, -11414391, 25606324, -5972441, 33253853, 8220911, 6358847, -1873857}, + }, + { + FieldElement{801428, -2081702, 16569428, 11065167, 29875704, 96627, 7908388, -4480480, -13538503, 1387155}, + FieldElement{19646058, 5720633, -11416706, 12814209, 11607948, 12749789, 14147075, 15156355, -21866831, 11835260}, + FieldElement{19299512, 1155910, 28703737, 14890794, 2925026, 7269399, 26121523, 15467869, -26560550, 5052483}, + }, + }, + { + { + FieldElement{-3017432, 10058206, 1980837, 3964243, 22160966, 12322533, -6431123, -12618185, 12228557, -7003677}, + FieldElement{32944382, 14922211, -22844894, 5188528, 21913450, -8719943, 4001465, 13238564, -6114803, 8653815}, + FieldElement{22865569, -4652735, 27603668, -12545395, 14348958, 8234005, 24808405, 5719875, 28483275, 2841751}, + }, + { + FieldElement{-16420968, -1113305, -327719, -12107856, 21886282, -15552774, -1887966, -315658, 19932058, -12739203}, + FieldElement{-11656086, 10087521, -8864888, -5536143, -19278573, -3055912, 3999228, 13239134, -4777469, -13910208}, + FieldElement{1382174, -11694719, 17266790, 9194690, -13324356, 9720081, 20403944, 11284705, -14013818, 3093230}, + }, + { + FieldElement{16650921, -11037932, -1064178, 1570629, -8329746, 7352753, -302424, 16271225, -24049421, -6691850}, + FieldElement{-21911077, -5927941, -4611316, -5560156, -31744103, -10785293, 24123614, 15193618, -21652117, -16739389}, + FieldElement{-9935934, -4289447, -25279823, 4372842, 2087473, 10399484, 31870908, 14690798, 17361620, 11864968}, + }, + { + FieldElement{-11307610, 6210372, 13206574, 5806320, -29017692, -13967200, -12331205, -7486601, -25578460, -16240689}, + FieldElement{14668462, -12270235, 26039039, 15305210, 25515617, 4542480, 10453892, 6577524, 9145645, -6443880}, + FieldElement{5974874, 3053895, -9433049, -10385191, -31865124, 3225009, -7972642, 3936128, -5652273, -3050304}, + }, + { + FieldElement{30625386, -4729400, -25555961, -12792866, -20484575, 7695099, 17097188, -16303496, -27999779, 1803632}, + FieldElement{-3553091, 9865099, -5228566, 4272701, -5673832, -16689700, 14911344, 12196514, -21405489, 7047412}, + FieldElement{20093277, 9920966, -11138194, -5343857, 13161587, 12044805, -32856851, 4124601, -32343828, -10257566}, + }, + { + FieldElement{-20788824, 14084654, -13531713, 7842147, 19119038, -13822605, 4752377, -8714640, -21679658, 2288038}, + FieldElement{-26819236, -3283715, 29965059, 3039786, -14473765, 2540457, 29457502, 14625692, -24819617, 12570232}, + FieldElement{-1063558, -11551823, 16920318, 12494842, 1278292, -5869109, -21159943, -3498680, -11974704, 4724943}, + }, + { + FieldElement{17960970, -11775534, -4140968, -9702530, -8876562, -1410617, -12907383, -8659932, -29576300, 1903856}, + FieldElement{23134274, -14279132, -10681997, -1611936, 20684485, 15770816, -12989750, 3190296, 26955097, 14109738}, + FieldElement{15308788, 5320727, -30113809, -14318877, 22902008, 7767164, 29425325, -11277562, 31960942, 11934971}, + }, + { + FieldElement{-27395711, 8435796, 4109644, 12222639, -24627868, 14818669, 20638173, 4875028, 10491392, 1379718}, + FieldElement{-13159415, 9197841, 3875503, -8936108, -1383712, -5879801, 33518459, 16176658, 21432314, 12180697}, + FieldElement{-11787308, 11500838, 13787581, -13832590, -22430679, 10140205, 1465425, 12689540, -10301319, -13872883}, + }, + }, + { + { + FieldElement{5414091, -15386041, -21007664, 9643570, 12834970, 1186149, -2622916, -1342231, 26128231, 6032912}, + FieldElement{-26337395, -13766162, 32496025, -13653919, 17847801, -12669156, 3604025, 8316894, -25875034, -10437358}, + FieldElement{3296484, 6223048, 24680646, -12246460, -23052020, 5903205, -8862297, -4639164, 12376617, 3188849}, + }, + { + FieldElement{29190488, -14659046, 27549113, -1183516, 3520066, -10697301, 32049515, -7309113, -16109234, -9852307}, + FieldElement{-14744486, -9309156, 735818, -598978, -20407687, -5057904, 25246078, -15795669, 18640741, -960977}, + FieldElement{-6928835, -16430795, 10361374, 5642961, 4910474, 12345252, -31638386, -494430, 10530747, 1053335}, + }, + { + FieldElement{-29265967, -14186805, -13538216, -12117373, -19457059, -10655384, -31462369, -2948985, 24018831, 15026644}, + FieldElement{-22592535, -3145277, -2289276, 5953843, -13440189, 9425631, 25310643, 13003497, -2314791, -15145616}, + FieldElement{-27419985, -603321, -8043984, -1669117, -26092265, 13987819, -27297622, 187899, -23166419, -2531735}, + }, + { + FieldElement{-21744398, -13810475, 1844840, 5021428, -10434399, -15911473, 9716667, 16266922, -5070217, 726099}, + FieldElement{29370922, -6053998, 7334071, -15342259, 9385287, 2247707, -13661962, -4839461, 30007388, -15823341}, + FieldElement{-936379, 16086691, 23751945, -543318, -1167538, -5189036, 9137109, 730663, 9835848, 4555336}, + }, + { + FieldElement{-23376435, 1410446, -22253753, -12899614, 30867635, 15826977, 17693930, 544696, -11985298, 12422646}, + FieldElement{31117226, -12215734, -13502838, 6561947, -9876867, -12757670, -5118685, -4096706, 29120153, 13924425}, + FieldElement{-17400879, -14233209, 19675799, -2734756, -11006962, -5858820, -9383939, -11317700, 7240931, -237388}, + }, + { + FieldElement{-31361739, -11346780, -15007447, -5856218, -22453340, -12152771, 1222336, 4389483, 3293637, -15551743}, + FieldElement{-16684801, -14444245, 11038544, 11054958, -13801175, -3338533, -24319580, 7733547, 12796905, -6335822}, + FieldElement{-8759414, -10817836, -25418864, 10783769, -30615557, -9746811, -28253339, 3647836, 3222231, -11160462}, + }, + { + FieldElement{18606113, 1693100, -25448386, -15170272, 4112353, 10045021, 23603893, -2048234, -7550776, 2484985}, + FieldElement{9255317, -3131197, -12156162, -1004256, 13098013, -9214866, 16377220, -2102812, -19802075, -3034702}, + FieldElement{-22729289, 7496160, -5742199, 11329249, 19991973, -3347502, -31718148, 9936966, -30097688, -10618797}, + }, + { + FieldElement{21878590, -5001297, 4338336, 13643897, -3036865, 13160960, 19708896, 5415497, -7360503, -4109293}, + FieldElement{27736861, 10103576, 12500508, 8502413, -3413016, -9633558, 10436918, -1550276, -23659143, -8132100}, + FieldElement{19492550, -12104365, -29681976, -852630, -3208171, 12403437, 30066266, 8367329, 13243957, 8709688}, + }, + }, + { + { + FieldElement{12015105, 2801261, 28198131, 10151021, 24818120, -4743133, -11194191, -5645734, 5150968, 7274186}, + FieldElement{2831366, -12492146, 1478975, 6122054, 23825128, -12733586, 31097299, 6083058, 31021603, -9793610}, + FieldElement{-2529932, -2229646, 445613, 10720828, -13849527, -11505937, -23507731, 16354465, 15067285, -14147707}, + }, + { + FieldElement{7840942, 14037873, -33364863, 15934016, -728213, -3642706, 21403988, 1057586, -19379462, -12403220}, + FieldElement{915865, -16469274, 15608285, -8789130, -24357026, 6060030, -17371319, 8410997, -7220461, 16527025}, + FieldElement{32922597, -556987, 20336074, -16184568, 10903705, -5384487, 16957574, 52992, 23834301, 6588044}, + }, + { + FieldElement{32752030, 11232950, 3381995, -8714866, 22652988, -10744103, 17159699, 16689107, -20314580, -1305992}, + FieldElement{-4689649, 9166776, -25710296, -10847306, 11576752, 12733943, 7924251, -2752281, 1976123, -7249027}, + FieldElement{21251222, 16309901, -2983015, -6783122, 30810597, 12967303, 156041, -3371252, 12331345, -8237197}, + }, + { + FieldElement{8651614, -4477032, -16085636, -4996994, 13002507, 2950805, 29054427, -5106970, 10008136, -4667901}, + FieldElement{31486080, 15114593, -14261250, 12951354, 14369431, -7387845, 16347321, -13662089, 8684155, -10532952}, + FieldElement{19443825, 11385320, 24468943, -9659068, -23919258, 2187569, -26263207, -6086921, 31316348, 14219878}, + }, + { + FieldElement{-28594490, 1193785, 32245219, 11392485, 31092169, 15722801, 27146014, 6992409, 29126555, 9207390}, + FieldElement{32382935, 1110093, 18477781, 11028262, -27411763, -7548111, -4980517, 10843782, -7957600, -14435730}, + FieldElement{2814918, 7836403, 27519878, -7868156, -20894015, -11553689, -21494559, 8550130, 28346258, 1994730}, + }, + { + FieldElement{-19578299, 8085545, -14000519, -3948622, 2785838, -16231307, -19516951, 7174894, 22628102, 8115180}, + FieldElement{-30405132, 955511, -11133838, -15078069, -32447087, -13278079, -25651578, 3317160, -9943017, 930272}, + FieldElement{-15303681, -6833769, 28856490, 1357446, 23421993, 1057177, 24091212, -1388970, -22765376, -10650715}, + }, + { + FieldElement{-22751231, -5303997, -12907607, -12768866, -15811511, -7797053, -14839018, -16554220, -1867018, 8398970}, + FieldElement{-31969310, 2106403, -4736360, 1362501, 12813763, 16200670, 22981545, -6291273, 18009408, -15772772}, + FieldElement{-17220923, -9545221, -27784654, 14166835, 29815394, 7444469, 29551787, -3727419, 19288549, 1325865}, + }, + { + FieldElement{15100157, -15835752, -23923978, -1005098, -26450192, 15509408, 12376730, -3479146, 33166107, -8042750}, + FieldElement{20909231, 13023121, -9209752, 16251778, -5778415, -8094914, 12412151, 10018715, 2213263, -13878373}, + FieldElement{32529814, -11074689, 30361439, -16689753, -9135940, 1513226, 22922121, 6382134, -5766928, 8371348}, + }, + }, + { + { + FieldElement{9923462, 11271500, 12616794, 3544722, -29998368, -1721626, 12891687, -8193132, -26442943, 10486144}, + FieldElement{-22597207, -7012665, 8587003, -8257861, 4084309, -12970062, 361726, 2610596, -23921530, -11455195}, + FieldElement{5408411, -1136691, -4969122, 10561668, 24145918, 14240566, 31319731, -4235541, 19985175, -3436086}, + }, + { + FieldElement{-13994457, 16616821, 14549246, 3341099, 32155958, 13648976, -17577068, 8849297, 65030, 8370684}, + FieldElement{-8320926, -12049626, 31204563, 5839400, -20627288, -1057277, -19442942, 6922164, 12743482, -9800518}, + FieldElement{-2361371, 12678785, 28815050, 4759974, -23893047, 4884717, 23783145, 11038569, 18800704, 255233}, + }, + { + FieldElement{-5269658, -1773886, 13957886, 7990715, 23132995, 728773, 13393847, 9066957, 19258688, -14753793}, + FieldElement{-2936654, -10827535, -10432089, 14516793, -3640786, 4372541, -31934921, 2209390, -1524053, 2055794}, + FieldElement{580882, 16705327, 5468415, -2683018, -30926419, -14696000, -7203346, -8994389, -30021019, 7394435}, + }, + { + FieldElement{23838809, 1822728, -15738443, 15242727, 8318092, -3733104, -21672180, -3492205, -4821741, 14799921}, + FieldElement{13345610, 9759151, 3371034, -16137791, 16353039, 8577942, 31129804, 13496856, -9056018, 7402518}, + FieldElement{2286874, -4435931, -20042458, -2008336, -13696227, 5038122, 11006906, -15760352, 8205061, 1607563}, + }, + { + FieldElement{14414086, -8002132, 3331830, -3208217, 22249151, -5594188, 18364661, -2906958, 30019587, -9029278}, + FieldElement{-27688051, 1585953, -10775053, 931069, -29120221, -11002319, -14410829, 12029093, 9944378, 8024}, + FieldElement{4368715, -3709630, 29874200, -15022983, -20230386, -11410704, -16114594, -999085, -8142388, 5640030}, + }, + { + FieldElement{10299610, 13746483, 11661824, 16234854, 7630238, 5998374, 9809887, -16694564, 15219798, -14327783}, + FieldElement{27425505, -5719081, 3055006, 10660664, 23458024, 595578, -15398605, -1173195, -18342183, 9742717}, + FieldElement{6744077, 2427284, 26042789, 2720740, -847906, 1118974, 32324614, 7406442, 12420155, 1994844}, + }, + { + FieldElement{14012521, -5024720, -18384453, -9578469, -26485342, -3936439, -13033478, -10909803, 24319929, -6446333}, + FieldElement{16412690, -4507367, 10772641, 15929391, -17068788, -4658621, 10555945, -10484049, -30102368, -4739048}, + FieldElement{22397382, -7767684, -9293161, -12792868, 17166287, -9755136, -27333065, 6199366, 21880021, -12250760}, + }, + { + FieldElement{-4283307, 5368523, -31117018, 8163389, -30323063, 3209128, 16557151, 8890729, 8840445, 4957760}, + FieldElement{-15447727, 709327, -6919446, -10870178, -29777922, 6522332, -21720181, 12130072, -14796503, 5005757}, + FieldElement{-2114751, -14308128, 23019042, 15765735, -25269683, 6002752, 10183197, -13239326, -16395286, -2176112}, + }, + }, + { + { + FieldElement{-19025756, 1632005, 13466291, -7995100, -23640451, 16573537, -32013908, -3057104, 22208662, 2000468}, + FieldElement{3065073, -1412761, -25598674, -361432, -17683065, -5703415, -8164212, 11248527, -3691214, -7414184}, + FieldElement{10379208, -6045554, 8877319, 1473647, -29291284, -12507580, 16690915, 2553332, -3132688, 16400289}, + }, + { + FieldElement{15716668, 1254266, -18472690, 7446274, -8448918, 6344164, -22097271, -7285580, 26894937, 9132066}, + FieldElement{24158887, 12938817, 11085297, -8177598, -28063478, -4457083, -30576463, 64452, -6817084, -2692882}, + FieldElement{13488534, 7794716, 22236231, 5989356, 25426474, -12578208, 2350710, -3418511, -4688006, 2364226}, + }, + { + FieldElement{16335052, 9132434, 25640582, 6678888, 1725628, 8517937, -11807024, -11697457, 15445875, -7798101}, + FieldElement{29004207, -7867081, 28661402, -640412, -12794003, -7943086, 31863255, -4135540, -278050, -15759279}, + FieldElement{-6122061, -14866665, -28614905, 14569919, -10857999, -3591829, 10343412, -6976290, -29828287, -10815811}, + }, + { + FieldElement{27081650, 3463984, 14099042, -4517604, 1616303, -6205604, 29542636, 15372179, 17293797, 960709}, + FieldElement{20263915, 11434237, -5765435, 11236810, 13505955, -10857102, -16111345, 6493122, -19384511, 7639714}, + FieldElement{-2830798, -14839232, 25403038, -8215196, -8317012, -16173699, 18006287, -16043750, 29994677, -15808121}, + }, + { + FieldElement{9769828, 5202651, -24157398, -13631392, -28051003, -11561624, -24613141, -13860782, -31184575, 709464}, + FieldElement{12286395, 13076066, -21775189, -1176622, -25003198, 4057652, -32018128, -8890874, 16102007, 13205847}, + FieldElement{13733362, 5599946, 10557076, 3195751, -5557991, 8536970, -25540170, 8525972, 10151379, 10394400}, + }, + { + FieldElement{4024660, -16137551, 22436262, 12276534, -9099015, -2686099, 19698229, 11743039, -33302334, 8934414}, + FieldElement{-15879800, -4525240, -8580747, -2934061, 14634845, -698278, -9449077, 3137094, -11536886, 11721158}, + FieldElement{17555939, -5013938, 8268606, 2331751, -22738815, 9761013, 9319229, 8835153, -9205489, -1280045}, + }, + { + FieldElement{-461409, -7830014, 20614118, 16688288, -7514766, -4807119, 22300304, 505429, 6108462, -6183415}, + FieldElement{-5070281, 12367917, -30663534, 3234473, 32617080, -8422642, 29880583, -13483331, -26898490, -7867459}, + FieldElement{-31975283, 5726539, 26934134, 10237677, -3173717, -605053, 24199304, 3795095, 7592688, -14992079}, + }, + { + FieldElement{21594432, -14964228, 17466408, -4077222, 32537084, 2739898, 6407723, 12018833, -28256052, 4298412}, + FieldElement{-20650503, -11961496, -27236275, 570498, 3767144, -1717540, 13891942, -1569194, 13717174, 10805743}, + FieldElement{-14676630, -15644296, 15287174, 11927123, 24177847, -8175568, -796431, 14860609, -26938930, -5863836}, + }, + }, + { + { + FieldElement{12962541, 5311799, -10060768, 11658280, 18855286, -7954201, 13286263, -12808704, -4381056, 9882022}, + FieldElement{18512079, 11319350, -20123124, 15090309, 18818594, 5271736, -22727904, 3666879, -23967430, -3299429}, + FieldElement{-6789020, -3146043, 16192429, 13241070, 15898607, -14206114, -10084880, -6661110, -2403099, 5276065}, + }, + { + FieldElement{30169808, -5317648, 26306206, -11750859, 27814964, 7069267, 7152851, 3684982, 1449224, 13082861}, + FieldElement{10342826, 3098505, 2119311, 193222, 25702612, 12233820, 23697382, 15056736, -21016438, -8202000}, + FieldElement{-33150110, 3261608, 22745853, 7948688, 19370557, -15177665, -26171976, 6482814, -10300080, -11060101}, + }, + { + FieldElement{32869458, -5408545, 25609743, 15678670, -10687769, -15471071, 26112421, 2521008, -22664288, 6904815}, + FieldElement{29506923, 4457497, 3377935, -9796444, -30510046, 12935080, 1561737, 3841096, -29003639, -6657642}, + FieldElement{10340844, -6630377, -18656632, -2278430, 12621151, -13339055, 30878497, -11824370, -25584551, 5181966}, + }, + { + FieldElement{25940115, -12658025, 17324188, -10307374, -8671468, 15029094, 24396252, -16450922, -2322852, -12388574}, + FieldElement{-21765684, 9916823, -1300409, 4079498, -1028346, 11909559, 1782390, 12641087, 20603771, -6561742}, + FieldElement{-18882287, -11673380, 24849422, 11501709, 13161720, -4768874, 1925523, 11914390, 4662781, 7820689}, + }, + { + FieldElement{12241050, -425982, 8132691, 9393934, 32846760, -1599620, 29749456, 12172924, 16136752, 15264020}, + FieldElement{-10349955, -14680563, -8211979, 2330220, -17662549, -14545780, 10658213, 6671822, 19012087, 3772772}, + FieldElement{3753511, -3421066, 10617074, 2028709, 14841030, -6721664, 28718732, -15762884, 20527771, 12988982}, + }, + { + FieldElement{-14822485, -5797269, -3707987, 12689773, -898983, -10914866, -24183046, -10564943, 3299665, -12424953}, + FieldElement{-16777703, -15253301, -9642417, 4978983, 3308785, 8755439, 6943197, 6461331, -25583147, 8991218}, + FieldElement{-17226263, 1816362, -1673288, -6086439, 31783888, -8175991, -32948145, 7417950, -30242287, 1507265}, + }, + { + FieldElement{29692663, 6829891, -10498800, 4334896, 20945975, -11906496, -28887608, 8209391, 14606362, -10647073}, + FieldElement{-3481570, 8707081, 32188102, 5672294, 22096700, 1711240, -33020695, 9761487, 4170404, -2085325}, + FieldElement{-11587470, 14855945, -4127778, -1531857, -26649089, 15084046, 22186522, 16002000, -14276837, -8400798}, + }, + { + FieldElement{-4811456, 13761029, -31703877, -2483919, -3312471, 7869047, -7113572, -9620092, 13240845, 10965870}, + FieldElement{-7742563, -8256762, -14768334, -13656260, -23232383, 12387166, 4498947, 14147411, 29514390, 4302863}, + FieldElement{-13413405, -12407859, 20757302, -13801832, 14785143, 8976368, -5061276, -2144373, 17846988, -13971927}, + }, + }, + { + { + FieldElement{-2244452, -754728, -4597030, -1066309, -6247172, 1455299, -21647728, -9214789, -5222701, 12650267}, + FieldElement{-9906797, -16070310, 21134160, 12198166, -27064575, 708126, 387813, 13770293, -19134326, 10958663}, + FieldElement{22470984, 12369526, 23446014, -5441109, -21520802, -9698723, -11772496, -11574455, -25083830, 4271862}, + }, + { + FieldElement{-25169565, -10053642, -19909332, 15361595, -5984358, 2159192, 75375, -4278529, -32526221, 8469673}, + FieldElement{15854970, 4148314, -8893890, 7259002, 11666551, 13824734, -30531198, 2697372, 24154791, -9460943}, + FieldElement{15446137, -15806644, 29759747, 14019369, 30811221, -9610191, -31582008, 12840104, 24913809, 9815020}, + }, + { + FieldElement{-4709286, -5614269, -31841498, -12288893, -14443537, 10799414, -9103676, 13438769, 18735128, 9466238}, + FieldElement{11933045, 9281483, 5081055, -5183824, -2628162, -4905629, -7727821, -10896103, -22728655, 16199064}, + FieldElement{14576810, 379472, -26786533, -8317236, -29426508, -10812974, -102766, 1876699, 30801119, 2164795}, + }, + { + FieldElement{15995086, 3199873, 13672555, 13712240, -19378835, -4647646, -13081610, -15496269, -13492807, 1268052}, + FieldElement{-10290614, -3659039, -3286592, 10948818, 23037027, 3794475, -3470338, -12600221, -17055369, 3565904}, + FieldElement{29210088, -9419337, -5919792, -4952785, 10834811, -13327726, -16512102, -10820713, -27162222, -14030531}, + }, + { + FieldElement{-13161890, 15508588, 16663704, -8156150, -28349942, 9019123, -29183421, -3769423, 2244111, -14001979}, + FieldElement{-5152875, -3800936, -9306475, -6071583, 16243069, 14684434, -25673088, -16180800, 13491506, 4641841}, + FieldElement{10813417, 643330, -19188515, -728916, 30292062, -16600078, 27548447, -7721242, 14476989, -12767431}, + }, + { + FieldElement{10292079, 9984945, 6481436, 8279905, -7251514, 7032743, 27282937, -1644259, -27912810, 12651324}, + FieldElement{-31185513, -813383, 22271204, 11835308, 10201545, 15351028, 17099662, 3988035, 21721536, -3148940}, + FieldElement{10202177, -6545839, -31373232, -9574638, -32150642, -8119683, -12906320, 3852694, 13216206, 14842320}, + }, + { + FieldElement{-15815640, -10601066, -6538952, -7258995, -6984659, -6581778, -31500847, 13765824, -27434397, 9900184}, + FieldElement{14465505, -13833331, -32133984, -14738873, -27443187, 12990492, 33046193, 15796406, -7051866, -8040114}, + FieldElement{30924417, -8279620, 6359016, -12816335, 16508377, 9071735, -25488601, 15413635, 9524356, -7018878}, + }, + { + FieldElement{12274201, -13175547, 32627641, -1785326, 6736625, 13267305, 5237659, -5109483, 15663516, 4035784}, + FieldElement{-2951309, 8903985, 17349946, 601635, -16432815, -4612556, -13732739, -15889334, -22258478, 4659091}, + FieldElement{-16916263, -4952973, -30393711, -15158821, 20774812, 15897498, 5736189, 15026997, -2178256, -13455585}, + }, + }, + { + { + FieldElement{-8858980, -2219056, 28571666, -10155518, -474467, -10105698, -3801496, 278095, 23440562, -290208}, + FieldElement{10226241, -5928702, 15139956, 120818, -14867693, 5218603, 32937275, 11551483, -16571960, -7442864}, + FieldElement{17932739, -12437276, -24039557, 10749060, 11316803, 7535897, 22503767, 5561594, -3646624, 3898661}, + }, + { + FieldElement{7749907, -969567, -16339731, -16464, -25018111, 15122143, -1573531, 7152530, 21831162, 1245233}, + FieldElement{26958459, -14658026, 4314586, 8346991, -5677764, 11960072, -32589295, -620035, -30402091, -16716212}, + FieldElement{-12165896, 9166947, 33491384, 13673479, 29787085, 13096535, 6280834, 14587357, -22338025, 13987525}, + }, + { + FieldElement{-24349909, 7778775, 21116000, 15572597, -4833266, -5357778, -4300898, -5124639, -7469781, -2858068}, + FieldElement{9681908, -6737123, -31951644, 13591838, -6883821, 386950, 31622781, 6439245, -14581012, 4091397}, + FieldElement{-8426427, 1470727, -28109679, -1596990, 3978627, -5123623, -19622683, 12092163, 29077877, -14741988}, + }, + { + FieldElement{5269168, -6859726, -13230211, -8020715, 25932563, 1763552, -5606110, -5505881, -20017847, 2357889}, + FieldElement{32264008, -15407652, -5387735, -1160093, -2091322, -3946900, 23104804, -12869908, 5727338, 189038}, + FieldElement{14609123, -8954470, -6000566, -16622781, -14577387, -7743898, -26745169, 10942115, -25888931, -14884697}, + }, + { + FieldElement{20513500, 5557931, -15604613, 7829531, 26413943, -2019404, -21378968, 7471781, 13913677, -5137875}, + FieldElement{-25574376, 11967826, 29233242, 12948236, -6754465, 4713227, -8940970, 14059180, 12878652, 8511905}, + FieldElement{-25656801, 3393631, -2955415, -7075526, -2250709, 9366908, -30223418, 6812974, 5568676, -3127656}, + }, + { + FieldElement{11630004, 12144454, 2116339, 13606037, 27378885, 15676917, -17408753, -13504373, -14395196, 8070818}, + FieldElement{27117696, -10007378, -31282771, -5570088, 1127282, 12772488, -29845906, 10483306, -11552749, -1028714}, + FieldElement{10637467, -5688064, 5674781, 1072708, -26343588, -6982302, -1683975, 9177853, -27493162, 15431203}, + }, + { + FieldElement{20525145, 10892566, -12742472, 12779443, -29493034, 16150075, -28240519, 14943142, -15056790, -7935931}, + FieldElement{-30024462, 5626926, -551567, -9981087, 753598, 11981191, 25244767, -3239766, -3356550, 9594024}, + FieldElement{-23752644, 2636870, -5163910, -10103818, 585134, 7877383, 11345683, -6492290, 13352335, -10977084}, + }, + { + FieldElement{-1931799, -5407458, 3304649, -12884869, 17015806, -4877091, -29783850, -7752482, -13215537, -319204}, + FieldElement{20239939, 6607058, 6203985, 3483793, -18386976, -779229, -20723742, 15077870, -22750759, 14523817}, + FieldElement{27406042, -6041657, 27423596, -4497394, 4996214, 10002360, -28842031, -4545494, -30172742, -4805667}, + }, + }, + { + { + FieldElement{11374242, 12660715, 17861383, -12540833, 10935568, 1099227, -13886076, -9091740, -27727044, 11358504}, + FieldElement{-12730809, 10311867, 1510375, 10778093, -2119455, -9145702, 32676003, 11149336, -26123651, 4985768}, + FieldElement{-19096303, 341147, -6197485, -239033, 15756973, -8796662, -983043, 13794114, -19414307, -15621255}, + }, + { + FieldElement{6490081, 11940286, 25495923, -7726360, 8668373, -8751316, 3367603, 6970005, -1691065, -9004790}, + FieldElement{1656497, 13457317, 15370807, 6364910, 13605745, 8362338, -19174622, -5475723, -16796596, -5031438}, + FieldElement{-22273315, -13524424, -64685, -4334223, -18605636, -10921968, -20571065, -7007978, -99853, -10237333}, + }, + { + FieldElement{17747465, 10039260, 19368299, -4050591, -20630635, -16041286, 31992683, -15857976, -29260363, -5511971}, + FieldElement{31932027, -4986141, -19612382, 16366580, 22023614, 88450, 11371999, -3744247, 4882242, -10626905}, + FieldElement{29796507, 37186, 19818052, 10115756, -11829032, 3352736, 18551198, 3272828, -5190932, -4162409}, + }, + { + FieldElement{12501286, 4044383, -8612957, -13392385, -32430052, 5136599, -19230378, -3529697, 330070, -3659409}, + FieldElement{6384877, 2899513, 17807477, 7663917, -2358888, 12363165, 25366522, -8573892, -271295, 12071499}, + FieldElement{-8365515, -4042521, 25133448, -4517355, -6211027, 2265927, -32769618, 1936675, -5159697, 3829363}, + }, + { + FieldElement{28425966, -5835433, -577090, -4697198, -14217555, 6870930, 7921550, -6567787, 26333140, 14267664}, + FieldElement{-11067219, 11871231, 27385719, -10559544, -4585914, -11189312, 10004786, -8709488, -21761224, 8930324}, + FieldElement{-21197785, -16396035, 25654216, -1725397, 12282012, 11008919, 1541940, 4757911, -26491501, -16408940}, + }, + { + FieldElement{13537262, -7759490, -20604840, 10961927, -5922820, -13218065, -13156584, 6217254, -15943699, 13814990}, + FieldElement{-17422573, 15157790, 18705543, 29619, 24409717, -260476, 27361681, 9257833, -1956526, -1776914}, + FieldElement{-25045300, -10191966, 15366585, 15166509, -13105086, 8423556, -29171540, 12361135, -18685978, 4578290}, + }, + { + FieldElement{24579768, 3711570, 1342322, -11180126, -27005135, 14124956, -22544529, 14074919, 21964432, 8235257}, + FieldElement{-6528613, -2411497, 9442966, -5925588, 12025640, -1487420, -2981514, -1669206, 13006806, 2355433}, + FieldElement{-16304899, -13605259, -6632427, -5142349, 16974359, -10911083, 27202044, 1719366, 1141648, -12796236}, + }, + { + FieldElement{-12863944, -13219986, -8318266, -11018091, -6810145, -4843894, 13475066, -3133972, 32674895, 13715045}, + FieldElement{11423335, -5468059, 32344216, 8962751, 24989809, 9241752, -13265253, 16086212, -28740881, -15642093}, + FieldElement{-1409668, 12530728, -6368726, 10847387, 19531186, -14132160, -11709148, 7791794, -27245943, 4383347}, + }, + }, + { + { + FieldElement{-28970898, 5271447, -1266009, -9736989, -12455236, 16732599, -4862407, -4906449, 27193557, 6245191}, + FieldElement{-15193956, 5362278, -1783893, 2695834, 4960227, 12840725, 23061898, 3260492, 22510453, 8577507}, + FieldElement{-12632451, 11257346, -32692994, 13548177, -721004, 10879011, 31168030, 13952092, -29571492, -3635906}, + }, + { + FieldElement{3877321, -9572739, 32416692, 5405324, -11004407, -13656635, 3759769, 11935320, 5611860, 8164018}, + FieldElement{-16275802, 14667797, 15906460, 12155291, -22111149, -9039718, 32003002, -8832289, 5773085, -8422109}, + FieldElement{-23788118, -8254300, 1950875, 8937633, 18686727, 16459170, -905725, 12376320, 31632953, 190926}, + }, + { + FieldElement{-24593607, -16138885, -8423991, 13378746, 14162407, 6901328, -8288749, 4508564, -25341555, -3627528}, + FieldElement{8884438, -5884009, 6023974, 10104341, -6881569, -4941533, 18722941, -14786005, -1672488, 827625}, + FieldElement{-32720583, -16289296, -32503547, 7101210, 13354605, 2659080, -1800575, -14108036, -24878478, 1541286}, + }, + { + FieldElement{2901347, -1117687, 3880376, -10059388, -17620940, -3612781, -21802117, -3567481, 20456845, -1885033}, + FieldElement{27019610, 12299467, -13658288, -1603234, -12861660, -4861471, -19540150, -5016058, 29439641, 15138866}, + FieldElement{21536104, -6626420, -32447818, -10690208, -22408077, 5175814, -5420040, -16361163, 7779328, 109896}, + }, + { + FieldElement{30279744, 14648750, -8044871, 6425558, 13639621, -743509, 28698390, 12180118, 23177719, -554075}, + FieldElement{26572847, 3405927, -31701700, 12890905, -19265668, 5335866, -6493768, 2378492, 4439158, -13279347}, + FieldElement{-22716706, 3489070, -9225266, -332753, 18875722, -1140095, 14819434, -12731527, -17717757, -5461437}, + }, + { + FieldElement{-5056483, 16566551, 15953661, 3767752, -10436499, 15627060, -820954, 2177225, 8550082, -15114165}, + FieldElement{-18473302, 16596775, -381660, 15663611, 22860960, 15585581, -27844109, -3582739, -23260460, -8428588}, + FieldElement{-32480551, 15707275, -8205912, -5652081, 29464558, 2713815, -22725137, 15860482, -21902570, 1494193}, + }, + { + FieldElement{-19562091, -14087393, -25583872, -9299552, 13127842, 759709, 21923482, 16529112, 8742704, 12967017}, + FieldElement{-28464899, 1553205, 32536856, -10473729, -24691605, -406174, -8914625, -2933896, -29903758, 15553883}, + FieldElement{21877909, 3230008, 9881174, 10539357, -4797115, 2841332, 11543572, 14513274, 19375923, -12647961}, + }, + { + FieldElement{8832269, -14495485, 13253511, 5137575, 5037871, 4078777, 24880818, -6222716, 2862653, 9455043}, + FieldElement{29306751, 5123106, 20245049, -14149889, 9592566, 8447059, -2077124, -2990080, 15511449, 4789663}, + FieldElement{-20679756, 7004547, 8824831, -9434977, -4045704, -3750736, -5754762, 108893, 23513200, 16652362}, + }, + }, + { + { + FieldElement{-33256173, 4144782, -4476029, -6579123, 10770039, -7155542, -6650416, -12936300, -18319198, 10212860}, + FieldElement{2756081, 8598110, 7383731, -6859892, 22312759, -1105012, 21179801, 2600940, -9988298, -12506466}, + FieldElement{-24645692, 13317462, -30449259, -15653928, 21365574, -10869657, 11344424, 864440, -2499677, -16710063}, + }, + { + FieldElement{-26432803, 6148329, -17184412, -14474154, 18782929, -275997, -22561534, 211300, 2719757, 4940997}, + FieldElement{-1323882, 3911313, -6948744, 14759765, -30027150, 7851207, 21690126, 8518463, 26699843, 5276295}, + FieldElement{-13149873, -6429067, 9396249, 365013, 24703301, -10488939, 1321586, 149635, -15452774, 7159369}, + }, + { + FieldElement{9987780, -3404759, 17507962, 9505530, 9731535, -2165514, 22356009, 8312176, 22477218, -8403385}, + FieldElement{18155857, -16504990, 19744716, 9006923, 15154154, -10538976, 24256460, -4864995, -22548173, 9334109}, + FieldElement{2986088, -4911893, 10776628, -3473844, 10620590, -7083203, -21413845, 14253545, -22587149, 536906}, + }, + { + FieldElement{4377756, 8115836, 24567078, 15495314, 11625074, 13064599, 7390551, 10589625, 10838060, -15420424}, + FieldElement{-19342404, 867880, 9277171, -3218459, -14431572, -1986443, 19295826, -15796950, 6378260, 699185}, + FieldElement{7895026, 4057113, -7081772, -13077756, -17886831, -323126, -716039, 15693155, -5045064, -13373962}, + }, + { + FieldElement{-7737563, -5869402, -14566319, -7406919, 11385654, 13201616, 31730678, -10962840, -3918636, -9669325}, + FieldElement{10188286, -15770834, -7336361, 13427543, 22223443, 14896287, 30743455, 7116568, -21786507, 5427593}, + FieldElement{696102, 13206899, 27047647, -10632082, 15285305, -9853179, 10798490, -4578720, 19236243, 12477404}, + }, + { + FieldElement{-11229439, 11243796, -17054270, -8040865, -788228, -8167967, -3897669, 11180504, -23169516, 7733644}, + FieldElement{17800790, -14036179, -27000429, -11766671, 23887827, 3149671, 23466177, -10538171, 10322027, 15313801}, + FieldElement{26246234, 11968874, 32263343, -5468728, 6830755, -13323031, -15794704, -101982, -24449242, 10890804}, + }, + { + FieldElement{-31365647, 10271363, -12660625, -6267268, 16690207, -13062544, -14982212, 16484931, 25180797, -5334884}, + FieldElement{-586574, 10376444, -32586414, -11286356, 19801893, 10997610, 2276632, 9482883, 316878, 13820577}, + FieldElement{-9882808, -4510367, -2115506, 16457136, -11100081, 11674996, 30756178, -7515054, 30696930, -3712849}, + }, + { + FieldElement{32988917, -9603412, 12499366, 7910787, -10617257, -11931514, -7342816, -9985397, -32349517, 7392473}, + FieldElement{-8855661, 15927861, 9866406, -3649411, -2396914, -16655781, -30409476, -9134995, 25112947, -2926644}, + FieldElement{-2504044, -436966, 25621774, -5678772, 15085042, -5479877, -24884878, -13526194, 5537438, -13914319}, + }, + }, + { + { + FieldElement{-11225584, 2320285, -9584280, 10149187, -33444663, 5808648, -14876251, -1729667, 31234590, 6090599}, + FieldElement{-9633316, 116426, 26083934, 2897444, -6364437, -2688086, 609721, 15878753, -6970405, -9034768}, + FieldElement{-27757857, 247744, -15194774, -9002551, 23288161, -10011936, -23869595, 6503646, 20650474, 1804084}, + }, + { + FieldElement{-27589786, 15456424, 8972517, 8469608, 15640622, 4439847, 3121995, -10329713, 27842616, -202328}, + FieldElement{-15306973, 2839644, 22530074, 10026331, 4602058, 5048462, 28248656, 5031932, -11375082, 12714369}, + FieldElement{20807691, -7270825, 29286141, 11421711, -27876523, -13868230, -21227475, 1035546, -19733229, 12796920}, + }, + { + FieldElement{12076899, -14301286, -8785001, -11848922, -25012791, 16400684, -17591495, -12899438, 3480665, -15182815}, + FieldElement{-32361549, 5457597, 28548107, 7833186, 7303070, -11953545, -24363064, -15921875, -33374054, 2771025}, + FieldElement{-21389266, 421932, 26597266, 6860826, 22486084, -6737172, -17137485, -4210226, -24552282, 15673397}, + }, + { + FieldElement{-20184622, 2338216, 19788685, -9620956, -4001265, -8740893, -20271184, 4733254, 3727144, -12934448}, + FieldElement{6120119, 814863, -11794402, -622716, 6812205, -15747771, 2019594, 7975683, 31123697, -10958981}, + FieldElement{30069250, -11435332, 30434654, 2958439, 18399564, -976289, 12296869, 9204260, -16432438, 9648165}, + }, + { + FieldElement{32705432, -1550977, 30705658, 7451065, -11805606, 9631813, 3305266, 5248604, -26008332, -11377501}, + FieldElement{17219865, 2375039, -31570947, -5575615, -19459679, 9219903, 294711, 15298639, 2662509, -16297073}, + FieldElement{-1172927, -7558695, -4366770, -4287744, -21346413, -8434326, 32087529, -1222777, 32247248, -14389861}, + }, + { + FieldElement{14312628, 1221556, 17395390, -8700143, -4945741, -8684635, -28197744, -9637817, -16027623, -13378845}, + FieldElement{-1428825, -9678990, -9235681, 6549687, -7383069, -468664, 23046502, 9803137, 17597934, 2346211}, + FieldElement{18510800, 15337574, 26171504, 981392, -22241552, 7827556, -23491134, -11323352, 3059833, -11782870}, + }, + { + FieldElement{10141598, 6082907, 17829293, -1947643, 9830092, 13613136, -25556636, -5544586, -33502212, 3592096}, + FieldElement{33114168, -15889352, -26525686, -13343397, 33076705, 8716171, 1151462, 1521897, -982665, -6837803}, + FieldElement{-32939165, -4255815, 23947181, -324178, -33072974, -12305637, -16637686, 3891704, 26353178, 693168}, + }, + { + FieldElement{30374239, 1595580, -16884039, 13186931, 4600344, 406904, 9585294, -400668, 31375464, 14369965}, + FieldElement{-14370654, -7772529, 1510301, 6434173, -18784789, -6262728, 32732230, -13108839, 17901441, 16011505}, + FieldElement{18171223, -11934626, -12500402, 15197122, -11038147, -15230035, -19172240, -16046376, 8764035, 12309598}, + }, + }, + { + { + FieldElement{5975908, -5243188, -19459362, -9681747, -11541277, 14015782, -23665757, 1228319, 17544096, -10593782}, + FieldElement{5811932, -1715293, 3442887, -2269310, -18367348, -8359541, -18044043, -15410127, -5565381, 12348900}, + FieldElement{-31399660, 11407555, 25755363, 6891399, -3256938, 14872274, -24849353, 8141295, -10632534, -585479}, + }, + { + FieldElement{-12675304, 694026, -5076145, 13300344, 14015258, -14451394, -9698672, -11329050, 30944593, 1130208}, + FieldElement{8247766, -6710942, -26562381, -7709309, -14401939, -14648910, 4652152, 2488540, 23550156, -271232}, + FieldElement{17294316, -3788438, 7026748, 15626851, 22990044, 113481, 2267737, -5908146, -408818, -137719}, + }, + { + FieldElement{16091085, -16253926, 18599252, 7340678, 2137637, -1221657, -3364161, 14550936, 3260525, -7166271}, + FieldElement{-4910104, -13332887, 18550887, 10864893, -16459325, -7291596, -23028869, -13204905, -12748722, 2701326}, + FieldElement{-8574695, 16099415, 4629974, -16340524, -20786213, -6005432, -10018363, 9276971, 11329923, 1862132}, + }, + { + FieldElement{14763076, -15903608, -30918270, 3689867, 3511892, 10313526, -21951088, 12219231, -9037963, -940300}, + FieldElement{8894987, -3446094, 6150753, 3013931, 301220, 15693451, -31981216, -2909717, -15438168, 11595570}, + FieldElement{15214962, 3537601, -26238722, -14058872, 4418657, -15230761, 13947276, 10730794, -13489462, -4363670}, + }, + { + FieldElement{-2538306, 7682793, 32759013, 263109, -29984731, -7955452, -22332124, -10188635, 977108, 699994}, + FieldElement{-12466472, 4195084, -9211532, 550904, -15565337, 12917920, 19118110, -439841, -30534533, -14337913}, + FieldElement{31788461, -14507657, 4799989, 7372237, 8808585, -14747943, 9408237, -10051775, 12493932, -5409317}, + }, + { + FieldElement{-25680606, 5260744, -19235809, -6284470, -3695942, 16566087, 27218280, 2607121, 29375955, 6024730}, + FieldElement{842132, -2794693, -4763381, -8722815, 26332018, -12405641, 11831880, 6985184, -9940361, 2854096}, + FieldElement{-4847262, -7969331, 2516242, -5847713, 9695691, -7221186, 16512645, 960770, 12121869, 16648078}, + }, + { + FieldElement{-15218652, 14667096, -13336229, 2013717, 30598287, -464137, -31504922, -7882064, 20237806, 2838411}, + FieldElement{-19288047, 4453152, 15298546, -16178388, 22115043, -15972604, 12544294, -13470457, 1068881, -12499905}, + FieldElement{-9558883, -16518835, 33238498, 13506958, 30505848, -1114596, -8486907, -2630053, 12521378, 4845654}, + }, + { + FieldElement{-28198521, 10744108, -2958380, 10199664, 7759311, -13088600, 3409348, -873400, -6482306, -12885870}, + FieldElement{-23561822, 6230156, -20382013, 10655314, -24040585, -11621172, 10477734, -1240216, -3113227, 13974498}, + FieldElement{12966261, 15550616, -32038948, -1615346, 21025980, -629444, 5642325, 7188737, 18895762, 12629579}, + }, + }, + { + { + FieldElement{14741879, -14946887, 22177208, -11721237, 1279741, 8058600, 11758140, 789443, 32195181, 3895677}, + FieldElement{10758205, 15755439, -4509950, 9243698, -4879422, 6879879, -2204575, -3566119, -8982069, 4429647}, + FieldElement{-2453894, 15725973, -20436342, -10410672, -5803908, -11040220, -7135870, -11642895, 18047436, -15281743}, + }, + { + FieldElement{-25173001, -11307165, 29759956, 11776784, -22262383, -15820455, 10993114, -12850837, -17620701, -9408468}, + FieldElement{21987233, 700364, -24505048, 14972008, -7774265, -5718395, 32155026, 2581431, -29958985, 8773375}, + FieldElement{-25568350, 454463, -13211935, 16126715, 25240068, 8594567, 20656846, 12017935, -7874389, -13920155}, + }, + { + FieldElement{6028182, 6263078, -31011806, -11301710, -818919, 2461772, -31841174, -5468042, -1721788, -2776725}, + FieldElement{-12278994, 16624277, 987579, -5922598, 32908203, 1248608, 7719845, -4166698, 28408820, 6816612}, + FieldElement{-10358094, -8237829, 19549651, -12169222, 22082623, 16147817, 20613181, 13982702, -10339570, 5067943}, + }, + { + FieldElement{-30505967, -3821767, 12074681, 13582412, -19877972, 2443951, -19719286, 12746132, 5331210, -10105944}, + FieldElement{30528811, 3601899, -1957090, 4619785, -27361822, -15436388, 24180793, -12570394, 27679908, -1648928}, + FieldElement{9402404, -13957065, 32834043, 10838634, -26580150, -13237195, 26653274, -8685565, 22611444, -12715406}, + }, + { + FieldElement{22190590, 1118029, 22736441, 15130463, -30460692, -5991321, 19189625, -4648942, 4854859, 6622139}, + FieldElement{-8310738, -2953450, -8262579, -3388049, -10401731, -271929, 13424426, -3567227, 26404409, 13001963}, + FieldElement{-31241838, -15415700, -2994250, 8939346, 11562230, -12840670, -26064365, -11621720, -15405155, 11020693}, + }, + { + FieldElement{1866042, -7949489, -7898649, -10301010, 12483315, 13477547, 3175636, -12424163, 28761762, 1406734}, + FieldElement{-448555, -1777666, 13018551, 3194501, -9580420, -11161737, 24760585, -4347088, 25577411, -13378680}, + FieldElement{-24290378, 4759345, -690653, -1852816, 2066747, 10693769, -29595790, 9884936, -9368926, 4745410}, + }, + { + FieldElement{-9141284, 6049714, -19531061, -4341411, -31260798, 9944276, -15462008, -11311852, 10931924, -11931931}, + FieldElement{-16561513, 14112680, -8012645, 4817318, -8040464, -11414606, -22853429, 10856641, -20470770, 13434654}, + FieldElement{22759489, -10073434, -16766264, -1871422, 13637442, -10168091, 1765144, -12654326, 28445307, -5364710}, + }, + { + FieldElement{29875063, 12493613, 2795536, -3786330, 1710620, 15181182, -10195717, -8788675, 9074234, 1167180}, + FieldElement{-26205683, 11014233, -9842651, -2635485, -26908120, 7532294, -18716888, -9535498, 3843903, 9367684}, + FieldElement{-10969595, -6403711, 9591134, 9582310, 11349256, 108879, 16235123, 8601684, -139197, 4242895}, + }, + }, + { + { + FieldElement{22092954, -13191123, -2042793, -11968512, 32186753, -11517388, -6574341, 2470660, -27417366, 16625501}, + FieldElement{-11057722, 3042016, 13770083, -9257922, 584236, -544855, -7770857, 2602725, -27351616, 14247413}, + FieldElement{6314175, -10264892, -32772502, 15957557, -10157730, 168750, -8618807, 14290061, 27108877, -1180880}, + }, + { + FieldElement{-8586597, -7170966, 13241782, 10960156, -32991015, -13794596, 33547976, -11058889, -27148451, 981874}, + FieldElement{22833440, 9293594, -32649448, -13618667, -9136966, 14756819, -22928859, -13970780, -10479804, -16197962}, + FieldElement{-7768587, 3326786, -28111797, 10783824, 19178761, 14905060, 22680049, 13906969, -15933690, 3797899}, + }, + { + FieldElement{21721356, -4212746, -12206123, 9310182, -3882239, -13653110, 23740224, -2709232, 20491983, -8042152}, + FieldElement{9209270, -15135055, -13256557, -6167798, -731016, 15289673, 25947805, 15286587, 30997318, -6703063}, + FieldElement{7392032, 16618386, 23946583, -8039892, -13265164, -1533858, -14197445, -2321576, 17649998, -250080}, + }, + { + FieldElement{-9301088, -14193827, 30609526, -3049543, -25175069, -1283752, -15241566, -9525724, -2233253, 7662146}, + FieldElement{-17558673, 1763594, -33114336, 15908610, -30040870, -12174295, 7335080, -8472199, -3174674, 3440183}, + FieldElement{-19889700, -5977008, -24111293, -9688870, 10799743, -16571957, 40450, -4431835, 4862400, 1133}, + }, + { + FieldElement{-32856209, -7873957, -5422389, 14860950, -16319031, 7956142, 7258061, 311861, -30594991, -7379421}, + FieldElement{-3773428, -1565936, 28985340, 7499440, 24445838, 9325937, 29727763, 16527196, 18278453, 15405622}, + FieldElement{-4381906, 8508652, -19898366, -3674424, -5984453, 15149970, -13313598, 843523, -21875062, 13626197}, + }, + { + FieldElement{2281448, -13487055, -10915418, -2609910, 1879358, 16164207, -10783882, 3953792, 13340839, 15928663}, + FieldElement{31727126, -7179855, -18437503, -8283652, 2875793, -16390330, -25269894, -7014826, -23452306, 5964753}, + FieldElement{4100420, -5959452, -17179337, 6017714, -18705837, 12227141, -26684835, 11344144, 2538215, -7570755}, + }, + { + FieldElement{-9433605, 6123113, 11159803, -2156608, 30016280, 14966241, -20474983, 1485421, -629256, -15958862}, + FieldElement{-26804558, 4260919, 11851389, 9658551, -32017107, 16367492, -20205425, -13191288, 11659922, -11115118}, + FieldElement{26180396, 10015009, -30844224, -8581293, 5418197, 9480663, 2231568, -10170080, 33100372, -1306171}, + }, + { + FieldElement{15121113, -5201871, -10389905, 15427821, -27509937, -15992507, 21670947, 4486675, -5931810, -14466380}, + FieldElement{16166486, -9483733, -11104130, 6023908, -31926798, -1364923, 2340060, -16254968, -10735770, -10039824}, + FieldElement{28042865, -3557089, -12126526, 12259706, -3717498, -6945899, 6766453, -8689599, 18036436, 5803270}, + }, + }, + { + { + FieldElement{-817581, 6763912, 11803561, 1585585, 10958447, -2671165, 23855391, 4598332, -6159431, -14117438}, + FieldElement{-31031306, -14256194, 17332029, -2383520, 31312682, -5967183, 696309, 50292, -20095739, 11763584}, + FieldElement{-594563, -2514283, -32234153, 12643980, 12650761, 14811489, 665117, -12613632, -19773211, -10713562}, + }, + { + FieldElement{30464590, -11262872, -4127476, -12734478, 19835327, -7105613, -24396175, 2075773, -17020157, 992471}, + FieldElement{18357185, -6994433, 7766382, 16342475, -29324918, 411174, 14578841, 8080033, -11574335, -10601610}, + FieldElement{19598397, 10334610, 12555054, 2555664, 18821899, -10339780, 21873263, 16014234, 26224780, 16452269}, + }, + { + FieldElement{-30223925, 5145196, 5944548, 16385966, 3976735, 2009897, -11377804, -7618186, -20533829, 3698650}, + FieldElement{14187449, 3448569, -10636236, -10810935, -22663880, -3433596, 7268410, -10890444, 27394301, 12015369}, + FieldElement{19695761, 16087646, 28032085, 12999827, 6817792, 11427614, 20244189, -1312777, -13259127, -3402461}, + }, + { + FieldElement{30860103, 12735208, -1888245, -4699734, -16974906, 2256940, -8166013, 12298312, -8550524, -10393462}, + FieldElement{-5719826, -11245325, -1910649, 15569035, 26642876, -7587760, -5789354, -15118654, -4976164, 12651793}, + FieldElement{-2848395, 9953421, 11531313, -5282879, 26895123, -12697089, -13118820, -16517902, 9768698, -2533218}, + }, + { + FieldElement{-24719459, 1894651, -287698, -4704085, 15348719, -8156530, 32767513, 12765450, 4940095, 10678226}, + FieldElement{18860224, 15980149, -18987240, -1562570, -26233012, -11071856, -7843882, 13944024, -24372348, 16582019}, + FieldElement{-15504260, 4970268, -29893044, 4175593, -20993212, -2199756, -11704054, 15444560, -11003761, 7989037}, + }, + { + FieldElement{31490452, 5568061, -2412803, 2182383, -32336847, 4531686, -32078269, 6200206, -19686113, -14800171}, + FieldElement{-17308668, -15879940, -31522777, -2831, -32887382, 16375549, 8680158, -16371713, 28550068, -6857132}, + FieldElement{-28126887, -5688091, 16837845, -1820458, -6850681, 12700016, -30039981, 4364038, 1155602, 5988841}, + }, + { + FieldElement{21890435, -13272907, -12624011, 12154349, -7831873, 15300496, 23148983, -4470481, 24618407, 8283181}, + FieldElement{-33136107, -10512751, 9975416, 6841041, -31559793, 16356536, 3070187, -7025928, 1466169, 10740210}, + FieldElement{-1509399, -15488185, -13503385, -10655916, 32799044, 909394, -13938903, -5779719, -32164649, -15327040}, + }, + { + FieldElement{3960823, -14267803, -28026090, -15918051, -19404858, 13146868, 15567327, 951507, -3260321, -573935}, + FieldElement{24740841, 5052253, -30094131, 8961361, 25877428, 6165135, -24368180, 14397372, -7380369, -6144105}, + FieldElement{-28888365, 3510803, -28103278, -1158478, -11238128, -10631454, -15441463, -14453128, -1625486, -6494814}, + }, + }, + { + { + FieldElement{793299, -9230478, 8836302, -6235707, -27360908, -2369593, 33152843, -4885251, -9906200, -621852}, + FieldElement{5666233, 525582, 20782575, -8038419, -24538499, 14657740, 16099374, 1468826, -6171428, -15186581}, + FieldElement{-4859255, -3779343, -2917758, -6748019, 7778750, 11688288, -30404353, -9871238, -1558923, -9863646}, + }, + { + FieldElement{10896332, -7719704, 824275, 472601, -19460308, 3009587, 25248958, 14783338, -30581476, -15757844}, + FieldElement{10566929, 12612572, -31944212, 11118703, -12633376, 12362879, 21752402, 8822496, 24003793, 14264025}, + FieldElement{27713862, -7355973, -11008240, 9227530, 27050101, 2504721, 23886875, -13117525, 13958495, -5732453}, + }, + { + FieldElement{-23481610, 4867226, -27247128, 3900521, 29838369, -8212291, -31889399, -10041781, 7340521, -15410068}, + FieldElement{4646514, -8011124, -22766023, -11532654, 23184553, 8566613, 31366726, -1381061, -15066784, -10375192}, + FieldElement{-17270517, 12723032, -16993061, 14878794, 21619651, -6197576, 27584817, 3093888, -8843694, 3849921}, + }, + { + FieldElement{-9064912, 2103172, 25561640, -15125738, -5239824, 9582958, 32477045, -9017955, 5002294, -15550259}, + FieldElement{-12057553, -11177906, 21115585, -13365155, 8808712, -12030708, 16489530, 13378448, -25845716, 12741426}, + FieldElement{-5946367, 10645103, -30911586, 15390284, -3286982, -7118677, 24306472, 15852464, 28834118, -7646072}, + }, + { + FieldElement{-17335748, -9107057, -24531279, 9434953, -8472084, -583362, -13090771, 455841, 20461858, 5491305}, + FieldElement{13669248, -16095482, -12481974, -10203039, -14569770, -11893198, -24995986, 11293807, -28588204, -9421832}, + FieldElement{28497928, 6272777, -33022994, 14470570, 8906179, -1225630, 18504674, -14165166, 29867745, -8795943}, + }, + { + FieldElement{-16207023, 13517196, -27799630, -13697798, 24009064, -6373891, -6367600, -13175392, 22853429, -4012011}, + FieldElement{24191378, 16712145, -13931797, 15217831, 14542237, 1646131, 18603514, -11037887, 12876623, -2112447}, + FieldElement{17902668, 4518229, -411702, -2829247, 26878217, 5258055, -12860753, 608397, 16031844, 3723494}, + }, + { + FieldElement{-28632773, 12763728, -20446446, 7577504, 33001348, -13017745, 17558842, -7872890, 23896954, -4314245}, + FieldElement{-20005381, -12011952, 31520464, 605201, 2543521, 5991821, -2945064, 7229064, -9919646, -8826859}, + FieldElement{28816045, 298879, -28165016, -15920938, 19000928, -1665890, -12680833, -2949325, -18051778, -2082915}, + }, + { + FieldElement{16000882, -344896, 3493092, -11447198, -29504595, -13159789, 12577740, 16041268, -19715240, 7847707}, + FieldElement{10151868, 10572098, 27312476, 7922682, 14825339, 4723128, -32855931, -6519018, -10020567, 3852848}, + FieldElement{-11430470, 15697596, -21121557, -4420647, 5386314, 15063598, 16514493, -15932110, 29330899, -15076224}, + }, + }, + { + { + FieldElement{-25499735, -4378794, -15222908, -6901211, 16615731, 2051784, 3303702, 15490, -27548796, 12314391}, + FieldElement{15683520, -6003043, 18109120, -9980648, 15337968, -5997823, -16717435, 15921866, 16103996, -3731215}, + FieldElement{-23169824, -10781249, 13588192, -1628807, -3798557, -1074929, -19273607, 5402699, -29815713, -9841101}, + }, + { + FieldElement{23190676, 2384583, -32714340, 3462154, -29903655, -1529132, -11266856, 8911517, -25205859, 2739713}, + FieldElement{21374101, -3554250, -33524649, 9874411, 15377179, 11831242, -33529904, 6134907, 4931255, 11987849}, + FieldElement{-7732, -2978858, -16223486, 7277597, 105524, -322051, -31480539, 13861388, -30076310, 10117930}, + }, + { + FieldElement{-29501170, -10744872, -26163768, 13051539, -25625564, 5089643, -6325503, 6704079, 12890019, 15728940}, + FieldElement{-21972360, -11771379, -951059, -4418840, 14704840, 2695116, 903376, -10428139, 12885167, 8311031}, + FieldElement{-17516482, 5352194, 10384213, -13811658, 7506451, 13453191, 26423267, 4384730, 1888765, -5435404}, + }, + { + FieldElement{-25817338, -3107312, -13494599, -3182506, 30896459, -13921729, -32251644, -12707869, -19464434, -3340243}, + FieldElement{-23607977, -2665774, -526091, 4651136, 5765089, 4618330, 6092245, 14845197, 17151279, -9854116}, + FieldElement{-24830458, -12733720, -15165978, 10367250, -29530908, -265356, 22825805, -7087279, -16866484, 16176525}, + }, + { + FieldElement{-23583256, 6564961, 20063689, 3798228, -4740178, 7359225, 2006182, -10363426, -28746253, -10197509}, + FieldElement{-10626600, -4486402, -13320562, -5125317, 3432136, -6393229, 23632037, -1940610, 32808310, 1099883}, + FieldElement{15030977, 5768825, -27451236, -2887299, -6427378, -15361371, -15277896, -6809350, 2051441, -15225865}, + }, + { + FieldElement{-3362323, -7239372, 7517890, 9824992, 23555850, 295369, 5148398, -14154188, -22686354, 16633660}, + FieldElement{4577086, -16752288, 13249841, -15304328, 19958763, -14537274, 18559670, -10759549, 8402478, -9864273}, + FieldElement{-28406330, -1051581, -26790155, -907698, -17212414, -11030789, 9453451, -14980072, 17983010, 9967138}, + }, + { + FieldElement{-25762494, 6524722, 26585488, 9969270, 24709298, 1220360, -1677990, 7806337, 17507396, 3651560}, + FieldElement{-10420457, -4118111, 14584639, 15971087, -15768321, 8861010, 26556809, -5574557, -18553322, -11357135}, + FieldElement{2839101, 14284142, 4029895, 3472686, 14402957, 12689363, -26642121, 8459447, -5605463, -7621941}, + }, + { + FieldElement{-4839289, -3535444, 9744961, 2871048, 25113978, 3187018, -25110813, -849066, 17258084, -7977739}, + FieldElement{18164541, -10595176, -17154882, -1542417, 19237078, -9745295, 23357533, -15217008, 26908270, 12150756}, + FieldElement{-30264870, -7647865, 5112249, -7036672, -1499807, -6974257, 43168, -5537701, -32302074, 16215819}, + }, + }, + { + { + FieldElement{-6898905, 9824394, -12304779, -4401089, -31397141, -6276835, 32574489, 12532905, -7503072, -8675347}, + FieldElement{-27343522, -16515468, -27151524, -10722951, 946346, 16291093, 254968, 7168080, 21676107, -1943028}, + FieldElement{21260961, -8424752, -16831886, -11920822, -23677961, 3968121, -3651949, -6215466, -3556191, -7913075}, + }, + { + FieldElement{16544754, 13250366, -16804428, 15546242, -4583003, 12757258, -2462308, -8680336, -18907032, -9662799}, + FieldElement{-2415239, -15577728, 18312303, 4964443, -15272530, -12653564, 26820651, 16690659, 25459437, -4564609}, + FieldElement{-25144690, 11425020, 28423002, -11020557, -6144921, -15826224, 9142795, -2391602, -6432418, -1644817}, + }, + { + FieldElement{-23104652, 6253476, 16964147, -3768872, -25113972, -12296437, -27457225, -16344658, 6335692, 7249989}, + FieldElement{-30333227, 13979675, 7503222, -12368314, -11956721, -4621693, -30272269, 2682242, 25993170, -12478523}, + FieldElement{4364628, 5930691, 32304656, -10044554, -8054781, 15091131, 22857016, -10598955, 31820368, 15075278}, + }, + { + FieldElement{31879134, -8918693, 17258761, 90626, -8041836, -4917709, 24162788, -9650886, -17970238, 12833045}, + FieldElement{19073683, 14851414, -24403169, -11860168, 7625278, 11091125, -19619190, 2074449, -9413939, 14905377}, + FieldElement{24483667, -11935567, -2518866, -11547418, -1553130, 15355506, -25282080, 9253129, 27628530, -7555480}, + }, + { + FieldElement{17597607, 8340603, 19355617, 552187, 26198470, -3176583, 4593324, -9157582, -14110875, 15297016}, + FieldElement{510886, 14337390, -31785257, 16638632, 6328095, 2713355, -20217417, -11864220, 8683221, 2921426}, + FieldElement{18606791, 11874196, 27155355, -5281482, -24031742, 6265446, -25178240, -1278924, 4674690, 13890525}, + }, + { + FieldElement{13609624, 13069022, -27372361, -13055908, 24360586, 9592974, 14977157, 9835105, 4389687, 288396}, + FieldElement{9922506, -519394, 13613107, 5883594, -18758345, -434263, -12304062, 8317628, 23388070, 16052080}, + FieldElement{12720016, 11937594, -31970060, -5028689, 26900120, 8561328, -20155687, -11632979, -14754271, -10812892}, + }, + { + FieldElement{15961858, 14150409, 26716931, -665832, -22794328, 13603569, 11829573, 7467844, -28822128, 929275}, + FieldElement{11038231, -11582396, -27310482, -7316562, -10498527, -16307831, -23479533, -9371869, -21393143, 2465074}, + FieldElement{20017163, -4323226, 27915242, 1529148, 12396362, 15675764, 13817261, -9658066, 2463391, -4622140}, + }, + { + FieldElement{-16358878, -12663911, -12065183, 4996454, -1256422, 1073572, 9583558, 12851107, 4003896, 12673717}, + FieldElement{-1731589, -15155870, -3262930, 16143082, 19294135, 13385325, 14741514, -9103726, 7903886, 2348101}, + FieldElement{24536016, -16515207, 12715592, -3862155, 1511293, 10047386, -3842346, -7129159, -28377538, 10048127}, + }, + }, + { + { + FieldElement{-12622226, -6204820, 30718825, 2591312, -10617028, 12192840, 18873298, -7297090, -32297756, 15221632}, + FieldElement{-26478122, -11103864, 11546244, -1852483, 9180880, 7656409, -21343950, 2095755, 29769758, 6593415}, + FieldElement{-31994208, -2907461, 4176912, 3264766, 12538965, -868111, 26312345, -6118678, 30958054, 8292160}, + }, + { + FieldElement{31429822, -13959116, 29173532, 15632448, 12174511, -2760094, 32808831, 3977186, 26143136, -3148876}, + FieldElement{22648901, 1402143, -22799984, 13746059, 7936347, 365344, -8668633, -1674433, -3758243, -2304625}, + FieldElement{-15491917, 8012313, -2514730, -12702462, -23965846, -10254029, -1612713, -1535569, -16664475, 8194478}, + }, + { + FieldElement{27338066, -7507420, -7414224, 10140405, -19026427, -6589889, 27277191, 8855376, 28572286, 3005164}, + FieldElement{26287124, 4821776, 25476601, -4145903, -3764513, -15788984, -18008582, 1182479, -26094821, -13079595}, + FieldElement{-7171154, 3178080, 23970071, 6201893, -17195577, -4489192, -21876275, -13982627, 32208683, -1198248}, + }, + { + FieldElement{-16657702, 2817643, -10286362, 14811298, 6024667, 13349505, -27315504, -10497842, -27672585, -11539858}, + FieldElement{15941029, -9405932, -21367050, 8062055, 31876073, -238629, -15278393, -1444429, 15397331, -4130193}, + FieldElement{8934485, -13485467, -23286397, -13423241, -32446090, 14047986, 31170398, -1441021, -27505566, 15087184}, + }, + { + FieldElement{-18357243, -2156491, 24524913, -16677868, 15520427, -6360776, -15502406, 11461896, 16788528, -5868942}, + FieldElement{-1947386, 16013773, 21750665, 3714552, -17401782, -16055433, -3770287, -10323320, 31322514, -11615635}, + FieldElement{21426655, -5650218, -13648287, -5347537, -28812189, -4920970, -18275391, -14621414, 13040862, -12112948}, + }, + { + FieldElement{11293895, 12478086, -27136401, 15083750, -29307421, 14748872, 14555558, -13417103, 1613711, 4896935}, + FieldElement{-25894883, 15323294, -8489791, -8057900, 25967126, -13425460, 2825960, -4897045, -23971776, -11267415}, + FieldElement{-15924766, -5229880, -17443532, 6410664, 3622847, 10243618, 20615400, 12405433, -23753030, -8436416}, + }, + { + FieldElement{-7091295, 12556208, -20191352, 9025187, -17072479, 4333801, 4378436, 2432030, 23097949, -566018}, + FieldElement{4565804, -16025654, 20084412, -7842817, 1724999, 189254, 24767264, 10103221, -18512313, 2424778}, + FieldElement{366633, -11976806, 8173090, -6890119, 30788634, 5745705, -7168678, 1344109, -3642553, 12412659}, + }, + { + FieldElement{-24001791, 7690286, 14929416, -168257, -32210835, -13412986, 24162697, -15326504, -3141501, 11179385}, + FieldElement{18289522, -14724954, 8056945, 16430056, -21729724, 7842514, -6001441, -1486897, -18684645, -11443503}, + FieldElement{476239, 6601091, -6152790, -9723375, 17503545, -4863900, 27672959, 13403813, 11052904, 5219329}, + }, + }, + { + { + FieldElement{20678546, -8375738, -32671898, 8849123, -5009758, 14574752, 31186971, -3973730, 9014762, -8579056}, + FieldElement{-13644050, -10350239, -15962508, 5075808, -1514661, -11534600, -33102500, 9160280, 8473550, -3256838}, + FieldElement{24900749, 14435722, 17209120, -15292541, -22592275, 9878983, -7689309, -16335821, -24568481, 11788948}, + }, + { + FieldElement{-3118155, -11395194, -13802089, 14797441, 9652448, -6845904, -20037437, 10410733, -24568470, -1458691}, + FieldElement{-15659161, 16736706, -22467150, 10215878, -9097177, 7563911, 11871841, -12505194, -18513325, 8464118}, + FieldElement{-23400612, 8348507, -14585951, -861714, -3950205, -6373419, 14325289, 8628612, 33313881, -8370517}, + }, + { + FieldElement{-20186973, -4967935, 22367356, 5271547, -1097117, -4788838, -24805667, -10236854, -8940735, -5818269}, + FieldElement{-6948785, -1795212, -32625683, -16021179, 32635414, -7374245, 15989197, -12838188, 28358192, -4253904}, + FieldElement{-23561781, -2799059, -32351682, -1661963, -9147719, 10429267, -16637684, 4072016, -5351664, 5596589}, + }, + { + FieldElement{-28236598, -3390048, 12312896, 6213178, 3117142, 16078565, 29266239, 2557221, 1768301, 15373193}, + FieldElement{-7243358, -3246960, -4593467, -7553353, -127927, -912245, -1090902, -4504991, -24660491, 3442910}, + FieldElement{-30210571, 5124043, 14181784, 8197961, 18964734, -11939093, 22597931, 7176455, -18585478, 13365930}, + }, + { + FieldElement{-7877390, -1499958, 8324673, 4690079, 6261860, 890446, 24538107, -8570186, -9689599, -3031667}, + FieldElement{25008904, -10771599, -4305031, -9638010, 16265036, 15721635, 683793, -11823784, 15723479, -15163481}, + FieldElement{-9660625, 12374379, -27006999, -7026148, -7724114, -12314514, 11879682, 5400171, 519526, -1235876}, + }, + { + FieldElement{22258397, -16332233, -7869817, 14613016, -22520255, -2950923, -20353881, 7315967, 16648397, 7605640}, + FieldElement{-8081308, -8464597, -8223311, 9719710, 19259459, -15348212, 23994942, -5281555, -9468848, 4763278}, + FieldElement{-21699244, 9220969, -15730624, 1084137, -25476107, -2852390, 31088447, -7764523, -11356529, 728112}, + }, + { + FieldElement{26047220, -11751471, -6900323, -16521798, 24092068, 9158119, -4273545, -12555558, -29365436, -5498272}, + FieldElement{17510331, -322857, 5854289, 8403524, 17133918, -3112612, -28111007, 12327945, 10750447, 10014012}, + FieldElement{-10312768, 3936952, 9156313, -8897683, 16498692, -994647, -27481051, -666732, 3424691, 7540221}, + }, + { + FieldElement{30322361, -6964110, 11361005, -4143317, 7433304, 4989748, -7071422, -16317219, -9244265, 15258046}, + FieldElement{13054562, -2779497, 19155474, 469045, -12482797, 4566042, 5631406, 2711395, 1062915, -5136345}, + FieldElement{-19240248, -11254599, -29509029, -7499965, -5835763, 13005411, -6066489, 12194497, 32960380, 1459310}, + }, + }, + { + { + FieldElement{19852034, 7027924, 23669353, 10020366, 8586503, -6657907, 394197, -6101885, 18638003, -11174937}, + FieldElement{31395534, 15098109, 26581030, 8030562, -16527914, -5007134, 9012486, -7584354, -6643087, -5442636}, + FieldElement{-9192165, -2347377, -1997099, 4529534, 25766844, 607986, -13222, 9677543, -32294889, -6456008}, + }, + { + FieldElement{-2444496, -149937, 29348902, 8186665, 1873760, 12489863, -30934579, -7839692, -7852844, -8138429}, + FieldElement{-15236356, -15433509, 7766470, 746860, 26346930, -10221762, -27333451, 10754588, -9431476, 5203576}, + FieldElement{31834314, 14135496, -770007, 5159118, 20917671, -16768096, -7467973, -7337524, 31809243, 7347066}, + }, + { + FieldElement{-9606723, -11874240, 20414459, 13033986, 13716524, -11691881, 19797970, -12211255, 15192876, -2087490}, + FieldElement{-12663563, -2181719, 1168162, -3804809, 26747877, -14138091, 10609330, 12694420, 33473243, -13382104}, + FieldElement{33184999, 11180355, 15832085, -11385430, -1633671, 225884, 15089336, -11023903, -6135662, 14480053}, + }, + { + FieldElement{31308717, -5619998, 31030840, -1897099, 15674547, -6582883, 5496208, 13685227, 27595050, 8737275}, + FieldElement{-20318852, -15150239, 10933843, -16178022, 8335352, -7546022, -31008351, -12610604, 26498114, 66511}, + FieldElement{22644454, -8761729, -16671776, 4884562, -3105614, -13559366, 30540766, -4286747, -13327787, -7515095}, + }, + { + FieldElement{-28017847, 9834845, 18617207, -2681312, -3401956, -13307506, 8205540, 13585437, -17127465, 15115439}, + FieldElement{23711543, -672915, 31206561, -8362711, 6164647, -9709987, -33535882, -1426096, 8236921, 16492939}, + FieldElement{-23910559, -13515526, -26299483, -4503841, 25005590, -7687270, 19574902, 10071562, 6708380, -6222424}, + }, + { + FieldElement{2101391, -4930054, 19702731, 2367575, -15427167, 1047675, 5301017, 9328700, 29955601, -11678310}, + FieldElement{3096359, 9271816, -21620864, -15521844, -14847996, -7592937, -25892142, -12635595, -9917575, 6216608}, + FieldElement{-32615849, 338663, -25195611, 2510422, -29213566, -13820213, 24822830, -6146567, -26767480, 7525079}, + }, + { + FieldElement{-23066649, -13985623, 16133487, -7896178, -3389565, 778788, -910336, -2782495, -19386633, 11994101}, + FieldElement{21691500, -13624626, -641331, -14367021, 3285881, -3483596, -25064666, 9718258, -7477437, 13381418}, + FieldElement{18445390, -4202236, 14979846, 11622458, -1727110, -3582980, 23111648, -6375247, 28535282, 15779576}, + }, + { + FieldElement{30098053, 3089662, -9234387, 16662135, -21306940, 11308411, -14068454, 12021730, 9955285, -16303356}, + FieldElement{9734894, -14576830, -7473633, -9138735, 2060392, 11313496, -18426029, 9924399, 20194861, 13380996}, + FieldElement{-26378102, -7965207, -22167821, 15789297, -18055342, -6168792, -1984914, 15707771, 26342023, 10146099}, + }, + }, + { + { + FieldElement{-26016874, -219943, 21339191, -41388, 19745256, -2878700, -29637280, 2227040, 21612326, -545728}, + FieldElement{-13077387, 1184228, 23562814, -5970442, -20351244, -6348714, 25764461, 12243797, -20856566, 11649658}, + FieldElement{-10031494, 11262626, 27384172, 2271902, 26947504, -15997771, 39944, 6114064, 33514190, 2333242}, + }, + { + FieldElement{-21433588, -12421821, 8119782, 7219913, -21830522, -9016134, -6679750, -12670638, 24350578, -13450001}, + FieldElement{-4116307, -11271533, -23886186, 4843615, -30088339, 690623, -31536088, -10406836, 8317860, 12352766}, + FieldElement{18200138, -14475911, -33087759, -2696619, -23702521, -9102511, -23552096, -2287550, 20712163, 6719373}, + }, + { + FieldElement{26656208, 6075253, -7858556, 1886072, -28344043, 4262326, 11117530, -3763210, 26224235, -3297458}, + FieldElement{-17168938, -14854097, -3395676, -16369877, -19954045, 14050420, 21728352, 9493610, 18620611, -16428628}, + FieldElement{-13323321, 13325349, 11432106, 5964811, 18609221, 6062965, -5269471, -9725556, -30701573, -16479657}, + }, + { + FieldElement{-23860538, -11233159, 26961357, 1640861, -32413112, -16737940, 12248509, -5240639, 13735342, 1934062}, + FieldElement{25089769, 6742589, 17081145, -13406266, 21909293, -16067981, -15136294, -3765346, -21277997, 5473616}, + FieldElement{31883677, -7961101, 1083432, -11572403, 22828471, 13290673, -7125085, 12469656, 29111212, -5451014}, + }, + { + FieldElement{24244947, -15050407, -26262976, 2791540, -14997599, 16666678, 24367466, 6388839, -10295587, 452383}, + FieldElement{-25640782, -3417841, 5217916, 16224624, 19987036, -4082269, -24236251, -5915248, 15766062, 8407814}, + FieldElement{-20406999, 13990231, 15495425, 16395525, 5377168, 15166495, -8917023, -4388953, -8067909, 2276718}, + }, + { + FieldElement{30157918, 12924066, -17712050, 9245753, 19895028, 3368142, -23827587, 5096219, 22740376, -7303417}, + FieldElement{2041139, -14256350, 7783687, 13876377, -25946985, -13352459, 24051124, 13742383, -15637599, 13295222}, + FieldElement{33338237, -8505733, 12532113, 7977527, 9106186, -1715251, -17720195, -4612972, -4451357, -14669444}, + }, + { + FieldElement{-20045281, 5454097, -14346548, 6447146, 28862071, 1883651, -2469266, -4141880, 7770569, 9620597}, + FieldElement{23208068, 7979712, 33071466, 8149229, 1758231, -10834995, 30945528, -1694323, -33502340, -14767970}, + FieldElement{1439958, -16270480, -1079989, -793782, 4625402, 10647766, -5043801, 1220118, 30494170, -11440799}, + }, + { + FieldElement{-5037580, -13028295, -2970559, -3061767, 15640974, -6701666, -26739026, 926050, -1684339, -13333647}, + FieldElement{13908495, -3549272, 30919928, -6273825, -21521863, 7989039, 9021034, 9078865, 3353509, 4033511}, + FieldElement{-29663431, -15113610, 32259991, -344482, 24295849, -12912123, 23161163, 8839127, 27485041, 7356032}, + }, + }, + { + { + FieldElement{9661027, 705443, 11980065, -5370154, -1628543, 14661173, -6346142, 2625015, 28431036, -16771834}, + FieldElement{-23839233, -8311415, -25945511, 7480958, -17681669, -8354183, -22545972, 14150565, 15970762, 4099461}, + FieldElement{29262576, 16756590, 26350592, -8793563, 8529671, -11208050, 13617293, -9937143, 11465739, 8317062}, + }, + { + FieldElement{-25493081, -6962928, 32500200, -9419051, -23038724, -2302222, 14898637, 3848455, 20969334, -5157516}, + FieldElement{-20384450, -14347713, -18336405, 13884722, -33039454, 2842114, -21610826, -3649888, 11177095, 14989547}, + FieldElement{-24496721, -11716016, 16959896, 2278463, 12066309, 10137771, 13515641, 2581286, -28487508, 9930240}, + }, + { + FieldElement{-17751622, -2097826, 16544300, -13009300, -15914807, -14949081, 18345767, -13403753, 16291481, -5314038}, + FieldElement{-33229194, 2553288, 32678213, 9875984, 8534129, 6889387, -9676774, 6957617, 4368891, 9788741}, + FieldElement{16660756, 7281060, -10830758, 12911820, 20108584, -8101676, -21722536, -8613148, 16250552, -11111103}, + }, + { + FieldElement{-19765507, 2390526, -16551031, 14161980, 1905286, 6414907, 4689584, 10604807, -30190403, 4782747}, + FieldElement{-1354539, 14736941, -7367442, -13292886, 7710542, -14155590, -9981571, 4383045, 22546403, 437323}, + FieldElement{31665577, -12180464, -16186830, 1491339, -18368625, 3294682, 27343084, 2786261, -30633590, -14097016}, + }, + { + FieldElement{-14467279, -683715, -33374107, 7448552, 19294360, 14334329, -19690631, 2355319, -19284671, -6114373}, + FieldElement{15121312, -15796162, 6377020, -6031361, -10798111, -12957845, 18952177, 15496498, -29380133, 11754228}, + FieldElement{-2637277, -13483075, 8488727, -14303896, 12728761, -1622493, 7141596, 11724556, 22761615, -10134141}, + }, + { + FieldElement{16918416, 11729663, -18083579, 3022987, -31015732, -13339659, -28741185, -12227393, 32851222, 11717399}, + FieldElement{11166634, 7338049, -6722523, 4531520, -29468672, -7302055, 31474879, 3483633, -1193175, -4030831}, + FieldElement{-185635, 9921305, 31456609, -13536438, -12013818, 13348923, 33142652, 6546660, -19985279, -3948376}, + }, + { + FieldElement{-32460596, 11266712, -11197107, -7899103, 31703694, 3855903, -8537131, -12833048, -30772034, -15486313}, + FieldElement{-18006477, 12709068, 3991746, -6479188, -21491523, -10550425, -31135347, -16049879, 10928917, 3011958}, + FieldElement{-6957757, -15594337, 31696059, 334240, 29576716, 14796075, -30831056, -12805180, 18008031, 10258577}, + }, + { + FieldElement{-22448644, 15655569, 7018479, -4410003, -30314266, -1201591, -1853465, 1367120, 25127874, 6671743}, + FieldElement{29701166, -14373934, -10878120, 9279288, -17568, 13127210, 21382910, 11042292, 25838796, 4642684}, + FieldElement{-20430234, 14955537, -24126347, 8124619, -5369288, -5990470, 30468147, -13900640, 18423289, 4177476}, + }, + }, +} diff --git a/vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go b/vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go new file mode 100644 index 00000000..fd03c252 --- /dev/null +++ b/vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go @@ -0,0 +1,1793 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package edwards25519 + +import "encoding/binary" + +// This code is a port of the public domain, “ref10” implementation of ed25519 +// from SUPERCOP. + +// FieldElement represents an element of the field GF(2^255 - 19). An element +// t, entries t[0]...t[9], represents the integer t[0]+2^26 t[1]+2^51 t[2]+2^77 +// t[3]+2^102 t[4]+...+2^230 t[9]. Bounds on each t[i] vary depending on +// context. +type FieldElement [10]int32 + +var zero FieldElement + +func FeZero(fe *FieldElement) { + copy(fe[:], zero[:]) +} + +func FeOne(fe *FieldElement) { + FeZero(fe) + fe[0] = 1 +} + +func FeAdd(dst, a, b *FieldElement) { + dst[0] = a[0] + b[0] + dst[1] = a[1] + b[1] + dst[2] = a[2] + b[2] + dst[3] = a[3] + b[3] + dst[4] = a[4] + b[4] + dst[5] = a[5] + b[5] + dst[6] = a[6] + b[6] + dst[7] = a[7] + b[7] + dst[8] = a[8] + b[8] + dst[9] = a[9] + b[9] +} + +func FeSub(dst, a, b *FieldElement) { + dst[0] = a[0] - b[0] + dst[1] = a[1] - b[1] + dst[2] = a[2] - b[2] + dst[3] = a[3] - b[3] + dst[4] = a[4] - b[4] + dst[5] = a[5] - b[5] + dst[6] = a[6] - b[6] + dst[7] = a[7] - b[7] + dst[8] = a[8] - b[8] + dst[9] = a[9] - b[9] +} + +func FeCopy(dst, src *FieldElement) { + copy(dst[:], src[:]) +} + +// Replace (f,g) with (g,g) if b == 1; +// replace (f,g) with (f,g) if b == 0. +// +// Preconditions: b in {0,1}. +func FeCMove(f, g *FieldElement, b int32) { + b = -b + f[0] ^= b & (f[0] ^ g[0]) + f[1] ^= b & (f[1] ^ g[1]) + f[2] ^= b & (f[2] ^ g[2]) + f[3] ^= b & (f[3] ^ g[3]) + f[4] ^= b & (f[4] ^ g[4]) + f[5] ^= b & (f[5] ^ g[5]) + f[6] ^= b & (f[6] ^ g[6]) + f[7] ^= b & (f[7] ^ g[7]) + f[8] ^= b & (f[8] ^ g[8]) + f[9] ^= b & (f[9] ^ g[9]) +} + +func load3(in []byte) int64 { + var r int64 + r = int64(in[0]) + r |= int64(in[1]) << 8 + r |= int64(in[2]) << 16 + return r +} + +func load4(in []byte) int64 { + var r int64 + r = int64(in[0]) + r |= int64(in[1]) << 8 + r |= int64(in[2]) << 16 + r |= int64(in[3]) << 24 + return r +} + +func FeFromBytes(dst *FieldElement, src *[32]byte) { + h0 := load4(src[:]) + h1 := load3(src[4:]) << 6 + h2 := load3(src[7:]) << 5 + h3 := load3(src[10:]) << 3 + h4 := load3(src[13:]) << 2 + h5 := load4(src[16:]) + h6 := load3(src[20:]) << 7 + h7 := load3(src[23:]) << 5 + h8 := load3(src[26:]) << 4 + h9 := (load3(src[29:]) & 8388607) << 2 + + FeCombine(dst, h0, h1, h2, h3, h4, h5, h6, h7, h8, h9) +} + +// FeToBytes marshals h to s. +// Preconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +// +// Write p=2^255-19; q=floor(h/p). +// Basic claim: q = floor(2^(-255)(h + 19 2^(-25)h9 + 2^(-1))). +// +// Proof: +// Have |h|<=p so |q|<=1 so |19^2 2^(-255) q|<1/4. +// Also have |h-2^230 h9|<2^230 so |19 2^(-255)(h-2^230 h9)|<1/4. +// +// Write y=2^(-1)-19^2 2^(-255)q-19 2^(-255)(h-2^230 h9). +// Then 0> 25 + q = (h[0] + q) >> 26 + q = (h[1] + q) >> 25 + q = (h[2] + q) >> 26 + q = (h[3] + q) >> 25 + q = (h[4] + q) >> 26 + q = (h[5] + q) >> 25 + q = (h[6] + q) >> 26 + q = (h[7] + q) >> 25 + q = (h[8] + q) >> 26 + q = (h[9] + q) >> 25 + + // Goal: Output h-(2^255-19)q, which is between 0 and 2^255-20. + h[0] += 19 * q + // Goal: Output h-2^255 q, which is between 0 and 2^255-20. + + carry[0] = h[0] >> 26 + h[1] += carry[0] + h[0] -= carry[0] << 26 + carry[1] = h[1] >> 25 + h[2] += carry[1] + h[1] -= carry[1] << 25 + carry[2] = h[2] >> 26 + h[3] += carry[2] + h[2] -= carry[2] << 26 + carry[3] = h[3] >> 25 + h[4] += carry[3] + h[3] -= carry[3] << 25 + carry[4] = h[4] >> 26 + h[5] += carry[4] + h[4] -= carry[4] << 26 + carry[5] = h[5] >> 25 + h[6] += carry[5] + h[5] -= carry[5] << 25 + carry[6] = h[6] >> 26 + h[7] += carry[6] + h[6] -= carry[6] << 26 + carry[7] = h[7] >> 25 + h[8] += carry[7] + h[7] -= carry[7] << 25 + carry[8] = h[8] >> 26 + h[9] += carry[8] + h[8] -= carry[8] << 26 + carry[9] = h[9] >> 25 + h[9] -= carry[9] << 25 + // h10 = carry9 + + // Goal: Output h[0]+...+2^255 h10-2^255 q, which is between 0 and 2^255-20. + // Have h[0]+...+2^230 h[9] between 0 and 2^255-1; + // evidently 2^255 h10-2^255 q = 0. + // Goal: Output h[0]+...+2^230 h[9]. + + s[0] = byte(h[0] >> 0) + s[1] = byte(h[0] >> 8) + s[2] = byte(h[0] >> 16) + s[3] = byte((h[0] >> 24) | (h[1] << 2)) + s[4] = byte(h[1] >> 6) + s[5] = byte(h[1] >> 14) + s[6] = byte((h[1] >> 22) | (h[2] << 3)) + s[7] = byte(h[2] >> 5) + s[8] = byte(h[2] >> 13) + s[9] = byte((h[2] >> 21) | (h[3] << 5)) + s[10] = byte(h[3] >> 3) + s[11] = byte(h[3] >> 11) + s[12] = byte((h[3] >> 19) | (h[4] << 6)) + s[13] = byte(h[4] >> 2) + s[14] = byte(h[4] >> 10) + s[15] = byte(h[4] >> 18) + s[16] = byte(h[5] >> 0) + s[17] = byte(h[5] >> 8) + s[18] = byte(h[5] >> 16) + s[19] = byte((h[5] >> 24) | (h[6] << 1)) + s[20] = byte(h[6] >> 7) + s[21] = byte(h[6] >> 15) + s[22] = byte((h[6] >> 23) | (h[7] << 3)) + s[23] = byte(h[7] >> 5) + s[24] = byte(h[7] >> 13) + s[25] = byte((h[7] >> 21) | (h[8] << 4)) + s[26] = byte(h[8] >> 4) + s[27] = byte(h[8] >> 12) + s[28] = byte((h[8] >> 20) | (h[9] << 6)) + s[29] = byte(h[9] >> 2) + s[30] = byte(h[9] >> 10) + s[31] = byte(h[9] >> 18) +} + +func FeIsNegative(f *FieldElement) byte { + var s [32]byte + FeToBytes(&s, f) + return s[0] & 1 +} + +func FeIsNonZero(f *FieldElement) int32 { + var s [32]byte + FeToBytes(&s, f) + var x uint8 + for _, b := range s { + x |= b + } + x |= x >> 4 + x |= x >> 2 + x |= x >> 1 + return int32(x & 1) +} + +// FeNeg sets h = -f +// +// Preconditions: +// |f| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +// +// Postconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +func FeNeg(h, f *FieldElement) { + h[0] = -f[0] + h[1] = -f[1] + h[2] = -f[2] + h[3] = -f[3] + h[4] = -f[4] + h[5] = -f[5] + h[6] = -f[6] + h[7] = -f[7] + h[8] = -f[8] + h[9] = -f[9] +} + +func FeCombine(h *FieldElement, h0, h1, h2, h3, h4, h5, h6, h7, h8, h9 int64) { + var c0, c1, c2, c3, c4, c5, c6, c7, c8, c9 int64 + + /* + |h0| <= (1.1*1.1*2^52*(1+19+19+19+19)+1.1*1.1*2^50*(38+38+38+38+38)) + i.e. |h0| <= 1.2*2^59; narrower ranges for h2, h4, h6, h8 + |h1| <= (1.1*1.1*2^51*(1+1+19+19+19+19+19+19+19+19)) + i.e. |h1| <= 1.5*2^58; narrower ranges for h3, h5, h7, h9 + */ + + c0 = (h0 + (1 << 25)) >> 26 + h1 += c0 + h0 -= c0 << 26 + c4 = (h4 + (1 << 25)) >> 26 + h5 += c4 + h4 -= c4 << 26 + /* |h0| <= 2^25 */ + /* |h4| <= 2^25 */ + /* |h1| <= 1.51*2^58 */ + /* |h5| <= 1.51*2^58 */ + + c1 = (h1 + (1 << 24)) >> 25 + h2 += c1 + h1 -= c1 << 25 + c5 = (h5 + (1 << 24)) >> 25 + h6 += c5 + h5 -= c5 << 25 + /* |h1| <= 2^24; from now on fits into int32 */ + /* |h5| <= 2^24; from now on fits into int32 */ + /* |h2| <= 1.21*2^59 */ + /* |h6| <= 1.21*2^59 */ + + c2 = (h2 + (1 << 25)) >> 26 + h3 += c2 + h2 -= c2 << 26 + c6 = (h6 + (1 << 25)) >> 26 + h7 += c6 + h6 -= c6 << 26 + /* |h2| <= 2^25; from now on fits into int32 unchanged */ + /* |h6| <= 2^25; from now on fits into int32 unchanged */ + /* |h3| <= 1.51*2^58 */ + /* |h7| <= 1.51*2^58 */ + + c3 = (h3 + (1 << 24)) >> 25 + h4 += c3 + h3 -= c3 << 25 + c7 = (h7 + (1 << 24)) >> 25 + h8 += c7 + h7 -= c7 << 25 + /* |h3| <= 2^24; from now on fits into int32 unchanged */ + /* |h7| <= 2^24; from now on fits into int32 unchanged */ + /* |h4| <= 1.52*2^33 */ + /* |h8| <= 1.52*2^33 */ + + c4 = (h4 + (1 << 25)) >> 26 + h5 += c4 + h4 -= c4 << 26 + c8 = (h8 + (1 << 25)) >> 26 + h9 += c8 + h8 -= c8 << 26 + /* |h4| <= 2^25; from now on fits into int32 unchanged */ + /* |h8| <= 2^25; from now on fits into int32 unchanged */ + /* |h5| <= 1.01*2^24 */ + /* |h9| <= 1.51*2^58 */ + + c9 = (h9 + (1 << 24)) >> 25 + h0 += c9 * 19 + h9 -= c9 << 25 + /* |h9| <= 2^24; from now on fits into int32 unchanged */ + /* |h0| <= 1.8*2^37 */ + + c0 = (h0 + (1 << 25)) >> 26 + h1 += c0 + h0 -= c0 << 26 + /* |h0| <= 2^25; from now on fits into int32 unchanged */ + /* |h1| <= 1.01*2^24 */ + + h[0] = int32(h0) + h[1] = int32(h1) + h[2] = int32(h2) + h[3] = int32(h3) + h[4] = int32(h4) + h[5] = int32(h5) + h[6] = int32(h6) + h[7] = int32(h7) + h[8] = int32(h8) + h[9] = int32(h9) +} + +// FeMul calculates h = f * g +// Can overlap h with f or g. +// +// Preconditions: +// |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// |g| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// +// Postconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +// +// Notes on implementation strategy: +// +// Using schoolbook multiplication. +// Karatsuba would save a little in some cost models. +// +// Most multiplications by 2 and 19 are 32-bit precomputations; +// cheaper than 64-bit postcomputations. +// +// There is one remaining multiplication by 19 in the carry chain; +// one *19 precomputation can be merged into this, +// but the resulting data flow is considerably less clean. +// +// There are 12 carries below. +// 10 of them are 2-way parallelizable and vectorizable. +// Can get away with 11 carries, but then data flow is much deeper. +// +// With tighter constraints on inputs, can squeeze carries into int32. +func FeMul(h, f, g *FieldElement) { + f0 := int64(f[0]) + f1 := int64(f[1]) + f2 := int64(f[2]) + f3 := int64(f[3]) + f4 := int64(f[4]) + f5 := int64(f[5]) + f6 := int64(f[6]) + f7 := int64(f[7]) + f8 := int64(f[8]) + f9 := int64(f[9]) + + f1_2 := int64(2 * f[1]) + f3_2 := int64(2 * f[3]) + f5_2 := int64(2 * f[5]) + f7_2 := int64(2 * f[7]) + f9_2 := int64(2 * f[9]) + + g0 := int64(g[0]) + g1 := int64(g[1]) + g2 := int64(g[2]) + g3 := int64(g[3]) + g4 := int64(g[4]) + g5 := int64(g[5]) + g6 := int64(g[6]) + g7 := int64(g[7]) + g8 := int64(g[8]) + g9 := int64(g[9]) + + g1_19 := int64(19 * g[1]) /* 1.4*2^29 */ + g2_19 := int64(19 * g[2]) /* 1.4*2^30; still ok */ + g3_19 := int64(19 * g[3]) + g4_19 := int64(19 * g[4]) + g5_19 := int64(19 * g[5]) + g6_19 := int64(19 * g[6]) + g7_19 := int64(19 * g[7]) + g8_19 := int64(19 * g[8]) + g9_19 := int64(19 * g[9]) + + h0 := f0*g0 + f1_2*g9_19 + f2*g8_19 + f3_2*g7_19 + f4*g6_19 + f5_2*g5_19 + f6*g4_19 + f7_2*g3_19 + f8*g2_19 + f9_2*g1_19 + h1 := f0*g1 + f1*g0 + f2*g9_19 + f3*g8_19 + f4*g7_19 + f5*g6_19 + f6*g5_19 + f7*g4_19 + f8*g3_19 + f9*g2_19 + h2 := f0*g2 + f1_2*g1 + f2*g0 + f3_2*g9_19 + f4*g8_19 + f5_2*g7_19 + f6*g6_19 + f7_2*g5_19 + f8*g4_19 + f9_2*g3_19 + h3 := f0*g3 + f1*g2 + f2*g1 + f3*g0 + f4*g9_19 + f5*g8_19 + f6*g7_19 + f7*g6_19 + f8*g5_19 + f9*g4_19 + h4 := f0*g4 + f1_2*g3 + f2*g2 + f3_2*g1 + f4*g0 + f5_2*g9_19 + f6*g8_19 + f7_2*g7_19 + f8*g6_19 + f9_2*g5_19 + h5 := f0*g5 + f1*g4 + f2*g3 + f3*g2 + f4*g1 + f5*g0 + f6*g9_19 + f7*g8_19 + f8*g7_19 + f9*g6_19 + h6 := f0*g6 + f1_2*g5 + f2*g4 + f3_2*g3 + f4*g2 + f5_2*g1 + f6*g0 + f7_2*g9_19 + f8*g8_19 + f9_2*g7_19 + h7 := f0*g7 + f1*g6 + f2*g5 + f3*g4 + f4*g3 + f5*g2 + f6*g1 + f7*g0 + f8*g9_19 + f9*g8_19 + h8 := f0*g8 + f1_2*g7 + f2*g6 + f3_2*g5 + f4*g4 + f5_2*g3 + f6*g2 + f7_2*g1 + f8*g0 + f9_2*g9_19 + h9 := f0*g9 + f1*g8 + f2*g7 + f3*g6 + f4*g5 + f5*g4 + f6*g3 + f7*g2 + f8*g1 + f9*g0 + + FeCombine(h, h0, h1, h2, h3, h4, h5, h6, h7, h8, h9) +} + +func feSquare(f *FieldElement) (h0, h1, h2, h3, h4, h5, h6, h7, h8, h9 int64) { + f0 := int64(f[0]) + f1 := int64(f[1]) + f2 := int64(f[2]) + f3 := int64(f[3]) + f4 := int64(f[4]) + f5 := int64(f[5]) + f6 := int64(f[6]) + f7 := int64(f[7]) + f8 := int64(f[8]) + f9 := int64(f[9]) + f0_2 := int64(2 * f[0]) + f1_2 := int64(2 * f[1]) + f2_2 := int64(2 * f[2]) + f3_2 := int64(2 * f[3]) + f4_2 := int64(2 * f[4]) + f5_2 := int64(2 * f[5]) + f6_2 := int64(2 * f[6]) + f7_2 := int64(2 * f[7]) + f5_38 := 38 * f5 // 1.31*2^30 + f6_19 := 19 * f6 // 1.31*2^30 + f7_38 := 38 * f7 // 1.31*2^30 + f8_19 := 19 * f8 // 1.31*2^30 + f9_38 := 38 * f9 // 1.31*2^30 + + h0 = f0*f0 + f1_2*f9_38 + f2_2*f8_19 + f3_2*f7_38 + f4_2*f6_19 + f5*f5_38 + h1 = f0_2*f1 + f2*f9_38 + f3_2*f8_19 + f4*f7_38 + f5_2*f6_19 + h2 = f0_2*f2 + f1_2*f1 + f3_2*f9_38 + f4_2*f8_19 + f5_2*f7_38 + f6*f6_19 + h3 = f0_2*f3 + f1_2*f2 + f4*f9_38 + f5_2*f8_19 + f6*f7_38 + h4 = f0_2*f4 + f1_2*f3_2 + f2*f2 + f5_2*f9_38 + f6_2*f8_19 + f7*f7_38 + h5 = f0_2*f5 + f1_2*f4 + f2_2*f3 + f6*f9_38 + f7_2*f8_19 + h6 = f0_2*f6 + f1_2*f5_2 + f2_2*f4 + f3_2*f3 + f7_2*f9_38 + f8*f8_19 + h7 = f0_2*f7 + f1_2*f6 + f2_2*f5 + f3_2*f4 + f8*f9_38 + h8 = f0_2*f8 + f1_2*f7_2 + f2_2*f6 + f3_2*f5_2 + f4*f4 + f9*f9_38 + h9 = f0_2*f9 + f1_2*f8 + f2_2*f7 + f3_2*f6 + f4_2*f5 + + return +} + +// FeSquare calculates h = f*f. Can overlap h with f. +// +// Preconditions: +// |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// +// Postconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +func FeSquare(h, f *FieldElement) { + h0, h1, h2, h3, h4, h5, h6, h7, h8, h9 := feSquare(f) + FeCombine(h, h0, h1, h2, h3, h4, h5, h6, h7, h8, h9) +} + +// FeSquare2 sets h = 2 * f * f +// +// Can overlap h with f. +// +// Preconditions: +// |f| bounded by 1.65*2^26,1.65*2^25,1.65*2^26,1.65*2^25,etc. +// +// Postconditions: +// |h| bounded by 1.01*2^25,1.01*2^24,1.01*2^25,1.01*2^24,etc. +// See fe_mul.c for discussion of implementation strategy. +func FeSquare2(h, f *FieldElement) { + h0, h1, h2, h3, h4, h5, h6, h7, h8, h9 := feSquare(f) + + h0 += h0 + h1 += h1 + h2 += h2 + h3 += h3 + h4 += h4 + h5 += h5 + h6 += h6 + h7 += h7 + h8 += h8 + h9 += h9 + + FeCombine(h, h0, h1, h2, h3, h4, h5, h6, h7, h8, h9) +} + +func FeInvert(out, z *FieldElement) { + var t0, t1, t2, t3 FieldElement + var i int + + FeSquare(&t0, z) // 2^1 + FeSquare(&t1, &t0) // 2^2 + for i = 1; i < 2; i++ { // 2^3 + FeSquare(&t1, &t1) + } + FeMul(&t1, z, &t1) // 2^3 + 2^0 + FeMul(&t0, &t0, &t1) // 2^3 + 2^1 + 2^0 + FeSquare(&t2, &t0) // 2^4 + 2^2 + 2^1 + FeMul(&t1, &t1, &t2) // 2^4 + 2^3 + 2^2 + 2^1 + 2^0 + FeSquare(&t2, &t1) // 5,4,3,2,1 + for i = 1; i < 5; i++ { // 9,8,7,6,5 + FeSquare(&t2, &t2) + } + FeMul(&t1, &t2, &t1) // 9,8,7,6,5,4,3,2,1,0 + FeSquare(&t2, &t1) // 10..1 + for i = 1; i < 10; i++ { // 19..10 + FeSquare(&t2, &t2) + } + FeMul(&t2, &t2, &t1) // 19..0 + FeSquare(&t3, &t2) // 20..1 + for i = 1; i < 20; i++ { // 39..20 + FeSquare(&t3, &t3) + } + FeMul(&t2, &t3, &t2) // 39..0 + FeSquare(&t2, &t2) // 40..1 + for i = 1; i < 10; i++ { // 49..10 + FeSquare(&t2, &t2) + } + FeMul(&t1, &t2, &t1) // 49..0 + FeSquare(&t2, &t1) // 50..1 + for i = 1; i < 50; i++ { // 99..50 + FeSquare(&t2, &t2) + } + FeMul(&t2, &t2, &t1) // 99..0 + FeSquare(&t3, &t2) // 100..1 + for i = 1; i < 100; i++ { // 199..100 + FeSquare(&t3, &t3) + } + FeMul(&t2, &t3, &t2) // 199..0 + FeSquare(&t2, &t2) // 200..1 + for i = 1; i < 50; i++ { // 249..50 + FeSquare(&t2, &t2) + } + FeMul(&t1, &t2, &t1) // 249..0 + FeSquare(&t1, &t1) // 250..1 + for i = 1; i < 5; i++ { // 254..5 + FeSquare(&t1, &t1) + } + FeMul(out, &t1, &t0) // 254..5,3,1,0 +} + +func fePow22523(out, z *FieldElement) { + var t0, t1, t2 FieldElement + var i int + + FeSquare(&t0, z) + for i = 1; i < 1; i++ { + FeSquare(&t0, &t0) + } + FeSquare(&t1, &t0) + for i = 1; i < 2; i++ { + FeSquare(&t1, &t1) + } + FeMul(&t1, z, &t1) + FeMul(&t0, &t0, &t1) + FeSquare(&t0, &t0) + for i = 1; i < 1; i++ { + FeSquare(&t0, &t0) + } + FeMul(&t0, &t1, &t0) + FeSquare(&t1, &t0) + for i = 1; i < 5; i++ { + FeSquare(&t1, &t1) + } + FeMul(&t0, &t1, &t0) + FeSquare(&t1, &t0) + for i = 1; i < 10; i++ { + FeSquare(&t1, &t1) + } + FeMul(&t1, &t1, &t0) + FeSquare(&t2, &t1) + for i = 1; i < 20; i++ { + FeSquare(&t2, &t2) + } + FeMul(&t1, &t2, &t1) + FeSquare(&t1, &t1) + for i = 1; i < 10; i++ { + FeSquare(&t1, &t1) + } + FeMul(&t0, &t1, &t0) + FeSquare(&t1, &t0) + for i = 1; i < 50; i++ { + FeSquare(&t1, &t1) + } + FeMul(&t1, &t1, &t0) + FeSquare(&t2, &t1) + for i = 1; i < 100; i++ { + FeSquare(&t2, &t2) + } + FeMul(&t1, &t2, &t1) + FeSquare(&t1, &t1) + for i = 1; i < 50; i++ { + FeSquare(&t1, &t1) + } + FeMul(&t0, &t1, &t0) + FeSquare(&t0, &t0) + for i = 1; i < 2; i++ { + FeSquare(&t0, &t0) + } + FeMul(out, &t0, z) +} + +// Group elements are members of the elliptic curve -x^2 + y^2 = 1 + d * x^2 * +// y^2 where d = -121665/121666. +// +// Several representations are used: +// ProjectiveGroupElement: (X:Y:Z) satisfying x=X/Z, y=Y/Z +// ExtendedGroupElement: (X:Y:Z:T) satisfying x=X/Z, y=Y/Z, XY=ZT +// CompletedGroupElement: ((X:Z),(Y:T)) satisfying x=X/Z, y=Y/T +// PreComputedGroupElement: (y+x,y-x,2dxy) + +type ProjectiveGroupElement struct { + X, Y, Z FieldElement +} + +type ExtendedGroupElement struct { + X, Y, Z, T FieldElement +} + +type CompletedGroupElement struct { + X, Y, Z, T FieldElement +} + +type PreComputedGroupElement struct { + yPlusX, yMinusX, xy2d FieldElement +} + +type CachedGroupElement struct { + yPlusX, yMinusX, Z, T2d FieldElement +} + +func (p *ProjectiveGroupElement) Zero() { + FeZero(&p.X) + FeOne(&p.Y) + FeOne(&p.Z) +} + +func (p *ProjectiveGroupElement) Double(r *CompletedGroupElement) { + var t0 FieldElement + + FeSquare(&r.X, &p.X) + FeSquare(&r.Z, &p.Y) + FeSquare2(&r.T, &p.Z) + FeAdd(&r.Y, &p.X, &p.Y) + FeSquare(&t0, &r.Y) + FeAdd(&r.Y, &r.Z, &r.X) + FeSub(&r.Z, &r.Z, &r.X) + FeSub(&r.X, &t0, &r.Y) + FeSub(&r.T, &r.T, &r.Z) +} + +func (p *ProjectiveGroupElement) ToBytes(s *[32]byte) { + var recip, x, y FieldElement + + FeInvert(&recip, &p.Z) + FeMul(&x, &p.X, &recip) + FeMul(&y, &p.Y, &recip) + FeToBytes(s, &y) + s[31] ^= FeIsNegative(&x) << 7 +} + +func (p *ExtendedGroupElement) Zero() { + FeZero(&p.X) + FeOne(&p.Y) + FeOne(&p.Z) + FeZero(&p.T) +} + +func (p *ExtendedGroupElement) Double(r *CompletedGroupElement) { + var q ProjectiveGroupElement + p.ToProjective(&q) + q.Double(r) +} + +func (p *ExtendedGroupElement) ToCached(r *CachedGroupElement) { + FeAdd(&r.yPlusX, &p.Y, &p.X) + FeSub(&r.yMinusX, &p.Y, &p.X) + FeCopy(&r.Z, &p.Z) + FeMul(&r.T2d, &p.T, &d2) +} + +func (p *ExtendedGroupElement) ToProjective(r *ProjectiveGroupElement) { + FeCopy(&r.X, &p.X) + FeCopy(&r.Y, &p.Y) + FeCopy(&r.Z, &p.Z) +} + +func (p *ExtendedGroupElement) ToBytes(s *[32]byte) { + var recip, x, y FieldElement + + FeInvert(&recip, &p.Z) + FeMul(&x, &p.X, &recip) + FeMul(&y, &p.Y, &recip) + FeToBytes(s, &y) + s[31] ^= FeIsNegative(&x) << 7 +} + +func (p *ExtendedGroupElement) FromBytes(s *[32]byte) bool { + var u, v, v3, vxx, check FieldElement + + FeFromBytes(&p.Y, s) + FeOne(&p.Z) + FeSquare(&u, &p.Y) + FeMul(&v, &u, &d) + FeSub(&u, &u, &p.Z) // y = y^2-1 + FeAdd(&v, &v, &p.Z) // v = dy^2+1 + + FeSquare(&v3, &v) + FeMul(&v3, &v3, &v) // v3 = v^3 + FeSquare(&p.X, &v3) + FeMul(&p.X, &p.X, &v) + FeMul(&p.X, &p.X, &u) // x = uv^7 + + fePow22523(&p.X, &p.X) // x = (uv^7)^((q-5)/8) + FeMul(&p.X, &p.X, &v3) + FeMul(&p.X, &p.X, &u) // x = uv^3(uv^7)^((q-5)/8) + + var tmpX, tmp2 [32]byte + + FeSquare(&vxx, &p.X) + FeMul(&vxx, &vxx, &v) + FeSub(&check, &vxx, &u) // vx^2-u + if FeIsNonZero(&check) == 1 { + FeAdd(&check, &vxx, &u) // vx^2+u + if FeIsNonZero(&check) == 1 { + return false + } + FeMul(&p.X, &p.X, &SqrtM1) + + FeToBytes(&tmpX, &p.X) + for i, v := range tmpX { + tmp2[31-i] = v + } + } + + if FeIsNegative(&p.X) != (s[31] >> 7) { + FeNeg(&p.X, &p.X) + } + + FeMul(&p.T, &p.X, &p.Y) + return true +} + +func (p *CompletedGroupElement) ToProjective(r *ProjectiveGroupElement) { + FeMul(&r.X, &p.X, &p.T) + FeMul(&r.Y, &p.Y, &p.Z) + FeMul(&r.Z, &p.Z, &p.T) +} + +func (p *CompletedGroupElement) ToExtended(r *ExtendedGroupElement) { + FeMul(&r.X, &p.X, &p.T) + FeMul(&r.Y, &p.Y, &p.Z) + FeMul(&r.Z, &p.Z, &p.T) + FeMul(&r.T, &p.X, &p.Y) +} + +func (p *PreComputedGroupElement) Zero() { + FeOne(&p.yPlusX) + FeOne(&p.yMinusX) + FeZero(&p.xy2d) +} + +func geAdd(r *CompletedGroupElement, p *ExtendedGroupElement, q *CachedGroupElement) { + var t0 FieldElement + + FeAdd(&r.X, &p.Y, &p.X) + FeSub(&r.Y, &p.Y, &p.X) + FeMul(&r.Z, &r.X, &q.yPlusX) + FeMul(&r.Y, &r.Y, &q.yMinusX) + FeMul(&r.T, &q.T2d, &p.T) + FeMul(&r.X, &p.Z, &q.Z) + FeAdd(&t0, &r.X, &r.X) + FeSub(&r.X, &r.Z, &r.Y) + FeAdd(&r.Y, &r.Z, &r.Y) + FeAdd(&r.Z, &t0, &r.T) + FeSub(&r.T, &t0, &r.T) +} + +func geSub(r *CompletedGroupElement, p *ExtendedGroupElement, q *CachedGroupElement) { + var t0 FieldElement + + FeAdd(&r.X, &p.Y, &p.X) + FeSub(&r.Y, &p.Y, &p.X) + FeMul(&r.Z, &r.X, &q.yMinusX) + FeMul(&r.Y, &r.Y, &q.yPlusX) + FeMul(&r.T, &q.T2d, &p.T) + FeMul(&r.X, &p.Z, &q.Z) + FeAdd(&t0, &r.X, &r.X) + FeSub(&r.X, &r.Z, &r.Y) + FeAdd(&r.Y, &r.Z, &r.Y) + FeSub(&r.Z, &t0, &r.T) + FeAdd(&r.T, &t0, &r.T) +} + +func geMixedAdd(r *CompletedGroupElement, p *ExtendedGroupElement, q *PreComputedGroupElement) { + var t0 FieldElement + + FeAdd(&r.X, &p.Y, &p.X) + FeSub(&r.Y, &p.Y, &p.X) + FeMul(&r.Z, &r.X, &q.yPlusX) + FeMul(&r.Y, &r.Y, &q.yMinusX) + FeMul(&r.T, &q.xy2d, &p.T) + FeAdd(&t0, &p.Z, &p.Z) + FeSub(&r.X, &r.Z, &r.Y) + FeAdd(&r.Y, &r.Z, &r.Y) + FeAdd(&r.Z, &t0, &r.T) + FeSub(&r.T, &t0, &r.T) +} + +func geMixedSub(r *CompletedGroupElement, p *ExtendedGroupElement, q *PreComputedGroupElement) { + var t0 FieldElement + + FeAdd(&r.X, &p.Y, &p.X) + FeSub(&r.Y, &p.Y, &p.X) + FeMul(&r.Z, &r.X, &q.yMinusX) + FeMul(&r.Y, &r.Y, &q.yPlusX) + FeMul(&r.T, &q.xy2d, &p.T) + FeAdd(&t0, &p.Z, &p.Z) + FeSub(&r.X, &r.Z, &r.Y) + FeAdd(&r.Y, &r.Z, &r.Y) + FeSub(&r.Z, &t0, &r.T) + FeAdd(&r.T, &t0, &r.T) +} + +func slide(r *[256]int8, a *[32]byte) { + for i := range r { + r[i] = int8(1 & (a[i>>3] >> uint(i&7))) + } + + for i := range r { + if r[i] != 0 { + for b := 1; b <= 6 && i+b < 256; b++ { + if r[i+b] != 0 { + if r[i]+(r[i+b]<= -15 { + r[i] -= r[i+b] << uint(b) + for k := i + b; k < 256; k++ { + if r[k] == 0 { + r[k] = 1 + break + } + r[k] = 0 + } + } else { + break + } + } + } + } + } +} + +// GeDoubleScalarMultVartime sets r = a*A + b*B +// where a = a[0]+256*a[1]+...+256^31 a[31]. +// and b = b[0]+256*b[1]+...+256^31 b[31]. +// B is the Ed25519 base point (x,4/5) with x positive. +func GeDoubleScalarMultVartime(r *ProjectiveGroupElement, a *[32]byte, A *ExtendedGroupElement, b *[32]byte) { + var aSlide, bSlide [256]int8 + var Ai [8]CachedGroupElement // A,3A,5A,7A,9A,11A,13A,15A + var t CompletedGroupElement + var u, A2 ExtendedGroupElement + var i int + + slide(&aSlide, a) + slide(&bSlide, b) + + A.ToCached(&Ai[0]) + A.Double(&t) + t.ToExtended(&A2) + + for i := 0; i < 7; i++ { + geAdd(&t, &A2, &Ai[i]) + t.ToExtended(&u) + u.ToCached(&Ai[i+1]) + } + + r.Zero() + + for i = 255; i >= 0; i-- { + if aSlide[i] != 0 || bSlide[i] != 0 { + break + } + } + + for ; i >= 0; i-- { + r.Double(&t) + + if aSlide[i] > 0 { + t.ToExtended(&u) + geAdd(&t, &u, &Ai[aSlide[i]/2]) + } else if aSlide[i] < 0 { + t.ToExtended(&u) + geSub(&t, &u, &Ai[(-aSlide[i])/2]) + } + + if bSlide[i] > 0 { + t.ToExtended(&u) + geMixedAdd(&t, &u, &bi[bSlide[i]/2]) + } else if bSlide[i] < 0 { + t.ToExtended(&u) + geMixedSub(&t, &u, &bi[(-bSlide[i])/2]) + } + + t.ToProjective(r) + } +} + +// equal returns 1 if b == c and 0 otherwise, assuming that b and c are +// non-negative. +func equal(b, c int32) int32 { + x := uint32(b ^ c) + x-- + return int32(x >> 31) +} + +// negative returns 1 if b < 0 and 0 otherwise. +func negative(b int32) int32 { + return (b >> 31) & 1 +} + +func PreComputedGroupElementCMove(t, u *PreComputedGroupElement, b int32) { + FeCMove(&t.yPlusX, &u.yPlusX, b) + FeCMove(&t.yMinusX, &u.yMinusX, b) + FeCMove(&t.xy2d, &u.xy2d, b) +} + +func selectPoint(t *PreComputedGroupElement, pos int32, b int32) { + var minusT PreComputedGroupElement + bNegative := negative(b) + bAbs := b - (((-bNegative) & b) << 1) + + t.Zero() + for i := int32(0); i < 8; i++ { + PreComputedGroupElementCMove(t, &base[pos][i], equal(bAbs, i+1)) + } + FeCopy(&minusT.yPlusX, &t.yMinusX) + FeCopy(&minusT.yMinusX, &t.yPlusX) + FeNeg(&minusT.xy2d, &t.xy2d) + PreComputedGroupElementCMove(t, &minusT, bNegative) +} + +// GeScalarMultBase computes h = a*B, where +// a = a[0]+256*a[1]+...+256^31 a[31] +// B is the Ed25519 base point (x,4/5) with x positive. +// +// Preconditions: +// a[31] <= 127 +func GeScalarMultBase(h *ExtendedGroupElement, a *[32]byte) { + var e [64]int8 + + for i, v := range a { + e[2*i] = int8(v & 15) + e[2*i+1] = int8((v >> 4) & 15) + } + + // each e[i] is between 0 and 15 and e[63] is between 0 and 7. + + carry := int8(0) + for i := 0; i < 63; i++ { + e[i] += carry + carry = (e[i] + 8) >> 4 + e[i] -= carry << 4 + } + e[63] += carry + // each e[i] is between -8 and 8. + + h.Zero() + var t PreComputedGroupElement + var r CompletedGroupElement + for i := int32(1); i < 64; i += 2 { + selectPoint(&t, i/2, int32(e[i])) + geMixedAdd(&r, h, &t) + r.ToExtended(h) + } + + var s ProjectiveGroupElement + + h.Double(&r) + r.ToProjective(&s) + s.Double(&r) + r.ToProjective(&s) + s.Double(&r) + r.ToProjective(&s) + s.Double(&r) + r.ToExtended(h) + + for i := int32(0); i < 64; i += 2 { + selectPoint(&t, i/2, int32(e[i])) + geMixedAdd(&r, h, &t) + r.ToExtended(h) + } +} + +// The scalars are GF(2^252 + 27742317777372353535851937790883648493). + +// Input: +// a[0]+256*a[1]+...+256^31*a[31] = a +// b[0]+256*b[1]+...+256^31*b[31] = b +// c[0]+256*c[1]+...+256^31*c[31] = c +// +// Output: +// s[0]+256*s[1]+...+256^31*s[31] = (ab+c) mod l +// where l = 2^252 + 27742317777372353535851937790883648493. +func ScMulAdd(s, a, b, c *[32]byte) { + a0 := 2097151 & load3(a[:]) + a1 := 2097151 & (load4(a[2:]) >> 5) + a2 := 2097151 & (load3(a[5:]) >> 2) + a3 := 2097151 & (load4(a[7:]) >> 7) + a4 := 2097151 & (load4(a[10:]) >> 4) + a5 := 2097151 & (load3(a[13:]) >> 1) + a6 := 2097151 & (load4(a[15:]) >> 6) + a7 := 2097151 & (load3(a[18:]) >> 3) + a8 := 2097151 & load3(a[21:]) + a9 := 2097151 & (load4(a[23:]) >> 5) + a10 := 2097151 & (load3(a[26:]) >> 2) + a11 := (load4(a[28:]) >> 7) + b0 := 2097151 & load3(b[:]) + b1 := 2097151 & (load4(b[2:]) >> 5) + b2 := 2097151 & (load3(b[5:]) >> 2) + b3 := 2097151 & (load4(b[7:]) >> 7) + b4 := 2097151 & (load4(b[10:]) >> 4) + b5 := 2097151 & (load3(b[13:]) >> 1) + b6 := 2097151 & (load4(b[15:]) >> 6) + b7 := 2097151 & (load3(b[18:]) >> 3) + b8 := 2097151 & load3(b[21:]) + b9 := 2097151 & (load4(b[23:]) >> 5) + b10 := 2097151 & (load3(b[26:]) >> 2) + b11 := (load4(b[28:]) >> 7) + c0 := 2097151 & load3(c[:]) + c1 := 2097151 & (load4(c[2:]) >> 5) + c2 := 2097151 & (load3(c[5:]) >> 2) + c3 := 2097151 & (load4(c[7:]) >> 7) + c4 := 2097151 & (load4(c[10:]) >> 4) + c5 := 2097151 & (load3(c[13:]) >> 1) + c6 := 2097151 & (load4(c[15:]) >> 6) + c7 := 2097151 & (load3(c[18:]) >> 3) + c8 := 2097151 & load3(c[21:]) + c9 := 2097151 & (load4(c[23:]) >> 5) + c10 := 2097151 & (load3(c[26:]) >> 2) + c11 := (load4(c[28:]) >> 7) + var carry [23]int64 + + s0 := c0 + a0*b0 + s1 := c1 + a0*b1 + a1*b0 + s2 := c2 + a0*b2 + a1*b1 + a2*b0 + s3 := c3 + a0*b3 + a1*b2 + a2*b1 + a3*b0 + s4 := c4 + a0*b4 + a1*b3 + a2*b2 + a3*b1 + a4*b0 + s5 := c5 + a0*b5 + a1*b4 + a2*b3 + a3*b2 + a4*b1 + a5*b0 + s6 := c6 + a0*b6 + a1*b5 + a2*b4 + a3*b3 + a4*b2 + a5*b1 + a6*b0 + s7 := c7 + a0*b7 + a1*b6 + a2*b5 + a3*b4 + a4*b3 + a5*b2 + a6*b1 + a7*b0 + s8 := c8 + a0*b8 + a1*b7 + a2*b6 + a3*b5 + a4*b4 + a5*b3 + a6*b2 + a7*b1 + a8*b0 + s9 := c9 + a0*b9 + a1*b8 + a2*b7 + a3*b6 + a4*b5 + a5*b4 + a6*b3 + a7*b2 + a8*b1 + a9*b0 + s10 := c10 + a0*b10 + a1*b9 + a2*b8 + a3*b7 + a4*b6 + a5*b5 + a6*b4 + a7*b3 + a8*b2 + a9*b1 + a10*b0 + s11 := c11 + a0*b11 + a1*b10 + a2*b9 + a3*b8 + a4*b7 + a5*b6 + a6*b5 + a7*b4 + a8*b3 + a9*b2 + a10*b1 + a11*b0 + s12 := a1*b11 + a2*b10 + a3*b9 + a4*b8 + a5*b7 + a6*b6 + a7*b5 + a8*b4 + a9*b3 + a10*b2 + a11*b1 + s13 := a2*b11 + a3*b10 + a4*b9 + a5*b8 + a6*b7 + a7*b6 + a8*b5 + a9*b4 + a10*b3 + a11*b2 + s14 := a3*b11 + a4*b10 + a5*b9 + a6*b8 + a7*b7 + a8*b6 + a9*b5 + a10*b4 + a11*b3 + s15 := a4*b11 + a5*b10 + a6*b9 + a7*b8 + a8*b7 + a9*b6 + a10*b5 + a11*b4 + s16 := a5*b11 + a6*b10 + a7*b9 + a8*b8 + a9*b7 + a10*b6 + a11*b5 + s17 := a6*b11 + a7*b10 + a8*b9 + a9*b8 + a10*b7 + a11*b6 + s18 := a7*b11 + a8*b10 + a9*b9 + a10*b8 + a11*b7 + s19 := a8*b11 + a9*b10 + a10*b9 + a11*b8 + s20 := a9*b11 + a10*b10 + a11*b9 + s21 := a10*b11 + a11*b10 + s22 := a11 * b11 + s23 := int64(0) + + carry[0] = (s0 + (1 << 20)) >> 21 + s1 += carry[0] + s0 -= carry[0] << 21 + carry[2] = (s2 + (1 << 20)) >> 21 + s3 += carry[2] + s2 -= carry[2] << 21 + carry[4] = (s4 + (1 << 20)) >> 21 + s5 += carry[4] + s4 -= carry[4] << 21 + carry[6] = (s6 + (1 << 20)) >> 21 + s7 += carry[6] + s6 -= carry[6] << 21 + carry[8] = (s8 + (1 << 20)) >> 21 + s9 += carry[8] + s8 -= carry[8] << 21 + carry[10] = (s10 + (1 << 20)) >> 21 + s11 += carry[10] + s10 -= carry[10] << 21 + carry[12] = (s12 + (1 << 20)) >> 21 + s13 += carry[12] + s12 -= carry[12] << 21 + carry[14] = (s14 + (1 << 20)) >> 21 + s15 += carry[14] + s14 -= carry[14] << 21 + carry[16] = (s16 + (1 << 20)) >> 21 + s17 += carry[16] + s16 -= carry[16] << 21 + carry[18] = (s18 + (1 << 20)) >> 21 + s19 += carry[18] + s18 -= carry[18] << 21 + carry[20] = (s20 + (1 << 20)) >> 21 + s21 += carry[20] + s20 -= carry[20] << 21 + carry[22] = (s22 + (1 << 20)) >> 21 + s23 += carry[22] + s22 -= carry[22] << 21 + + carry[1] = (s1 + (1 << 20)) >> 21 + s2 += carry[1] + s1 -= carry[1] << 21 + carry[3] = (s3 + (1 << 20)) >> 21 + s4 += carry[3] + s3 -= carry[3] << 21 + carry[5] = (s5 + (1 << 20)) >> 21 + s6 += carry[5] + s5 -= carry[5] << 21 + carry[7] = (s7 + (1 << 20)) >> 21 + s8 += carry[7] + s7 -= carry[7] << 21 + carry[9] = (s9 + (1 << 20)) >> 21 + s10 += carry[9] + s9 -= carry[9] << 21 + carry[11] = (s11 + (1 << 20)) >> 21 + s12 += carry[11] + s11 -= carry[11] << 21 + carry[13] = (s13 + (1 << 20)) >> 21 + s14 += carry[13] + s13 -= carry[13] << 21 + carry[15] = (s15 + (1 << 20)) >> 21 + s16 += carry[15] + s15 -= carry[15] << 21 + carry[17] = (s17 + (1 << 20)) >> 21 + s18 += carry[17] + s17 -= carry[17] << 21 + carry[19] = (s19 + (1 << 20)) >> 21 + s20 += carry[19] + s19 -= carry[19] << 21 + carry[21] = (s21 + (1 << 20)) >> 21 + s22 += carry[21] + s21 -= carry[21] << 21 + + s11 += s23 * 666643 + s12 += s23 * 470296 + s13 += s23 * 654183 + s14 -= s23 * 997805 + s15 += s23 * 136657 + s16 -= s23 * 683901 + s23 = 0 + + s10 += s22 * 666643 + s11 += s22 * 470296 + s12 += s22 * 654183 + s13 -= s22 * 997805 + s14 += s22 * 136657 + s15 -= s22 * 683901 + s22 = 0 + + s9 += s21 * 666643 + s10 += s21 * 470296 + s11 += s21 * 654183 + s12 -= s21 * 997805 + s13 += s21 * 136657 + s14 -= s21 * 683901 + s21 = 0 + + s8 += s20 * 666643 + s9 += s20 * 470296 + s10 += s20 * 654183 + s11 -= s20 * 997805 + s12 += s20 * 136657 + s13 -= s20 * 683901 + s20 = 0 + + s7 += s19 * 666643 + s8 += s19 * 470296 + s9 += s19 * 654183 + s10 -= s19 * 997805 + s11 += s19 * 136657 + s12 -= s19 * 683901 + s19 = 0 + + s6 += s18 * 666643 + s7 += s18 * 470296 + s8 += s18 * 654183 + s9 -= s18 * 997805 + s10 += s18 * 136657 + s11 -= s18 * 683901 + s18 = 0 + + carry[6] = (s6 + (1 << 20)) >> 21 + s7 += carry[6] + s6 -= carry[6] << 21 + carry[8] = (s8 + (1 << 20)) >> 21 + s9 += carry[8] + s8 -= carry[8] << 21 + carry[10] = (s10 + (1 << 20)) >> 21 + s11 += carry[10] + s10 -= carry[10] << 21 + carry[12] = (s12 + (1 << 20)) >> 21 + s13 += carry[12] + s12 -= carry[12] << 21 + carry[14] = (s14 + (1 << 20)) >> 21 + s15 += carry[14] + s14 -= carry[14] << 21 + carry[16] = (s16 + (1 << 20)) >> 21 + s17 += carry[16] + s16 -= carry[16] << 21 + + carry[7] = (s7 + (1 << 20)) >> 21 + s8 += carry[7] + s7 -= carry[7] << 21 + carry[9] = (s9 + (1 << 20)) >> 21 + s10 += carry[9] + s9 -= carry[9] << 21 + carry[11] = (s11 + (1 << 20)) >> 21 + s12 += carry[11] + s11 -= carry[11] << 21 + carry[13] = (s13 + (1 << 20)) >> 21 + s14 += carry[13] + s13 -= carry[13] << 21 + carry[15] = (s15 + (1 << 20)) >> 21 + s16 += carry[15] + s15 -= carry[15] << 21 + + s5 += s17 * 666643 + s6 += s17 * 470296 + s7 += s17 * 654183 + s8 -= s17 * 997805 + s9 += s17 * 136657 + s10 -= s17 * 683901 + s17 = 0 + + s4 += s16 * 666643 + s5 += s16 * 470296 + s6 += s16 * 654183 + s7 -= s16 * 997805 + s8 += s16 * 136657 + s9 -= s16 * 683901 + s16 = 0 + + s3 += s15 * 666643 + s4 += s15 * 470296 + s5 += s15 * 654183 + s6 -= s15 * 997805 + s7 += s15 * 136657 + s8 -= s15 * 683901 + s15 = 0 + + s2 += s14 * 666643 + s3 += s14 * 470296 + s4 += s14 * 654183 + s5 -= s14 * 997805 + s6 += s14 * 136657 + s7 -= s14 * 683901 + s14 = 0 + + s1 += s13 * 666643 + s2 += s13 * 470296 + s3 += s13 * 654183 + s4 -= s13 * 997805 + s5 += s13 * 136657 + s6 -= s13 * 683901 + s13 = 0 + + s0 += s12 * 666643 + s1 += s12 * 470296 + s2 += s12 * 654183 + s3 -= s12 * 997805 + s4 += s12 * 136657 + s5 -= s12 * 683901 + s12 = 0 + + carry[0] = (s0 + (1 << 20)) >> 21 + s1 += carry[0] + s0 -= carry[0] << 21 + carry[2] = (s2 + (1 << 20)) >> 21 + s3 += carry[2] + s2 -= carry[2] << 21 + carry[4] = (s4 + (1 << 20)) >> 21 + s5 += carry[4] + s4 -= carry[4] << 21 + carry[6] = (s6 + (1 << 20)) >> 21 + s7 += carry[6] + s6 -= carry[6] << 21 + carry[8] = (s8 + (1 << 20)) >> 21 + s9 += carry[8] + s8 -= carry[8] << 21 + carry[10] = (s10 + (1 << 20)) >> 21 + s11 += carry[10] + s10 -= carry[10] << 21 + + carry[1] = (s1 + (1 << 20)) >> 21 + s2 += carry[1] + s1 -= carry[1] << 21 + carry[3] = (s3 + (1 << 20)) >> 21 + s4 += carry[3] + s3 -= carry[3] << 21 + carry[5] = (s5 + (1 << 20)) >> 21 + s6 += carry[5] + s5 -= carry[5] << 21 + carry[7] = (s7 + (1 << 20)) >> 21 + s8 += carry[7] + s7 -= carry[7] << 21 + carry[9] = (s9 + (1 << 20)) >> 21 + s10 += carry[9] + s9 -= carry[9] << 21 + carry[11] = (s11 + (1 << 20)) >> 21 + s12 += carry[11] + s11 -= carry[11] << 21 + + s0 += s12 * 666643 + s1 += s12 * 470296 + s2 += s12 * 654183 + s3 -= s12 * 997805 + s4 += s12 * 136657 + s5 -= s12 * 683901 + s12 = 0 + + carry[0] = s0 >> 21 + s1 += carry[0] + s0 -= carry[0] << 21 + carry[1] = s1 >> 21 + s2 += carry[1] + s1 -= carry[1] << 21 + carry[2] = s2 >> 21 + s3 += carry[2] + s2 -= carry[2] << 21 + carry[3] = s3 >> 21 + s4 += carry[3] + s3 -= carry[3] << 21 + carry[4] = s4 >> 21 + s5 += carry[4] + s4 -= carry[4] << 21 + carry[5] = s5 >> 21 + s6 += carry[5] + s5 -= carry[5] << 21 + carry[6] = s6 >> 21 + s7 += carry[6] + s6 -= carry[6] << 21 + carry[7] = s7 >> 21 + s8 += carry[7] + s7 -= carry[7] << 21 + carry[8] = s8 >> 21 + s9 += carry[8] + s8 -= carry[8] << 21 + carry[9] = s9 >> 21 + s10 += carry[9] + s9 -= carry[9] << 21 + carry[10] = s10 >> 21 + s11 += carry[10] + s10 -= carry[10] << 21 + carry[11] = s11 >> 21 + s12 += carry[11] + s11 -= carry[11] << 21 + + s0 += s12 * 666643 + s1 += s12 * 470296 + s2 += s12 * 654183 + s3 -= s12 * 997805 + s4 += s12 * 136657 + s5 -= s12 * 683901 + s12 = 0 + + carry[0] = s0 >> 21 + s1 += carry[0] + s0 -= carry[0] << 21 + carry[1] = s1 >> 21 + s2 += carry[1] + s1 -= carry[1] << 21 + carry[2] = s2 >> 21 + s3 += carry[2] + s2 -= carry[2] << 21 + carry[3] = s3 >> 21 + s4 += carry[3] + s3 -= carry[3] << 21 + carry[4] = s4 >> 21 + s5 += carry[4] + s4 -= carry[4] << 21 + carry[5] = s5 >> 21 + s6 += carry[5] + s5 -= carry[5] << 21 + carry[6] = s6 >> 21 + s7 += carry[6] + s6 -= carry[6] << 21 + carry[7] = s7 >> 21 + s8 += carry[7] + s7 -= carry[7] << 21 + carry[8] = s8 >> 21 + s9 += carry[8] + s8 -= carry[8] << 21 + carry[9] = s9 >> 21 + s10 += carry[9] + s9 -= carry[9] << 21 + carry[10] = s10 >> 21 + s11 += carry[10] + s10 -= carry[10] << 21 + + s[0] = byte(s0 >> 0) + s[1] = byte(s0 >> 8) + s[2] = byte((s0 >> 16) | (s1 << 5)) + s[3] = byte(s1 >> 3) + s[4] = byte(s1 >> 11) + s[5] = byte((s1 >> 19) | (s2 << 2)) + s[6] = byte(s2 >> 6) + s[7] = byte((s2 >> 14) | (s3 << 7)) + s[8] = byte(s3 >> 1) + s[9] = byte(s3 >> 9) + s[10] = byte((s3 >> 17) | (s4 << 4)) + s[11] = byte(s4 >> 4) + s[12] = byte(s4 >> 12) + s[13] = byte((s4 >> 20) | (s5 << 1)) + s[14] = byte(s5 >> 7) + s[15] = byte((s5 >> 15) | (s6 << 6)) + s[16] = byte(s6 >> 2) + s[17] = byte(s6 >> 10) + s[18] = byte((s6 >> 18) | (s7 << 3)) + s[19] = byte(s7 >> 5) + s[20] = byte(s7 >> 13) + s[21] = byte(s8 >> 0) + s[22] = byte(s8 >> 8) + s[23] = byte((s8 >> 16) | (s9 << 5)) + s[24] = byte(s9 >> 3) + s[25] = byte(s9 >> 11) + s[26] = byte((s9 >> 19) | (s10 << 2)) + s[27] = byte(s10 >> 6) + s[28] = byte((s10 >> 14) | (s11 << 7)) + s[29] = byte(s11 >> 1) + s[30] = byte(s11 >> 9) + s[31] = byte(s11 >> 17) +} + +// Input: +// s[0]+256*s[1]+...+256^63*s[63] = s +// +// Output: +// s[0]+256*s[1]+...+256^31*s[31] = s mod l +// where l = 2^252 + 27742317777372353535851937790883648493. +func ScReduce(out *[32]byte, s *[64]byte) { + s0 := 2097151 & load3(s[:]) + s1 := 2097151 & (load4(s[2:]) >> 5) + s2 := 2097151 & (load3(s[5:]) >> 2) + s3 := 2097151 & (load4(s[7:]) >> 7) + s4 := 2097151 & (load4(s[10:]) >> 4) + s5 := 2097151 & (load3(s[13:]) >> 1) + s6 := 2097151 & (load4(s[15:]) >> 6) + s7 := 2097151 & (load3(s[18:]) >> 3) + s8 := 2097151 & load3(s[21:]) + s9 := 2097151 & (load4(s[23:]) >> 5) + s10 := 2097151 & (load3(s[26:]) >> 2) + s11 := 2097151 & (load4(s[28:]) >> 7) + s12 := 2097151 & (load4(s[31:]) >> 4) + s13 := 2097151 & (load3(s[34:]) >> 1) + s14 := 2097151 & (load4(s[36:]) >> 6) + s15 := 2097151 & (load3(s[39:]) >> 3) + s16 := 2097151 & load3(s[42:]) + s17 := 2097151 & (load4(s[44:]) >> 5) + s18 := 2097151 & (load3(s[47:]) >> 2) + s19 := 2097151 & (load4(s[49:]) >> 7) + s20 := 2097151 & (load4(s[52:]) >> 4) + s21 := 2097151 & (load3(s[55:]) >> 1) + s22 := 2097151 & (load4(s[57:]) >> 6) + s23 := (load4(s[60:]) >> 3) + + s11 += s23 * 666643 + s12 += s23 * 470296 + s13 += s23 * 654183 + s14 -= s23 * 997805 + s15 += s23 * 136657 + s16 -= s23 * 683901 + s23 = 0 + + s10 += s22 * 666643 + s11 += s22 * 470296 + s12 += s22 * 654183 + s13 -= s22 * 997805 + s14 += s22 * 136657 + s15 -= s22 * 683901 + s22 = 0 + + s9 += s21 * 666643 + s10 += s21 * 470296 + s11 += s21 * 654183 + s12 -= s21 * 997805 + s13 += s21 * 136657 + s14 -= s21 * 683901 + s21 = 0 + + s8 += s20 * 666643 + s9 += s20 * 470296 + s10 += s20 * 654183 + s11 -= s20 * 997805 + s12 += s20 * 136657 + s13 -= s20 * 683901 + s20 = 0 + + s7 += s19 * 666643 + s8 += s19 * 470296 + s9 += s19 * 654183 + s10 -= s19 * 997805 + s11 += s19 * 136657 + s12 -= s19 * 683901 + s19 = 0 + + s6 += s18 * 666643 + s7 += s18 * 470296 + s8 += s18 * 654183 + s9 -= s18 * 997805 + s10 += s18 * 136657 + s11 -= s18 * 683901 + s18 = 0 + + var carry [17]int64 + + carry[6] = (s6 + (1 << 20)) >> 21 + s7 += carry[6] + s6 -= carry[6] << 21 + carry[8] = (s8 + (1 << 20)) >> 21 + s9 += carry[8] + s8 -= carry[8] << 21 + carry[10] = (s10 + (1 << 20)) >> 21 + s11 += carry[10] + s10 -= carry[10] << 21 + carry[12] = (s12 + (1 << 20)) >> 21 + s13 += carry[12] + s12 -= carry[12] << 21 + carry[14] = (s14 + (1 << 20)) >> 21 + s15 += carry[14] + s14 -= carry[14] << 21 + carry[16] = (s16 + (1 << 20)) >> 21 + s17 += carry[16] + s16 -= carry[16] << 21 + + carry[7] = (s7 + (1 << 20)) >> 21 + s8 += carry[7] + s7 -= carry[7] << 21 + carry[9] = (s9 + (1 << 20)) >> 21 + s10 += carry[9] + s9 -= carry[9] << 21 + carry[11] = (s11 + (1 << 20)) >> 21 + s12 += carry[11] + s11 -= carry[11] << 21 + carry[13] = (s13 + (1 << 20)) >> 21 + s14 += carry[13] + s13 -= carry[13] << 21 + carry[15] = (s15 + (1 << 20)) >> 21 + s16 += carry[15] + s15 -= carry[15] << 21 + + s5 += s17 * 666643 + s6 += s17 * 470296 + s7 += s17 * 654183 + s8 -= s17 * 997805 + s9 += s17 * 136657 + s10 -= s17 * 683901 + s17 = 0 + + s4 += s16 * 666643 + s5 += s16 * 470296 + s6 += s16 * 654183 + s7 -= s16 * 997805 + s8 += s16 * 136657 + s9 -= s16 * 683901 + s16 = 0 + + s3 += s15 * 666643 + s4 += s15 * 470296 + s5 += s15 * 654183 + s6 -= s15 * 997805 + s7 += s15 * 136657 + s8 -= s15 * 683901 + s15 = 0 + + s2 += s14 * 666643 + s3 += s14 * 470296 + s4 += s14 * 654183 + s5 -= s14 * 997805 + s6 += s14 * 136657 + s7 -= s14 * 683901 + s14 = 0 + + s1 += s13 * 666643 + s2 += s13 * 470296 + s3 += s13 * 654183 + s4 -= s13 * 997805 + s5 += s13 * 136657 + s6 -= s13 * 683901 + s13 = 0 + + s0 += s12 * 666643 + s1 += s12 * 470296 + s2 += s12 * 654183 + s3 -= s12 * 997805 + s4 += s12 * 136657 + s5 -= s12 * 683901 + s12 = 0 + + carry[0] = (s0 + (1 << 20)) >> 21 + s1 += carry[0] + s0 -= carry[0] << 21 + carry[2] = (s2 + (1 << 20)) >> 21 + s3 += carry[2] + s2 -= carry[2] << 21 + carry[4] = (s4 + (1 << 20)) >> 21 + s5 += carry[4] + s4 -= carry[4] << 21 + carry[6] = (s6 + (1 << 20)) >> 21 + s7 += carry[6] + s6 -= carry[6] << 21 + carry[8] = (s8 + (1 << 20)) >> 21 + s9 += carry[8] + s8 -= carry[8] << 21 + carry[10] = (s10 + (1 << 20)) >> 21 + s11 += carry[10] + s10 -= carry[10] << 21 + + carry[1] = (s1 + (1 << 20)) >> 21 + s2 += carry[1] + s1 -= carry[1] << 21 + carry[3] = (s3 + (1 << 20)) >> 21 + s4 += carry[3] + s3 -= carry[3] << 21 + carry[5] = (s5 + (1 << 20)) >> 21 + s6 += carry[5] + s5 -= carry[5] << 21 + carry[7] = (s7 + (1 << 20)) >> 21 + s8 += carry[7] + s7 -= carry[7] << 21 + carry[9] = (s9 + (1 << 20)) >> 21 + s10 += carry[9] + s9 -= carry[9] << 21 + carry[11] = (s11 + (1 << 20)) >> 21 + s12 += carry[11] + s11 -= carry[11] << 21 + + s0 += s12 * 666643 + s1 += s12 * 470296 + s2 += s12 * 654183 + s3 -= s12 * 997805 + s4 += s12 * 136657 + s5 -= s12 * 683901 + s12 = 0 + + carry[0] = s0 >> 21 + s1 += carry[0] + s0 -= carry[0] << 21 + carry[1] = s1 >> 21 + s2 += carry[1] + s1 -= carry[1] << 21 + carry[2] = s2 >> 21 + s3 += carry[2] + s2 -= carry[2] << 21 + carry[3] = s3 >> 21 + s4 += carry[3] + s3 -= carry[3] << 21 + carry[4] = s4 >> 21 + s5 += carry[4] + s4 -= carry[4] << 21 + carry[5] = s5 >> 21 + s6 += carry[5] + s5 -= carry[5] << 21 + carry[6] = s6 >> 21 + s7 += carry[6] + s6 -= carry[6] << 21 + carry[7] = s7 >> 21 + s8 += carry[7] + s7 -= carry[7] << 21 + carry[8] = s8 >> 21 + s9 += carry[8] + s8 -= carry[8] << 21 + carry[9] = s9 >> 21 + s10 += carry[9] + s9 -= carry[9] << 21 + carry[10] = s10 >> 21 + s11 += carry[10] + s10 -= carry[10] << 21 + carry[11] = s11 >> 21 + s12 += carry[11] + s11 -= carry[11] << 21 + + s0 += s12 * 666643 + s1 += s12 * 470296 + s2 += s12 * 654183 + s3 -= s12 * 997805 + s4 += s12 * 136657 + s5 -= s12 * 683901 + s12 = 0 + + carry[0] = s0 >> 21 + s1 += carry[0] + s0 -= carry[0] << 21 + carry[1] = s1 >> 21 + s2 += carry[1] + s1 -= carry[1] << 21 + carry[2] = s2 >> 21 + s3 += carry[2] + s2 -= carry[2] << 21 + carry[3] = s3 >> 21 + s4 += carry[3] + s3 -= carry[3] << 21 + carry[4] = s4 >> 21 + s5 += carry[4] + s4 -= carry[4] << 21 + carry[5] = s5 >> 21 + s6 += carry[5] + s5 -= carry[5] << 21 + carry[6] = s6 >> 21 + s7 += carry[6] + s6 -= carry[6] << 21 + carry[7] = s7 >> 21 + s8 += carry[7] + s7 -= carry[7] << 21 + carry[8] = s8 >> 21 + s9 += carry[8] + s8 -= carry[8] << 21 + carry[9] = s9 >> 21 + s10 += carry[9] + s9 -= carry[9] << 21 + carry[10] = s10 >> 21 + s11 += carry[10] + s10 -= carry[10] << 21 + + out[0] = byte(s0 >> 0) + out[1] = byte(s0 >> 8) + out[2] = byte((s0 >> 16) | (s1 << 5)) + out[3] = byte(s1 >> 3) + out[4] = byte(s1 >> 11) + out[5] = byte((s1 >> 19) | (s2 << 2)) + out[6] = byte(s2 >> 6) + out[7] = byte((s2 >> 14) | (s3 << 7)) + out[8] = byte(s3 >> 1) + out[9] = byte(s3 >> 9) + out[10] = byte((s3 >> 17) | (s4 << 4)) + out[11] = byte(s4 >> 4) + out[12] = byte(s4 >> 12) + out[13] = byte((s4 >> 20) | (s5 << 1)) + out[14] = byte(s5 >> 7) + out[15] = byte((s5 >> 15) | (s6 << 6)) + out[16] = byte(s6 >> 2) + out[17] = byte(s6 >> 10) + out[18] = byte((s6 >> 18) | (s7 << 3)) + out[19] = byte(s7 >> 5) + out[20] = byte(s7 >> 13) + out[21] = byte(s8 >> 0) + out[22] = byte(s8 >> 8) + out[23] = byte((s8 >> 16) | (s9 << 5)) + out[24] = byte(s9 >> 3) + out[25] = byte(s9 >> 11) + out[26] = byte((s9 >> 19) | (s10 << 2)) + out[27] = byte(s10 >> 6) + out[28] = byte((s10 >> 14) | (s11 << 7)) + out[29] = byte(s11 >> 1) + out[30] = byte(s11 >> 9) + out[31] = byte(s11 >> 17) +} + +// order is the order of Curve25519 in little-endian form. +var order = [4]uint64{0x5812631a5cf5d3ed, 0x14def9dea2f79cd6, 0, 0x1000000000000000} + +// ScMinimal returns true if the given scalar is less than the order of the +// curve. +func ScMinimal(scalar *[32]byte) bool { + for i := 3; ; i-- { + v := binary.LittleEndian.Uint64(scalar[i*8:]) + if v > order[i] { + return false + } else if v < order[i] { + break + } else if i == 0 { + return false + } + } + + return true +} diff --git a/vendor/golang.org/x/crypto/internal/subtle/aliasing.go b/vendor/golang.org/x/crypto/internal/subtle/aliasing.go new file mode 100644 index 00000000..f38797bf --- /dev/null +++ b/vendor/golang.org/x/crypto/internal/subtle/aliasing.go @@ -0,0 +1,32 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !appengine + +// Package subtle implements functions that are often useful in cryptographic +// code but require careful thought to use correctly. +package subtle // import "golang.org/x/crypto/internal/subtle" + +import "unsafe" + +// AnyOverlap reports whether x and y share memory at any (not necessarily +// corresponding) index. The memory beyond the slice length is ignored. +func AnyOverlap(x, y []byte) bool { + return len(x) > 0 && len(y) > 0 && + uintptr(unsafe.Pointer(&x[0])) <= uintptr(unsafe.Pointer(&y[len(y)-1])) && + uintptr(unsafe.Pointer(&y[0])) <= uintptr(unsafe.Pointer(&x[len(x)-1])) +} + +// InexactOverlap reports whether x and y share memory at any non-corresponding +// index. The memory beyond the slice length is ignored. Note that x and y can +// have different lengths and still not have any inexact overlap. +// +// InexactOverlap can be used to implement the requirements of the crypto/cipher +// AEAD, Block, BlockMode and Stream interfaces. +func InexactOverlap(x, y []byte) bool { + if len(x) == 0 || len(y) == 0 || &x[0] == &y[0] { + return false + } + return AnyOverlap(x, y) +} diff --git a/vendor/golang.org/x/crypto/internal/subtle/aliasing_appengine.go b/vendor/golang.org/x/crypto/internal/subtle/aliasing_appengine.go new file mode 100644 index 00000000..0cc4a8a6 --- /dev/null +++ b/vendor/golang.org/x/crypto/internal/subtle/aliasing_appengine.go @@ -0,0 +1,35 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build appengine + +// Package subtle implements functions that are often useful in cryptographic +// code but require careful thought to use correctly. +package subtle // import "golang.org/x/crypto/internal/subtle" + +// This is the Google App Engine standard variant based on reflect +// because the unsafe package and cgo are disallowed. + +import "reflect" + +// AnyOverlap reports whether x and y share memory at any (not necessarily +// corresponding) index. The memory beyond the slice length is ignored. +func AnyOverlap(x, y []byte) bool { + return len(x) > 0 && len(y) > 0 && + reflect.ValueOf(&x[0]).Pointer() <= reflect.ValueOf(&y[len(y)-1]).Pointer() && + reflect.ValueOf(&y[0]).Pointer() <= reflect.ValueOf(&x[len(x)-1]).Pointer() +} + +// InexactOverlap reports whether x and y share memory at any non-corresponding +// index. The memory beyond the slice length is ignored. Note that x and y can +// have different lengths and still not have any inexact overlap. +// +// InexactOverlap can be used to implement the requirements of the crypto/cipher +// AEAD, Block, BlockMode and Stream interfaces. +func InexactOverlap(x, y []byte) bool { + if len(x) == 0 || len(y) == 0 || &x[0] == &y[0] { + return false + } + return AnyOverlap(x, y) +} diff --git a/vendor/golang.org/x/crypto/poly1305/bits_compat.go b/vendor/golang.org/x/crypto/poly1305/bits_compat.go new file mode 100644 index 00000000..157a69f6 --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/bits_compat.go @@ -0,0 +1,39 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !go1.13 + +package poly1305 + +// Generic fallbacks for the math/bits intrinsics, copied from +// src/math/bits/bits.go. They were added in Go 1.12, but Add64 and Sum64 had +// variable time fallbacks until Go 1.13. + +func bitsAdd64(x, y, carry uint64) (sum, carryOut uint64) { + sum = x + y + carry + carryOut = ((x & y) | ((x | y) &^ sum)) >> 63 + return +} + +func bitsSub64(x, y, borrow uint64) (diff, borrowOut uint64) { + diff = x - y - borrow + borrowOut = ((^x & y) | (^(x ^ y) & diff)) >> 63 + return +} + +func bitsMul64(x, y uint64) (hi, lo uint64) { + const mask32 = 1<<32 - 1 + x0 := x & mask32 + x1 := x >> 32 + y0 := y & mask32 + y1 := y >> 32 + w0 := x0 * y0 + t := x1*y0 + w0>>32 + w1 := t & mask32 + w2 := t >> 32 + w1 += x0 * y1 + hi = x1*y1 + w2 + w1>>32 + lo = x * y + return +} diff --git a/vendor/golang.org/x/crypto/poly1305/bits_go1.13.go b/vendor/golang.org/x/crypto/poly1305/bits_go1.13.go new file mode 100644 index 00000000..a0a185f0 --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/bits_go1.13.go @@ -0,0 +1,21 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build go1.13 + +package poly1305 + +import "math/bits" + +func bitsAdd64(x, y, carry uint64) (sum, carryOut uint64) { + return bits.Add64(x, y, carry) +} + +func bitsSub64(x, y, borrow uint64) (diff, borrowOut uint64) { + return bits.Sub64(x, y, borrow) +} + +func bitsMul64(x, y uint64) (hi, lo uint64) { + return bits.Mul64(x, y) +} diff --git a/vendor/golang.org/x/crypto/poly1305/mac_noasm.go b/vendor/golang.org/x/crypto/poly1305/mac_noasm.go new file mode 100644 index 00000000..d118f30e --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/mac_noasm.go @@ -0,0 +1,9 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !amd64,!ppc64le,!s390x gccgo purego + +package poly1305 + +type mac struct{ macGeneric } diff --git a/vendor/golang.org/x/crypto/poly1305/poly1305.go b/vendor/golang.org/x/crypto/poly1305/poly1305.go new file mode 100644 index 00000000..9d7a6af0 --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/poly1305.go @@ -0,0 +1,99 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package poly1305 implements Poly1305 one-time message authentication code as +// specified in https://cr.yp.to/mac/poly1305-20050329.pdf. +// +// Poly1305 is a fast, one-time authentication function. It is infeasible for an +// attacker to generate an authenticator for a message without the key. However, a +// key must only be used for a single message. Authenticating two different +// messages with the same key allows an attacker to forge authenticators for other +// messages with the same key. +// +// Poly1305 was originally coupled with AES in order to make Poly1305-AES. AES was +// used with a fixed key in order to generate one-time keys from an nonce. +// However, in this package AES isn't used and the one-time key is specified +// directly. +package poly1305 // import "golang.org/x/crypto/poly1305" + +import "crypto/subtle" + +// TagSize is the size, in bytes, of a poly1305 authenticator. +const TagSize = 16 + +// Sum generates an authenticator for msg using a one-time key and puts the +// 16-byte result into out. Authenticating two different messages with the same +// key allows an attacker to forge messages at will. +func Sum(out *[16]byte, m []byte, key *[32]byte) { + h := New(key) + h.Write(m) + h.Sum(out[:0]) +} + +// Verify returns true if mac is a valid authenticator for m with the given key. +func Verify(mac *[16]byte, m []byte, key *[32]byte) bool { + var tmp [16]byte + Sum(&tmp, m, key) + return subtle.ConstantTimeCompare(tmp[:], mac[:]) == 1 +} + +// New returns a new MAC computing an authentication +// tag of all data written to it with the given key. +// This allows writing the message progressively instead +// of passing it as a single slice. Common users should use +// the Sum function instead. +// +// The key must be unique for each message, as authenticating +// two different messages with the same key allows an attacker +// to forge messages at will. +func New(key *[32]byte) *MAC { + m := &MAC{} + initialize(key, &m.macState) + return m +} + +// MAC is an io.Writer computing an authentication tag +// of the data written to it. +// +// MAC cannot be used like common hash.Hash implementations, +// because using a poly1305 key twice breaks its security. +// Therefore writing data to a running MAC after calling +// Sum or Verify causes it to panic. +type MAC struct { + mac // platform-dependent implementation + + finalized bool +} + +// Size returns the number of bytes Sum will return. +func (h *MAC) Size() int { return TagSize } + +// Write adds more data to the running message authentication code. +// It never returns an error. +// +// It must not be called after the first call of Sum or Verify. +func (h *MAC) Write(p []byte) (n int, err error) { + if h.finalized { + panic("poly1305: write to MAC after Sum or Verify") + } + return h.mac.Write(p) +} + +// Sum computes the authenticator of all data written to the +// message authentication code. +func (h *MAC) Sum(b []byte) []byte { + var mac [TagSize]byte + h.mac.Sum(&mac) + h.finalized = true + return append(b, mac[:]...) +} + +// Verify returns whether the authenticator of all data written to +// the message authentication code matches the expected value. +func (h *MAC) Verify(expected []byte) bool { + var mac [TagSize]byte + h.mac.Sum(&mac) + h.finalized = true + return subtle.ConstantTimeCompare(expected, mac[:]) == 1 +} diff --git a/vendor/golang.org/x/crypto/poly1305/sum_amd64.go b/vendor/golang.org/x/crypto/poly1305/sum_amd64.go new file mode 100644 index 00000000..99e5a1d5 --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/sum_amd64.go @@ -0,0 +1,47 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo,!purego + +package poly1305 + +//go:noescape +func update(state *macState, msg []byte) + +// mac is a wrapper for macGeneric that redirects calls that would have gone to +// updateGeneric to update. +// +// Its Write and Sum methods are otherwise identical to the macGeneric ones, but +// using function pointers would carry a major performance cost. +type mac struct{ macGeneric } + +func (h *mac) Write(p []byte) (int, error) { + nn := len(p) + if h.offset > 0 { + n := copy(h.buffer[h.offset:], p) + if h.offset+n < TagSize { + h.offset += n + return nn, nil + } + p = p[n:] + h.offset = 0 + update(&h.macState, h.buffer[:]) + } + if n := len(p) - (len(p) % TagSize); n > 0 { + update(&h.macState, p[:n]) + p = p[n:] + } + if len(p) > 0 { + h.offset += copy(h.buffer[h.offset:], p) + } + return nn, nil +} + +func (h *mac) Sum(out *[16]byte) { + state := h.macState + if h.offset > 0 { + update(&state, h.buffer[:h.offset]) + } + finalize(out, &state.h, &state.s) +} diff --git a/vendor/golang.org/x/crypto/poly1305/sum_amd64.s b/vendor/golang.org/x/crypto/poly1305/sum_amd64.s new file mode 100644 index 00000000..8d394a21 --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/sum_amd64.s @@ -0,0 +1,108 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo,!purego + +#include "textflag.h" + +#define POLY1305_ADD(msg, h0, h1, h2) \ + ADDQ 0(msg), h0; \ + ADCQ 8(msg), h1; \ + ADCQ $1, h2; \ + LEAQ 16(msg), msg + +#define POLY1305_MUL(h0, h1, h2, r0, r1, t0, t1, t2, t3) \ + MOVQ r0, AX; \ + MULQ h0; \ + MOVQ AX, t0; \ + MOVQ DX, t1; \ + MOVQ r0, AX; \ + MULQ h1; \ + ADDQ AX, t1; \ + ADCQ $0, DX; \ + MOVQ r0, t2; \ + IMULQ h2, t2; \ + ADDQ DX, t2; \ + \ + MOVQ r1, AX; \ + MULQ h0; \ + ADDQ AX, t1; \ + ADCQ $0, DX; \ + MOVQ DX, h0; \ + MOVQ r1, t3; \ + IMULQ h2, t3; \ + MOVQ r1, AX; \ + MULQ h1; \ + ADDQ AX, t2; \ + ADCQ DX, t3; \ + ADDQ h0, t2; \ + ADCQ $0, t3; \ + \ + MOVQ t0, h0; \ + MOVQ t1, h1; \ + MOVQ t2, h2; \ + ANDQ $3, h2; \ + MOVQ t2, t0; \ + ANDQ $0xFFFFFFFFFFFFFFFC, t0; \ + ADDQ t0, h0; \ + ADCQ t3, h1; \ + ADCQ $0, h2; \ + SHRQ $2, t3, t2; \ + SHRQ $2, t3; \ + ADDQ t2, h0; \ + ADCQ t3, h1; \ + ADCQ $0, h2 + +// func update(state *[7]uint64, msg []byte) +TEXT ·update(SB), $0-32 + MOVQ state+0(FP), DI + MOVQ msg_base+8(FP), SI + MOVQ msg_len+16(FP), R15 + + MOVQ 0(DI), R8 // h0 + MOVQ 8(DI), R9 // h1 + MOVQ 16(DI), R10 // h2 + MOVQ 24(DI), R11 // r0 + MOVQ 32(DI), R12 // r1 + + CMPQ R15, $16 + JB bytes_between_0_and_15 + +loop: + POLY1305_ADD(SI, R8, R9, R10) + +multiply: + POLY1305_MUL(R8, R9, R10, R11, R12, BX, CX, R13, R14) + SUBQ $16, R15 + CMPQ R15, $16 + JAE loop + +bytes_between_0_and_15: + TESTQ R15, R15 + JZ done + MOVQ $1, BX + XORQ CX, CX + XORQ R13, R13 + ADDQ R15, SI + +flush_buffer: + SHLQ $8, BX, CX + SHLQ $8, BX + MOVB -1(SI), R13 + XORQ R13, BX + DECQ SI + DECQ R15 + JNZ flush_buffer + + ADDQ BX, R8 + ADCQ CX, R9 + ADCQ $0, R10 + MOVQ $16, R15 + JMP multiply + +done: + MOVQ R8, 0(DI) + MOVQ R9, 8(DI) + MOVQ R10, 16(DI) + RET diff --git a/vendor/golang.org/x/crypto/poly1305/sum_generic.go b/vendor/golang.org/x/crypto/poly1305/sum_generic.go new file mode 100644 index 00000000..c942a659 --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/sum_generic.go @@ -0,0 +1,310 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file provides the generic implementation of Sum and MAC. Other files +// might provide optimized assembly implementations of some of this code. + +package poly1305 + +import "encoding/binary" + +// Poly1305 [RFC 7539] is a relatively simple algorithm: the authentication tag +// for a 64 bytes message is approximately +// +// s + m[0:16] * r⁴ + m[16:32] * r³ + m[32:48] * r² + m[48:64] * r mod 2¹³⁰ - 5 +// +// for some secret r and s. It can be computed sequentially like +// +// for len(msg) > 0: +// h += read(msg, 16) +// h *= r +// h %= 2¹³⁰ - 5 +// return h + s +// +// All the complexity is about doing performant constant-time math on numbers +// larger than any available numeric type. + +func sumGeneric(out *[TagSize]byte, msg []byte, key *[32]byte) { + h := newMACGeneric(key) + h.Write(msg) + h.Sum(out) +} + +func newMACGeneric(key *[32]byte) macGeneric { + m := macGeneric{} + initialize(key, &m.macState) + return m +} + +// macState holds numbers in saturated 64-bit little-endian limbs. That is, +// the value of [x0, x1, x2] is x[0] + x[1] * 2⁶⁴ + x[2] * 2¹²⁸. +type macState struct { + // h is the main accumulator. It is to be interpreted modulo 2¹³⁰ - 5, but + // can grow larger during and after rounds. It must, however, remain below + // 2 * (2¹³⁰ - 5). + h [3]uint64 + // r and s are the private key components. + r [2]uint64 + s [2]uint64 +} + +type macGeneric struct { + macState + + buffer [TagSize]byte + offset int +} + +// Write splits the incoming message into TagSize chunks, and passes them to +// update. It buffers incomplete chunks. +func (h *macGeneric) Write(p []byte) (int, error) { + nn := len(p) + if h.offset > 0 { + n := copy(h.buffer[h.offset:], p) + if h.offset+n < TagSize { + h.offset += n + return nn, nil + } + p = p[n:] + h.offset = 0 + updateGeneric(&h.macState, h.buffer[:]) + } + if n := len(p) - (len(p) % TagSize); n > 0 { + updateGeneric(&h.macState, p[:n]) + p = p[n:] + } + if len(p) > 0 { + h.offset += copy(h.buffer[h.offset:], p) + } + return nn, nil +} + +// Sum flushes the last incomplete chunk from the buffer, if any, and generates +// the MAC output. It does not modify its state, in order to allow for multiple +// calls to Sum, even if no Write is allowed after Sum. +func (h *macGeneric) Sum(out *[TagSize]byte) { + state := h.macState + if h.offset > 0 { + updateGeneric(&state, h.buffer[:h.offset]) + } + finalize(out, &state.h, &state.s) +} + +// [rMask0, rMask1] is the specified Poly1305 clamping mask in little-endian. It +// clears some bits of the secret coefficient to make it possible to implement +// multiplication more efficiently. +const ( + rMask0 = 0x0FFFFFFC0FFFFFFF + rMask1 = 0x0FFFFFFC0FFFFFFC +) + +// initialize loads the 256-bit key into the two 128-bit secret values r and s. +func initialize(key *[32]byte, m *macState) { + m.r[0] = binary.LittleEndian.Uint64(key[0:8]) & rMask0 + m.r[1] = binary.LittleEndian.Uint64(key[8:16]) & rMask1 + m.s[0] = binary.LittleEndian.Uint64(key[16:24]) + m.s[1] = binary.LittleEndian.Uint64(key[24:32]) +} + +// uint128 holds a 128-bit number as two 64-bit limbs, for use with the +// bits.Mul64 and bits.Add64 intrinsics. +type uint128 struct { + lo, hi uint64 +} + +func mul64(a, b uint64) uint128 { + hi, lo := bitsMul64(a, b) + return uint128{lo, hi} +} + +func add128(a, b uint128) uint128 { + lo, c := bitsAdd64(a.lo, b.lo, 0) + hi, c := bitsAdd64(a.hi, b.hi, c) + if c != 0 { + panic("poly1305: unexpected overflow") + } + return uint128{lo, hi} +} + +func shiftRightBy2(a uint128) uint128 { + a.lo = a.lo>>2 | (a.hi&3)<<62 + a.hi = a.hi >> 2 + return a +} + +// updateGeneric absorbs msg into the state.h accumulator. For each chunk m of +// 128 bits of message, it computes +// +// h₊ = (h + m) * r mod 2¹³⁰ - 5 +// +// If the msg length is not a multiple of TagSize, it assumes the last +// incomplete chunk is the final one. +func updateGeneric(state *macState, msg []byte) { + h0, h1, h2 := state.h[0], state.h[1], state.h[2] + r0, r1 := state.r[0], state.r[1] + + for len(msg) > 0 { + var c uint64 + + // For the first step, h + m, we use a chain of bits.Add64 intrinsics. + // The resulting value of h might exceed 2¹³⁰ - 5, but will be partially + // reduced at the end of the multiplication below. + // + // The spec requires us to set a bit just above the message size, not to + // hide leading zeroes. For full chunks, that's 1 << 128, so we can just + // add 1 to the most significant (2¹²⁸) limb, h2. + if len(msg) >= TagSize { + h0, c = bitsAdd64(h0, binary.LittleEndian.Uint64(msg[0:8]), 0) + h1, c = bitsAdd64(h1, binary.LittleEndian.Uint64(msg[8:16]), c) + h2 += c + 1 + + msg = msg[TagSize:] + } else { + var buf [TagSize]byte + copy(buf[:], msg) + buf[len(msg)] = 1 + + h0, c = bitsAdd64(h0, binary.LittleEndian.Uint64(buf[0:8]), 0) + h1, c = bitsAdd64(h1, binary.LittleEndian.Uint64(buf[8:16]), c) + h2 += c + + msg = nil + } + + // Multiplication of big number limbs is similar to elementary school + // columnar multiplication. Instead of digits, there are 64-bit limbs. + // + // We are multiplying a 3 limbs number, h, by a 2 limbs number, r. + // + // h2 h1 h0 x + // r1 r0 = + // ---------------- + // h2r0 h1r0 h0r0 <-- individual 128-bit products + // + h2r1 h1r1 h0r1 + // ------------------------ + // m3 m2 m1 m0 <-- result in 128-bit overlapping limbs + // ------------------------ + // m3.hi m2.hi m1.hi m0.hi <-- carry propagation + // + m3.lo m2.lo m1.lo m0.lo + // ------------------------------- + // t4 t3 t2 t1 t0 <-- final result in 64-bit limbs + // + // The main difference from pen-and-paper multiplication is that we do + // carry propagation in a separate step, as if we wrote two digit sums + // at first (the 128-bit limbs), and then carried the tens all at once. + + h0r0 := mul64(h0, r0) + h1r0 := mul64(h1, r0) + h2r0 := mul64(h2, r0) + h0r1 := mul64(h0, r1) + h1r1 := mul64(h1, r1) + h2r1 := mul64(h2, r1) + + // Since h2 is known to be at most 7 (5 + 1 + 1), and r0 and r1 have their + // top 4 bits cleared by rMask{0,1}, we know that their product is not going + // to overflow 64 bits, so we can ignore the high part of the products. + // + // This also means that the product doesn't have a fifth limb (t4). + if h2r0.hi != 0 { + panic("poly1305: unexpected overflow") + } + if h2r1.hi != 0 { + panic("poly1305: unexpected overflow") + } + + m0 := h0r0 + m1 := add128(h1r0, h0r1) // These two additions don't overflow thanks again + m2 := add128(h2r0, h1r1) // to the 4 masked bits at the top of r0 and r1. + m3 := h2r1 + + t0 := m0.lo + t1, c := bitsAdd64(m1.lo, m0.hi, 0) + t2, c := bitsAdd64(m2.lo, m1.hi, c) + t3, _ := bitsAdd64(m3.lo, m2.hi, c) + + // Now we have the result as 4 64-bit limbs, and we need to reduce it + // modulo 2¹³⁰ - 5. The special shape of this Crandall prime lets us do + // a cheap partial reduction according to the reduction identity + // + // c * 2¹³⁰ + n = c * 5 + n mod 2¹³⁰ - 5 + // + // because 2¹³⁰ = 5 mod 2¹³⁰ - 5. Partial reduction since the result is + // likely to be larger than 2¹³⁰ - 5, but still small enough to fit the + // assumptions we make about h in the rest of the code. + // + // See also https://speakerdeck.com/gtank/engineering-prime-numbers?slide=23 + + // We split the final result at the 2¹³⁰ mark into h and cc, the carry. + // Note that the carry bits are effectively shifted left by 2, in other + // words, cc = c * 4 for the c in the reduction identity. + h0, h1, h2 = t0, t1, t2&maskLow2Bits + cc := uint128{t2 & maskNotLow2Bits, t3} + + // To add c * 5 to h, we first add cc = c * 4, and then add (cc >> 2) = c. + + h0, c = bitsAdd64(h0, cc.lo, 0) + h1, c = bitsAdd64(h1, cc.hi, c) + h2 += c + + cc = shiftRightBy2(cc) + + h0, c = bitsAdd64(h0, cc.lo, 0) + h1, c = bitsAdd64(h1, cc.hi, c) + h2 += c + + // h2 is at most 3 + 1 + 1 = 5, making the whole of h at most + // + // 5 * 2¹²⁸ + (2¹²⁸ - 1) = 6 * 2¹²⁸ - 1 + } + + state.h[0], state.h[1], state.h[2] = h0, h1, h2 +} + +const ( + maskLow2Bits uint64 = 0x0000000000000003 + maskNotLow2Bits uint64 = ^maskLow2Bits +) + +// select64 returns x if v == 1 and y if v == 0, in constant time. +func select64(v, x, y uint64) uint64 { return ^(v-1)&x | (v-1)&y } + +// [p0, p1, p2] is 2¹³⁰ - 5 in little endian order. +const ( + p0 = 0xFFFFFFFFFFFFFFFB + p1 = 0xFFFFFFFFFFFFFFFF + p2 = 0x0000000000000003 +) + +// finalize completes the modular reduction of h and computes +// +// out = h + s mod 2¹²⁸ +// +func finalize(out *[TagSize]byte, h *[3]uint64, s *[2]uint64) { + h0, h1, h2 := h[0], h[1], h[2] + + // After the partial reduction in updateGeneric, h might be more than + // 2¹³⁰ - 5, but will be less than 2 * (2¹³⁰ - 5). To complete the reduction + // in constant time, we compute t = h - (2¹³⁰ - 5), and select h as the + // result if the subtraction underflows, and t otherwise. + + hMinusP0, b := bitsSub64(h0, p0, 0) + hMinusP1, b := bitsSub64(h1, p1, b) + _, b = bitsSub64(h2, p2, b) + + // h = h if h < p else h - p + h0 = select64(b, h0, hMinusP0) + h1 = select64(b, h1, hMinusP1) + + // Finally, we compute the last Poly1305 step + // + // tag = h + s mod 2¹²⁸ + // + // by just doing a wide addition with the 128 low bits of h and discarding + // the overflow. + h0, c := bitsAdd64(h0, s[0], 0) + h1, _ = bitsAdd64(h1, s[1], c) + + binary.LittleEndian.PutUint64(out[0:8], h0) + binary.LittleEndian.PutUint64(out[8:16], h1) +} diff --git a/vendor/golang.org/x/crypto/poly1305/sum_ppc64le.go b/vendor/golang.org/x/crypto/poly1305/sum_ppc64le.go new file mode 100644 index 00000000..2e7a120b --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/sum_ppc64le.go @@ -0,0 +1,47 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo,!purego + +package poly1305 + +//go:noescape +func update(state *macState, msg []byte) + +// mac is a wrapper for macGeneric that redirects calls that would have gone to +// updateGeneric to update. +// +// Its Write and Sum methods are otherwise identical to the macGeneric ones, but +// using function pointers would carry a major performance cost. +type mac struct{ macGeneric } + +func (h *mac) Write(p []byte) (int, error) { + nn := len(p) + if h.offset > 0 { + n := copy(h.buffer[h.offset:], p) + if h.offset+n < TagSize { + h.offset += n + return nn, nil + } + p = p[n:] + h.offset = 0 + update(&h.macState, h.buffer[:]) + } + if n := len(p) - (len(p) % TagSize); n > 0 { + update(&h.macState, p[:n]) + p = p[n:] + } + if len(p) > 0 { + h.offset += copy(h.buffer[h.offset:], p) + } + return nn, nil +} + +func (h *mac) Sum(out *[16]byte) { + state := h.macState + if h.offset > 0 { + update(&state, h.buffer[:h.offset]) + } + finalize(out, &state.h, &state.s) +} diff --git a/vendor/golang.org/x/crypto/poly1305/sum_ppc64le.s b/vendor/golang.org/x/crypto/poly1305/sum_ppc64le.s new file mode 100644 index 00000000..4e028138 --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/sum_ppc64le.s @@ -0,0 +1,181 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo,!purego + +#include "textflag.h" + +// This was ported from the amd64 implementation. + +#define POLY1305_ADD(msg, h0, h1, h2, t0, t1, t2) \ + MOVD (msg), t0; \ + MOVD 8(msg), t1; \ + MOVD $1, t2; \ + ADDC t0, h0, h0; \ + ADDE t1, h1, h1; \ + ADDE t2, h2; \ + ADD $16, msg + +#define POLY1305_MUL(h0, h1, h2, r0, r1, t0, t1, t2, t3, t4, t5) \ + MULLD r0, h0, t0; \ + MULLD r0, h1, t4; \ + MULHDU r0, h0, t1; \ + MULHDU r0, h1, t5; \ + ADDC t4, t1, t1; \ + MULLD r0, h2, t2; \ + ADDZE t5; \ + MULHDU r1, h0, t4; \ + MULLD r1, h0, h0; \ + ADD t5, t2, t2; \ + ADDC h0, t1, t1; \ + MULLD h2, r1, t3; \ + ADDZE t4, h0; \ + MULHDU r1, h1, t5; \ + MULLD r1, h1, t4; \ + ADDC t4, t2, t2; \ + ADDE t5, t3, t3; \ + ADDC h0, t2, t2; \ + MOVD $-4, t4; \ + MOVD t0, h0; \ + MOVD t1, h1; \ + ADDZE t3; \ + ANDCC $3, t2, h2; \ + AND t2, t4, t0; \ + ADDC t0, h0, h0; \ + ADDE t3, h1, h1; \ + SLD $62, t3, t4; \ + SRD $2, t2; \ + ADDZE h2; \ + OR t4, t2, t2; \ + SRD $2, t3; \ + ADDC t2, h0, h0; \ + ADDE t3, h1, h1; \ + ADDZE h2 + +DATA ·poly1305Mask<>+0x00(SB)/8, $0x0FFFFFFC0FFFFFFF +DATA ·poly1305Mask<>+0x08(SB)/8, $0x0FFFFFFC0FFFFFFC +GLOBL ·poly1305Mask<>(SB), RODATA, $16 + +// func update(state *[7]uint64, msg []byte) +TEXT ·update(SB), $0-32 + MOVD state+0(FP), R3 + MOVD msg_base+8(FP), R4 + MOVD msg_len+16(FP), R5 + + MOVD 0(R3), R8 // h0 + MOVD 8(R3), R9 // h1 + MOVD 16(R3), R10 // h2 + MOVD 24(R3), R11 // r0 + MOVD 32(R3), R12 // r1 + + CMP R5, $16 + BLT bytes_between_0_and_15 + +loop: + POLY1305_ADD(R4, R8, R9, R10, R20, R21, R22) + +multiply: + POLY1305_MUL(R8, R9, R10, R11, R12, R16, R17, R18, R14, R20, R21) + ADD $-16, R5 + CMP R5, $16 + BGE loop + +bytes_between_0_and_15: + CMP $0, R5 + BEQ done + MOVD $0, R16 // h0 + MOVD $0, R17 // h1 + +flush_buffer: + CMP R5, $8 + BLE just1 + + MOVD $8, R21 + SUB R21, R5, R21 + + // Greater than 8 -- load the rightmost remaining bytes in msg + // and put into R17 (h1) + MOVD (R4)(R21), R17 + MOVD $16, R22 + + // Find the offset to those bytes + SUB R5, R22, R22 + SLD $3, R22 + + // Shift to get only the bytes in msg + SRD R22, R17, R17 + + // Put 1 at high end + MOVD $1, R23 + SLD $3, R21 + SLD R21, R23, R23 + OR R23, R17, R17 + + // Remainder is 8 + MOVD $8, R5 + +just1: + CMP R5, $8 + BLT less8 + + // Exactly 8 + MOVD (R4), R16 + + CMP $0, R17 + + // Check if we've already set R17; if not + // set 1 to indicate end of msg. + BNE carry + MOVD $1, R17 + BR carry + +less8: + MOVD $0, R16 // h0 + MOVD $0, R22 // shift count + CMP R5, $4 + BLT less4 + MOVWZ (R4), R16 + ADD $4, R4 + ADD $-4, R5 + MOVD $32, R22 + +less4: + CMP R5, $2 + BLT less2 + MOVHZ (R4), R21 + SLD R22, R21, R21 + OR R16, R21, R16 + ADD $16, R22 + ADD $-2, R5 + ADD $2, R4 + +less2: + CMP $0, R5 + BEQ insert1 + MOVBZ (R4), R21 + SLD R22, R21, R21 + OR R16, R21, R16 + ADD $8, R22 + +insert1: + // Insert 1 at end of msg + MOVD $1, R21 + SLD R22, R21, R21 + OR R16, R21, R16 + +carry: + // Add new values to h0, h1, h2 + ADDC R16, R8 + ADDE R17, R9 + ADDE $0, R10 + MOVD $16, R5 + ADD R5, R4 + BR multiply + +done: + // Save h0, h1, h2 in state + MOVD R8, 0(R3) + MOVD R9, 8(R3) + MOVD R10, 16(R3) + RET diff --git a/vendor/golang.org/x/crypto/poly1305/sum_s390x.go b/vendor/golang.org/x/crypto/poly1305/sum_s390x.go new file mode 100644 index 00000000..958fedc0 --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/sum_s390x.go @@ -0,0 +1,75 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo,!purego + +package poly1305 + +import ( + "golang.org/x/sys/cpu" +) + +// updateVX is an assembly implementation of Poly1305 that uses vector +// instructions. It must only be called if the vector facility (vx) is +// available. +//go:noescape +func updateVX(state *macState, msg []byte) + +// mac is a replacement for macGeneric that uses a larger buffer and redirects +// calls that would have gone to updateGeneric to updateVX if the vector +// facility is installed. +// +// A larger buffer is required for good performance because the vector +// implementation has a higher fixed cost per call than the generic +// implementation. +type mac struct { + macState + + buffer [16 * TagSize]byte // size must be a multiple of block size (16) + offset int +} + +func (h *mac) Write(p []byte) (int, error) { + nn := len(p) + if h.offset > 0 { + n := copy(h.buffer[h.offset:], p) + if h.offset+n < len(h.buffer) { + h.offset += n + return nn, nil + } + p = p[n:] + h.offset = 0 + if cpu.S390X.HasVX { + updateVX(&h.macState, h.buffer[:]) + } else { + updateGeneric(&h.macState, h.buffer[:]) + } + } + + tail := len(p) % len(h.buffer) // number of bytes to copy into buffer + body := len(p) - tail // number of bytes to process now + if body > 0 { + if cpu.S390X.HasVX { + updateVX(&h.macState, p[:body]) + } else { + updateGeneric(&h.macState, p[:body]) + } + } + h.offset = copy(h.buffer[:], p[body:]) // copy tail bytes - can be 0 + return nn, nil +} + +func (h *mac) Sum(out *[TagSize]byte) { + state := h.macState + remainder := h.buffer[:h.offset] + + // Use the generic implementation if we have 2 or fewer blocks left + // to sum. The vector implementation has a higher startup time. + if cpu.S390X.HasVX && len(remainder) > 2*TagSize { + updateVX(&state, remainder) + } else if len(remainder) > 0 { + updateGeneric(&state, remainder) + } + finalize(out, &state.h, &state.s) +} diff --git a/vendor/golang.org/x/crypto/poly1305/sum_s390x.s b/vendor/golang.org/x/crypto/poly1305/sum_s390x.s new file mode 100644 index 00000000..0fa9ee6e --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/sum_s390x.s @@ -0,0 +1,503 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo,!purego + +#include "textflag.h" + +// This implementation of Poly1305 uses the vector facility (vx) +// to process up to 2 blocks (32 bytes) per iteration using an +// algorithm based on the one described in: +// +// NEON crypto, Daniel J. Bernstein & Peter Schwabe +// https://cryptojedi.org/papers/neoncrypto-20120320.pdf +// +// This algorithm uses 5 26-bit limbs to represent a 130-bit +// value. These limbs are, for the most part, zero extended and +// placed into 64-bit vector register elements. Each vector +// register is 128-bits wide and so holds 2 of these elements. +// Using 26-bit limbs allows us plenty of headroom to accomodate +// accumulations before and after multiplication without +// overflowing either 32-bits (before multiplication) or 64-bits +// (after multiplication). +// +// In order to parallelise the operations required to calculate +// the sum we use two separate accumulators and then sum those +// in an extra final step. For compatibility with the generic +// implementation we perform this summation at the end of every +// updateVX call. +// +// To use two accumulators we must multiply the message blocks +// by r² rather than r. Only the final message block should be +// multiplied by r. +// +// Example: +// +// We want to calculate the sum (h) for a 64 byte message (m): +// +// h = m[0:16]r⁴ + m[16:32]r³ + m[32:48]r² + m[48:64]r +// +// To do this we split the calculation into the even indices +// and odd indices of the message. These form our SIMD 'lanes': +// +// h = m[ 0:16]r⁴ + m[32:48]r² + <- lane 0 +// m[16:32]r³ + m[48:64]r <- lane 1 +// +// To calculate this iteratively we refactor so that both lanes +// are written in terms of r² and r: +// +// h = (m[ 0:16]r² + m[32:48])r² + <- lane 0 +// (m[16:32]r² + m[48:64])r <- lane 1 +// ^ ^ +// | coefficients for second iteration +// coefficients for first iteration +// +// So in this case we would have two iterations. In the first +// both lanes are multiplied by r². In the second only the +// first lane is multiplied by r² and the second lane is +// instead multiplied by r. This gives use the odd and even +// powers of r that we need from the original equation. +// +// Notation: +// +// h - accumulator +// r - key +// m - message +// +// [a, b] - SIMD register holding two 64-bit values +// [a, b, c, d] - SIMD register holding four 32-bit values +// xᵢ[n] - limb n of variable x with bit width i +// +// Limbs are expressed in little endian order, so for 26-bit +// limbs x₂₆[4] will be the most significant limb and x₂₆[0] +// will be the least significant limb. + +// masking constants +#define MOD24 V0 // [0x0000000000ffffff, 0x0000000000ffffff] - mask low 24-bits +#define MOD26 V1 // [0x0000000003ffffff, 0x0000000003ffffff] - mask low 26-bits + +// expansion constants (see EXPAND macro) +#define EX0 V2 +#define EX1 V3 +#define EX2 V4 + +// key (r², r or 1 depending on context) +#define R_0 V5 +#define R_1 V6 +#define R_2 V7 +#define R_3 V8 +#define R_4 V9 + +// precalculated coefficients (5r², 5r or 0 depending on context) +#define R5_1 V10 +#define R5_2 V11 +#define R5_3 V12 +#define R5_4 V13 + +// message block (m) +#define M_0 V14 +#define M_1 V15 +#define M_2 V16 +#define M_3 V17 +#define M_4 V18 + +// accumulator (h) +#define H_0 V19 +#define H_1 V20 +#define H_2 V21 +#define H_3 V22 +#define H_4 V23 + +// temporary registers (for short-lived values) +#define T_0 V24 +#define T_1 V25 +#define T_2 V26 +#define T_3 V27 +#define T_4 V28 + +GLOBL ·constants<>(SB), RODATA, $0x30 +// EX0 +DATA ·constants<>+0x00(SB)/8, $0x0006050403020100 +DATA ·constants<>+0x08(SB)/8, $0x1016151413121110 +// EX1 +DATA ·constants<>+0x10(SB)/8, $0x060c0b0a09080706 +DATA ·constants<>+0x18(SB)/8, $0x161c1b1a19181716 +// EX2 +DATA ·constants<>+0x20(SB)/8, $0x0d0d0d0d0d0f0e0d +DATA ·constants<>+0x28(SB)/8, $0x1d1d1d1d1d1f1e1d + +// MULTIPLY multiplies each lane of f and g, partially reduced +// modulo 2¹³⁰ - 5. The result, h, consists of partial products +// in each lane that need to be reduced further to produce the +// final result. +// +// h₁₃₀ = (f₁₃₀g₁₃₀) % 2¹³⁰ + (5f₁₃₀g₁₃₀) / 2¹³⁰ +// +// Note that the multiplication by 5 of the high bits is +// achieved by precalculating the multiplication of four of the +// g coefficients by 5. These are g51-g54. +#define MULTIPLY(f0, f1, f2, f3, f4, g0, g1, g2, g3, g4, g51, g52, g53, g54, h0, h1, h2, h3, h4) \ + VMLOF f0, g0, h0 \ + VMLOF f0, g3, h3 \ + VMLOF f0, g1, h1 \ + VMLOF f0, g4, h4 \ + VMLOF f0, g2, h2 \ + VMLOF f1, g54, T_0 \ + VMLOF f1, g2, T_3 \ + VMLOF f1, g0, T_1 \ + VMLOF f1, g3, T_4 \ + VMLOF f1, g1, T_2 \ + VMALOF f2, g53, h0, h0 \ + VMALOF f2, g1, h3, h3 \ + VMALOF f2, g54, h1, h1 \ + VMALOF f2, g2, h4, h4 \ + VMALOF f2, g0, h2, h2 \ + VMALOF f3, g52, T_0, T_0 \ + VMALOF f3, g0, T_3, T_3 \ + VMALOF f3, g53, T_1, T_1 \ + VMALOF f3, g1, T_4, T_4 \ + VMALOF f3, g54, T_2, T_2 \ + VMALOF f4, g51, h0, h0 \ + VMALOF f4, g54, h3, h3 \ + VMALOF f4, g52, h1, h1 \ + VMALOF f4, g0, h4, h4 \ + VMALOF f4, g53, h2, h2 \ + VAG T_0, h0, h0 \ + VAG T_3, h3, h3 \ + VAG T_1, h1, h1 \ + VAG T_4, h4, h4 \ + VAG T_2, h2, h2 + +// REDUCE performs the following carry operations in four +// stages, as specified in Bernstein & Schwabe: +// +// 1: h₂₆[0]->h₂₆[1] h₂₆[3]->h₂₆[4] +// 2: h₂₆[1]->h₂₆[2] h₂₆[4]->h₂₆[0] +// 3: h₂₆[0]->h₂₆[1] h₂₆[2]->h₂₆[3] +// 4: h₂₆[3]->h₂₆[4] +// +// The result is that all of the limbs are limited to 26-bits +// except for h₂₆[1] and h₂₆[4] which are limited to 27-bits. +// +// Note that although each limb is aligned at 26-bit intervals +// they may contain values that exceed 2²⁶ - 1, hence the need +// to carry the excess bits in each limb. +#define REDUCE(h0, h1, h2, h3, h4) \ + VESRLG $26, h0, T_0 \ + VESRLG $26, h3, T_1 \ + VN MOD26, h0, h0 \ + VN MOD26, h3, h3 \ + VAG T_0, h1, h1 \ + VAG T_1, h4, h4 \ + VESRLG $26, h1, T_2 \ + VESRLG $26, h4, T_3 \ + VN MOD26, h1, h1 \ + VN MOD26, h4, h4 \ + VESLG $2, T_3, T_4 \ + VAG T_3, T_4, T_4 \ + VAG T_2, h2, h2 \ + VAG T_4, h0, h0 \ + VESRLG $26, h2, T_0 \ + VESRLG $26, h0, T_1 \ + VN MOD26, h2, h2 \ + VN MOD26, h0, h0 \ + VAG T_0, h3, h3 \ + VAG T_1, h1, h1 \ + VESRLG $26, h3, T_2 \ + VN MOD26, h3, h3 \ + VAG T_2, h4, h4 + +// EXPAND splits the 128-bit little-endian values in0 and in1 +// into 26-bit big-endian limbs and places the results into +// the first and second lane of d₂₆[0:4] respectively. +// +// The EX0, EX1 and EX2 constants are arrays of byte indices +// for permutation. The permutation both reverses the bytes +// in the input and ensures the bytes are copied into the +// destination limb ready to be shifted into their final +// position. +#define EXPAND(in0, in1, d0, d1, d2, d3, d4) \ + VPERM in0, in1, EX0, d0 \ + VPERM in0, in1, EX1, d2 \ + VPERM in0, in1, EX2, d4 \ + VESRLG $26, d0, d1 \ + VESRLG $30, d2, d3 \ + VESRLG $4, d2, d2 \ + VN MOD26, d0, d0 \ // [in0₂₆[0], in1₂₆[0]] + VN MOD26, d3, d3 \ // [in0₂₆[3], in1₂₆[3]] + VN MOD26, d1, d1 \ // [in0₂₆[1], in1₂₆[1]] + VN MOD24, d4, d4 \ // [in0₂₆[4], in1₂₆[4]] + VN MOD26, d2, d2 // [in0₂₆[2], in1₂₆[2]] + +// func updateVX(state *macState, msg []byte) +TEXT ·updateVX(SB), NOSPLIT, $0 + MOVD state+0(FP), R1 + LMG msg+8(FP), R2, R3 // R2=msg_base, R3=msg_len + + // load EX0, EX1 and EX2 + MOVD $·constants<>(SB), R5 + VLM (R5), EX0, EX2 + + // generate masks + VGMG $(64-24), $63, MOD24 // [0x00ffffff, 0x00ffffff] + VGMG $(64-26), $63, MOD26 // [0x03ffffff, 0x03ffffff] + + // load h (accumulator) and r (key) from state + VZERO T_1 // [0, 0] + VL 0(R1), T_0 // [h₆₄[0], h₆₄[1]] + VLEG $0, 16(R1), T_1 // [h₆₄[2], 0] + VL 24(R1), T_2 // [r₆₄[0], r₆₄[1]] + VPDI $0, T_0, T_2, T_3 // [h₆₄[0], r₆₄[0]] + VPDI $5, T_0, T_2, T_4 // [h₆₄[1], r₆₄[1]] + + // unpack h and r into 26-bit limbs + // note: h₆₄[2] may have the low 3 bits set, so h₂₆[4] is a 27-bit value + VN MOD26, T_3, H_0 // [h₂₆[0], r₂₆[0]] + VZERO H_1 // [0, 0] + VZERO H_3 // [0, 0] + VGMG $(64-12-14), $(63-12), T_0 // [0x03fff000, 0x03fff000] - 26-bit mask with low 12 bits masked out + VESLG $24, T_1, T_1 // [h₆₄[2]<<24, 0] + VERIMG $-26&63, T_3, MOD26, H_1 // [h₂₆[1], r₂₆[1]] + VESRLG $+52&63, T_3, H_2 // [h₂₆[2], r₂₆[2]] - low 12 bits only + VERIMG $-14&63, T_4, MOD26, H_3 // [h₂₆[1], r₂₆[1]] + VESRLG $40, T_4, H_4 // [h₂₆[4], r₂₆[4]] - low 24 bits only + VERIMG $+12&63, T_4, T_0, H_2 // [h₂₆[2], r₂₆[2]] - complete + VO T_1, H_4, H_4 // [h₂₆[4], r₂₆[4]] - complete + + // replicate r across all 4 vector elements + VREPF $3, H_0, R_0 // [r₂₆[0], r₂₆[0], r₂₆[0], r₂₆[0]] + VREPF $3, H_1, R_1 // [r₂₆[1], r₂₆[1], r₂₆[1], r₂₆[1]] + VREPF $3, H_2, R_2 // [r₂₆[2], r₂₆[2], r₂₆[2], r₂₆[2]] + VREPF $3, H_3, R_3 // [r₂₆[3], r₂₆[3], r₂₆[3], r₂₆[3]] + VREPF $3, H_4, R_4 // [r₂₆[4], r₂₆[4], r₂₆[4], r₂₆[4]] + + // zero out lane 1 of h + VLEIG $1, $0, H_0 // [h₂₆[0], 0] + VLEIG $1, $0, H_1 // [h₂₆[1], 0] + VLEIG $1, $0, H_2 // [h₂₆[2], 0] + VLEIG $1, $0, H_3 // [h₂₆[3], 0] + VLEIG $1, $0, H_4 // [h₂₆[4], 0] + + // calculate 5r (ignore least significant limb) + VREPIF $5, T_0 + VMLF T_0, R_1, R5_1 // [5r₂₆[1], 5r₂₆[1], 5r₂₆[1], 5r₂₆[1]] + VMLF T_0, R_2, R5_2 // [5r₂₆[2], 5r₂₆[2], 5r₂₆[2], 5r₂₆[2]] + VMLF T_0, R_3, R5_3 // [5r₂₆[3], 5r₂₆[3], 5r₂₆[3], 5r₂₆[3]] + VMLF T_0, R_4, R5_4 // [5r₂₆[4], 5r₂₆[4], 5r₂₆[4], 5r₂₆[4]] + + // skip r² calculation if we are only calculating one block + CMPBLE R3, $16, skip + + // calculate r² + MULTIPLY(R_0, R_1, R_2, R_3, R_4, R_0, R_1, R_2, R_3, R_4, R5_1, R5_2, R5_3, R5_4, M_0, M_1, M_2, M_3, M_4) + REDUCE(M_0, M_1, M_2, M_3, M_4) + VGBM $0x0f0f, T_0 + VERIMG $0, M_0, T_0, R_0 // [r₂₆[0], r²₂₆[0], r₂₆[0], r²₂₆[0]] + VERIMG $0, M_1, T_0, R_1 // [r₂₆[1], r²₂₆[1], r₂₆[1], r²₂₆[1]] + VERIMG $0, M_2, T_0, R_2 // [r₂₆[2], r²₂₆[2], r₂₆[2], r²₂₆[2]] + VERIMG $0, M_3, T_0, R_3 // [r₂₆[3], r²₂₆[3], r₂₆[3], r²₂₆[3]] + VERIMG $0, M_4, T_0, R_4 // [r₂₆[4], r²₂₆[4], r₂₆[4], r²₂₆[4]] + + // calculate 5r² (ignore least significant limb) + VREPIF $5, T_0 + VMLF T_0, R_1, R5_1 // [5r₂₆[1], 5r²₂₆[1], 5r₂₆[1], 5r²₂₆[1]] + VMLF T_0, R_2, R5_2 // [5r₂₆[2], 5r²₂₆[2], 5r₂₆[2], 5r²₂₆[2]] + VMLF T_0, R_3, R5_3 // [5r₂₆[3], 5r²₂₆[3], 5r₂₆[3], 5r²₂₆[3]] + VMLF T_0, R_4, R5_4 // [5r₂₆[4], 5r²₂₆[4], 5r₂₆[4], 5r²₂₆[4]] + +loop: + CMPBLE R3, $32, b2 // 2 or fewer blocks remaining, need to change key coefficients + + // load next 2 blocks from message + VLM (R2), T_0, T_1 + + // update message slice + SUB $32, R3 + MOVD $32(R2), R2 + + // unpack message blocks into 26-bit big-endian limbs + EXPAND(T_0, T_1, M_0, M_1, M_2, M_3, M_4) + + // add 2¹²⁸ to each message block value + VLEIB $4, $1, M_4 + VLEIB $12, $1, M_4 + +multiply: + // accumulate the incoming message + VAG H_0, M_0, M_0 + VAG H_3, M_3, M_3 + VAG H_1, M_1, M_1 + VAG H_4, M_4, M_4 + VAG H_2, M_2, M_2 + + // multiply the accumulator by the key coefficient + MULTIPLY(M_0, M_1, M_2, M_3, M_4, R_0, R_1, R_2, R_3, R_4, R5_1, R5_2, R5_3, R5_4, H_0, H_1, H_2, H_3, H_4) + + // carry and partially reduce the partial products + REDUCE(H_0, H_1, H_2, H_3, H_4) + + CMPBNE R3, $0, loop + +finish: + // sum lane 0 and lane 1 and put the result in lane 1 + VZERO T_0 + VSUMQG H_0, T_0, H_0 + VSUMQG H_3, T_0, H_3 + VSUMQG H_1, T_0, H_1 + VSUMQG H_4, T_0, H_4 + VSUMQG H_2, T_0, H_2 + + // reduce again after summation + // TODO(mundaym): there might be a more efficient way to do this + // now that we only have 1 active lane. For example, we could + // simultaneously pack the values as we reduce them. + REDUCE(H_0, H_1, H_2, H_3, H_4) + + // carry h[1] through to h[4] so that only h[4] can exceed 2²⁶ - 1 + // TODO(mundaym): in testing this final carry was unnecessary. + // Needs a proof before it can be removed though. + VESRLG $26, H_1, T_1 + VN MOD26, H_1, H_1 + VAQ T_1, H_2, H_2 + VESRLG $26, H_2, T_2 + VN MOD26, H_2, H_2 + VAQ T_2, H_3, H_3 + VESRLG $26, H_3, T_3 + VN MOD26, H_3, H_3 + VAQ T_3, H_4, H_4 + + // h is now < 2(2¹³⁰ - 5) + // Pack each lane in h₂₆[0:4] into h₁₂₈[0:1]. + VESLG $26, H_1, H_1 + VESLG $26, H_3, H_3 + VO H_0, H_1, H_0 + VO H_2, H_3, H_2 + VESLG $4, H_2, H_2 + VLEIB $7, $48, H_1 + VSLB H_1, H_2, H_2 + VO H_0, H_2, H_0 + VLEIB $7, $104, H_1 + VSLB H_1, H_4, H_3 + VO H_3, H_0, H_0 + VLEIB $7, $24, H_1 + VSRLB H_1, H_4, H_1 + + // update state + VSTEG $1, H_0, 0(R1) + VSTEG $0, H_0, 8(R1) + VSTEG $1, H_1, 16(R1) + RET + +b2: // 2 or fewer blocks remaining + CMPBLE R3, $16, b1 + + // Load the 2 remaining blocks (17-32 bytes remaining). + MOVD $-17(R3), R0 // index of final byte to load modulo 16 + VL (R2), T_0 // load full 16 byte block + VLL R0, 16(R2), T_1 // load final (possibly partial) block and pad with zeros to 16 bytes + + // The Poly1305 algorithm requires that a 1 bit be appended to + // each message block. If the final block is less than 16 bytes + // long then it is easiest to insert the 1 before the message + // block is split into 26-bit limbs. If, on the other hand, the + // final message block is 16 bytes long then we append the 1 bit + // after expansion as normal. + MOVBZ $1, R0 + MOVD $-16(R3), R3 // index of byte in last block to insert 1 at (could be 16) + CMPBEQ R3, $16, 2(PC) // skip the insertion if the final block is 16 bytes long + VLVGB R3, R0, T_1 // insert 1 into the byte at index R3 + + // Split both blocks into 26-bit limbs in the appropriate lanes. + EXPAND(T_0, T_1, M_0, M_1, M_2, M_3, M_4) + + // Append a 1 byte to the end of the second to last block. + VLEIB $4, $1, M_4 + + // Append a 1 byte to the end of the last block only if it is a + // full 16 byte block. + CMPBNE R3, $16, 2(PC) + VLEIB $12, $1, M_4 + + // Finally, set up the coefficients for the final multiplication. + // We have previously saved r and 5r in the 32-bit even indexes + // of the R_[0-4] and R5_[1-4] coefficient registers. + // + // We want lane 0 to be multiplied by r² so that can be kept the + // same. We want lane 1 to be multiplied by r so we need to move + // the saved r value into the 32-bit odd index in lane 1 by + // rotating the 64-bit lane by 32. + VGBM $0x00ff, T_0 // [0, 0xffffffffffffffff] - mask lane 1 only + VERIMG $32, R_0, T_0, R_0 // [_, r²₂₆[0], _, r₂₆[0]] + VERIMG $32, R_1, T_0, R_1 // [_, r²₂₆[1], _, r₂₆[1]] + VERIMG $32, R_2, T_0, R_2 // [_, r²₂₆[2], _, r₂₆[2]] + VERIMG $32, R_3, T_0, R_3 // [_, r²₂₆[3], _, r₂₆[3]] + VERIMG $32, R_4, T_0, R_4 // [_, r²₂₆[4], _, r₂₆[4]] + VERIMG $32, R5_1, T_0, R5_1 // [_, 5r²₂₆[1], _, 5r₂₆[1]] + VERIMG $32, R5_2, T_0, R5_2 // [_, 5r²₂₆[2], _, 5r₂₆[2]] + VERIMG $32, R5_3, T_0, R5_3 // [_, 5r²₂₆[3], _, 5r₂₆[3]] + VERIMG $32, R5_4, T_0, R5_4 // [_, 5r²₂₆[4], _, 5r₂₆[4]] + + MOVD $0, R3 + BR multiply + +skip: + CMPBEQ R3, $0, finish + +b1: // 1 block remaining + + // Load the final block (1-16 bytes). This will be placed into + // lane 0. + MOVD $-1(R3), R0 + VLL R0, (R2), T_0 // pad to 16 bytes with zeros + + // The Poly1305 algorithm requires that a 1 bit be appended to + // each message block. If the final block is less than 16 bytes + // long then it is easiest to insert the 1 before the message + // block is split into 26-bit limbs. If, on the other hand, the + // final message block is 16 bytes long then we append the 1 bit + // after expansion as normal. + MOVBZ $1, R0 + CMPBEQ R3, $16, 2(PC) + VLVGB R3, R0, T_0 + + // Set the message block in lane 1 to the value 0 so that it + // can be accumulated without affecting the final result. + VZERO T_1 + + // Split the final message block into 26-bit limbs in lane 0. + // Lane 1 will be contain 0. + EXPAND(T_0, T_1, M_0, M_1, M_2, M_3, M_4) + + // Append a 1 byte to the end of the last block only if it is a + // full 16 byte block. + CMPBNE R3, $16, 2(PC) + VLEIB $4, $1, M_4 + + // We have previously saved r and 5r in the 32-bit even indexes + // of the R_[0-4] and R5_[1-4] coefficient registers. + // + // We want lane 0 to be multiplied by r so we need to move the + // saved r value into the 32-bit odd index in lane 0. We want + // lane 1 to be set to the value 1. This makes multiplication + // a no-op. We do this by setting lane 1 in every register to 0 + // and then just setting the 32-bit index 3 in R_0 to 1. + VZERO T_0 + MOVD $0, R0 + MOVD $0x10111213, R12 + VLVGP R12, R0, T_1 // [_, 0x10111213, _, 0x00000000] + VPERM T_0, R_0, T_1, R_0 // [_, r₂₆[0], _, 0] + VPERM T_0, R_1, T_1, R_1 // [_, r₂₆[1], _, 0] + VPERM T_0, R_2, T_1, R_2 // [_, r₂₆[2], _, 0] + VPERM T_0, R_3, T_1, R_3 // [_, r₂₆[3], _, 0] + VPERM T_0, R_4, T_1, R_4 // [_, r₂₆[4], _, 0] + VPERM T_0, R5_1, T_1, R5_1 // [_, 5r₂₆[1], _, 0] + VPERM T_0, R5_2, T_1, R5_2 // [_, 5r₂₆[2], _, 0] + VPERM T_0, R5_3, T_1, R5_3 // [_, 5r₂₆[3], _, 0] + VPERM T_0, R5_4, T_1, R5_4 // [_, 5r₂₆[4], _, 0] + + // Set the value of lane 1 to be 1. + VLEIF $3, $1, R_0 // [_, r₂₆[0], _, 1] + + MOVD $0, R3 + BR multiply diff --git a/vendor/golang.org/x/crypto/ssh/buffer.go b/vendor/golang.org/x/crypto/ssh/buffer.go new file mode 100644 index 00000000..1ab07d07 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/buffer.go @@ -0,0 +1,97 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "io" + "sync" +) + +// buffer provides a linked list buffer for data exchange +// between producer and consumer. Theoretically the buffer is +// of unlimited capacity as it does no allocation of its own. +type buffer struct { + // protects concurrent access to head, tail and closed + *sync.Cond + + head *element // the buffer that will be read first + tail *element // the buffer that will be read last + + closed bool +} + +// An element represents a single link in a linked list. +type element struct { + buf []byte + next *element +} + +// newBuffer returns an empty buffer that is not closed. +func newBuffer() *buffer { + e := new(element) + b := &buffer{ + Cond: newCond(), + head: e, + tail: e, + } + return b +} + +// write makes buf available for Read to receive. +// buf must not be modified after the call to write. +func (b *buffer) write(buf []byte) { + b.Cond.L.Lock() + e := &element{buf: buf} + b.tail.next = e + b.tail = e + b.Cond.Signal() + b.Cond.L.Unlock() +} + +// eof closes the buffer. Reads from the buffer once all +// the data has been consumed will receive io.EOF. +func (b *buffer) eof() { + b.Cond.L.Lock() + b.closed = true + b.Cond.Signal() + b.Cond.L.Unlock() +} + +// Read reads data from the internal buffer in buf. Reads will block +// if no data is available, or until the buffer is closed. +func (b *buffer) Read(buf []byte) (n int, err error) { + b.Cond.L.Lock() + defer b.Cond.L.Unlock() + + for len(buf) > 0 { + // if there is data in b.head, copy it + if len(b.head.buf) > 0 { + r := copy(buf, b.head.buf) + buf, b.head.buf = buf[r:], b.head.buf[r:] + n += r + continue + } + // if there is a next buffer, make it the head + if len(b.head.buf) == 0 && b.head != b.tail { + b.head = b.head.next + continue + } + + // if at least one byte has been copied, return + if n > 0 { + break + } + + // if nothing was read, and there is nothing outstanding + // check to see if the buffer is closed. + if b.closed { + err = io.EOF + break + } + // out of buffers, wait for producer + b.Cond.Wait() + } + return +} diff --git a/vendor/golang.org/x/crypto/ssh/certs.go b/vendor/golang.org/x/crypto/ssh/certs.go new file mode 100644 index 00000000..916c840b --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/certs.go @@ -0,0 +1,546 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "errors" + "fmt" + "io" + "net" + "sort" + "time" +) + +// These constants from [PROTOCOL.certkeys] represent the algorithm names +// for certificate types supported by this package. +const ( + CertAlgoRSAv01 = "ssh-rsa-cert-v01@openssh.com" + CertAlgoDSAv01 = "ssh-dss-cert-v01@openssh.com" + CertAlgoECDSA256v01 = "ecdsa-sha2-nistp256-cert-v01@openssh.com" + CertAlgoECDSA384v01 = "ecdsa-sha2-nistp384-cert-v01@openssh.com" + CertAlgoECDSA521v01 = "ecdsa-sha2-nistp521-cert-v01@openssh.com" + CertAlgoSKECDSA256v01 = "sk-ecdsa-sha2-nistp256-cert-v01@openssh.com" + CertAlgoED25519v01 = "ssh-ed25519-cert-v01@openssh.com" + CertAlgoSKED25519v01 = "sk-ssh-ed25519-cert-v01@openssh.com" +) + +// Certificate types distinguish between host and user +// certificates. The values can be set in the CertType field of +// Certificate. +const ( + UserCert = 1 + HostCert = 2 +) + +// Signature represents a cryptographic signature. +type Signature struct { + Format string + Blob []byte + Rest []byte `ssh:"rest"` +} + +// CertTimeInfinity can be used for OpenSSHCertV01.ValidBefore to indicate that +// a certificate does not expire. +const CertTimeInfinity = 1<<64 - 1 + +// An Certificate represents an OpenSSH certificate as defined in +// [PROTOCOL.certkeys]?rev=1.8. The Certificate type implements the +// PublicKey interface, so it can be unmarshaled using +// ParsePublicKey. +type Certificate struct { + Nonce []byte + Key PublicKey + Serial uint64 + CertType uint32 + KeyId string + ValidPrincipals []string + ValidAfter uint64 + ValidBefore uint64 + Permissions + Reserved []byte + SignatureKey PublicKey + Signature *Signature +} + +// genericCertData holds the key-independent part of the certificate data. +// Overall, certificates contain an nonce, public key fields and +// key-independent fields. +type genericCertData struct { + Serial uint64 + CertType uint32 + KeyId string + ValidPrincipals []byte + ValidAfter uint64 + ValidBefore uint64 + CriticalOptions []byte + Extensions []byte + Reserved []byte + SignatureKey []byte + Signature []byte +} + +func marshalStringList(namelist []string) []byte { + var to []byte + for _, name := range namelist { + s := struct{ N string }{name} + to = append(to, Marshal(&s)...) + } + return to +} + +type optionsTuple struct { + Key string + Value []byte +} + +type optionsTupleValue struct { + Value string +} + +// serialize a map of critical options or extensions +// issue #10569 - per [PROTOCOL.certkeys] and SSH implementation, +// we need two length prefixes for a non-empty string value +func marshalTuples(tups map[string]string) []byte { + keys := make([]string, 0, len(tups)) + for key := range tups { + keys = append(keys, key) + } + sort.Strings(keys) + + var ret []byte + for _, key := range keys { + s := optionsTuple{Key: key} + if value := tups[key]; len(value) > 0 { + s.Value = Marshal(&optionsTupleValue{value}) + } + ret = append(ret, Marshal(&s)...) + } + return ret +} + +// issue #10569 - per [PROTOCOL.certkeys] and SSH implementation, +// we need two length prefixes for a non-empty option value +func parseTuples(in []byte) (map[string]string, error) { + tups := map[string]string{} + var lastKey string + var haveLastKey bool + + for len(in) > 0 { + var key, val, extra []byte + var ok bool + + if key, in, ok = parseString(in); !ok { + return nil, errShortRead + } + keyStr := string(key) + // according to [PROTOCOL.certkeys], the names must be in + // lexical order. + if haveLastKey && keyStr <= lastKey { + return nil, fmt.Errorf("ssh: certificate options are not in lexical order") + } + lastKey, haveLastKey = keyStr, true + // the next field is a data field, which if non-empty has a string embedded + if val, in, ok = parseString(in); !ok { + return nil, errShortRead + } + if len(val) > 0 { + val, extra, ok = parseString(val) + if !ok { + return nil, errShortRead + } + if len(extra) > 0 { + return nil, fmt.Errorf("ssh: unexpected trailing data after certificate option value") + } + tups[keyStr] = string(val) + } else { + tups[keyStr] = "" + } + } + return tups, nil +} + +func parseCert(in []byte, privAlgo string) (*Certificate, error) { + nonce, rest, ok := parseString(in) + if !ok { + return nil, errShortRead + } + + key, rest, err := parsePubKey(rest, privAlgo) + if err != nil { + return nil, err + } + + var g genericCertData + if err := Unmarshal(rest, &g); err != nil { + return nil, err + } + + c := &Certificate{ + Nonce: nonce, + Key: key, + Serial: g.Serial, + CertType: g.CertType, + KeyId: g.KeyId, + ValidAfter: g.ValidAfter, + ValidBefore: g.ValidBefore, + } + + for principals := g.ValidPrincipals; len(principals) > 0; { + principal, rest, ok := parseString(principals) + if !ok { + return nil, errShortRead + } + c.ValidPrincipals = append(c.ValidPrincipals, string(principal)) + principals = rest + } + + c.CriticalOptions, err = parseTuples(g.CriticalOptions) + if err != nil { + return nil, err + } + c.Extensions, err = parseTuples(g.Extensions) + if err != nil { + return nil, err + } + c.Reserved = g.Reserved + k, err := ParsePublicKey(g.SignatureKey) + if err != nil { + return nil, err + } + + c.SignatureKey = k + c.Signature, rest, ok = parseSignatureBody(g.Signature) + if !ok || len(rest) > 0 { + return nil, errors.New("ssh: signature parse error") + } + + return c, nil +} + +type openSSHCertSigner struct { + pub *Certificate + signer Signer +} + +type algorithmOpenSSHCertSigner struct { + *openSSHCertSigner + algorithmSigner AlgorithmSigner +} + +// NewCertSigner returns a Signer that signs with the given Certificate, whose +// private key is held by signer. It returns an error if the public key in cert +// doesn't match the key used by signer. +func NewCertSigner(cert *Certificate, signer Signer) (Signer, error) { + if bytes.Compare(cert.Key.Marshal(), signer.PublicKey().Marshal()) != 0 { + return nil, errors.New("ssh: signer and cert have different public key") + } + + if algorithmSigner, ok := signer.(AlgorithmSigner); ok { + return &algorithmOpenSSHCertSigner{ + &openSSHCertSigner{cert, signer}, algorithmSigner}, nil + } else { + return &openSSHCertSigner{cert, signer}, nil + } +} + +func (s *openSSHCertSigner) Sign(rand io.Reader, data []byte) (*Signature, error) { + return s.signer.Sign(rand, data) +} + +func (s *openSSHCertSigner) PublicKey() PublicKey { + return s.pub +} + +func (s *algorithmOpenSSHCertSigner) SignWithAlgorithm(rand io.Reader, data []byte, algorithm string) (*Signature, error) { + return s.algorithmSigner.SignWithAlgorithm(rand, data, algorithm) +} + +const sourceAddressCriticalOption = "source-address" + +// CertChecker does the work of verifying a certificate. Its methods +// can be plugged into ClientConfig.HostKeyCallback and +// ServerConfig.PublicKeyCallback. For the CertChecker to work, +// minimally, the IsAuthority callback should be set. +type CertChecker struct { + // SupportedCriticalOptions lists the CriticalOptions that the + // server application layer understands. These are only used + // for user certificates. + SupportedCriticalOptions []string + + // IsUserAuthority should return true if the key is recognized as an + // authority for the given user certificate. This allows for + // certificates to be signed by other certificates. This must be set + // if this CertChecker will be checking user certificates. + IsUserAuthority func(auth PublicKey) bool + + // IsHostAuthority should report whether the key is recognized as + // an authority for this host. This allows for certificates to be + // signed by other keys, and for those other keys to only be valid + // signers for particular hostnames. This must be set if this + // CertChecker will be checking host certificates. + IsHostAuthority func(auth PublicKey, address string) bool + + // Clock is used for verifying time stamps. If nil, time.Now + // is used. + Clock func() time.Time + + // UserKeyFallback is called when CertChecker.Authenticate encounters a + // public key that is not a certificate. It must implement validation + // of user keys or else, if nil, all such keys are rejected. + UserKeyFallback func(conn ConnMetadata, key PublicKey) (*Permissions, error) + + // HostKeyFallback is called when CertChecker.CheckHostKey encounters a + // public key that is not a certificate. It must implement host key + // validation or else, if nil, all such keys are rejected. + HostKeyFallback HostKeyCallback + + // IsRevoked is called for each certificate so that revocation checking + // can be implemented. It should return true if the given certificate + // is revoked and false otherwise. If nil, no certificates are + // considered to have been revoked. + IsRevoked func(cert *Certificate) bool +} + +// CheckHostKey checks a host key certificate. This method can be +// plugged into ClientConfig.HostKeyCallback. +func (c *CertChecker) CheckHostKey(addr string, remote net.Addr, key PublicKey) error { + cert, ok := key.(*Certificate) + if !ok { + if c.HostKeyFallback != nil { + return c.HostKeyFallback(addr, remote, key) + } + return errors.New("ssh: non-certificate host key") + } + if cert.CertType != HostCert { + return fmt.Errorf("ssh: certificate presented as a host key has type %d", cert.CertType) + } + if !c.IsHostAuthority(cert.SignatureKey, addr) { + return fmt.Errorf("ssh: no authorities for hostname: %v", addr) + } + + hostname, _, err := net.SplitHostPort(addr) + if err != nil { + return err + } + + // Pass hostname only as principal for host certificates (consistent with OpenSSH) + return c.CheckCert(hostname, cert) +} + +// Authenticate checks a user certificate. Authenticate can be used as +// a value for ServerConfig.PublicKeyCallback. +func (c *CertChecker) Authenticate(conn ConnMetadata, pubKey PublicKey) (*Permissions, error) { + cert, ok := pubKey.(*Certificate) + if !ok { + if c.UserKeyFallback != nil { + return c.UserKeyFallback(conn, pubKey) + } + return nil, errors.New("ssh: normal key pairs not accepted") + } + + if cert.CertType != UserCert { + return nil, fmt.Errorf("ssh: cert has type %d", cert.CertType) + } + if !c.IsUserAuthority(cert.SignatureKey) { + return nil, fmt.Errorf("ssh: certificate signed by unrecognized authority") + } + + if err := c.CheckCert(conn.User(), cert); err != nil { + return nil, err + } + + return &cert.Permissions, nil +} + +// CheckCert checks CriticalOptions, ValidPrincipals, revocation, timestamp and +// the signature of the certificate. +func (c *CertChecker) CheckCert(principal string, cert *Certificate) error { + if c.IsRevoked != nil && c.IsRevoked(cert) { + return fmt.Errorf("ssh: certificate serial %d revoked", cert.Serial) + } + + for opt := range cert.CriticalOptions { + // sourceAddressCriticalOption will be enforced by + // serverAuthenticate + if opt == sourceAddressCriticalOption { + continue + } + + found := false + for _, supp := range c.SupportedCriticalOptions { + if supp == opt { + found = true + break + } + } + if !found { + return fmt.Errorf("ssh: unsupported critical option %q in certificate", opt) + } + } + + if len(cert.ValidPrincipals) > 0 { + // By default, certs are valid for all users/hosts. + found := false + for _, p := range cert.ValidPrincipals { + if p == principal { + found = true + break + } + } + if !found { + return fmt.Errorf("ssh: principal %q not in the set of valid principals for given certificate: %q", principal, cert.ValidPrincipals) + } + } + + clock := c.Clock + if clock == nil { + clock = time.Now + } + + unixNow := clock().Unix() + if after := int64(cert.ValidAfter); after < 0 || unixNow < int64(cert.ValidAfter) { + return fmt.Errorf("ssh: cert is not yet valid") + } + if before := int64(cert.ValidBefore); cert.ValidBefore != uint64(CertTimeInfinity) && (unixNow >= before || before < 0) { + return fmt.Errorf("ssh: cert has expired") + } + if err := cert.SignatureKey.Verify(cert.bytesForSigning(), cert.Signature); err != nil { + return fmt.Errorf("ssh: certificate signature does not verify") + } + + return nil +} + +// SignCert signs the certificate with an authority, setting the Nonce, +// SignatureKey, and Signature fields. +func (c *Certificate) SignCert(rand io.Reader, authority Signer) error { + c.Nonce = make([]byte, 32) + if _, err := io.ReadFull(rand, c.Nonce); err != nil { + return err + } + c.SignatureKey = authority.PublicKey() + + sig, err := authority.Sign(rand, c.bytesForSigning()) + if err != nil { + return err + } + c.Signature = sig + return nil +} + +var certAlgoNames = map[string]string{ + KeyAlgoRSA: CertAlgoRSAv01, + KeyAlgoDSA: CertAlgoDSAv01, + KeyAlgoECDSA256: CertAlgoECDSA256v01, + KeyAlgoECDSA384: CertAlgoECDSA384v01, + KeyAlgoECDSA521: CertAlgoECDSA521v01, + KeyAlgoSKECDSA256: CertAlgoSKECDSA256v01, + KeyAlgoED25519: CertAlgoED25519v01, + KeyAlgoSKED25519: CertAlgoSKED25519v01, +} + +// certToPrivAlgo returns the underlying algorithm for a certificate algorithm. +// Panics if a non-certificate algorithm is passed. +func certToPrivAlgo(algo string) string { + for privAlgo, pubAlgo := range certAlgoNames { + if pubAlgo == algo { + return privAlgo + } + } + panic("unknown cert algorithm") +} + +func (cert *Certificate) bytesForSigning() []byte { + c2 := *cert + c2.Signature = nil + out := c2.Marshal() + // Drop trailing signature length. + return out[:len(out)-4] +} + +// Marshal serializes c into OpenSSH's wire format. It is part of the +// PublicKey interface. +func (c *Certificate) Marshal() []byte { + generic := genericCertData{ + Serial: c.Serial, + CertType: c.CertType, + KeyId: c.KeyId, + ValidPrincipals: marshalStringList(c.ValidPrincipals), + ValidAfter: uint64(c.ValidAfter), + ValidBefore: uint64(c.ValidBefore), + CriticalOptions: marshalTuples(c.CriticalOptions), + Extensions: marshalTuples(c.Extensions), + Reserved: c.Reserved, + SignatureKey: c.SignatureKey.Marshal(), + } + if c.Signature != nil { + generic.Signature = Marshal(c.Signature) + } + genericBytes := Marshal(&generic) + keyBytes := c.Key.Marshal() + _, keyBytes, _ = parseString(keyBytes) + prefix := Marshal(&struct { + Name string + Nonce []byte + Key []byte `ssh:"rest"` + }{c.Type(), c.Nonce, keyBytes}) + + result := make([]byte, 0, len(prefix)+len(genericBytes)) + result = append(result, prefix...) + result = append(result, genericBytes...) + return result +} + +// Type returns the key name. It is part of the PublicKey interface. +func (c *Certificate) Type() string { + algo, ok := certAlgoNames[c.Key.Type()] + if !ok { + panic("unknown cert key type " + c.Key.Type()) + } + return algo +} + +// Verify verifies a signature against the certificate's public +// key. It is part of the PublicKey interface. +func (c *Certificate) Verify(data []byte, sig *Signature) error { + return c.Key.Verify(data, sig) +} + +func parseSignatureBody(in []byte) (out *Signature, rest []byte, ok bool) { + format, in, ok := parseString(in) + if !ok { + return + } + + out = &Signature{ + Format: string(format), + } + + if out.Blob, in, ok = parseString(in); !ok { + return + } + + switch out.Format { + case KeyAlgoSKECDSA256, CertAlgoSKECDSA256v01, KeyAlgoSKED25519, CertAlgoSKED25519v01: + out.Rest = in + return out, nil, ok + } + + return out, in, ok +} + +func parseSignature(in []byte) (out *Signature, rest []byte, ok bool) { + sigBytes, rest, ok := parseString(in) + if !ok { + return + } + + out, trailing, ok := parseSignatureBody(sigBytes) + if !ok || len(trailing) > 0 { + return nil, nil, false + } + return +} diff --git a/vendor/golang.org/x/crypto/ssh/channel.go b/vendor/golang.org/x/crypto/ssh/channel.go new file mode 100644 index 00000000..c0834c00 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/channel.go @@ -0,0 +1,633 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "encoding/binary" + "errors" + "fmt" + "io" + "log" + "sync" +) + +const ( + minPacketLength = 9 + // channelMaxPacket contains the maximum number of bytes that will be + // sent in a single packet. As per RFC 4253, section 6.1, 32k is also + // the minimum. + channelMaxPacket = 1 << 15 + // We follow OpenSSH here. + channelWindowSize = 64 * channelMaxPacket +) + +// NewChannel represents an incoming request to a channel. It must either be +// accepted for use by calling Accept, or rejected by calling Reject. +type NewChannel interface { + // Accept accepts the channel creation request. It returns the Channel + // and a Go channel containing SSH requests. The Go channel must be + // serviced otherwise the Channel will hang. + Accept() (Channel, <-chan *Request, error) + + // Reject rejects the channel creation request. After calling + // this, no other methods on the Channel may be called. + Reject(reason RejectionReason, message string) error + + // ChannelType returns the type of the channel, as supplied by the + // client. + ChannelType() string + + // ExtraData returns the arbitrary payload for this channel, as supplied + // by the client. This data is specific to the channel type. + ExtraData() []byte +} + +// A Channel is an ordered, reliable, flow-controlled, duplex stream +// that is multiplexed over an SSH connection. +type Channel interface { + // Read reads up to len(data) bytes from the channel. + Read(data []byte) (int, error) + + // Write writes len(data) bytes to the channel. + Write(data []byte) (int, error) + + // Close signals end of channel use. No data may be sent after this + // call. + Close() error + + // CloseWrite signals the end of sending in-band + // data. Requests may still be sent, and the other side may + // still send data + CloseWrite() error + + // SendRequest sends a channel request. If wantReply is true, + // it will wait for a reply and return the result as a + // boolean, otherwise the return value will be false. Channel + // requests are out-of-band messages so they may be sent even + // if the data stream is closed or blocked by flow control. + // If the channel is closed before a reply is returned, io.EOF + // is returned. + SendRequest(name string, wantReply bool, payload []byte) (bool, error) + + // Stderr returns an io.ReadWriter that writes to this channel + // with the extended data type set to stderr. Stderr may + // safely be read and written from a different goroutine than + // Read and Write respectively. + Stderr() io.ReadWriter +} + +// Request is a request sent outside of the normal stream of +// data. Requests can either be specific to an SSH channel, or they +// can be global. +type Request struct { + Type string + WantReply bool + Payload []byte + + ch *channel + mux *mux +} + +// Reply sends a response to a request. It must be called for all requests +// where WantReply is true and is a no-op otherwise. The payload argument is +// ignored for replies to channel-specific requests. +func (r *Request) Reply(ok bool, payload []byte) error { + if !r.WantReply { + return nil + } + + if r.ch == nil { + return r.mux.ackRequest(ok, payload) + } + + return r.ch.ackRequest(ok) +} + +// RejectionReason is an enumeration used when rejecting channel creation +// requests. See RFC 4254, section 5.1. +type RejectionReason uint32 + +const ( + Prohibited RejectionReason = iota + 1 + ConnectionFailed + UnknownChannelType + ResourceShortage +) + +// String converts the rejection reason to human readable form. +func (r RejectionReason) String() string { + switch r { + case Prohibited: + return "administratively prohibited" + case ConnectionFailed: + return "connect failed" + case UnknownChannelType: + return "unknown channel type" + case ResourceShortage: + return "resource shortage" + } + return fmt.Sprintf("unknown reason %d", int(r)) +} + +func min(a uint32, b int) uint32 { + if a < uint32(b) { + return a + } + return uint32(b) +} + +type channelDirection uint8 + +const ( + channelInbound channelDirection = iota + channelOutbound +) + +// channel is an implementation of the Channel interface that works +// with the mux class. +type channel struct { + // R/O after creation + chanType string + extraData []byte + localId, remoteId uint32 + + // maxIncomingPayload and maxRemotePayload are the maximum + // payload sizes of normal and extended data packets for + // receiving and sending, respectively. The wire packet will + // be 9 or 13 bytes larger (excluding encryption overhead). + maxIncomingPayload uint32 + maxRemotePayload uint32 + + mux *mux + + // decided is set to true if an accept or reject message has been sent + // (for outbound channels) or received (for inbound channels). + decided bool + + // direction contains either channelOutbound, for channels created + // locally, or channelInbound, for channels created by the peer. + direction channelDirection + + // Pending internal channel messages. + msg chan interface{} + + // Since requests have no ID, there can be only one request + // with WantReply=true outstanding. This lock is held by a + // goroutine that has such an outgoing request pending. + sentRequestMu sync.Mutex + + incomingRequests chan *Request + + sentEOF bool + + // thread-safe data + remoteWin window + pending *buffer + extPending *buffer + + // windowMu protects myWindow, the flow-control window. + windowMu sync.Mutex + myWindow uint32 + + // writeMu serializes calls to mux.conn.writePacket() and + // protects sentClose and packetPool. This mutex must be + // different from windowMu, as writePacket can block if there + // is a key exchange pending. + writeMu sync.Mutex + sentClose bool + + // packetPool has a buffer for each extended channel ID to + // save allocations during writes. + packetPool map[uint32][]byte +} + +// writePacket sends a packet. If the packet is a channel close, it updates +// sentClose. This method takes the lock c.writeMu. +func (ch *channel) writePacket(packet []byte) error { + ch.writeMu.Lock() + if ch.sentClose { + ch.writeMu.Unlock() + return io.EOF + } + ch.sentClose = (packet[0] == msgChannelClose) + err := ch.mux.conn.writePacket(packet) + ch.writeMu.Unlock() + return err +} + +func (ch *channel) sendMessage(msg interface{}) error { + if debugMux { + log.Printf("send(%d): %#v", ch.mux.chanList.offset, msg) + } + + p := Marshal(msg) + binary.BigEndian.PutUint32(p[1:], ch.remoteId) + return ch.writePacket(p) +} + +// WriteExtended writes data to a specific extended stream. These streams are +// used, for example, for stderr. +func (ch *channel) WriteExtended(data []byte, extendedCode uint32) (n int, err error) { + if ch.sentEOF { + return 0, io.EOF + } + // 1 byte message type, 4 bytes remoteId, 4 bytes data length + opCode := byte(msgChannelData) + headerLength := uint32(9) + if extendedCode > 0 { + headerLength += 4 + opCode = msgChannelExtendedData + } + + ch.writeMu.Lock() + packet := ch.packetPool[extendedCode] + // We don't remove the buffer from packetPool, so + // WriteExtended calls from different goroutines will be + // flagged as errors by the race detector. + ch.writeMu.Unlock() + + for len(data) > 0 { + space := min(ch.maxRemotePayload, len(data)) + if space, err = ch.remoteWin.reserve(space); err != nil { + return n, err + } + if want := headerLength + space; uint32(cap(packet)) < want { + packet = make([]byte, want) + } else { + packet = packet[:want] + } + + todo := data[:space] + + packet[0] = opCode + binary.BigEndian.PutUint32(packet[1:], ch.remoteId) + if extendedCode > 0 { + binary.BigEndian.PutUint32(packet[5:], uint32(extendedCode)) + } + binary.BigEndian.PutUint32(packet[headerLength-4:], uint32(len(todo))) + copy(packet[headerLength:], todo) + if err = ch.writePacket(packet); err != nil { + return n, err + } + + n += len(todo) + data = data[len(todo):] + } + + ch.writeMu.Lock() + ch.packetPool[extendedCode] = packet + ch.writeMu.Unlock() + + return n, err +} + +func (ch *channel) handleData(packet []byte) error { + headerLen := 9 + isExtendedData := packet[0] == msgChannelExtendedData + if isExtendedData { + headerLen = 13 + } + if len(packet) < headerLen { + // malformed data packet + return parseError(packet[0]) + } + + var extended uint32 + if isExtendedData { + extended = binary.BigEndian.Uint32(packet[5:]) + } + + length := binary.BigEndian.Uint32(packet[headerLen-4 : headerLen]) + if length == 0 { + return nil + } + if length > ch.maxIncomingPayload { + // TODO(hanwen): should send Disconnect? + return errors.New("ssh: incoming packet exceeds maximum payload size") + } + + data := packet[headerLen:] + if length != uint32(len(data)) { + return errors.New("ssh: wrong packet length") + } + + ch.windowMu.Lock() + if ch.myWindow < length { + ch.windowMu.Unlock() + // TODO(hanwen): should send Disconnect with reason? + return errors.New("ssh: remote side wrote too much") + } + ch.myWindow -= length + ch.windowMu.Unlock() + + if extended == 1 { + ch.extPending.write(data) + } else if extended > 0 { + // discard other extended data. + } else { + ch.pending.write(data) + } + return nil +} + +func (c *channel) adjustWindow(n uint32) error { + c.windowMu.Lock() + // Since myWindow is managed on our side, and can never exceed + // the initial window setting, we don't worry about overflow. + c.myWindow += uint32(n) + c.windowMu.Unlock() + return c.sendMessage(windowAdjustMsg{ + AdditionalBytes: uint32(n), + }) +} + +func (c *channel) ReadExtended(data []byte, extended uint32) (n int, err error) { + switch extended { + case 1: + n, err = c.extPending.Read(data) + case 0: + n, err = c.pending.Read(data) + default: + return 0, fmt.Errorf("ssh: extended code %d unimplemented", extended) + } + + if n > 0 { + err = c.adjustWindow(uint32(n)) + // sendWindowAdjust can return io.EOF if the remote + // peer has closed the connection, however we want to + // defer forwarding io.EOF to the caller of Read until + // the buffer has been drained. + if n > 0 && err == io.EOF { + err = nil + } + } + + return n, err +} + +func (c *channel) close() { + c.pending.eof() + c.extPending.eof() + close(c.msg) + close(c.incomingRequests) + c.writeMu.Lock() + // This is not necessary for a normal channel teardown, but if + // there was another error, it is. + c.sentClose = true + c.writeMu.Unlock() + // Unblock writers. + c.remoteWin.close() +} + +// responseMessageReceived is called when a success or failure message is +// received on a channel to check that such a message is reasonable for the +// given channel. +func (ch *channel) responseMessageReceived() error { + if ch.direction == channelInbound { + return errors.New("ssh: channel response message received on inbound channel") + } + if ch.decided { + return errors.New("ssh: duplicate response received for channel") + } + ch.decided = true + return nil +} + +func (ch *channel) handlePacket(packet []byte) error { + switch packet[0] { + case msgChannelData, msgChannelExtendedData: + return ch.handleData(packet) + case msgChannelClose: + ch.sendMessage(channelCloseMsg{PeersID: ch.remoteId}) + ch.mux.chanList.remove(ch.localId) + ch.close() + return nil + case msgChannelEOF: + // RFC 4254 is mute on how EOF affects dataExt messages but + // it is logical to signal EOF at the same time. + ch.extPending.eof() + ch.pending.eof() + return nil + } + + decoded, err := decode(packet) + if err != nil { + return err + } + + switch msg := decoded.(type) { + case *channelOpenFailureMsg: + if err := ch.responseMessageReceived(); err != nil { + return err + } + ch.mux.chanList.remove(msg.PeersID) + ch.msg <- msg + case *channelOpenConfirmMsg: + if err := ch.responseMessageReceived(); err != nil { + return err + } + if msg.MaxPacketSize < minPacketLength || msg.MaxPacketSize > 1<<31 { + return fmt.Errorf("ssh: invalid MaxPacketSize %d from peer", msg.MaxPacketSize) + } + ch.remoteId = msg.MyID + ch.maxRemotePayload = msg.MaxPacketSize + ch.remoteWin.add(msg.MyWindow) + ch.msg <- msg + case *windowAdjustMsg: + if !ch.remoteWin.add(msg.AdditionalBytes) { + return fmt.Errorf("ssh: invalid window update for %d bytes", msg.AdditionalBytes) + } + case *channelRequestMsg: + req := Request{ + Type: msg.Request, + WantReply: msg.WantReply, + Payload: msg.RequestSpecificData, + ch: ch, + } + + ch.incomingRequests <- &req + default: + ch.msg <- msg + } + return nil +} + +func (m *mux) newChannel(chanType string, direction channelDirection, extraData []byte) *channel { + ch := &channel{ + remoteWin: window{Cond: newCond()}, + myWindow: channelWindowSize, + pending: newBuffer(), + extPending: newBuffer(), + direction: direction, + incomingRequests: make(chan *Request, chanSize), + msg: make(chan interface{}, chanSize), + chanType: chanType, + extraData: extraData, + mux: m, + packetPool: make(map[uint32][]byte), + } + ch.localId = m.chanList.add(ch) + return ch +} + +var errUndecided = errors.New("ssh: must Accept or Reject channel") +var errDecidedAlready = errors.New("ssh: can call Accept or Reject only once") + +type extChannel struct { + code uint32 + ch *channel +} + +func (e *extChannel) Write(data []byte) (n int, err error) { + return e.ch.WriteExtended(data, e.code) +} + +func (e *extChannel) Read(data []byte) (n int, err error) { + return e.ch.ReadExtended(data, e.code) +} + +func (ch *channel) Accept() (Channel, <-chan *Request, error) { + if ch.decided { + return nil, nil, errDecidedAlready + } + ch.maxIncomingPayload = channelMaxPacket + confirm := channelOpenConfirmMsg{ + PeersID: ch.remoteId, + MyID: ch.localId, + MyWindow: ch.myWindow, + MaxPacketSize: ch.maxIncomingPayload, + } + ch.decided = true + if err := ch.sendMessage(confirm); err != nil { + return nil, nil, err + } + + return ch, ch.incomingRequests, nil +} + +func (ch *channel) Reject(reason RejectionReason, message string) error { + if ch.decided { + return errDecidedAlready + } + reject := channelOpenFailureMsg{ + PeersID: ch.remoteId, + Reason: reason, + Message: message, + Language: "en", + } + ch.decided = true + return ch.sendMessage(reject) +} + +func (ch *channel) Read(data []byte) (int, error) { + if !ch.decided { + return 0, errUndecided + } + return ch.ReadExtended(data, 0) +} + +func (ch *channel) Write(data []byte) (int, error) { + if !ch.decided { + return 0, errUndecided + } + return ch.WriteExtended(data, 0) +} + +func (ch *channel) CloseWrite() error { + if !ch.decided { + return errUndecided + } + ch.sentEOF = true + return ch.sendMessage(channelEOFMsg{ + PeersID: ch.remoteId}) +} + +func (ch *channel) Close() error { + if !ch.decided { + return errUndecided + } + + return ch.sendMessage(channelCloseMsg{ + PeersID: ch.remoteId}) +} + +// Extended returns an io.ReadWriter that sends and receives data on the given, +// SSH extended stream. Such streams are used, for example, for stderr. +func (ch *channel) Extended(code uint32) io.ReadWriter { + if !ch.decided { + return nil + } + return &extChannel{code, ch} +} + +func (ch *channel) Stderr() io.ReadWriter { + return ch.Extended(1) +} + +func (ch *channel) SendRequest(name string, wantReply bool, payload []byte) (bool, error) { + if !ch.decided { + return false, errUndecided + } + + if wantReply { + ch.sentRequestMu.Lock() + defer ch.sentRequestMu.Unlock() + } + + msg := channelRequestMsg{ + PeersID: ch.remoteId, + Request: name, + WantReply: wantReply, + RequestSpecificData: payload, + } + + if err := ch.sendMessage(msg); err != nil { + return false, err + } + + if wantReply { + m, ok := (<-ch.msg) + if !ok { + return false, io.EOF + } + switch m.(type) { + case *channelRequestFailureMsg: + return false, nil + case *channelRequestSuccessMsg: + return true, nil + default: + return false, fmt.Errorf("ssh: unexpected response to channel request: %#v", m) + } + } + + return false, nil +} + +// ackRequest either sends an ack or nack to the channel request. +func (ch *channel) ackRequest(ok bool) error { + if !ch.decided { + return errUndecided + } + + var msg interface{} + if !ok { + msg = channelRequestFailureMsg{ + PeersID: ch.remoteId, + } + } else { + msg = channelRequestSuccessMsg{ + PeersID: ch.remoteId, + } + } + return ch.sendMessage(msg) +} + +func (ch *channel) ChannelType() string { + return ch.chanType +} + +func (ch *channel) ExtraData() []byte { + return ch.extraData +} diff --git a/vendor/golang.org/x/crypto/ssh/cipher.go b/vendor/golang.org/x/crypto/ssh/cipher.go new file mode 100644 index 00000000..8bd6b3da --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/cipher.go @@ -0,0 +1,781 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "crypto/aes" + "crypto/cipher" + "crypto/des" + "crypto/rc4" + "crypto/subtle" + "encoding/binary" + "errors" + "fmt" + "hash" + "io" + "io/ioutil" + + "golang.org/x/crypto/chacha20" + "golang.org/x/crypto/poly1305" +) + +const ( + packetSizeMultiple = 16 // TODO(huin) this should be determined by the cipher. + + // RFC 4253 section 6.1 defines a minimum packet size of 32768 that implementations + // MUST be able to process (plus a few more kilobytes for padding and mac). The RFC + // indicates implementations SHOULD be able to handle larger packet sizes, but then + // waffles on about reasonable limits. + // + // OpenSSH caps their maxPacket at 256kB so we choose to do + // the same. maxPacket is also used to ensure that uint32 + // length fields do not overflow, so it should remain well + // below 4G. + maxPacket = 256 * 1024 +) + +// noneCipher implements cipher.Stream and provides no encryption. It is used +// by the transport before the first key-exchange. +type noneCipher struct{} + +func (c noneCipher) XORKeyStream(dst, src []byte) { + copy(dst, src) +} + +func newAESCTR(key, iv []byte) (cipher.Stream, error) { + c, err := aes.NewCipher(key) + if err != nil { + return nil, err + } + return cipher.NewCTR(c, iv), nil +} + +func newRC4(key, iv []byte) (cipher.Stream, error) { + return rc4.NewCipher(key) +} + +type cipherMode struct { + keySize int + ivSize int + create func(key, iv []byte, macKey []byte, algs directionAlgorithms) (packetCipher, error) +} + +func streamCipherMode(skip int, createFunc func(key, iv []byte) (cipher.Stream, error)) func(key, iv []byte, macKey []byte, algs directionAlgorithms) (packetCipher, error) { + return func(key, iv, macKey []byte, algs directionAlgorithms) (packetCipher, error) { + stream, err := createFunc(key, iv) + if err != nil { + return nil, err + } + + var streamDump []byte + if skip > 0 { + streamDump = make([]byte, 512) + } + + for remainingToDump := skip; remainingToDump > 0; { + dumpThisTime := remainingToDump + if dumpThisTime > len(streamDump) { + dumpThisTime = len(streamDump) + } + stream.XORKeyStream(streamDump[:dumpThisTime], streamDump[:dumpThisTime]) + remainingToDump -= dumpThisTime + } + + mac := macModes[algs.MAC].new(macKey) + return &streamPacketCipher{ + mac: mac, + etm: macModes[algs.MAC].etm, + macResult: make([]byte, mac.Size()), + cipher: stream, + }, nil + } +} + +// cipherModes documents properties of supported ciphers. Ciphers not included +// are not supported and will not be negotiated, even if explicitly requested in +// ClientConfig.Crypto.Ciphers. +var cipherModes = map[string]*cipherMode{ + // Ciphers from RFC4344, which introduced many CTR-based ciphers. Algorithms + // are defined in the order specified in the RFC. + "aes128-ctr": {16, aes.BlockSize, streamCipherMode(0, newAESCTR)}, + "aes192-ctr": {24, aes.BlockSize, streamCipherMode(0, newAESCTR)}, + "aes256-ctr": {32, aes.BlockSize, streamCipherMode(0, newAESCTR)}, + + // Ciphers from RFC4345, which introduces security-improved arcfour ciphers. + // They are defined in the order specified in the RFC. + "arcfour128": {16, 0, streamCipherMode(1536, newRC4)}, + "arcfour256": {32, 0, streamCipherMode(1536, newRC4)}, + + // Cipher defined in RFC 4253, which describes SSH Transport Layer Protocol. + // Note that this cipher is not safe, as stated in RFC 4253: "Arcfour (and + // RC4) has problems with weak keys, and should be used with caution." + // RFC4345 introduces improved versions of Arcfour. + "arcfour": {16, 0, streamCipherMode(0, newRC4)}, + + // AEAD ciphers + gcmCipherID: {16, 12, newGCMCipher}, + chacha20Poly1305ID: {64, 0, newChaCha20Cipher}, + + // CBC mode is insecure and so is not included in the default config. + // (See https://www.ieee-security.org/TC/SP2013/papers/4977a526.pdf). If absolutely + // needed, it's possible to specify a custom Config to enable it. + // You should expect that an active attacker can recover plaintext if + // you do. + aes128cbcID: {16, aes.BlockSize, newAESCBCCipher}, + + // 3des-cbc is insecure and is not included in the default + // config. + tripledescbcID: {24, des.BlockSize, newTripleDESCBCCipher}, +} + +// prefixLen is the length of the packet prefix that contains the packet length +// and number of padding bytes. +const prefixLen = 5 + +// streamPacketCipher is a packetCipher using a stream cipher. +type streamPacketCipher struct { + mac hash.Hash + cipher cipher.Stream + etm bool + + // The following members are to avoid per-packet allocations. + prefix [prefixLen]byte + seqNumBytes [4]byte + padding [2 * packetSizeMultiple]byte + packetData []byte + macResult []byte +} + +// readCipherPacket reads and decrypt a single packet from the reader argument. +func (s *streamPacketCipher) readCipherPacket(seqNum uint32, r io.Reader) ([]byte, error) { + if _, err := io.ReadFull(r, s.prefix[:]); err != nil { + return nil, err + } + + var encryptedPaddingLength [1]byte + if s.mac != nil && s.etm { + copy(encryptedPaddingLength[:], s.prefix[4:5]) + s.cipher.XORKeyStream(s.prefix[4:5], s.prefix[4:5]) + } else { + s.cipher.XORKeyStream(s.prefix[:], s.prefix[:]) + } + + length := binary.BigEndian.Uint32(s.prefix[0:4]) + paddingLength := uint32(s.prefix[4]) + + var macSize uint32 + if s.mac != nil { + s.mac.Reset() + binary.BigEndian.PutUint32(s.seqNumBytes[:], seqNum) + s.mac.Write(s.seqNumBytes[:]) + if s.etm { + s.mac.Write(s.prefix[:4]) + s.mac.Write(encryptedPaddingLength[:]) + } else { + s.mac.Write(s.prefix[:]) + } + macSize = uint32(s.mac.Size()) + } + + if length <= paddingLength+1 { + return nil, errors.New("ssh: invalid packet length, packet too small") + } + + if length > maxPacket { + return nil, errors.New("ssh: invalid packet length, packet too large") + } + + // the maxPacket check above ensures that length-1+macSize + // does not overflow. + if uint32(cap(s.packetData)) < length-1+macSize { + s.packetData = make([]byte, length-1+macSize) + } else { + s.packetData = s.packetData[:length-1+macSize] + } + + if _, err := io.ReadFull(r, s.packetData); err != nil { + return nil, err + } + mac := s.packetData[length-1:] + data := s.packetData[:length-1] + + if s.mac != nil && s.etm { + s.mac.Write(data) + } + + s.cipher.XORKeyStream(data, data) + + if s.mac != nil { + if !s.etm { + s.mac.Write(data) + } + s.macResult = s.mac.Sum(s.macResult[:0]) + if subtle.ConstantTimeCompare(s.macResult, mac) != 1 { + return nil, errors.New("ssh: MAC failure") + } + } + + return s.packetData[:length-paddingLength-1], nil +} + +// writeCipherPacket encrypts and sends a packet of data to the writer argument +func (s *streamPacketCipher) writeCipherPacket(seqNum uint32, w io.Writer, rand io.Reader, packet []byte) error { + if len(packet) > maxPacket { + return errors.New("ssh: packet too large") + } + + aadlen := 0 + if s.mac != nil && s.etm { + // packet length is not encrypted for EtM modes + aadlen = 4 + } + + paddingLength := packetSizeMultiple - (prefixLen+len(packet)-aadlen)%packetSizeMultiple + if paddingLength < 4 { + paddingLength += packetSizeMultiple + } + + length := len(packet) + 1 + paddingLength + binary.BigEndian.PutUint32(s.prefix[:], uint32(length)) + s.prefix[4] = byte(paddingLength) + padding := s.padding[:paddingLength] + if _, err := io.ReadFull(rand, padding); err != nil { + return err + } + + if s.mac != nil { + s.mac.Reset() + binary.BigEndian.PutUint32(s.seqNumBytes[:], seqNum) + s.mac.Write(s.seqNumBytes[:]) + + if s.etm { + // For EtM algorithms, the packet length must stay unencrypted, + // but the following data (padding length) must be encrypted + s.cipher.XORKeyStream(s.prefix[4:5], s.prefix[4:5]) + } + + s.mac.Write(s.prefix[:]) + + if !s.etm { + // For non-EtM algorithms, the algorithm is applied on unencrypted data + s.mac.Write(packet) + s.mac.Write(padding) + } + } + + if !(s.mac != nil && s.etm) { + // For EtM algorithms, the padding length has already been encrypted + // and the packet length must remain unencrypted + s.cipher.XORKeyStream(s.prefix[:], s.prefix[:]) + } + + s.cipher.XORKeyStream(packet, packet) + s.cipher.XORKeyStream(padding, padding) + + if s.mac != nil && s.etm { + // For EtM algorithms, packet and padding must be encrypted + s.mac.Write(packet) + s.mac.Write(padding) + } + + if _, err := w.Write(s.prefix[:]); err != nil { + return err + } + if _, err := w.Write(packet); err != nil { + return err + } + if _, err := w.Write(padding); err != nil { + return err + } + + if s.mac != nil { + s.macResult = s.mac.Sum(s.macResult[:0]) + if _, err := w.Write(s.macResult); err != nil { + return err + } + } + + return nil +} + +type gcmCipher struct { + aead cipher.AEAD + prefix [4]byte + iv []byte + buf []byte +} + +func newGCMCipher(key, iv, unusedMacKey []byte, unusedAlgs directionAlgorithms) (packetCipher, error) { + c, err := aes.NewCipher(key) + if err != nil { + return nil, err + } + + aead, err := cipher.NewGCM(c) + if err != nil { + return nil, err + } + + return &gcmCipher{ + aead: aead, + iv: iv, + }, nil +} + +const gcmTagSize = 16 + +func (c *gcmCipher) writeCipherPacket(seqNum uint32, w io.Writer, rand io.Reader, packet []byte) error { + // Pad out to multiple of 16 bytes. This is different from the + // stream cipher because that encrypts the length too. + padding := byte(packetSizeMultiple - (1+len(packet))%packetSizeMultiple) + if padding < 4 { + padding += packetSizeMultiple + } + + length := uint32(len(packet) + int(padding) + 1) + binary.BigEndian.PutUint32(c.prefix[:], length) + if _, err := w.Write(c.prefix[:]); err != nil { + return err + } + + if cap(c.buf) < int(length) { + c.buf = make([]byte, length) + } else { + c.buf = c.buf[:length] + } + + c.buf[0] = padding + copy(c.buf[1:], packet) + if _, err := io.ReadFull(rand, c.buf[1+len(packet):]); err != nil { + return err + } + c.buf = c.aead.Seal(c.buf[:0], c.iv, c.buf, c.prefix[:]) + if _, err := w.Write(c.buf); err != nil { + return err + } + c.incIV() + + return nil +} + +func (c *gcmCipher) incIV() { + for i := 4 + 7; i >= 4; i-- { + c.iv[i]++ + if c.iv[i] != 0 { + break + } + } +} + +func (c *gcmCipher) readCipherPacket(seqNum uint32, r io.Reader) ([]byte, error) { + if _, err := io.ReadFull(r, c.prefix[:]); err != nil { + return nil, err + } + length := binary.BigEndian.Uint32(c.prefix[:]) + if length > maxPacket { + return nil, errors.New("ssh: max packet length exceeded") + } + + if cap(c.buf) < int(length+gcmTagSize) { + c.buf = make([]byte, length+gcmTagSize) + } else { + c.buf = c.buf[:length+gcmTagSize] + } + + if _, err := io.ReadFull(r, c.buf); err != nil { + return nil, err + } + + plain, err := c.aead.Open(c.buf[:0], c.iv, c.buf, c.prefix[:]) + if err != nil { + return nil, err + } + c.incIV() + + padding := plain[0] + if padding < 4 { + // padding is a byte, so it automatically satisfies + // the maximum size, which is 255. + return nil, fmt.Errorf("ssh: illegal padding %d", padding) + } + + if int(padding+1) >= len(plain) { + return nil, fmt.Errorf("ssh: padding %d too large", padding) + } + plain = plain[1 : length-uint32(padding)] + return plain, nil +} + +// cbcCipher implements aes128-cbc cipher defined in RFC 4253 section 6.1 +type cbcCipher struct { + mac hash.Hash + macSize uint32 + decrypter cipher.BlockMode + encrypter cipher.BlockMode + + // The following members are to avoid per-packet allocations. + seqNumBytes [4]byte + packetData []byte + macResult []byte + + // Amount of data we should still read to hide which + // verification error triggered. + oracleCamouflage uint32 +} + +func newCBCCipher(c cipher.Block, key, iv, macKey []byte, algs directionAlgorithms) (packetCipher, error) { + cbc := &cbcCipher{ + mac: macModes[algs.MAC].new(macKey), + decrypter: cipher.NewCBCDecrypter(c, iv), + encrypter: cipher.NewCBCEncrypter(c, iv), + packetData: make([]byte, 1024), + } + if cbc.mac != nil { + cbc.macSize = uint32(cbc.mac.Size()) + } + + return cbc, nil +} + +func newAESCBCCipher(key, iv, macKey []byte, algs directionAlgorithms) (packetCipher, error) { + c, err := aes.NewCipher(key) + if err != nil { + return nil, err + } + + cbc, err := newCBCCipher(c, key, iv, macKey, algs) + if err != nil { + return nil, err + } + + return cbc, nil +} + +func newTripleDESCBCCipher(key, iv, macKey []byte, algs directionAlgorithms) (packetCipher, error) { + c, err := des.NewTripleDESCipher(key) + if err != nil { + return nil, err + } + + cbc, err := newCBCCipher(c, key, iv, macKey, algs) + if err != nil { + return nil, err + } + + return cbc, nil +} + +func maxUInt32(a, b int) uint32 { + if a > b { + return uint32(a) + } + return uint32(b) +} + +const ( + cbcMinPacketSizeMultiple = 8 + cbcMinPacketSize = 16 + cbcMinPaddingSize = 4 +) + +// cbcError represents a verification error that may leak information. +type cbcError string + +func (e cbcError) Error() string { return string(e) } + +func (c *cbcCipher) readCipherPacket(seqNum uint32, r io.Reader) ([]byte, error) { + p, err := c.readCipherPacketLeaky(seqNum, r) + if err != nil { + if _, ok := err.(cbcError); ok { + // Verification error: read a fixed amount of + // data, to make distinguishing between + // failing MAC and failing length check more + // difficult. + io.CopyN(ioutil.Discard, r, int64(c.oracleCamouflage)) + } + } + return p, err +} + +func (c *cbcCipher) readCipherPacketLeaky(seqNum uint32, r io.Reader) ([]byte, error) { + blockSize := c.decrypter.BlockSize() + + // Read the header, which will include some of the subsequent data in the + // case of block ciphers - this is copied back to the payload later. + // How many bytes of payload/padding will be read with this first read. + firstBlockLength := uint32((prefixLen + blockSize - 1) / blockSize * blockSize) + firstBlock := c.packetData[:firstBlockLength] + if _, err := io.ReadFull(r, firstBlock); err != nil { + return nil, err + } + + c.oracleCamouflage = maxPacket + 4 + c.macSize - firstBlockLength + + c.decrypter.CryptBlocks(firstBlock, firstBlock) + length := binary.BigEndian.Uint32(firstBlock[:4]) + if length > maxPacket { + return nil, cbcError("ssh: packet too large") + } + if length+4 < maxUInt32(cbcMinPacketSize, blockSize) { + // The minimum size of a packet is 16 (or the cipher block size, whichever + // is larger) bytes. + return nil, cbcError("ssh: packet too small") + } + // The length of the packet (including the length field but not the MAC) must + // be a multiple of the block size or 8, whichever is larger. + if (length+4)%maxUInt32(cbcMinPacketSizeMultiple, blockSize) != 0 { + return nil, cbcError("ssh: invalid packet length multiple") + } + + paddingLength := uint32(firstBlock[4]) + if paddingLength < cbcMinPaddingSize || length <= paddingLength+1 { + return nil, cbcError("ssh: invalid packet length") + } + + // Positions within the c.packetData buffer: + macStart := 4 + length + paddingStart := macStart - paddingLength + + // Entire packet size, starting before length, ending at end of mac. + entirePacketSize := macStart + c.macSize + + // Ensure c.packetData is large enough for the entire packet data. + if uint32(cap(c.packetData)) < entirePacketSize { + // Still need to upsize and copy, but this should be rare at runtime, only + // on upsizing the packetData buffer. + c.packetData = make([]byte, entirePacketSize) + copy(c.packetData, firstBlock) + } else { + c.packetData = c.packetData[:entirePacketSize] + } + + n, err := io.ReadFull(r, c.packetData[firstBlockLength:]) + if err != nil { + return nil, err + } + c.oracleCamouflage -= uint32(n) + + remainingCrypted := c.packetData[firstBlockLength:macStart] + c.decrypter.CryptBlocks(remainingCrypted, remainingCrypted) + + mac := c.packetData[macStart:] + if c.mac != nil { + c.mac.Reset() + binary.BigEndian.PutUint32(c.seqNumBytes[:], seqNum) + c.mac.Write(c.seqNumBytes[:]) + c.mac.Write(c.packetData[:macStart]) + c.macResult = c.mac.Sum(c.macResult[:0]) + if subtle.ConstantTimeCompare(c.macResult, mac) != 1 { + return nil, cbcError("ssh: MAC failure") + } + } + + return c.packetData[prefixLen:paddingStart], nil +} + +func (c *cbcCipher) writeCipherPacket(seqNum uint32, w io.Writer, rand io.Reader, packet []byte) error { + effectiveBlockSize := maxUInt32(cbcMinPacketSizeMultiple, c.encrypter.BlockSize()) + + // Length of encrypted portion of the packet (header, payload, padding). + // Enforce minimum padding and packet size. + encLength := maxUInt32(prefixLen+len(packet)+cbcMinPaddingSize, cbcMinPaddingSize) + // Enforce block size. + encLength = (encLength + effectiveBlockSize - 1) / effectiveBlockSize * effectiveBlockSize + + length := encLength - 4 + paddingLength := int(length) - (1 + len(packet)) + + // Overall buffer contains: header, payload, padding, mac. + // Space for the MAC is reserved in the capacity but not the slice length. + bufferSize := encLength + c.macSize + if uint32(cap(c.packetData)) < bufferSize { + c.packetData = make([]byte, encLength, bufferSize) + } else { + c.packetData = c.packetData[:encLength] + } + + p := c.packetData + + // Packet header. + binary.BigEndian.PutUint32(p, length) + p = p[4:] + p[0] = byte(paddingLength) + + // Payload. + p = p[1:] + copy(p, packet) + + // Padding. + p = p[len(packet):] + if _, err := io.ReadFull(rand, p); err != nil { + return err + } + + if c.mac != nil { + c.mac.Reset() + binary.BigEndian.PutUint32(c.seqNumBytes[:], seqNum) + c.mac.Write(c.seqNumBytes[:]) + c.mac.Write(c.packetData) + // The MAC is now appended into the capacity reserved for it earlier. + c.packetData = c.mac.Sum(c.packetData) + } + + c.encrypter.CryptBlocks(c.packetData[:encLength], c.packetData[:encLength]) + + if _, err := w.Write(c.packetData); err != nil { + return err + } + + return nil +} + +const chacha20Poly1305ID = "chacha20-poly1305@openssh.com" + +// chacha20Poly1305Cipher implements the chacha20-poly1305@openssh.com +// AEAD, which is described here: +// +// https://tools.ietf.org/html/draft-josefsson-ssh-chacha20-poly1305-openssh-00 +// +// the methods here also implement padding, which RFC4253 Section 6 +// also requires of stream ciphers. +type chacha20Poly1305Cipher struct { + lengthKey [32]byte + contentKey [32]byte + buf []byte +} + +func newChaCha20Cipher(key, unusedIV, unusedMACKey []byte, unusedAlgs directionAlgorithms) (packetCipher, error) { + if len(key) != 64 { + panic(len(key)) + } + + c := &chacha20Poly1305Cipher{ + buf: make([]byte, 256), + } + + copy(c.contentKey[:], key[:32]) + copy(c.lengthKey[:], key[32:]) + return c, nil +} + +func (c *chacha20Poly1305Cipher) readCipherPacket(seqNum uint32, r io.Reader) ([]byte, error) { + nonce := make([]byte, 12) + binary.BigEndian.PutUint32(nonce[8:], seqNum) + s, err := chacha20.NewUnauthenticatedCipher(c.contentKey[:], nonce) + if err != nil { + return nil, err + } + var polyKey, discardBuf [32]byte + s.XORKeyStream(polyKey[:], polyKey[:]) + s.XORKeyStream(discardBuf[:], discardBuf[:]) // skip the next 32 bytes + + encryptedLength := c.buf[:4] + if _, err := io.ReadFull(r, encryptedLength); err != nil { + return nil, err + } + + var lenBytes [4]byte + ls, err := chacha20.NewUnauthenticatedCipher(c.lengthKey[:], nonce) + if err != nil { + return nil, err + } + ls.XORKeyStream(lenBytes[:], encryptedLength) + + length := binary.BigEndian.Uint32(lenBytes[:]) + if length > maxPacket { + return nil, errors.New("ssh: invalid packet length, packet too large") + } + + contentEnd := 4 + length + packetEnd := contentEnd + poly1305.TagSize + if uint32(cap(c.buf)) < packetEnd { + c.buf = make([]byte, packetEnd) + copy(c.buf[:], encryptedLength) + } else { + c.buf = c.buf[:packetEnd] + } + + if _, err := io.ReadFull(r, c.buf[4:packetEnd]); err != nil { + return nil, err + } + + var mac [poly1305.TagSize]byte + copy(mac[:], c.buf[contentEnd:packetEnd]) + if !poly1305.Verify(&mac, c.buf[:contentEnd], &polyKey) { + return nil, errors.New("ssh: MAC failure") + } + + plain := c.buf[4:contentEnd] + s.XORKeyStream(plain, plain) + + padding := plain[0] + if padding < 4 { + // padding is a byte, so it automatically satisfies + // the maximum size, which is 255. + return nil, fmt.Errorf("ssh: illegal padding %d", padding) + } + + if int(padding)+1 >= len(plain) { + return nil, fmt.Errorf("ssh: padding %d too large", padding) + } + + plain = plain[1 : len(plain)-int(padding)] + + return plain, nil +} + +func (c *chacha20Poly1305Cipher) writeCipherPacket(seqNum uint32, w io.Writer, rand io.Reader, payload []byte) error { + nonce := make([]byte, 12) + binary.BigEndian.PutUint32(nonce[8:], seqNum) + s, err := chacha20.NewUnauthenticatedCipher(c.contentKey[:], nonce) + if err != nil { + return err + } + var polyKey, discardBuf [32]byte + s.XORKeyStream(polyKey[:], polyKey[:]) + s.XORKeyStream(discardBuf[:], discardBuf[:]) // skip the next 32 bytes + + // There is no blocksize, so fall back to multiple of 8 byte + // padding, as described in RFC 4253, Sec 6. + const packetSizeMultiple = 8 + + padding := packetSizeMultiple - (1+len(payload))%packetSizeMultiple + if padding < 4 { + padding += packetSizeMultiple + } + + // size (4 bytes), padding (1), payload, padding, tag. + totalLength := 4 + 1 + len(payload) + padding + poly1305.TagSize + if cap(c.buf) < totalLength { + c.buf = make([]byte, totalLength) + } else { + c.buf = c.buf[:totalLength] + } + + binary.BigEndian.PutUint32(c.buf, uint32(1+len(payload)+padding)) + ls, err := chacha20.NewUnauthenticatedCipher(c.lengthKey[:], nonce) + if err != nil { + return err + } + ls.XORKeyStream(c.buf, c.buf[:4]) + c.buf[4] = byte(padding) + copy(c.buf[5:], payload) + packetEnd := 5 + len(payload) + padding + if _, err := io.ReadFull(rand, c.buf[5+len(payload):packetEnd]); err != nil { + return err + } + + s.XORKeyStream(c.buf[4:], c.buf[4:packetEnd]) + + var mac [poly1305.TagSize]byte + poly1305.Sum(&mac, c.buf[:packetEnd], &polyKey) + + copy(c.buf[packetEnd:], mac[:]) + + if _, err := w.Write(c.buf); err != nil { + return err + } + return nil +} diff --git a/vendor/golang.org/x/crypto/ssh/client.go b/vendor/golang.org/x/crypto/ssh/client.go new file mode 100644 index 00000000..7b00bff1 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/client.go @@ -0,0 +1,278 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "errors" + "fmt" + "net" + "os" + "sync" + "time" +) + +// Client implements a traditional SSH client that supports shells, +// subprocesses, TCP port/streamlocal forwarding and tunneled dialing. +type Client struct { + Conn + + handleForwardsOnce sync.Once // guards calling (*Client).handleForwards + + forwards forwardList // forwarded tcpip connections from the remote side + mu sync.Mutex + channelHandlers map[string]chan NewChannel +} + +// HandleChannelOpen returns a channel on which NewChannel requests +// for the given type are sent. If the type already is being handled, +// nil is returned. The channel is closed when the connection is closed. +func (c *Client) HandleChannelOpen(channelType string) <-chan NewChannel { + c.mu.Lock() + defer c.mu.Unlock() + if c.channelHandlers == nil { + // The SSH channel has been closed. + c := make(chan NewChannel) + close(c) + return c + } + + ch := c.channelHandlers[channelType] + if ch != nil { + return nil + } + + ch = make(chan NewChannel, chanSize) + c.channelHandlers[channelType] = ch + return ch +} + +// NewClient creates a Client on top of the given connection. +func NewClient(c Conn, chans <-chan NewChannel, reqs <-chan *Request) *Client { + conn := &Client{ + Conn: c, + channelHandlers: make(map[string]chan NewChannel, 1), + } + + go conn.handleGlobalRequests(reqs) + go conn.handleChannelOpens(chans) + go func() { + conn.Wait() + conn.forwards.closeAll() + }() + return conn +} + +// NewClientConn establishes an authenticated SSH connection using c +// as the underlying transport. The Request and NewChannel channels +// must be serviced or the connection will hang. +func NewClientConn(c net.Conn, addr string, config *ClientConfig) (Conn, <-chan NewChannel, <-chan *Request, error) { + fullConf := *config + fullConf.SetDefaults() + if fullConf.HostKeyCallback == nil { + c.Close() + return nil, nil, nil, errors.New("ssh: must specify HostKeyCallback") + } + + conn := &connection{ + sshConn: sshConn{conn: c}, + } + + if err := conn.clientHandshake(addr, &fullConf); err != nil { + c.Close() + return nil, nil, nil, fmt.Errorf("ssh: handshake failed: %v", err) + } + conn.mux = newMux(conn.transport) + return conn, conn.mux.incomingChannels, conn.mux.incomingRequests, nil +} + +// clientHandshake performs the client side key exchange. See RFC 4253 Section +// 7. +func (c *connection) clientHandshake(dialAddress string, config *ClientConfig) error { + if config.ClientVersion != "" { + c.clientVersion = []byte(config.ClientVersion) + } else { + c.clientVersion = []byte(packageVersion) + } + var err error + c.serverVersion, err = exchangeVersions(c.sshConn.conn, c.clientVersion) + if err != nil { + return err + } + + c.transport = newClientTransport( + newTransport(c.sshConn.conn, config.Rand, true /* is client */), + c.clientVersion, c.serverVersion, config, dialAddress, c.sshConn.RemoteAddr()) + if err := c.transport.waitSession(); err != nil { + return err + } + + c.sessionID = c.transport.getSessionID() + return c.clientAuthenticate(config) +} + +// verifyHostKeySignature verifies the host key obtained in the key +// exchange. +func verifyHostKeySignature(hostKey PublicKey, result *kexResult) error { + sig, rest, ok := parseSignatureBody(result.Signature) + if len(rest) > 0 || !ok { + return errors.New("ssh: signature parse error") + } + + return hostKey.Verify(result.H, sig) +} + +// NewSession opens a new Session for this client. (A session is a remote +// execution of a program.) +func (c *Client) NewSession() (*Session, error) { + ch, in, err := c.OpenChannel("session", nil) + if err != nil { + return nil, err + } + return newSession(ch, in) +} + +func (c *Client) handleGlobalRequests(incoming <-chan *Request) { + for r := range incoming { + // This handles keepalive messages and matches + // the behaviour of OpenSSH. + r.Reply(false, nil) + } +} + +// handleChannelOpens channel open messages from the remote side. +func (c *Client) handleChannelOpens(in <-chan NewChannel) { + for ch := range in { + c.mu.Lock() + handler := c.channelHandlers[ch.ChannelType()] + c.mu.Unlock() + + if handler != nil { + handler <- ch + } else { + ch.Reject(UnknownChannelType, fmt.Sprintf("unknown channel type: %v", ch.ChannelType())) + } + } + + c.mu.Lock() + for _, ch := range c.channelHandlers { + close(ch) + } + c.channelHandlers = nil + c.mu.Unlock() +} + +// Dial starts a client connection to the given SSH server. It is a +// convenience function that connects to the given network address, +// initiates the SSH handshake, and then sets up a Client. For access +// to incoming channels and requests, use net.Dial with NewClientConn +// instead. +func Dial(network, addr string, config *ClientConfig) (*Client, error) { + conn, err := net.DialTimeout(network, addr, config.Timeout) + if err != nil { + return nil, err + } + c, chans, reqs, err := NewClientConn(conn, addr, config) + if err != nil { + return nil, err + } + return NewClient(c, chans, reqs), nil +} + +// HostKeyCallback is the function type used for verifying server +// keys. A HostKeyCallback must return nil if the host key is OK, or +// an error to reject it. It receives the hostname as passed to Dial +// or NewClientConn. The remote address is the RemoteAddr of the +// net.Conn underlying the SSH connection. +type HostKeyCallback func(hostname string, remote net.Addr, key PublicKey) error + +// BannerCallback is the function type used for treat the banner sent by +// the server. A BannerCallback receives the message sent by the remote server. +type BannerCallback func(message string) error + +// A ClientConfig structure is used to configure a Client. It must not be +// modified after having been passed to an SSH function. +type ClientConfig struct { + // Config contains configuration that is shared between clients and + // servers. + Config + + // User contains the username to authenticate as. + User string + + // Auth contains possible authentication methods to use with the + // server. Only the first instance of a particular RFC 4252 method will + // be used during authentication. + Auth []AuthMethod + + // HostKeyCallback is called during the cryptographic + // handshake to validate the server's host key. The client + // configuration must supply this callback for the connection + // to succeed. The functions InsecureIgnoreHostKey or + // FixedHostKey can be used for simplistic host key checks. + HostKeyCallback HostKeyCallback + + // BannerCallback is called during the SSH dance to display a custom + // server's message. The client configuration can supply this callback to + // handle it as wished. The function BannerDisplayStderr can be used for + // simplistic display on Stderr. + BannerCallback BannerCallback + + // ClientVersion contains the version identification string that will + // be used for the connection. If empty, a reasonable default is used. + ClientVersion string + + // HostKeyAlgorithms lists the key types that the client will + // accept from the server as host key, in order of + // preference. If empty, a reasonable default is used. Any + // string returned from PublicKey.Type method may be used, or + // any of the CertAlgoXxxx and KeyAlgoXxxx constants. + HostKeyAlgorithms []string + + // Timeout is the maximum amount of time for the TCP connection to establish. + // + // A Timeout of zero means no timeout. + Timeout time.Duration +} + +// InsecureIgnoreHostKey returns a function that can be used for +// ClientConfig.HostKeyCallback to accept any host key. It should +// not be used for production code. +func InsecureIgnoreHostKey() HostKeyCallback { + return func(hostname string, remote net.Addr, key PublicKey) error { + return nil + } +} + +type fixedHostKey struct { + key PublicKey +} + +func (f *fixedHostKey) check(hostname string, remote net.Addr, key PublicKey) error { + if f.key == nil { + return fmt.Errorf("ssh: required host key was nil") + } + if !bytes.Equal(key.Marshal(), f.key.Marshal()) { + return fmt.Errorf("ssh: host key mismatch") + } + return nil +} + +// FixedHostKey returns a function for use in +// ClientConfig.HostKeyCallback to accept only a specific host key. +func FixedHostKey(key PublicKey) HostKeyCallback { + hk := &fixedHostKey{key} + return hk.check +} + +// BannerDisplayStderr returns a function that can be used for +// ClientConfig.BannerCallback to display banners on os.Stderr. +func BannerDisplayStderr() BannerCallback { + return func(banner string) error { + _, err := os.Stderr.WriteString(banner) + + return err + } +} diff --git a/vendor/golang.org/x/crypto/ssh/client_auth.go b/vendor/golang.org/x/crypto/ssh/client_auth.go new file mode 100644 index 00000000..f3265655 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/client_auth.go @@ -0,0 +1,641 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "errors" + "fmt" + "io" +) + +type authResult int + +const ( + authFailure authResult = iota + authPartialSuccess + authSuccess +) + +// clientAuthenticate authenticates with the remote server. See RFC 4252. +func (c *connection) clientAuthenticate(config *ClientConfig) error { + // initiate user auth session + if err := c.transport.writePacket(Marshal(&serviceRequestMsg{serviceUserAuth})); err != nil { + return err + } + packet, err := c.transport.readPacket() + if err != nil { + return err + } + var serviceAccept serviceAcceptMsg + if err := Unmarshal(packet, &serviceAccept); err != nil { + return err + } + + // during the authentication phase the client first attempts the "none" method + // then any untried methods suggested by the server. + var tried []string + var lastMethods []string + + sessionID := c.transport.getSessionID() + for auth := AuthMethod(new(noneAuth)); auth != nil; { + ok, methods, err := auth.auth(sessionID, config.User, c.transport, config.Rand) + if err != nil { + return err + } + if ok == authSuccess { + // success + return nil + } else if ok == authFailure { + if m := auth.method(); !contains(tried, m) { + tried = append(tried, m) + } + } + if methods == nil { + methods = lastMethods + } + lastMethods = methods + + auth = nil + + findNext: + for _, a := range config.Auth { + candidateMethod := a.method() + if contains(tried, candidateMethod) { + continue + } + for _, meth := range methods { + if meth == candidateMethod { + auth = a + break findNext + } + } + } + } + return fmt.Errorf("ssh: unable to authenticate, attempted methods %v, no supported methods remain", tried) +} + +func contains(list []string, e string) bool { + for _, s := range list { + if s == e { + return true + } + } + return false +} + +// An AuthMethod represents an instance of an RFC 4252 authentication method. +type AuthMethod interface { + // auth authenticates user over transport t. + // Returns true if authentication is successful. + // If authentication is not successful, a []string of alternative + // method names is returned. If the slice is nil, it will be ignored + // and the previous set of possible methods will be reused. + auth(session []byte, user string, p packetConn, rand io.Reader) (authResult, []string, error) + + // method returns the RFC 4252 method name. + method() string +} + +// "none" authentication, RFC 4252 section 5.2. +type noneAuth int + +func (n *noneAuth) auth(session []byte, user string, c packetConn, rand io.Reader) (authResult, []string, error) { + if err := c.writePacket(Marshal(&userAuthRequestMsg{ + User: user, + Service: serviceSSH, + Method: "none", + })); err != nil { + return authFailure, nil, err + } + + return handleAuthResponse(c) +} + +func (n *noneAuth) method() string { + return "none" +} + +// passwordCallback is an AuthMethod that fetches the password through +// a function call, e.g. by prompting the user. +type passwordCallback func() (password string, err error) + +func (cb passwordCallback) auth(session []byte, user string, c packetConn, rand io.Reader) (authResult, []string, error) { + type passwordAuthMsg struct { + User string `sshtype:"50"` + Service string + Method string + Reply bool + Password string + } + + pw, err := cb() + // REVIEW NOTE: is there a need to support skipping a password attempt? + // The program may only find out that the user doesn't have a password + // when prompting. + if err != nil { + return authFailure, nil, err + } + + if err := c.writePacket(Marshal(&passwordAuthMsg{ + User: user, + Service: serviceSSH, + Method: cb.method(), + Reply: false, + Password: pw, + })); err != nil { + return authFailure, nil, err + } + + return handleAuthResponse(c) +} + +func (cb passwordCallback) method() string { + return "password" +} + +// Password returns an AuthMethod using the given password. +func Password(secret string) AuthMethod { + return passwordCallback(func() (string, error) { return secret, nil }) +} + +// PasswordCallback returns an AuthMethod that uses a callback for +// fetching a password. +func PasswordCallback(prompt func() (secret string, err error)) AuthMethod { + return passwordCallback(prompt) +} + +type publickeyAuthMsg struct { + User string `sshtype:"50"` + Service string + Method string + // HasSig indicates to the receiver packet that the auth request is signed and + // should be used for authentication of the request. + HasSig bool + Algoname string + PubKey []byte + // Sig is tagged with "rest" so Marshal will exclude it during + // validateKey + Sig []byte `ssh:"rest"` +} + +// publicKeyCallback is an AuthMethod that uses a set of key +// pairs for authentication. +type publicKeyCallback func() ([]Signer, error) + +func (cb publicKeyCallback) method() string { + return "publickey" +} + +func (cb publicKeyCallback) auth(session []byte, user string, c packetConn, rand io.Reader) (authResult, []string, error) { + // Authentication is performed by sending an enquiry to test if a key is + // acceptable to the remote. If the key is acceptable, the client will + // attempt to authenticate with the valid key. If not the client will repeat + // the process with the remaining keys. + + signers, err := cb() + if err != nil { + return authFailure, nil, err + } + var methods []string + for _, signer := range signers { + ok, err := validateKey(signer.PublicKey(), user, c) + if err != nil { + return authFailure, nil, err + } + if !ok { + continue + } + + pub := signer.PublicKey() + pubKey := pub.Marshal() + sign, err := signer.Sign(rand, buildDataSignedForAuth(session, userAuthRequestMsg{ + User: user, + Service: serviceSSH, + Method: cb.method(), + }, []byte(pub.Type()), pubKey)) + if err != nil { + return authFailure, nil, err + } + + // manually wrap the serialized signature in a string + s := Marshal(sign) + sig := make([]byte, stringLength(len(s))) + marshalString(sig, s) + msg := publickeyAuthMsg{ + User: user, + Service: serviceSSH, + Method: cb.method(), + HasSig: true, + Algoname: pub.Type(), + PubKey: pubKey, + Sig: sig, + } + p := Marshal(&msg) + if err := c.writePacket(p); err != nil { + return authFailure, nil, err + } + var success authResult + success, methods, err = handleAuthResponse(c) + if err != nil { + return authFailure, nil, err + } + + // If authentication succeeds or the list of available methods does not + // contain the "publickey" method, do not attempt to authenticate with any + // other keys. According to RFC 4252 Section 7, the latter can occur when + // additional authentication methods are required. + if success == authSuccess || !containsMethod(methods, cb.method()) { + return success, methods, err + } + } + + return authFailure, methods, nil +} + +func containsMethod(methods []string, method string) bool { + for _, m := range methods { + if m == method { + return true + } + } + + return false +} + +// validateKey validates the key provided is acceptable to the server. +func validateKey(key PublicKey, user string, c packetConn) (bool, error) { + pubKey := key.Marshal() + msg := publickeyAuthMsg{ + User: user, + Service: serviceSSH, + Method: "publickey", + HasSig: false, + Algoname: key.Type(), + PubKey: pubKey, + } + if err := c.writePacket(Marshal(&msg)); err != nil { + return false, err + } + + return confirmKeyAck(key, c) +} + +func confirmKeyAck(key PublicKey, c packetConn) (bool, error) { + pubKey := key.Marshal() + algoname := key.Type() + + for { + packet, err := c.readPacket() + if err != nil { + return false, err + } + switch packet[0] { + case msgUserAuthBanner: + if err := handleBannerResponse(c, packet); err != nil { + return false, err + } + case msgUserAuthPubKeyOk: + var msg userAuthPubKeyOkMsg + if err := Unmarshal(packet, &msg); err != nil { + return false, err + } + if msg.Algo != algoname || !bytes.Equal(msg.PubKey, pubKey) { + return false, nil + } + return true, nil + case msgUserAuthFailure: + return false, nil + default: + return false, unexpectedMessageError(msgUserAuthSuccess, packet[0]) + } + } +} + +// PublicKeys returns an AuthMethod that uses the given key +// pairs. +func PublicKeys(signers ...Signer) AuthMethod { + return publicKeyCallback(func() ([]Signer, error) { return signers, nil }) +} + +// PublicKeysCallback returns an AuthMethod that runs the given +// function to obtain a list of key pairs. +func PublicKeysCallback(getSigners func() (signers []Signer, err error)) AuthMethod { + return publicKeyCallback(getSigners) +} + +// handleAuthResponse returns whether the preceding authentication request succeeded +// along with a list of remaining authentication methods to try next and +// an error if an unexpected response was received. +func handleAuthResponse(c packetConn) (authResult, []string, error) { + for { + packet, err := c.readPacket() + if err != nil { + return authFailure, nil, err + } + + switch packet[0] { + case msgUserAuthBanner: + if err := handleBannerResponse(c, packet); err != nil { + return authFailure, nil, err + } + case msgUserAuthFailure: + var msg userAuthFailureMsg + if err := Unmarshal(packet, &msg); err != nil { + return authFailure, nil, err + } + if msg.PartialSuccess { + return authPartialSuccess, msg.Methods, nil + } + return authFailure, msg.Methods, nil + case msgUserAuthSuccess: + return authSuccess, nil, nil + default: + return authFailure, nil, unexpectedMessageError(msgUserAuthSuccess, packet[0]) + } + } +} + +func handleBannerResponse(c packetConn, packet []byte) error { + var msg userAuthBannerMsg + if err := Unmarshal(packet, &msg); err != nil { + return err + } + + transport, ok := c.(*handshakeTransport) + if !ok { + return nil + } + + if transport.bannerCallback != nil { + return transport.bannerCallback(msg.Message) + } + + return nil +} + +// KeyboardInteractiveChallenge should print questions, optionally +// disabling echoing (e.g. for passwords), and return all the answers. +// Challenge may be called multiple times in a single session. After +// successful authentication, the server may send a challenge with no +// questions, for which the user and instruction messages should be +// printed. RFC 4256 section 3.3 details how the UI should behave for +// both CLI and GUI environments. +type KeyboardInteractiveChallenge func(user, instruction string, questions []string, echos []bool) (answers []string, err error) + +// KeyboardInteractive returns an AuthMethod using a prompt/response +// sequence controlled by the server. +func KeyboardInteractive(challenge KeyboardInteractiveChallenge) AuthMethod { + return challenge +} + +func (cb KeyboardInteractiveChallenge) method() string { + return "keyboard-interactive" +} + +func (cb KeyboardInteractiveChallenge) auth(session []byte, user string, c packetConn, rand io.Reader) (authResult, []string, error) { + type initiateMsg struct { + User string `sshtype:"50"` + Service string + Method string + Language string + Submethods string + } + + if err := c.writePacket(Marshal(&initiateMsg{ + User: user, + Service: serviceSSH, + Method: "keyboard-interactive", + })); err != nil { + return authFailure, nil, err + } + + for { + packet, err := c.readPacket() + if err != nil { + return authFailure, nil, err + } + + // like handleAuthResponse, but with less options. + switch packet[0] { + case msgUserAuthBanner: + if err := handleBannerResponse(c, packet); err != nil { + return authFailure, nil, err + } + continue + case msgUserAuthInfoRequest: + // OK + case msgUserAuthFailure: + var msg userAuthFailureMsg + if err := Unmarshal(packet, &msg); err != nil { + return authFailure, nil, err + } + if msg.PartialSuccess { + return authPartialSuccess, msg.Methods, nil + } + return authFailure, msg.Methods, nil + case msgUserAuthSuccess: + return authSuccess, nil, nil + default: + return authFailure, nil, unexpectedMessageError(msgUserAuthInfoRequest, packet[0]) + } + + var msg userAuthInfoRequestMsg + if err := Unmarshal(packet, &msg); err != nil { + return authFailure, nil, err + } + + // Manually unpack the prompt/echo pairs. + rest := msg.Prompts + var prompts []string + var echos []bool + for i := 0; i < int(msg.NumPrompts); i++ { + prompt, r, ok := parseString(rest) + if !ok || len(r) == 0 { + return authFailure, nil, errors.New("ssh: prompt format error") + } + prompts = append(prompts, string(prompt)) + echos = append(echos, r[0] != 0) + rest = r[1:] + } + + if len(rest) != 0 { + return authFailure, nil, errors.New("ssh: extra data following keyboard-interactive pairs") + } + + answers, err := cb(msg.User, msg.Instruction, prompts, echos) + if err != nil { + return authFailure, nil, err + } + + if len(answers) != len(prompts) { + return authFailure, nil, errors.New("ssh: not enough answers from keyboard-interactive callback") + } + responseLength := 1 + 4 + for _, a := range answers { + responseLength += stringLength(len(a)) + } + serialized := make([]byte, responseLength) + p := serialized + p[0] = msgUserAuthInfoResponse + p = p[1:] + p = marshalUint32(p, uint32(len(answers))) + for _, a := range answers { + p = marshalString(p, []byte(a)) + } + + if err := c.writePacket(serialized); err != nil { + return authFailure, nil, err + } + } +} + +type retryableAuthMethod struct { + authMethod AuthMethod + maxTries int +} + +func (r *retryableAuthMethod) auth(session []byte, user string, c packetConn, rand io.Reader) (ok authResult, methods []string, err error) { + for i := 0; r.maxTries <= 0 || i < r.maxTries; i++ { + ok, methods, err = r.authMethod.auth(session, user, c, rand) + if ok != authFailure || err != nil { // either success, partial success or error terminate + return ok, methods, err + } + } + return ok, methods, err +} + +func (r *retryableAuthMethod) method() string { + return r.authMethod.method() +} + +// RetryableAuthMethod is a decorator for other auth methods enabling them to +// be retried up to maxTries before considering that AuthMethod itself failed. +// If maxTries is <= 0, will retry indefinitely +// +// This is useful for interactive clients using challenge/response type +// authentication (e.g. Keyboard-Interactive, Password, etc) where the user +// could mistype their response resulting in the server issuing a +// SSH_MSG_USERAUTH_FAILURE (rfc4252 #8 [password] and rfc4256 #3.4 +// [keyboard-interactive]); Without this decorator, the non-retryable +// AuthMethod would be removed from future consideration, and never tried again +// (and so the user would never be able to retry their entry). +func RetryableAuthMethod(auth AuthMethod, maxTries int) AuthMethod { + return &retryableAuthMethod{authMethod: auth, maxTries: maxTries} +} + +// GSSAPIWithMICAuthMethod is an AuthMethod with "gssapi-with-mic" authentication. +// See RFC 4462 section 3 +// gssAPIClient is implementation of the GSSAPIClient interface, see the definition of the interface for details. +// target is the server host you want to log in to. +func GSSAPIWithMICAuthMethod(gssAPIClient GSSAPIClient, target string) AuthMethod { + if gssAPIClient == nil { + panic("gss-api client must be not nil with enable gssapi-with-mic") + } + return &gssAPIWithMICCallback{gssAPIClient: gssAPIClient, target: target} +} + +type gssAPIWithMICCallback struct { + gssAPIClient GSSAPIClient + target string +} + +func (g *gssAPIWithMICCallback) auth(session []byte, user string, c packetConn, rand io.Reader) (authResult, []string, error) { + m := &userAuthRequestMsg{ + User: user, + Service: serviceSSH, + Method: g.method(), + } + // The GSS-API authentication method is initiated when the client sends an SSH_MSG_USERAUTH_REQUEST. + // See RFC 4462 section 3.2. + m.Payload = appendU32(m.Payload, 1) + m.Payload = appendString(m.Payload, string(krb5OID)) + if err := c.writePacket(Marshal(m)); err != nil { + return authFailure, nil, err + } + // The server responds to the SSH_MSG_USERAUTH_REQUEST with either an + // SSH_MSG_USERAUTH_FAILURE if none of the mechanisms are supported or + // with an SSH_MSG_USERAUTH_GSSAPI_RESPONSE. + // See RFC 4462 section 3.3. + // OpenSSH supports Kerberos V5 mechanism only for GSS-API authentication,so I don't want to check + // selected mech if it is valid. + packet, err := c.readPacket() + if err != nil { + return authFailure, nil, err + } + userAuthGSSAPIResp := &userAuthGSSAPIResponse{} + if err := Unmarshal(packet, userAuthGSSAPIResp); err != nil { + return authFailure, nil, err + } + // Start the loop into the exchange token. + // See RFC 4462 section 3.4. + var token []byte + defer g.gssAPIClient.DeleteSecContext() + for { + // Initiates the establishment of a security context between the application and a remote peer. + nextToken, needContinue, err := g.gssAPIClient.InitSecContext("host@"+g.target, token, false) + if err != nil { + return authFailure, nil, err + } + if len(nextToken) > 0 { + if err := c.writePacket(Marshal(&userAuthGSSAPIToken{ + Token: nextToken, + })); err != nil { + return authFailure, nil, err + } + } + if !needContinue { + break + } + packet, err = c.readPacket() + if err != nil { + return authFailure, nil, err + } + switch packet[0] { + case msgUserAuthFailure: + var msg userAuthFailureMsg + if err := Unmarshal(packet, &msg); err != nil { + return authFailure, nil, err + } + if msg.PartialSuccess { + return authPartialSuccess, msg.Methods, nil + } + return authFailure, msg.Methods, nil + case msgUserAuthGSSAPIError: + userAuthGSSAPIErrorResp := &userAuthGSSAPIError{} + if err := Unmarshal(packet, userAuthGSSAPIErrorResp); err != nil { + return authFailure, nil, err + } + return authFailure, nil, fmt.Errorf("GSS-API Error:\n"+ + "Major Status: %d\n"+ + "Minor Status: %d\n"+ + "Error Message: %s\n", userAuthGSSAPIErrorResp.MajorStatus, userAuthGSSAPIErrorResp.MinorStatus, + userAuthGSSAPIErrorResp.Message) + case msgUserAuthGSSAPIToken: + userAuthGSSAPITokenReq := &userAuthGSSAPIToken{} + if err := Unmarshal(packet, userAuthGSSAPITokenReq); err != nil { + return authFailure, nil, err + } + token = userAuthGSSAPITokenReq.Token + } + } + // Binding Encryption Keys. + // See RFC 4462 section 3.5. + micField := buildMIC(string(session), user, "ssh-connection", "gssapi-with-mic") + micToken, err := g.gssAPIClient.GetMIC(micField) + if err != nil { + return authFailure, nil, err + } + if err := c.writePacket(Marshal(&userAuthGSSAPIMIC{ + MIC: micToken, + })); err != nil { + return authFailure, nil, err + } + return handleAuthResponse(c) +} + +func (g *gssAPIWithMICCallback) method() string { + return "gssapi-with-mic" +} diff --git a/vendor/golang.org/x/crypto/ssh/common.go b/vendor/golang.org/x/crypto/ssh/common.go new file mode 100644 index 00000000..290382d0 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/common.go @@ -0,0 +1,404 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "crypto" + "crypto/rand" + "fmt" + "io" + "math" + "sync" + + _ "crypto/sha1" + _ "crypto/sha256" + _ "crypto/sha512" +) + +// These are string constants in the SSH protocol. +const ( + compressionNone = "none" + serviceUserAuth = "ssh-userauth" + serviceSSH = "ssh-connection" +) + +// supportedCiphers lists ciphers we support but might not recommend. +var supportedCiphers = []string{ + "aes128-ctr", "aes192-ctr", "aes256-ctr", + "aes128-gcm@openssh.com", + chacha20Poly1305ID, + "arcfour256", "arcfour128", "arcfour", + aes128cbcID, + tripledescbcID, +} + +// preferredCiphers specifies the default preference for ciphers. +var preferredCiphers = []string{ + "aes128-gcm@openssh.com", + chacha20Poly1305ID, + "aes128-ctr", "aes192-ctr", "aes256-ctr", +} + +// supportedKexAlgos specifies the supported key-exchange algorithms in +// preference order. +var supportedKexAlgos = []string{ + kexAlgoCurve25519SHA256, + // P384 and P521 are not constant-time yet, but since we don't + // reuse ephemeral keys, using them for ECDH should be OK. + kexAlgoECDH256, kexAlgoECDH384, kexAlgoECDH521, + kexAlgoDH14SHA1, kexAlgoDH1SHA1, +} + +// serverForbiddenKexAlgos contains key exchange algorithms, that are forbidden +// for the server half. +var serverForbiddenKexAlgos = map[string]struct{}{ + kexAlgoDHGEXSHA1: {}, // server half implementation is only minimal to satisfy the automated tests + kexAlgoDHGEXSHA256: {}, // server half implementation is only minimal to satisfy the automated tests +} + +// preferredKexAlgos specifies the default preference for key-exchange algorithms +// in preference order. +var preferredKexAlgos = []string{ + kexAlgoCurve25519SHA256, + kexAlgoECDH256, kexAlgoECDH384, kexAlgoECDH521, + kexAlgoDH14SHA1, +} + +// supportedHostKeyAlgos specifies the supported host-key algorithms (i.e. methods +// of authenticating servers) in preference order. +var supportedHostKeyAlgos = []string{ + CertAlgoRSAv01, CertAlgoDSAv01, CertAlgoECDSA256v01, + CertAlgoECDSA384v01, CertAlgoECDSA521v01, CertAlgoED25519v01, + + KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521, + KeyAlgoRSA, KeyAlgoDSA, + + KeyAlgoED25519, +} + +// supportedMACs specifies a default set of MAC algorithms in preference order. +// This is based on RFC 4253, section 6.4, but with hmac-md5 variants removed +// because they have reached the end of their useful life. +var supportedMACs = []string{ + "hmac-sha2-256-etm@openssh.com", "hmac-sha2-256", "hmac-sha1", "hmac-sha1-96", +} + +var supportedCompressions = []string{compressionNone} + +// hashFuncs keeps the mapping of supported algorithms to their respective +// hashes needed for signature verification. +var hashFuncs = map[string]crypto.Hash{ + KeyAlgoRSA: crypto.SHA1, + KeyAlgoDSA: crypto.SHA1, + KeyAlgoECDSA256: crypto.SHA256, + KeyAlgoECDSA384: crypto.SHA384, + KeyAlgoECDSA521: crypto.SHA512, + CertAlgoRSAv01: crypto.SHA1, + CertAlgoDSAv01: crypto.SHA1, + CertAlgoECDSA256v01: crypto.SHA256, + CertAlgoECDSA384v01: crypto.SHA384, + CertAlgoECDSA521v01: crypto.SHA512, +} + +// unexpectedMessageError results when the SSH message that we received didn't +// match what we wanted. +func unexpectedMessageError(expected, got uint8) error { + return fmt.Errorf("ssh: unexpected message type %d (expected %d)", got, expected) +} + +// parseError results from a malformed SSH message. +func parseError(tag uint8) error { + return fmt.Errorf("ssh: parse error in message type %d", tag) +} + +func findCommon(what string, client []string, server []string) (common string, err error) { + for _, c := range client { + for _, s := range server { + if c == s { + return c, nil + } + } + } + return "", fmt.Errorf("ssh: no common algorithm for %s; client offered: %v, server offered: %v", what, client, server) +} + +// directionAlgorithms records algorithm choices in one direction (either read or write) +type directionAlgorithms struct { + Cipher string + MAC string + Compression string +} + +// rekeyBytes returns a rekeying intervals in bytes. +func (a *directionAlgorithms) rekeyBytes() int64 { + // According to RFC4344 block ciphers should rekey after + // 2^(BLOCKSIZE/4) blocks. For all AES flavors BLOCKSIZE is + // 128. + switch a.Cipher { + case "aes128-ctr", "aes192-ctr", "aes256-ctr", gcmCipherID, aes128cbcID: + return 16 * (1 << 32) + + } + + // For others, stick with RFC4253 recommendation to rekey after 1 Gb of data. + return 1 << 30 +} + +type algorithms struct { + kex string + hostKey string + w directionAlgorithms + r directionAlgorithms +} + +func findAgreedAlgorithms(isClient bool, clientKexInit, serverKexInit *kexInitMsg) (algs *algorithms, err error) { + result := &algorithms{} + + result.kex, err = findCommon("key exchange", clientKexInit.KexAlgos, serverKexInit.KexAlgos) + if err != nil { + return + } + + result.hostKey, err = findCommon("host key", clientKexInit.ServerHostKeyAlgos, serverKexInit.ServerHostKeyAlgos) + if err != nil { + return + } + + stoc, ctos := &result.w, &result.r + if isClient { + ctos, stoc = stoc, ctos + } + + ctos.Cipher, err = findCommon("client to server cipher", clientKexInit.CiphersClientServer, serverKexInit.CiphersClientServer) + if err != nil { + return + } + + stoc.Cipher, err = findCommon("server to client cipher", clientKexInit.CiphersServerClient, serverKexInit.CiphersServerClient) + if err != nil { + return + } + + ctos.MAC, err = findCommon("client to server MAC", clientKexInit.MACsClientServer, serverKexInit.MACsClientServer) + if err != nil { + return + } + + stoc.MAC, err = findCommon("server to client MAC", clientKexInit.MACsServerClient, serverKexInit.MACsServerClient) + if err != nil { + return + } + + ctos.Compression, err = findCommon("client to server compression", clientKexInit.CompressionClientServer, serverKexInit.CompressionClientServer) + if err != nil { + return + } + + stoc.Compression, err = findCommon("server to client compression", clientKexInit.CompressionServerClient, serverKexInit.CompressionServerClient) + if err != nil { + return + } + + return result, nil +} + +// If rekeythreshold is too small, we can't make any progress sending +// stuff. +const minRekeyThreshold uint64 = 256 + +// Config contains configuration data common to both ServerConfig and +// ClientConfig. +type Config struct { + // Rand provides the source of entropy for cryptographic + // primitives. If Rand is nil, the cryptographic random reader + // in package crypto/rand will be used. + Rand io.Reader + + // The maximum number of bytes sent or received after which a + // new key is negotiated. It must be at least 256. If + // unspecified, a size suitable for the chosen cipher is used. + RekeyThreshold uint64 + + // The allowed key exchanges algorithms. If unspecified then a + // default set of algorithms is used. + KeyExchanges []string + + // The allowed cipher algorithms. If unspecified then a sensible + // default is used. + Ciphers []string + + // The allowed MAC algorithms. If unspecified then a sensible default + // is used. + MACs []string +} + +// SetDefaults sets sensible values for unset fields in config. This is +// exported for testing: Configs passed to SSH functions are copied and have +// default values set automatically. +func (c *Config) SetDefaults() { + if c.Rand == nil { + c.Rand = rand.Reader + } + if c.Ciphers == nil { + c.Ciphers = preferredCiphers + } + var ciphers []string + for _, c := range c.Ciphers { + if cipherModes[c] != nil { + // reject the cipher if we have no cipherModes definition + ciphers = append(ciphers, c) + } + } + c.Ciphers = ciphers + + if c.KeyExchanges == nil { + c.KeyExchanges = preferredKexAlgos + } + + if c.MACs == nil { + c.MACs = supportedMACs + } + + if c.RekeyThreshold == 0 { + // cipher specific default + } else if c.RekeyThreshold < minRekeyThreshold { + c.RekeyThreshold = minRekeyThreshold + } else if c.RekeyThreshold >= math.MaxInt64 { + // Avoid weirdness if somebody uses -1 as a threshold. + c.RekeyThreshold = math.MaxInt64 + } +} + +// buildDataSignedForAuth returns the data that is signed in order to prove +// possession of a private key. See RFC 4252, section 7. +func buildDataSignedForAuth(sessionID []byte, req userAuthRequestMsg, algo, pubKey []byte) []byte { + data := struct { + Session []byte + Type byte + User string + Service string + Method string + Sign bool + Algo []byte + PubKey []byte + }{ + sessionID, + msgUserAuthRequest, + req.User, + req.Service, + req.Method, + true, + algo, + pubKey, + } + return Marshal(data) +} + +func appendU16(buf []byte, n uint16) []byte { + return append(buf, byte(n>>8), byte(n)) +} + +func appendU32(buf []byte, n uint32) []byte { + return append(buf, byte(n>>24), byte(n>>16), byte(n>>8), byte(n)) +} + +func appendU64(buf []byte, n uint64) []byte { + return append(buf, + byte(n>>56), byte(n>>48), byte(n>>40), byte(n>>32), + byte(n>>24), byte(n>>16), byte(n>>8), byte(n)) +} + +func appendInt(buf []byte, n int) []byte { + return appendU32(buf, uint32(n)) +} + +func appendString(buf []byte, s string) []byte { + buf = appendU32(buf, uint32(len(s))) + buf = append(buf, s...) + return buf +} + +func appendBool(buf []byte, b bool) []byte { + if b { + return append(buf, 1) + } + return append(buf, 0) +} + +// newCond is a helper to hide the fact that there is no usable zero +// value for sync.Cond. +func newCond() *sync.Cond { return sync.NewCond(new(sync.Mutex)) } + +// window represents the buffer available to clients +// wishing to write to a channel. +type window struct { + *sync.Cond + win uint32 // RFC 4254 5.2 says the window size can grow to 2^32-1 + writeWaiters int + closed bool +} + +// add adds win to the amount of window available +// for consumers. +func (w *window) add(win uint32) bool { + // a zero sized window adjust is a noop. + if win == 0 { + return true + } + w.L.Lock() + if w.win+win < win { + w.L.Unlock() + return false + } + w.win += win + // It is unusual that multiple goroutines would be attempting to reserve + // window space, but not guaranteed. Use broadcast to notify all waiters + // that additional window is available. + w.Broadcast() + w.L.Unlock() + return true +} + +// close sets the window to closed, so all reservations fail +// immediately. +func (w *window) close() { + w.L.Lock() + w.closed = true + w.Broadcast() + w.L.Unlock() +} + +// reserve reserves win from the available window capacity. +// If no capacity remains, reserve will block. reserve may +// return less than requested. +func (w *window) reserve(win uint32) (uint32, error) { + var err error + w.L.Lock() + w.writeWaiters++ + w.Broadcast() + for w.win == 0 && !w.closed { + w.Wait() + } + w.writeWaiters-- + if w.win < win { + win = w.win + } + w.win -= win + if w.closed { + err = io.EOF + } + w.L.Unlock() + return win, err +} + +// waitWriterBlocked waits until some goroutine is blocked for further +// writes. It is used in tests only. +func (w *window) waitWriterBlocked() { + w.Cond.L.Lock() + for w.writeWaiters == 0 { + w.Cond.Wait() + } + w.Cond.L.Unlock() +} diff --git a/vendor/golang.org/x/crypto/ssh/connection.go b/vendor/golang.org/x/crypto/ssh/connection.go new file mode 100644 index 00000000..fd6b0681 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/connection.go @@ -0,0 +1,143 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "fmt" + "net" +) + +// OpenChannelError is returned if the other side rejects an +// OpenChannel request. +type OpenChannelError struct { + Reason RejectionReason + Message string +} + +func (e *OpenChannelError) Error() string { + return fmt.Sprintf("ssh: rejected: %s (%s)", e.Reason, e.Message) +} + +// ConnMetadata holds metadata for the connection. +type ConnMetadata interface { + // User returns the user ID for this connection. + User() string + + // SessionID returns the session hash, also denoted by H. + SessionID() []byte + + // ClientVersion returns the client's version string as hashed + // into the session ID. + ClientVersion() []byte + + // ServerVersion returns the server's version string as hashed + // into the session ID. + ServerVersion() []byte + + // RemoteAddr returns the remote address for this connection. + RemoteAddr() net.Addr + + // LocalAddr returns the local address for this connection. + LocalAddr() net.Addr +} + +// Conn represents an SSH connection for both server and client roles. +// Conn is the basis for implementing an application layer, such +// as ClientConn, which implements the traditional shell access for +// clients. +type Conn interface { + ConnMetadata + + // SendRequest sends a global request, and returns the + // reply. If wantReply is true, it returns the response status + // and payload. See also RFC4254, section 4. + SendRequest(name string, wantReply bool, payload []byte) (bool, []byte, error) + + // OpenChannel tries to open an channel. If the request is + // rejected, it returns *OpenChannelError. On success it returns + // the SSH Channel and a Go channel for incoming, out-of-band + // requests. The Go channel must be serviced, or the + // connection will hang. + OpenChannel(name string, data []byte) (Channel, <-chan *Request, error) + + // Close closes the underlying network connection + Close() error + + // Wait blocks until the connection has shut down, and returns the + // error causing the shutdown. + Wait() error + + // TODO(hanwen): consider exposing: + // RequestKeyChange + // Disconnect +} + +// DiscardRequests consumes and rejects all requests from the +// passed-in channel. +func DiscardRequests(in <-chan *Request) { + for req := range in { + if req.WantReply { + req.Reply(false, nil) + } + } +} + +// A connection represents an incoming connection. +type connection struct { + transport *handshakeTransport + sshConn + + // The connection protocol. + *mux +} + +func (c *connection) Close() error { + return c.sshConn.conn.Close() +} + +// sshconn provides net.Conn metadata, but disallows direct reads and +// writes. +type sshConn struct { + conn net.Conn + + user string + sessionID []byte + clientVersion []byte + serverVersion []byte +} + +func dup(src []byte) []byte { + dst := make([]byte, len(src)) + copy(dst, src) + return dst +} + +func (c *sshConn) User() string { + return c.user +} + +func (c *sshConn) RemoteAddr() net.Addr { + return c.conn.RemoteAddr() +} + +func (c *sshConn) Close() error { + return c.conn.Close() +} + +func (c *sshConn) LocalAddr() net.Addr { + return c.conn.LocalAddr() +} + +func (c *sshConn) SessionID() []byte { + return dup(c.sessionID) +} + +func (c *sshConn) ClientVersion() []byte { + return dup(c.clientVersion) +} + +func (c *sshConn) ServerVersion() []byte { + return dup(c.serverVersion) +} diff --git a/vendor/golang.org/x/crypto/ssh/doc.go b/vendor/golang.org/x/crypto/ssh/doc.go new file mode 100644 index 00000000..67b7322c --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/doc.go @@ -0,0 +1,21 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package ssh implements an SSH client and server. + +SSH is a transport security protocol, an authentication protocol and a +family of application protocols. The most typical application level +protocol is a remote shell and this is specifically implemented. However, +the multiplexed nature of SSH is exposed to users that wish to support +others. + +References: + [PROTOCOL.certkeys]: http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/PROTOCOL.certkeys?rev=HEAD + [SSH-PARAMETERS]: http://www.iana.org/assignments/ssh-parameters/ssh-parameters.xml#ssh-parameters-1 + +This package does not fall under the stability promise of the Go language itself, +so its API may be changed when pressing needs arise. +*/ +package ssh // import "golang.org/x/crypto/ssh" diff --git a/vendor/golang.org/x/crypto/ssh/handshake.go b/vendor/golang.org/x/crypto/ssh/handshake.go new file mode 100644 index 00000000..2b10b05a --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/handshake.go @@ -0,0 +1,647 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "crypto/rand" + "errors" + "fmt" + "io" + "log" + "net" + "sync" +) + +// debugHandshake, if set, prints messages sent and received. Key +// exchange messages are printed as if DH were used, so the debug +// messages are wrong when using ECDH. +const debugHandshake = false + +// chanSize sets the amount of buffering SSH connections. This is +// primarily for testing: setting chanSize=0 uncovers deadlocks more +// quickly. +const chanSize = 16 + +// keyingTransport is a packet based transport that supports key +// changes. It need not be thread-safe. It should pass through +// msgNewKeys in both directions. +type keyingTransport interface { + packetConn + + // prepareKeyChange sets up a key change. The key change for a + // direction will be effected if a msgNewKeys message is sent + // or received. + prepareKeyChange(*algorithms, *kexResult) error +} + +// handshakeTransport implements rekeying on top of a keyingTransport +// and offers a thread-safe writePacket() interface. +type handshakeTransport struct { + conn keyingTransport + config *Config + + serverVersion []byte + clientVersion []byte + + // hostKeys is non-empty if we are the server. In that case, + // it contains all host keys that can be used to sign the + // connection. + hostKeys []Signer + + // hostKeyAlgorithms is non-empty if we are the client. In that case, + // we accept these key types from the server as host key. + hostKeyAlgorithms []string + + // On read error, incoming is closed, and readError is set. + incoming chan []byte + readError error + + mu sync.Mutex + writeError error + sentInitPacket []byte + sentInitMsg *kexInitMsg + pendingPackets [][]byte // Used when a key exchange is in progress. + + // If the read loop wants to schedule a kex, it pings this + // channel, and the write loop will send out a kex + // message. + requestKex chan struct{} + + // If the other side requests or confirms a kex, its kexInit + // packet is sent here for the write loop to find it. + startKex chan *pendingKex + + // data for host key checking + hostKeyCallback HostKeyCallback + dialAddress string + remoteAddr net.Addr + + // bannerCallback is non-empty if we are the client and it has been set in + // ClientConfig. In that case it is called during the user authentication + // dance to handle a custom server's message. + bannerCallback BannerCallback + + // Algorithms agreed in the last key exchange. + algorithms *algorithms + + readPacketsLeft uint32 + readBytesLeft int64 + + writePacketsLeft uint32 + writeBytesLeft int64 + + // The session ID or nil if first kex did not complete yet. + sessionID []byte +} + +type pendingKex struct { + otherInit []byte + done chan error +} + +func newHandshakeTransport(conn keyingTransport, config *Config, clientVersion, serverVersion []byte) *handshakeTransport { + t := &handshakeTransport{ + conn: conn, + serverVersion: serverVersion, + clientVersion: clientVersion, + incoming: make(chan []byte, chanSize), + requestKex: make(chan struct{}, 1), + startKex: make(chan *pendingKex, 1), + + config: config, + } + t.resetReadThresholds() + t.resetWriteThresholds() + + // We always start with a mandatory key exchange. + t.requestKex <- struct{}{} + return t +} + +func newClientTransport(conn keyingTransport, clientVersion, serverVersion []byte, config *ClientConfig, dialAddr string, addr net.Addr) *handshakeTransport { + t := newHandshakeTransport(conn, &config.Config, clientVersion, serverVersion) + t.dialAddress = dialAddr + t.remoteAddr = addr + t.hostKeyCallback = config.HostKeyCallback + t.bannerCallback = config.BannerCallback + if config.HostKeyAlgorithms != nil { + t.hostKeyAlgorithms = config.HostKeyAlgorithms + } else { + t.hostKeyAlgorithms = supportedHostKeyAlgos + } + go t.readLoop() + go t.kexLoop() + return t +} + +func newServerTransport(conn keyingTransport, clientVersion, serverVersion []byte, config *ServerConfig) *handshakeTransport { + t := newHandshakeTransport(conn, &config.Config, clientVersion, serverVersion) + t.hostKeys = config.hostKeys + go t.readLoop() + go t.kexLoop() + return t +} + +func (t *handshakeTransport) getSessionID() []byte { + return t.sessionID +} + +// waitSession waits for the session to be established. This should be +// the first thing to call after instantiating handshakeTransport. +func (t *handshakeTransport) waitSession() error { + p, err := t.readPacket() + if err != nil { + return err + } + if p[0] != msgNewKeys { + return fmt.Errorf("ssh: first packet should be msgNewKeys") + } + + return nil +} + +func (t *handshakeTransport) id() string { + if len(t.hostKeys) > 0 { + return "server" + } + return "client" +} + +func (t *handshakeTransport) printPacket(p []byte, write bool) { + action := "got" + if write { + action = "sent" + } + + if p[0] == msgChannelData || p[0] == msgChannelExtendedData { + log.Printf("%s %s data (packet %d bytes)", t.id(), action, len(p)) + } else { + msg, err := decode(p) + log.Printf("%s %s %T %v (%v)", t.id(), action, msg, msg, err) + } +} + +func (t *handshakeTransport) readPacket() ([]byte, error) { + p, ok := <-t.incoming + if !ok { + return nil, t.readError + } + return p, nil +} + +func (t *handshakeTransport) readLoop() { + first := true + for { + p, err := t.readOnePacket(first) + first = false + if err != nil { + t.readError = err + close(t.incoming) + break + } + if p[0] == msgIgnore || p[0] == msgDebug { + continue + } + t.incoming <- p + } + + // Stop writers too. + t.recordWriteError(t.readError) + + // Unblock the writer should it wait for this. + close(t.startKex) + + // Don't close t.requestKex; it's also written to from writePacket. +} + +func (t *handshakeTransport) pushPacket(p []byte) error { + if debugHandshake { + t.printPacket(p, true) + } + return t.conn.writePacket(p) +} + +func (t *handshakeTransport) getWriteError() error { + t.mu.Lock() + defer t.mu.Unlock() + return t.writeError +} + +func (t *handshakeTransport) recordWriteError(err error) { + t.mu.Lock() + defer t.mu.Unlock() + if t.writeError == nil && err != nil { + t.writeError = err + } +} + +func (t *handshakeTransport) requestKeyExchange() { + select { + case t.requestKex <- struct{}{}: + default: + // something already requested a kex, so do nothing. + } +} + +func (t *handshakeTransport) resetWriteThresholds() { + t.writePacketsLeft = packetRekeyThreshold + if t.config.RekeyThreshold > 0 { + t.writeBytesLeft = int64(t.config.RekeyThreshold) + } else if t.algorithms != nil { + t.writeBytesLeft = t.algorithms.w.rekeyBytes() + } else { + t.writeBytesLeft = 1 << 30 + } +} + +func (t *handshakeTransport) kexLoop() { + +write: + for t.getWriteError() == nil { + var request *pendingKex + var sent bool + + for request == nil || !sent { + var ok bool + select { + case request, ok = <-t.startKex: + if !ok { + break write + } + case <-t.requestKex: + break + } + + if !sent { + if err := t.sendKexInit(); err != nil { + t.recordWriteError(err) + break + } + sent = true + } + } + + if err := t.getWriteError(); err != nil { + if request != nil { + request.done <- err + } + break + } + + // We're not servicing t.requestKex, but that is OK: + // we never block on sending to t.requestKex. + + // We're not servicing t.startKex, but the remote end + // has just sent us a kexInitMsg, so it can't send + // another key change request, until we close the done + // channel on the pendingKex request. + + err := t.enterKeyExchange(request.otherInit) + + t.mu.Lock() + t.writeError = err + t.sentInitPacket = nil + t.sentInitMsg = nil + + t.resetWriteThresholds() + + // we have completed the key exchange. Since the + // reader is still blocked, it is safe to clear out + // the requestKex channel. This avoids the situation + // where: 1) we consumed our own request for the + // initial kex, and 2) the kex from the remote side + // caused another send on the requestKex channel, + clear: + for { + select { + case <-t.requestKex: + // + default: + break clear + } + } + + request.done <- t.writeError + + // kex finished. Push packets that we received while + // the kex was in progress. Don't look at t.startKex + // and don't increment writtenSinceKex: if we trigger + // another kex while we are still busy with the last + // one, things will become very confusing. + for _, p := range t.pendingPackets { + t.writeError = t.pushPacket(p) + if t.writeError != nil { + break + } + } + t.pendingPackets = t.pendingPackets[:0] + t.mu.Unlock() + } + + // drain startKex channel. We don't service t.requestKex + // because nobody does blocking sends there. + go func() { + for init := range t.startKex { + init.done <- t.writeError + } + }() + + // Unblock reader. + t.conn.Close() +} + +// The protocol uses uint32 for packet counters, so we can't let them +// reach 1<<32. We will actually read and write more packets than +// this, though: the other side may send more packets, and after we +// hit this limit on writing we will send a few more packets for the +// key exchange itself. +const packetRekeyThreshold = (1 << 31) + +func (t *handshakeTransport) resetReadThresholds() { + t.readPacketsLeft = packetRekeyThreshold + if t.config.RekeyThreshold > 0 { + t.readBytesLeft = int64(t.config.RekeyThreshold) + } else if t.algorithms != nil { + t.readBytesLeft = t.algorithms.r.rekeyBytes() + } else { + t.readBytesLeft = 1 << 30 + } +} + +func (t *handshakeTransport) readOnePacket(first bool) ([]byte, error) { + p, err := t.conn.readPacket() + if err != nil { + return nil, err + } + + if t.readPacketsLeft > 0 { + t.readPacketsLeft-- + } else { + t.requestKeyExchange() + } + + if t.readBytesLeft > 0 { + t.readBytesLeft -= int64(len(p)) + } else { + t.requestKeyExchange() + } + + if debugHandshake { + t.printPacket(p, false) + } + + if first && p[0] != msgKexInit { + return nil, fmt.Errorf("ssh: first packet should be msgKexInit") + } + + if p[0] != msgKexInit { + return p, nil + } + + firstKex := t.sessionID == nil + + kex := pendingKex{ + done: make(chan error, 1), + otherInit: p, + } + t.startKex <- &kex + err = <-kex.done + + if debugHandshake { + log.Printf("%s exited key exchange (first %v), err %v", t.id(), firstKex, err) + } + + if err != nil { + return nil, err + } + + t.resetReadThresholds() + + // By default, a key exchange is hidden from higher layers by + // translating it into msgIgnore. + successPacket := []byte{msgIgnore} + if firstKex { + // sendKexInit() for the first kex waits for + // msgNewKeys so the authentication process is + // guaranteed to happen over an encrypted transport. + successPacket = []byte{msgNewKeys} + } + + return successPacket, nil +} + +// sendKexInit sends a key change message. +func (t *handshakeTransport) sendKexInit() error { + t.mu.Lock() + defer t.mu.Unlock() + if t.sentInitMsg != nil { + // kexInits may be sent either in response to the other side, + // or because our side wants to initiate a key change, so we + // may have already sent a kexInit. In that case, don't send a + // second kexInit. + return nil + } + + msg := &kexInitMsg{ + KexAlgos: t.config.KeyExchanges, + CiphersClientServer: t.config.Ciphers, + CiphersServerClient: t.config.Ciphers, + MACsClientServer: t.config.MACs, + MACsServerClient: t.config.MACs, + CompressionClientServer: supportedCompressions, + CompressionServerClient: supportedCompressions, + } + io.ReadFull(rand.Reader, msg.Cookie[:]) + + if len(t.hostKeys) > 0 { + for _, k := range t.hostKeys { + msg.ServerHostKeyAlgos = append( + msg.ServerHostKeyAlgos, k.PublicKey().Type()) + } + } else { + msg.ServerHostKeyAlgos = t.hostKeyAlgorithms + } + packet := Marshal(msg) + + // writePacket destroys the contents, so save a copy. + packetCopy := make([]byte, len(packet)) + copy(packetCopy, packet) + + if err := t.pushPacket(packetCopy); err != nil { + return err + } + + t.sentInitMsg = msg + t.sentInitPacket = packet + + return nil +} + +func (t *handshakeTransport) writePacket(p []byte) error { + switch p[0] { + case msgKexInit: + return errors.New("ssh: only handshakeTransport can send kexInit") + case msgNewKeys: + return errors.New("ssh: only handshakeTransport can send newKeys") + } + + t.mu.Lock() + defer t.mu.Unlock() + if t.writeError != nil { + return t.writeError + } + + if t.sentInitMsg != nil { + // Copy the packet so the writer can reuse the buffer. + cp := make([]byte, len(p)) + copy(cp, p) + t.pendingPackets = append(t.pendingPackets, cp) + return nil + } + + if t.writeBytesLeft > 0 { + t.writeBytesLeft -= int64(len(p)) + } else { + t.requestKeyExchange() + } + + if t.writePacketsLeft > 0 { + t.writePacketsLeft-- + } else { + t.requestKeyExchange() + } + + if err := t.pushPacket(p); err != nil { + t.writeError = err + } + + return nil +} + +func (t *handshakeTransport) Close() error { + return t.conn.Close() +} + +func (t *handshakeTransport) enterKeyExchange(otherInitPacket []byte) error { + if debugHandshake { + log.Printf("%s entered key exchange", t.id()) + } + + otherInit := &kexInitMsg{} + if err := Unmarshal(otherInitPacket, otherInit); err != nil { + return err + } + + magics := handshakeMagics{ + clientVersion: t.clientVersion, + serverVersion: t.serverVersion, + clientKexInit: otherInitPacket, + serverKexInit: t.sentInitPacket, + } + + clientInit := otherInit + serverInit := t.sentInitMsg + isClient := len(t.hostKeys) == 0 + if isClient { + clientInit, serverInit = serverInit, clientInit + + magics.clientKexInit = t.sentInitPacket + magics.serverKexInit = otherInitPacket + } + + var err error + t.algorithms, err = findAgreedAlgorithms(isClient, clientInit, serverInit) + if err != nil { + return err + } + + // We don't send FirstKexFollows, but we handle receiving it. + // + // RFC 4253 section 7 defines the kex and the agreement method for + // first_kex_packet_follows. It states that the guessed packet + // should be ignored if the "kex algorithm and/or the host + // key algorithm is guessed wrong (server and client have + // different preferred algorithm), or if any of the other + // algorithms cannot be agreed upon". The other algorithms have + // already been checked above so the kex algorithm and host key + // algorithm are checked here. + if otherInit.FirstKexFollows && (clientInit.KexAlgos[0] != serverInit.KexAlgos[0] || clientInit.ServerHostKeyAlgos[0] != serverInit.ServerHostKeyAlgos[0]) { + // other side sent a kex message for the wrong algorithm, + // which we have to ignore. + if _, err := t.conn.readPacket(); err != nil { + return err + } + } + + kex, ok := kexAlgoMap[t.algorithms.kex] + if !ok { + return fmt.Errorf("ssh: unexpected key exchange algorithm %v", t.algorithms.kex) + } + + var result *kexResult + if len(t.hostKeys) > 0 { + result, err = t.server(kex, t.algorithms, &magics) + } else { + result, err = t.client(kex, t.algorithms, &magics) + } + + if err != nil { + return err + } + + if t.sessionID == nil { + t.sessionID = result.H + } + result.SessionID = t.sessionID + + if err := t.conn.prepareKeyChange(t.algorithms, result); err != nil { + return err + } + if err = t.conn.writePacket([]byte{msgNewKeys}); err != nil { + return err + } + if packet, err := t.conn.readPacket(); err != nil { + return err + } else if packet[0] != msgNewKeys { + return unexpectedMessageError(msgNewKeys, packet[0]) + } + + return nil +} + +func (t *handshakeTransport) server(kex kexAlgorithm, algs *algorithms, magics *handshakeMagics) (*kexResult, error) { + var hostKey Signer + for _, k := range t.hostKeys { + if algs.hostKey == k.PublicKey().Type() { + hostKey = k + } + } + + r, err := kex.Server(t.conn, t.config.Rand, magics, hostKey) + return r, err +} + +func (t *handshakeTransport) client(kex kexAlgorithm, algs *algorithms, magics *handshakeMagics) (*kexResult, error) { + result, err := kex.Client(t.conn, t.config.Rand, magics) + if err != nil { + return nil, err + } + + hostKey, err := ParsePublicKey(result.HostKey) + if err != nil { + return nil, err + } + + if err := verifyHostKeySignature(hostKey, result); err != nil { + return nil, err + } + + err = t.hostKeyCallback(t.dialAddress, t.remoteAddr, hostKey) + if err != nil { + return nil, err + } + + return result, nil +} diff --git a/vendor/golang.org/x/crypto/ssh/internal/bcrypt_pbkdf/bcrypt_pbkdf.go b/vendor/golang.org/x/crypto/ssh/internal/bcrypt_pbkdf/bcrypt_pbkdf.go new file mode 100644 index 00000000..af81d266 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/internal/bcrypt_pbkdf/bcrypt_pbkdf.go @@ -0,0 +1,93 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package bcrypt_pbkdf implements bcrypt_pbkdf(3) from OpenBSD. +// +// See https://flak.tedunangst.com/post/bcrypt-pbkdf and +// https://cvsweb.openbsd.org/cgi-bin/cvsweb/src/lib/libutil/bcrypt_pbkdf.c. +package bcrypt_pbkdf + +import ( + "crypto/sha512" + "errors" + "golang.org/x/crypto/blowfish" +) + +const blockSize = 32 + +// Key derives a key from the password, salt and rounds count, returning a +// []byte of length keyLen that can be used as cryptographic key. +func Key(password, salt []byte, rounds, keyLen int) ([]byte, error) { + if rounds < 1 { + return nil, errors.New("bcrypt_pbkdf: number of rounds is too small") + } + if len(password) == 0 { + return nil, errors.New("bcrypt_pbkdf: empty password") + } + if len(salt) == 0 || len(salt) > 1<<20 { + return nil, errors.New("bcrypt_pbkdf: bad salt length") + } + if keyLen > 1024 { + return nil, errors.New("bcrypt_pbkdf: keyLen is too large") + } + + numBlocks := (keyLen + blockSize - 1) / blockSize + key := make([]byte, numBlocks*blockSize) + + h := sha512.New() + h.Write(password) + shapass := h.Sum(nil) + + shasalt := make([]byte, 0, sha512.Size) + cnt, tmp := make([]byte, 4), make([]byte, blockSize) + for block := 1; block <= numBlocks; block++ { + h.Reset() + h.Write(salt) + cnt[0] = byte(block >> 24) + cnt[1] = byte(block >> 16) + cnt[2] = byte(block >> 8) + cnt[3] = byte(block) + h.Write(cnt) + bcryptHash(tmp, shapass, h.Sum(shasalt)) + + out := make([]byte, blockSize) + copy(out, tmp) + for i := 2; i <= rounds; i++ { + h.Reset() + h.Write(tmp) + bcryptHash(tmp, shapass, h.Sum(shasalt)) + for j := 0; j < len(out); j++ { + out[j] ^= tmp[j] + } + } + + for i, v := range out { + key[i*numBlocks+(block-1)] = v + } + } + return key[:keyLen], nil +} + +var magic = []byte("OxychromaticBlowfishSwatDynamite") + +func bcryptHash(out, shapass, shasalt []byte) { + c, err := blowfish.NewSaltedCipher(shapass, shasalt) + if err != nil { + panic(err) + } + for i := 0; i < 64; i++ { + blowfish.ExpandKey(shasalt, c) + blowfish.ExpandKey(shapass, c) + } + copy(out, magic) + for i := 0; i < 32; i += 8 { + for j := 0; j < 64; j++ { + c.Encrypt(out[i:i+8], out[i:i+8]) + } + } + // Swap bytes due to different endianness. + for i := 0; i < 32; i += 4 { + out[i+3], out[i+2], out[i+1], out[i] = out[i], out[i+1], out[i+2], out[i+3] + } +} diff --git a/vendor/golang.org/x/crypto/ssh/kex.go b/vendor/golang.org/x/crypto/ssh/kex.go new file mode 100644 index 00000000..7eedb209 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/kex.go @@ -0,0 +1,789 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "crypto" + "crypto/ecdsa" + "crypto/elliptic" + "crypto/rand" + "crypto/subtle" + "encoding/binary" + "errors" + "fmt" + "io" + "math/big" + + "golang.org/x/crypto/curve25519" +) + +const ( + kexAlgoDH1SHA1 = "diffie-hellman-group1-sha1" + kexAlgoDH14SHA1 = "diffie-hellman-group14-sha1" + kexAlgoECDH256 = "ecdh-sha2-nistp256" + kexAlgoECDH384 = "ecdh-sha2-nistp384" + kexAlgoECDH521 = "ecdh-sha2-nistp521" + kexAlgoCurve25519SHA256 = "curve25519-sha256@libssh.org" + + // For the following kex only the client half contains a production + // ready implementation. The server half only consists of a minimal + // implementation to satisfy the automated tests. + kexAlgoDHGEXSHA1 = "diffie-hellman-group-exchange-sha1" + kexAlgoDHGEXSHA256 = "diffie-hellman-group-exchange-sha256" +) + +// kexResult captures the outcome of a key exchange. +type kexResult struct { + // Session hash. See also RFC 4253, section 8. + H []byte + + // Shared secret. See also RFC 4253, section 8. + K []byte + + // Host key as hashed into H. + HostKey []byte + + // Signature of H. + Signature []byte + + // A cryptographic hash function that matches the security + // level of the key exchange algorithm. It is used for + // calculating H, and for deriving keys from H and K. + Hash crypto.Hash + + // The session ID, which is the first H computed. This is used + // to derive key material inside the transport. + SessionID []byte +} + +// handshakeMagics contains data that is always included in the +// session hash. +type handshakeMagics struct { + clientVersion, serverVersion []byte + clientKexInit, serverKexInit []byte +} + +func (m *handshakeMagics) write(w io.Writer) { + writeString(w, m.clientVersion) + writeString(w, m.serverVersion) + writeString(w, m.clientKexInit) + writeString(w, m.serverKexInit) +} + +// kexAlgorithm abstracts different key exchange algorithms. +type kexAlgorithm interface { + // Server runs server-side key agreement, signing the result + // with a hostkey. + Server(p packetConn, rand io.Reader, magics *handshakeMagics, s Signer) (*kexResult, error) + + // Client runs the client-side key agreement. Caller is + // responsible for verifying the host key signature. + Client(p packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) +} + +// dhGroup is a multiplicative group suitable for implementing Diffie-Hellman key agreement. +type dhGroup struct { + g, p, pMinus1 *big.Int +} + +func (group *dhGroup) diffieHellman(theirPublic, myPrivate *big.Int) (*big.Int, error) { + if theirPublic.Cmp(bigOne) <= 0 || theirPublic.Cmp(group.pMinus1) >= 0 { + return nil, errors.New("ssh: DH parameter out of bounds") + } + return new(big.Int).Exp(theirPublic, myPrivate, group.p), nil +} + +func (group *dhGroup) Client(c packetConn, randSource io.Reader, magics *handshakeMagics) (*kexResult, error) { + hashFunc := crypto.SHA1 + + var x *big.Int + for { + var err error + if x, err = rand.Int(randSource, group.pMinus1); err != nil { + return nil, err + } + if x.Sign() > 0 { + break + } + } + + X := new(big.Int).Exp(group.g, x, group.p) + kexDHInit := kexDHInitMsg{ + X: X, + } + if err := c.writePacket(Marshal(&kexDHInit)); err != nil { + return nil, err + } + + packet, err := c.readPacket() + if err != nil { + return nil, err + } + + var kexDHReply kexDHReplyMsg + if err = Unmarshal(packet, &kexDHReply); err != nil { + return nil, err + } + + ki, err := group.diffieHellman(kexDHReply.Y, x) + if err != nil { + return nil, err + } + + h := hashFunc.New() + magics.write(h) + writeString(h, kexDHReply.HostKey) + writeInt(h, X) + writeInt(h, kexDHReply.Y) + K := make([]byte, intLength(ki)) + marshalInt(K, ki) + h.Write(K) + + return &kexResult{ + H: h.Sum(nil), + K: K, + HostKey: kexDHReply.HostKey, + Signature: kexDHReply.Signature, + Hash: crypto.SHA1, + }, nil +} + +func (group *dhGroup) Server(c packetConn, randSource io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { + hashFunc := crypto.SHA1 + packet, err := c.readPacket() + if err != nil { + return + } + var kexDHInit kexDHInitMsg + if err = Unmarshal(packet, &kexDHInit); err != nil { + return + } + + var y *big.Int + for { + if y, err = rand.Int(randSource, group.pMinus1); err != nil { + return + } + if y.Sign() > 0 { + break + } + } + + Y := new(big.Int).Exp(group.g, y, group.p) + ki, err := group.diffieHellman(kexDHInit.X, y) + if err != nil { + return nil, err + } + + hostKeyBytes := priv.PublicKey().Marshal() + + h := hashFunc.New() + magics.write(h) + writeString(h, hostKeyBytes) + writeInt(h, kexDHInit.X) + writeInt(h, Y) + + K := make([]byte, intLength(ki)) + marshalInt(K, ki) + h.Write(K) + + H := h.Sum(nil) + + // H is already a hash, but the hostkey signing will apply its + // own key-specific hash algorithm. + sig, err := signAndMarshal(priv, randSource, H) + if err != nil { + return nil, err + } + + kexDHReply := kexDHReplyMsg{ + HostKey: hostKeyBytes, + Y: Y, + Signature: sig, + } + packet = Marshal(&kexDHReply) + + err = c.writePacket(packet) + return &kexResult{ + H: H, + K: K, + HostKey: hostKeyBytes, + Signature: sig, + Hash: crypto.SHA1, + }, err +} + +// ecdh performs Elliptic Curve Diffie-Hellman key exchange as +// described in RFC 5656, section 4. +type ecdh struct { + curve elliptic.Curve +} + +func (kex *ecdh) Client(c packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) { + ephKey, err := ecdsa.GenerateKey(kex.curve, rand) + if err != nil { + return nil, err + } + + kexInit := kexECDHInitMsg{ + ClientPubKey: elliptic.Marshal(kex.curve, ephKey.PublicKey.X, ephKey.PublicKey.Y), + } + + serialized := Marshal(&kexInit) + if err := c.writePacket(serialized); err != nil { + return nil, err + } + + packet, err := c.readPacket() + if err != nil { + return nil, err + } + + var reply kexECDHReplyMsg + if err = Unmarshal(packet, &reply); err != nil { + return nil, err + } + + x, y, err := unmarshalECKey(kex.curve, reply.EphemeralPubKey) + if err != nil { + return nil, err + } + + // generate shared secret + secret, _ := kex.curve.ScalarMult(x, y, ephKey.D.Bytes()) + + h := ecHash(kex.curve).New() + magics.write(h) + writeString(h, reply.HostKey) + writeString(h, kexInit.ClientPubKey) + writeString(h, reply.EphemeralPubKey) + K := make([]byte, intLength(secret)) + marshalInt(K, secret) + h.Write(K) + + return &kexResult{ + H: h.Sum(nil), + K: K, + HostKey: reply.HostKey, + Signature: reply.Signature, + Hash: ecHash(kex.curve), + }, nil +} + +// unmarshalECKey parses and checks an EC key. +func unmarshalECKey(curve elliptic.Curve, pubkey []byte) (x, y *big.Int, err error) { + x, y = elliptic.Unmarshal(curve, pubkey) + if x == nil { + return nil, nil, errors.New("ssh: elliptic.Unmarshal failure") + } + if !validateECPublicKey(curve, x, y) { + return nil, nil, errors.New("ssh: public key not on curve") + } + return x, y, nil +} + +// validateECPublicKey checks that the point is a valid public key for +// the given curve. See [SEC1], 3.2.2 +func validateECPublicKey(curve elliptic.Curve, x, y *big.Int) bool { + if x.Sign() == 0 && y.Sign() == 0 { + return false + } + + if x.Cmp(curve.Params().P) >= 0 { + return false + } + + if y.Cmp(curve.Params().P) >= 0 { + return false + } + + if !curve.IsOnCurve(x, y) { + return false + } + + // We don't check if N * PubKey == 0, since + // + // - the NIST curves have cofactor = 1, so this is implicit. + // (We don't foresee an implementation that supports non NIST + // curves) + // + // - for ephemeral keys, we don't need to worry about small + // subgroup attacks. + return true +} + +func (kex *ecdh) Server(c packetConn, rand io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { + packet, err := c.readPacket() + if err != nil { + return nil, err + } + + var kexECDHInit kexECDHInitMsg + if err = Unmarshal(packet, &kexECDHInit); err != nil { + return nil, err + } + + clientX, clientY, err := unmarshalECKey(kex.curve, kexECDHInit.ClientPubKey) + if err != nil { + return nil, err + } + + // We could cache this key across multiple users/multiple + // connection attempts, but the benefit is small. OpenSSH + // generates a new key for each incoming connection. + ephKey, err := ecdsa.GenerateKey(kex.curve, rand) + if err != nil { + return nil, err + } + + hostKeyBytes := priv.PublicKey().Marshal() + + serializedEphKey := elliptic.Marshal(kex.curve, ephKey.PublicKey.X, ephKey.PublicKey.Y) + + // generate shared secret + secret, _ := kex.curve.ScalarMult(clientX, clientY, ephKey.D.Bytes()) + + h := ecHash(kex.curve).New() + magics.write(h) + writeString(h, hostKeyBytes) + writeString(h, kexECDHInit.ClientPubKey) + writeString(h, serializedEphKey) + + K := make([]byte, intLength(secret)) + marshalInt(K, secret) + h.Write(K) + + H := h.Sum(nil) + + // H is already a hash, but the hostkey signing will apply its + // own key-specific hash algorithm. + sig, err := signAndMarshal(priv, rand, H) + if err != nil { + return nil, err + } + + reply := kexECDHReplyMsg{ + EphemeralPubKey: serializedEphKey, + HostKey: hostKeyBytes, + Signature: sig, + } + + serialized := Marshal(&reply) + if err := c.writePacket(serialized); err != nil { + return nil, err + } + + return &kexResult{ + H: H, + K: K, + HostKey: reply.HostKey, + Signature: sig, + Hash: ecHash(kex.curve), + }, nil +} + +var kexAlgoMap = map[string]kexAlgorithm{} + +func init() { + // This is the group called diffie-hellman-group1-sha1 in RFC + // 4253 and Oakley Group 2 in RFC 2409. + p, _ := new(big.Int).SetString("FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE65381FFFFFFFFFFFFFFFF", 16) + kexAlgoMap[kexAlgoDH1SHA1] = &dhGroup{ + g: new(big.Int).SetInt64(2), + p: p, + pMinus1: new(big.Int).Sub(p, bigOne), + } + + // This is the group called diffie-hellman-group14-sha1 in RFC + // 4253 and Oakley Group 14 in RFC 3526. + p, _ = new(big.Int).SetString("FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3DC2007CB8A163BF0598DA48361C55D39A69163FA8FD24CF5F83655D23DCA3AD961C62F356208552BB9ED529077096966D670C354E4ABC9804F1746C08CA18217C32905E462E36CE3BE39E772C180E86039B2783A2EC07A28FB5C55DF06F4C52C9DE2BCBF6955817183995497CEA956AE515D2261898FA051015728E5A8AACAA68FFFFFFFFFFFFFFFF", 16) + + kexAlgoMap[kexAlgoDH14SHA1] = &dhGroup{ + g: new(big.Int).SetInt64(2), + p: p, + pMinus1: new(big.Int).Sub(p, bigOne), + } + + kexAlgoMap[kexAlgoECDH521] = &ecdh{elliptic.P521()} + kexAlgoMap[kexAlgoECDH384] = &ecdh{elliptic.P384()} + kexAlgoMap[kexAlgoECDH256] = &ecdh{elliptic.P256()} + kexAlgoMap[kexAlgoCurve25519SHA256] = &curve25519sha256{} + kexAlgoMap[kexAlgoDHGEXSHA1] = &dhGEXSHA{hashFunc: crypto.SHA1} + kexAlgoMap[kexAlgoDHGEXSHA256] = &dhGEXSHA{hashFunc: crypto.SHA256} +} + +// curve25519sha256 implements the curve25519-sha256@libssh.org key +// agreement protocol, as described in +// https://git.libssh.org/projects/libssh.git/tree/doc/curve25519-sha256@libssh.org.txt +type curve25519sha256 struct{} + +type curve25519KeyPair struct { + priv [32]byte + pub [32]byte +} + +func (kp *curve25519KeyPair) generate(rand io.Reader) error { + if _, err := io.ReadFull(rand, kp.priv[:]); err != nil { + return err + } + curve25519.ScalarBaseMult(&kp.pub, &kp.priv) + return nil +} + +// curve25519Zeros is just an array of 32 zero bytes so that we have something +// convenient to compare against in order to reject curve25519 points with the +// wrong order. +var curve25519Zeros [32]byte + +func (kex *curve25519sha256) Client(c packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) { + var kp curve25519KeyPair + if err := kp.generate(rand); err != nil { + return nil, err + } + if err := c.writePacket(Marshal(&kexECDHInitMsg{kp.pub[:]})); err != nil { + return nil, err + } + + packet, err := c.readPacket() + if err != nil { + return nil, err + } + + var reply kexECDHReplyMsg + if err = Unmarshal(packet, &reply); err != nil { + return nil, err + } + if len(reply.EphemeralPubKey) != 32 { + return nil, errors.New("ssh: peer's curve25519 public value has wrong length") + } + + var servPub, secret [32]byte + copy(servPub[:], reply.EphemeralPubKey) + curve25519.ScalarMult(&secret, &kp.priv, &servPub) + if subtle.ConstantTimeCompare(secret[:], curve25519Zeros[:]) == 1 { + return nil, errors.New("ssh: peer's curve25519 public value has wrong order") + } + + h := crypto.SHA256.New() + magics.write(h) + writeString(h, reply.HostKey) + writeString(h, kp.pub[:]) + writeString(h, reply.EphemeralPubKey) + + ki := new(big.Int).SetBytes(secret[:]) + K := make([]byte, intLength(ki)) + marshalInt(K, ki) + h.Write(K) + + return &kexResult{ + H: h.Sum(nil), + K: K, + HostKey: reply.HostKey, + Signature: reply.Signature, + Hash: crypto.SHA256, + }, nil +} + +func (kex *curve25519sha256) Server(c packetConn, rand io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { + packet, err := c.readPacket() + if err != nil { + return + } + var kexInit kexECDHInitMsg + if err = Unmarshal(packet, &kexInit); err != nil { + return + } + + if len(kexInit.ClientPubKey) != 32 { + return nil, errors.New("ssh: peer's curve25519 public value has wrong length") + } + + var kp curve25519KeyPair + if err := kp.generate(rand); err != nil { + return nil, err + } + + var clientPub, secret [32]byte + copy(clientPub[:], kexInit.ClientPubKey) + curve25519.ScalarMult(&secret, &kp.priv, &clientPub) + if subtle.ConstantTimeCompare(secret[:], curve25519Zeros[:]) == 1 { + return nil, errors.New("ssh: peer's curve25519 public value has wrong order") + } + + hostKeyBytes := priv.PublicKey().Marshal() + + h := crypto.SHA256.New() + magics.write(h) + writeString(h, hostKeyBytes) + writeString(h, kexInit.ClientPubKey) + writeString(h, kp.pub[:]) + + ki := new(big.Int).SetBytes(secret[:]) + K := make([]byte, intLength(ki)) + marshalInt(K, ki) + h.Write(K) + + H := h.Sum(nil) + + sig, err := signAndMarshal(priv, rand, H) + if err != nil { + return nil, err + } + + reply := kexECDHReplyMsg{ + EphemeralPubKey: kp.pub[:], + HostKey: hostKeyBytes, + Signature: sig, + } + if err := c.writePacket(Marshal(&reply)); err != nil { + return nil, err + } + return &kexResult{ + H: H, + K: K, + HostKey: hostKeyBytes, + Signature: sig, + Hash: crypto.SHA256, + }, nil +} + +// dhGEXSHA implements the diffie-hellman-group-exchange-sha1 and +// diffie-hellman-group-exchange-sha256 key agreement protocols, +// as described in RFC 4419 +type dhGEXSHA struct { + g, p *big.Int + hashFunc crypto.Hash +} + +const numMRTests = 64 + +const ( + dhGroupExchangeMinimumBits = 2048 + dhGroupExchangePreferredBits = 2048 + dhGroupExchangeMaximumBits = 8192 +) + +func (gex *dhGEXSHA) diffieHellman(theirPublic, myPrivate *big.Int) (*big.Int, error) { + if theirPublic.Sign() <= 0 || theirPublic.Cmp(gex.p) >= 0 { + return nil, fmt.Errorf("ssh: DH parameter out of bounds") + } + return new(big.Int).Exp(theirPublic, myPrivate, gex.p), nil +} + +func (gex dhGEXSHA) Client(c packetConn, randSource io.Reader, magics *handshakeMagics) (*kexResult, error) { + // Send GexRequest + kexDHGexRequest := kexDHGexRequestMsg{ + MinBits: dhGroupExchangeMinimumBits, + PreferedBits: dhGroupExchangePreferredBits, + MaxBits: dhGroupExchangeMaximumBits, + } + if err := c.writePacket(Marshal(&kexDHGexRequest)); err != nil { + return nil, err + } + + // Receive GexGroup + packet, err := c.readPacket() + if err != nil { + return nil, err + } + + var kexDHGexGroup kexDHGexGroupMsg + if err = Unmarshal(packet, &kexDHGexGroup); err != nil { + return nil, err + } + + // reject if p's bit length < dhGroupExchangeMinimumBits or > dhGroupExchangeMaximumBits + if kexDHGexGroup.P.BitLen() < dhGroupExchangeMinimumBits || kexDHGexGroup.P.BitLen() > dhGroupExchangeMaximumBits { + return nil, fmt.Errorf("ssh: server-generated gex p is out of range (%d bits)", kexDHGexGroup.P.BitLen()) + } + + gex.p = kexDHGexGroup.P + gex.g = kexDHGexGroup.G + + // Check if p is safe by verifing that p and (p-1)/2 are primes + one := big.NewInt(1) + var pHalf = &big.Int{} + pHalf.Rsh(gex.p, 1) + if !gex.p.ProbablyPrime(numMRTests) || !pHalf.ProbablyPrime(numMRTests) { + return nil, fmt.Errorf("ssh: server provided gex p is not safe") + } + + // Check if g is safe by verifing that g > 1 and g < p - 1 + var pMinusOne = &big.Int{} + pMinusOne.Sub(gex.p, one) + if gex.g.Cmp(one) != 1 && gex.g.Cmp(pMinusOne) != -1 { + return nil, fmt.Errorf("ssh: server provided gex g is not safe") + } + + // Send GexInit + x, err := rand.Int(randSource, pHalf) + if err != nil { + return nil, err + } + X := new(big.Int).Exp(gex.g, x, gex.p) + kexDHGexInit := kexDHGexInitMsg{ + X: X, + } + if err := c.writePacket(Marshal(&kexDHGexInit)); err != nil { + return nil, err + } + + // Receive GexReply + packet, err = c.readPacket() + if err != nil { + return nil, err + } + + var kexDHGexReply kexDHGexReplyMsg + if err = Unmarshal(packet, &kexDHGexReply); err != nil { + return nil, err + } + + kInt, err := gex.diffieHellman(kexDHGexReply.Y, x) + if err != nil { + return nil, err + } + + // Check if k is safe by verifing that k > 1 and k < p - 1 + if kInt.Cmp(one) != 1 && kInt.Cmp(pMinusOne) != -1 { + return nil, fmt.Errorf("ssh: derived k is not safe") + } + + h := gex.hashFunc.New() + magics.write(h) + writeString(h, kexDHGexReply.HostKey) + binary.Write(h, binary.BigEndian, uint32(dhGroupExchangeMinimumBits)) + binary.Write(h, binary.BigEndian, uint32(dhGroupExchangePreferredBits)) + binary.Write(h, binary.BigEndian, uint32(dhGroupExchangeMaximumBits)) + writeInt(h, gex.p) + writeInt(h, gex.g) + writeInt(h, X) + writeInt(h, kexDHGexReply.Y) + K := make([]byte, intLength(kInt)) + marshalInt(K, kInt) + h.Write(K) + + return &kexResult{ + H: h.Sum(nil), + K: K, + HostKey: kexDHGexReply.HostKey, + Signature: kexDHGexReply.Signature, + Hash: gex.hashFunc, + }, nil +} + +// Server half implementation of the Diffie Hellman Key Exchange with SHA1 and SHA256. +// +// This is a minimal implementation to satisfy the automated tests. +func (gex dhGEXSHA) Server(c packetConn, randSource io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { + // Receive GexRequest + packet, err := c.readPacket() + if err != nil { + return + } + var kexDHGexRequest kexDHGexRequestMsg + if err = Unmarshal(packet, &kexDHGexRequest); err != nil { + return + } + + // smoosh the user's preferred size into our own limits + if kexDHGexRequest.PreferedBits > dhGroupExchangeMaximumBits { + kexDHGexRequest.PreferedBits = dhGroupExchangeMaximumBits + } + if kexDHGexRequest.PreferedBits < dhGroupExchangeMinimumBits { + kexDHGexRequest.PreferedBits = dhGroupExchangeMinimumBits + } + // fix min/max if they're inconsistent. technically, we could just pout + // and hang up, but there's no harm in giving them the benefit of the + // doubt and just picking a bitsize for them. + if kexDHGexRequest.MinBits > kexDHGexRequest.PreferedBits { + kexDHGexRequest.MinBits = kexDHGexRequest.PreferedBits + } + if kexDHGexRequest.MaxBits < kexDHGexRequest.PreferedBits { + kexDHGexRequest.MaxBits = kexDHGexRequest.PreferedBits + } + + // Send GexGroup + // This is the group called diffie-hellman-group14-sha1 in RFC + // 4253 and Oakley Group 14 in RFC 3526. + p, _ := new(big.Int).SetString("FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3DC2007CB8A163BF0598DA48361C55D39A69163FA8FD24CF5F83655D23DCA3AD961C62F356208552BB9ED529077096966D670C354E4ABC9804F1746C08CA18217C32905E462E36CE3BE39E772C180E86039B2783A2EC07A28FB5C55DF06F4C52C9DE2BCBF6955817183995497CEA956AE515D2261898FA051015728E5A8AACAA68FFFFFFFFFFFFFFFF", 16) + gex.p = p + gex.g = big.NewInt(2) + + kexDHGexGroup := kexDHGexGroupMsg{ + P: gex.p, + G: gex.g, + } + if err := c.writePacket(Marshal(&kexDHGexGroup)); err != nil { + return nil, err + } + + // Receive GexInit + packet, err = c.readPacket() + if err != nil { + return + } + var kexDHGexInit kexDHGexInitMsg + if err = Unmarshal(packet, &kexDHGexInit); err != nil { + return + } + + var pHalf = &big.Int{} + pHalf.Rsh(gex.p, 1) + + y, err := rand.Int(randSource, pHalf) + if err != nil { + return + } + + Y := new(big.Int).Exp(gex.g, y, gex.p) + kInt, err := gex.diffieHellman(kexDHGexInit.X, y) + if err != nil { + return nil, err + } + + hostKeyBytes := priv.PublicKey().Marshal() + + h := gex.hashFunc.New() + magics.write(h) + writeString(h, hostKeyBytes) + binary.Write(h, binary.BigEndian, uint32(dhGroupExchangeMinimumBits)) + binary.Write(h, binary.BigEndian, uint32(dhGroupExchangePreferredBits)) + binary.Write(h, binary.BigEndian, uint32(dhGroupExchangeMaximumBits)) + writeInt(h, gex.p) + writeInt(h, gex.g) + writeInt(h, kexDHGexInit.X) + writeInt(h, Y) + + K := make([]byte, intLength(kInt)) + marshalInt(K, kInt) + h.Write(K) + + H := h.Sum(nil) + + // H is already a hash, but the hostkey signing will apply its + // own key-specific hash algorithm. + sig, err := signAndMarshal(priv, randSource, H) + if err != nil { + return nil, err + } + + kexDHGexReply := kexDHGexReplyMsg{ + HostKey: hostKeyBytes, + Y: Y, + Signature: sig, + } + packet = Marshal(&kexDHGexReply) + + err = c.writePacket(packet) + + return &kexResult{ + H: H, + K: K, + HostKey: hostKeyBytes, + Signature: sig, + Hash: gex.hashFunc, + }, err +} diff --git a/vendor/golang.org/x/crypto/ssh/keys.go b/vendor/golang.org/x/crypto/ssh/keys.go new file mode 100644 index 00000000..31f26349 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/keys.go @@ -0,0 +1,1474 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "crypto" + "crypto/aes" + "crypto/cipher" + "crypto/dsa" + "crypto/ecdsa" + "crypto/elliptic" + "crypto/md5" + "crypto/rsa" + "crypto/sha256" + "crypto/x509" + "encoding/asn1" + "encoding/base64" + "encoding/hex" + "encoding/pem" + "errors" + "fmt" + "io" + "math/big" + "strings" + + "golang.org/x/crypto/ed25519" + "golang.org/x/crypto/ssh/internal/bcrypt_pbkdf" +) + +// These constants represent the algorithm names for key types supported by this +// package. +const ( + KeyAlgoRSA = "ssh-rsa" + KeyAlgoDSA = "ssh-dss" + KeyAlgoECDSA256 = "ecdsa-sha2-nistp256" + KeyAlgoSKECDSA256 = "sk-ecdsa-sha2-nistp256@openssh.com" + KeyAlgoECDSA384 = "ecdsa-sha2-nistp384" + KeyAlgoECDSA521 = "ecdsa-sha2-nistp521" + KeyAlgoED25519 = "ssh-ed25519" + KeyAlgoSKED25519 = "sk-ssh-ed25519@openssh.com" +) + +// These constants represent non-default signature algorithms that are supported +// as algorithm parameters to AlgorithmSigner.SignWithAlgorithm methods. See +// [PROTOCOL.agent] section 4.5.1 and +// https://tools.ietf.org/html/draft-ietf-curdle-rsa-sha2-10 +const ( + SigAlgoRSA = "ssh-rsa" + SigAlgoRSASHA2256 = "rsa-sha2-256" + SigAlgoRSASHA2512 = "rsa-sha2-512" +) + +// parsePubKey parses a public key of the given algorithm. +// Use ParsePublicKey for keys with prepended algorithm. +func parsePubKey(in []byte, algo string) (pubKey PublicKey, rest []byte, err error) { + switch algo { + case KeyAlgoRSA: + return parseRSA(in) + case KeyAlgoDSA: + return parseDSA(in) + case KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521: + return parseECDSA(in) + case KeyAlgoSKECDSA256: + return parseSKECDSA(in) + case KeyAlgoED25519: + return parseED25519(in) + case KeyAlgoSKED25519: + return parseSKEd25519(in) + case CertAlgoRSAv01, CertAlgoDSAv01, CertAlgoECDSA256v01, CertAlgoECDSA384v01, CertAlgoECDSA521v01, CertAlgoSKECDSA256v01, CertAlgoED25519v01, CertAlgoSKED25519v01: + cert, err := parseCert(in, certToPrivAlgo(algo)) + if err != nil { + return nil, nil, err + } + return cert, nil, nil + } + return nil, nil, fmt.Errorf("ssh: unknown key algorithm: %v", algo) +} + +// parseAuthorizedKey parses a public key in OpenSSH authorized_keys format +// (see sshd(8) manual page) once the options and key type fields have been +// removed. +func parseAuthorizedKey(in []byte) (out PublicKey, comment string, err error) { + in = bytes.TrimSpace(in) + + i := bytes.IndexAny(in, " \t") + if i == -1 { + i = len(in) + } + base64Key := in[:i] + + key := make([]byte, base64.StdEncoding.DecodedLen(len(base64Key))) + n, err := base64.StdEncoding.Decode(key, base64Key) + if err != nil { + return nil, "", err + } + key = key[:n] + out, err = ParsePublicKey(key) + if err != nil { + return nil, "", err + } + comment = string(bytes.TrimSpace(in[i:])) + return out, comment, nil +} + +// ParseKnownHosts parses an entry in the format of the known_hosts file. +// +// The known_hosts format is documented in the sshd(8) manual page. This +// function will parse a single entry from in. On successful return, marker +// will contain the optional marker value (i.e. "cert-authority" or "revoked") +// or else be empty, hosts will contain the hosts that this entry matches, +// pubKey will contain the public key and comment will contain any trailing +// comment at the end of the line. See the sshd(8) manual page for the various +// forms that a host string can take. +// +// The unparsed remainder of the input will be returned in rest. This function +// can be called repeatedly to parse multiple entries. +// +// If no entries were found in the input then err will be io.EOF. Otherwise a +// non-nil err value indicates a parse error. +func ParseKnownHosts(in []byte) (marker string, hosts []string, pubKey PublicKey, comment string, rest []byte, err error) { + for len(in) > 0 { + end := bytes.IndexByte(in, '\n') + if end != -1 { + rest = in[end+1:] + in = in[:end] + } else { + rest = nil + } + + end = bytes.IndexByte(in, '\r') + if end != -1 { + in = in[:end] + } + + in = bytes.TrimSpace(in) + if len(in) == 0 || in[0] == '#' { + in = rest + continue + } + + i := bytes.IndexAny(in, " \t") + if i == -1 { + in = rest + continue + } + + // Strip out the beginning of the known_host key. + // This is either an optional marker or a (set of) hostname(s). + keyFields := bytes.Fields(in) + if len(keyFields) < 3 || len(keyFields) > 5 { + return "", nil, nil, "", nil, errors.New("ssh: invalid entry in known_hosts data") + } + + // keyFields[0] is either "@cert-authority", "@revoked" or a comma separated + // list of hosts + marker := "" + if keyFields[0][0] == '@' { + marker = string(keyFields[0][1:]) + keyFields = keyFields[1:] + } + + hosts := string(keyFields[0]) + // keyFields[1] contains the key type (e.g. “ssh-rsa”). + // However, that information is duplicated inside the + // base64-encoded key and so is ignored here. + + key := bytes.Join(keyFields[2:], []byte(" ")) + if pubKey, comment, err = parseAuthorizedKey(key); err != nil { + return "", nil, nil, "", nil, err + } + + return marker, strings.Split(hosts, ","), pubKey, comment, rest, nil + } + + return "", nil, nil, "", nil, io.EOF +} + +// ParseAuthorizedKeys parses a public key from an authorized_keys +// file used in OpenSSH according to the sshd(8) manual page. +func ParseAuthorizedKey(in []byte) (out PublicKey, comment string, options []string, rest []byte, err error) { + for len(in) > 0 { + end := bytes.IndexByte(in, '\n') + if end != -1 { + rest = in[end+1:] + in = in[:end] + } else { + rest = nil + } + + end = bytes.IndexByte(in, '\r') + if end != -1 { + in = in[:end] + } + + in = bytes.TrimSpace(in) + if len(in) == 0 || in[0] == '#' { + in = rest + continue + } + + i := bytes.IndexAny(in, " \t") + if i == -1 { + in = rest + continue + } + + if out, comment, err = parseAuthorizedKey(in[i:]); err == nil { + return out, comment, options, rest, nil + } + + // No key type recognised. Maybe there's an options field at + // the beginning. + var b byte + inQuote := false + var candidateOptions []string + optionStart := 0 + for i, b = range in { + isEnd := !inQuote && (b == ' ' || b == '\t') + if (b == ',' && !inQuote) || isEnd { + if i-optionStart > 0 { + candidateOptions = append(candidateOptions, string(in[optionStart:i])) + } + optionStart = i + 1 + } + if isEnd { + break + } + if b == '"' && (i == 0 || (i > 0 && in[i-1] != '\\')) { + inQuote = !inQuote + } + } + for i < len(in) && (in[i] == ' ' || in[i] == '\t') { + i++ + } + if i == len(in) { + // Invalid line: unmatched quote + in = rest + continue + } + + in = in[i:] + i = bytes.IndexAny(in, " \t") + if i == -1 { + in = rest + continue + } + + if out, comment, err = parseAuthorizedKey(in[i:]); err == nil { + options = candidateOptions + return out, comment, options, rest, nil + } + + in = rest + continue + } + + return nil, "", nil, nil, errors.New("ssh: no key found") +} + +// ParsePublicKey parses an SSH public key formatted for use in +// the SSH wire protocol according to RFC 4253, section 6.6. +func ParsePublicKey(in []byte) (out PublicKey, err error) { + algo, in, ok := parseString(in) + if !ok { + return nil, errShortRead + } + var rest []byte + out, rest, err = parsePubKey(in, string(algo)) + if len(rest) > 0 { + return nil, errors.New("ssh: trailing junk in public key") + } + + return out, err +} + +// MarshalAuthorizedKey serializes key for inclusion in an OpenSSH +// authorized_keys file. The return value ends with newline. +func MarshalAuthorizedKey(key PublicKey) []byte { + b := &bytes.Buffer{} + b.WriteString(key.Type()) + b.WriteByte(' ') + e := base64.NewEncoder(base64.StdEncoding, b) + e.Write(key.Marshal()) + e.Close() + b.WriteByte('\n') + return b.Bytes() +} + +// PublicKey is an abstraction of different types of public keys. +type PublicKey interface { + // Type returns the key's type, e.g. "ssh-rsa". + Type() string + + // Marshal returns the serialized key data in SSH wire format, + // with the name prefix. To unmarshal the returned data, use + // the ParsePublicKey function. + Marshal() []byte + + // Verify that sig is a signature on the given data using this + // key. This function will hash the data appropriately first. + Verify(data []byte, sig *Signature) error +} + +// CryptoPublicKey, if implemented by a PublicKey, +// returns the underlying crypto.PublicKey form of the key. +type CryptoPublicKey interface { + CryptoPublicKey() crypto.PublicKey +} + +// A Signer can create signatures that verify against a public key. +type Signer interface { + // PublicKey returns an associated PublicKey instance. + PublicKey() PublicKey + + // Sign returns raw signature for the given data. This method + // will apply the hash specified for the keytype to the data. + Sign(rand io.Reader, data []byte) (*Signature, error) +} + +// A AlgorithmSigner is a Signer that also supports specifying a specific +// algorithm to use for signing. +type AlgorithmSigner interface { + Signer + + // SignWithAlgorithm is like Signer.Sign, but allows specification of a + // non-default signing algorithm. See the SigAlgo* constants in this + // package for signature algorithms supported by this package. Callers may + // pass an empty string for the algorithm in which case the AlgorithmSigner + // will use its default algorithm. + SignWithAlgorithm(rand io.Reader, data []byte, algorithm string) (*Signature, error) +} + +type rsaPublicKey rsa.PublicKey + +func (r *rsaPublicKey) Type() string { + return "ssh-rsa" +} + +// parseRSA parses an RSA key according to RFC 4253, section 6.6. +func parseRSA(in []byte) (out PublicKey, rest []byte, err error) { + var w struct { + E *big.Int + N *big.Int + Rest []byte `ssh:"rest"` + } + if err := Unmarshal(in, &w); err != nil { + return nil, nil, err + } + + if w.E.BitLen() > 24 { + return nil, nil, errors.New("ssh: exponent too large") + } + e := w.E.Int64() + if e < 3 || e&1 == 0 { + return nil, nil, errors.New("ssh: incorrect exponent") + } + + var key rsa.PublicKey + key.E = int(e) + key.N = w.N + return (*rsaPublicKey)(&key), w.Rest, nil +} + +func (r *rsaPublicKey) Marshal() []byte { + e := new(big.Int).SetInt64(int64(r.E)) + // RSA publickey struct layout should match the struct used by + // parseRSACert in the x/crypto/ssh/agent package. + wirekey := struct { + Name string + E *big.Int + N *big.Int + }{ + KeyAlgoRSA, + e, + r.N, + } + return Marshal(&wirekey) +} + +func (r *rsaPublicKey) Verify(data []byte, sig *Signature) error { + var hash crypto.Hash + switch sig.Format { + case SigAlgoRSA: + hash = crypto.SHA1 + case SigAlgoRSASHA2256: + hash = crypto.SHA256 + case SigAlgoRSASHA2512: + hash = crypto.SHA512 + default: + return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, r.Type()) + } + h := hash.New() + h.Write(data) + digest := h.Sum(nil) + return rsa.VerifyPKCS1v15((*rsa.PublicKey)(r), hash, digest, sig.Blob) +} + +func (r *rsaPublicKey) CryptoPublicKey() crypto.PublicKey { + return (*rsa.PublicKey)(r) +} + +type dsaPublicKey dsa.PublicKey + +func (k *dsaPublicKey) Type() string { + return "ssh-dss" +} + +func checkDSAParams(param *dsa.Parameters) error { + // SSH specifies FIPS 186-2, which only provided a single size + // (1024 bits) DSA key. FIPS 186-3 allows for larger key + // sizes, which would confuse SSH. + if l := param.P.BitLen(); l != 1024 { + return fmt.Errorf("ssh: unsupported DSA key size %d", l) + } + + return nil +} + +// parseDSA parses an DSA key according to RFC 4253, section 6.6. +func parseDSA(in []byte) (out PublicKey, rest []byte, err error) { + var w struct { + P, Q, G, Y *big.Int + Rest []byte `ssh:"rest"` + } + if err := Unmarshal(in, &w); err != nil { + return nil, nil, err + } + + param := dsa.Parameters{ + P: w.P, + Q: w.Q, + G: w.G, + } + if err := checkDSAParams(¶m); err != nil { + return nil, nil, err + } + + key := &dsaPublicKey{ + Parameters: param, + Y: w.Y, + } + return key, w.Rest, nil +} + +func (k *dsaPublicKey) Marshal() []byte { + // DSA publickey struct layout should match the struct used by + // parseDSACert in the x/crypto/ssh/agent package. + w := struct { + Name string + P, Q, G, Y *big.Int + }{ + k.Type(), + k.P, + k.Q, + k.G, + k.Y, + } + + return Marshal(&w) +} + +func (k *dsaPublicKey) Verify(data []byte, sig *Signature) error { + if sig.Format != k.Type() { + return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, k.Type()) + } + h := crypto.SHA1.New() + h.Write(data) + digest := h.Sum(nil) + + // Per RFC 4253, section 6.6, + // The value for 'dss_signature_blob' is encoded as a string containing + // r, followed by s (which are 160-bit integers, without lengths or + // padding, unsigned, and in network byte order). + // For DSS purposes, sig.Blob should be exactly 40 bytes in length. + if len(sig.Blob) != 40 { + return errors.New("ssh: DSA signature parse error") + } + r := new(big.Int).SetBytes(sig.Blob[:20]) + s := new(big.Int).SetBytes(sig.Blob[20:]) + if dsa.Verify((*dsa.PublicKey)(k), digest, r, s) { + return nil + } + return errors.New("ssh: signature did not verify") +} + +func (k *dsaPublicKey) CryptoPublicKey() crypto.PublicKey { + return (*dsa.PublicKey)(k) +} + +type dsaPrivateKey struct { + *dsa.PrivateKey +} + +func (k *dsaPrivateKey) PublicKey() PublicKey { + return (*dsaPublicKey)(&k.PrivateKey.PublicKey) +} + +func (k *dsaPrivateKey) Sign(rand io.Reader, data []byte) (*Signature, error) { + return k.SignWithAlgorithm(rand, data, "") +} + +func (k *dsaPrivateKey) SignWithAlgorithm(rand io.Reader, data []byte, algorithm string) (*Signature, error) { + if algorithm != "" && algorithm != k.PublicKey().Type() { + return nil, fmt.Errorf("ssh: unsupported signature algorithm %s", algorithm) + } + + h := crypto.SHA1.New() + h.Write(data) + digest := h.Sum(nil) + r, s, err := dsa.Sign(rand, k.PrivateKey, digest) + if err != nil { + return nil, err + } + + sig := make([]byte, 40) + rb := r.Bytes() + sb := s.Bytes() + + copy(sig[20-len(rb):20], rb) + copy(sig[40-len(sb):], sb) + + return &Signature{ + Format: k.PublicKey().Type(), + Blob: sig, + }, nil +} + +type ecdsaPublicKey ecdsa.PublicKey + +func (k *ecdsaPublicKey) Type() string { + return "ecdsa-sha2-" + k.nistID() +} + +func (k *ecdsaPublicKey) nistID() string { + switch k.Params().BitSize { + case 256: + return "nistp256" + case 384: + return "nistp384" + case 521: + return "nistp521" + } + panic("ssh: unsupported ecdsa key size") +} + +type ed25519PublicKey ed25519.PublicKey + +func (k ed25519PublicKey) Type() string { + return KeyAlgoED25519 +} + +func parseED25519(in []byte) (out PublicKey, rest []byte, err error) { + var w struct { + KeyBytes []byte + Rest []byte `ssh:"rest"` + } + + if err := Unmarshal(in, &w); err != nil { + return nil, nil, err + } + + if l := len(w.KeyBytes); l != ed25519.PublicKeySize { + return nil, nil, fmt.Errorf("invalid size %d for Ed25519 public key", l) + } + + return ed25519PublicKey(w.KeyBytes), w.Rest, nil +} + +func (k ed25519PublicKey) Marshal() []byte { + w := struct { + Name string + KeyBytes []byte + }{ + KeyAlgoED25519, + []byte(k), + } + return Marshal(&w) +} + +func (k ed25519PublicKey) Verify(b []byte, sig *Signature) error { + if sig.Format != k.Type() { + return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, k.Type()) + } + if l := len(k); l != ed25519.PublicKeySize { + return fmt.Errorf("ssh: invalid size %d for Ed25519 public key", l) + } + + if ok := ed25519.Verify(ed25519.PublicKey(k), b, sig.Blob); !ok { + return errors.New("ssh: signature did not verify") + } + + return nil +} + +func (k ed25519PublicKey) CryptoPublicKey() crypto.PublicKey { + return ed25519.PublicKey(k) +} + +func supportedEllipticCurve(curve elliptic.Curve) bool { + return curve == elliptic.P256() || curve == elliptic.P384() || curve == elliptic.P521() +} + +// ecHash returns the hash to match the given elliptic curve, see RFC +// 5656, section 6.2.1 +func ecHash(curve elliptic.Curve) crypto.Hash { + bitSize := curve.Params().BitSize + switch { + case bitSize <= 256: + return crypto.SHA256 + case bitSize <= 384: + return crypto.SHA384 + } + return crypto.SHA512 +} + +// parseECDSA parses an ECDSA key according to RFC 5656, section 3.1. +func parseECDSA(in []byte) (out PublicKey, rest []byte, err error) { + var w struct { + Curve string + KeyBytes []byte + Rest []byte `ssh:"rest"` + } + + if err := Unmarshal(in, &w); err != nil { + return nil, nil, err + } + + key := new(ecdsa.PublicKey) + + switch w.Curve { + case "nistp256": + key.Curve = elliptic.P256() + case "nistp384": + key.Curve = elliptic.P384() + case "nistp521": + key.Curve = elliptic.P521() + default: + return nil, nil, errors.New("ssh: unsupported curve") + } + + key.X, key.Y = elliptic.Unmarshal(key.Curve, w.KeyBytes) + if key.X == nil || key.Y == nil { + return nil, nil, errors.New("ssh: invalid curve point") + } + return (*ecdsaPublicKey)(key), w.Rest, nil +} + +func (k *ecdsaPublicKey) Marshal() []byte { + // See RFC 5656, section 3.1. + keyBytes := elliptic.Marshal(k.Curve, k.X, k.Y) + // ECDSA publickey struct layout should match the struct used by + // parseECDSACert in the x/crypto/ssh/agent package. + w := struct { + Name string + ID string + Key []byte + }{ + k.Type(), + k.nistID(), + keyBytes, + } + + return Marshal(&w) +} + +func (k *ecdsaPublicKey) Verify(data []byte, sig *Signature) error { + if sig.Format != k.Type() { + return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, k.Type()) + } + + h := ecHash(k.Curve).New() + h.Write(data) + digest := h.Sum(nil) + + // Per RFC 5656, section 3.1.2, + // The ecdsa_signature_blob value has the following specific encoding: + // mpint r + // mpint s + var ecSig struct { + R *big.Int + S *big.Int + } + + if err := Unmarshal(sig.Blob, &ecSig); err != nil { + return err + } + + if ecdsa.Verify((*ecdsa.PublicKey)(k), digest, ecSig.R, ecSig.S) { + return nil + } + return errors.New("ssh: signature did not verify") +} + +func (k *ecdsaPublicKey) CryptoPublicKey() crypto.PublicKey { + return (*ecdsa.PublicKey)(k) +} + +// skFields holds the additional fields present in U2F/FIDO2 signatures. +// See openssh/PROTOCOL.u2f 'SSH U2F Signatures' for details. +type skFields struct { + // Flags contains U2F/FIDO2 flags such as 'user present' + Flags byte + // Counter is a monotonic signature counter which can be + // used to detect concurrent use of a private key, should + // it be extracted from hardware. + Counter uint32 +} + +type skECDSAPublicKey struct { + // application is a URL-like string, typically "ssh:" for SSH. + // see openssh/PROTOCOL.u2f for details. + application string + ecdsa.PublicKey +} + +func (k *skECDSAPublicKey) Type() string { + return KeyAlgoSKECDSA256 +} + +func (k *skECDSAPublicKey) nistID() string { + return "nistp256" +} + +func parseSKECDSA(in []byte) (out PublicKey, rest []byte, err error) { + var w struct { + Curve string + KeyBytes []byte + Application string + Rest []byte `ssh:"rest"` + } + + if err := Unmarshal(in, &w); err != nil { + return nil, nil, err + } + + key := new(skECDSAPublicKey) + key.application = w.Application + + if w.Curve != "nistp256" { + return nil, nil, errors.New("ssh: unsupported curve") + } + key.Curve = elliptic.P256() + + key.X, key.Y = elliptic.Unmarshal(key.Curve, w.KeyBytes) + if key.X == nil || key.Y == nil { + return nil, nil, errors.New("ssh: invalid curve point") + } + + return key, w.Rest, nil +} + +func (k *skECDSAPublicKey) Marshal() []byte { + // See RFC 5656, section 3.1. + keyBytes := elliptic.Marshal(k.Curve, k.X, k.Y) + w := struct { + Name string + ID string + Key []byte + Application string + }{ + k.Type(), + k.nistID(), + keyBytes, + k.application, + } + + return Marshal(&w) +} + +func (k *skECDSAPublicKey) Verify(data []byte, sig *Signature) error { + if sig.Format != k.Type() { + return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, k.Type()) + } + + h := ecHash(k.Curve).New() + h.Write([]byte(k.application)) + appDigest := h.Sum(nil) + + h.Reset() + h.Write(data) + dataDigest := h.Sum(nil) + + var ecSig struct { + R *big.Int + S *big.Int + } + if err := Unmarshal(sig.Blob, &ecSig); err != nil { + return err + } + + var skf skFields + if err := Unmarshal(sig.Rest, &skf); err != nil { + return err + } + + blob := struct { + ApplicationDigest []byte `ssh:"rest"` + Flags byte + Counter uint32 + MessageDigest []byte `ssh:"rest"` + }{ + appDigest, + skf.Flags, + skf.Counter, + dataDigest, + } + + original := Marshal(blob) + + h.Reset() + h.Write(original) + digest := h.Sum(nil) + + if ecdsa.Verify((*ecdsa.PublicKey)(&k.PublicKey), digest, ecSig.R, ecSig.S) { + return nil + } + return errors.New("ssh: signature did not verify") +} + +type skEd25519PublicKey struct { + // application is a URL-like string, typically "ssh:" for SSH. + // see openssh/PROTOCOL.u2f for details. + application string + ed25519.PublicKey +} + +func (k *skEd25519PublicKey) Type() string { + return KeyAlgoSKED25519 +} + +func parseSKEd25519(in []byte) (out PublicKey, rest []byte, err error) { + var w struct { + KeyBytes []byte + Application string + Rest []byte `ssh:"rest"` + } + + if err := Unmarshal(in, &w); err != nil { + return nil, nil, err + } + + if l := len(w.KeyBytes); l != ed25519.PublicKeySize { + return nil, nil, fmt.Errorf("invalid size %d for Ed25519 public key", l) + } + + key := new(skEd25519PublicKey) + key.application = w.Application + key.PublicKey = ed25519.PublicKey(w.KeyBytes) + + return key, w.Rest, nil +} + +func (k *skEd25519PublicKey) Marshal() []byte { + w := struct { + Name string + KeyBytes []byte + Application string + }{ + KeyAlgoSKED25519, + []byte(k.PublicKey), + k.application, + } + return Marshal(&w) +} + +func (k *skEd25519PublicKey) Verify(data []byte, sig *Signature) error { + if sig.Format != k.Type() { + return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, k.Type()) + } + if l := len(k.PublicKey); l != ed25519.PublicKeySize { + return fmt.Errorf("invalid size %d for Ed25519 public key", l) + } + + h := sha256.New() + h.Write([]byte(k.application)) + appDigest := h.Sum(nil) + + h.Reset() + h.Write(data) + dataDigest := h.Sum(nil) + + var edSig struct { + Signature []byte `ssh:"rest"` + } + + if err := Unmarshal(sig.Blob, &edSig); err != nil { + return err + } + + var skf skFields + if err := Unmarshal(sig.Rest, &skf); err != nil { + return err + } + + blob := struct { + ApplicationDigest []byte `ssh:"rest"` + Flags byte + Counter uint32 + MessageDigest []byte `ssh:"rest"` + }{ + appDigest, + skf.Flags, + skf.Counter, + dataDigest, + } + + original := Marshal(blob) + + if ok := ed25519.Verify(k.PublicKey, original, edSig.Signature); !ok { + return errors.New("ssh: signature did not verify") + } + + return nil +} + +// NewSignerFromKey takes an *rsa.PrivateKey, *dsa.PrivateKey, +// *ecdsa.PrivateKey or any other crypto.Signer and returns a +// corresponding Signer instance. ECDSA keys must use P-256, P-384 or +// P-521. DSA keys must use parameter size L1024N160. +func NewSignerFromKey(key interface{}) (Signer, error) { + switch key := key.(type) { + case crypto.Signer: + return NewSignerFromSigner(key) + case *dsa.PrivateKey: + return newDSAPrivateKey(key) + default: + return nil, fmt.Errorf("ssh: unsupported key type %T", key) + } +} + +func newDSAPrivateKey(key *dsa.PrivateKey) (Signer, error) { + if err := checkDSAParams(&key.PublicKey.Parameters); err != nil { + return nil, err + } + + return &dsaPrivateKey{key}, nil +} + +type wrappedSigner struct { + signer crypto.Signer + pubKey PublicKey +} + +// NewSignerFromSigner takes any crypto.Signer implementation and +// returns a corresponding Signer interface. This can be used, for +// example, with keys kept in hardware modules. +func NewSignerFromSigner(signer crypto.Signer) (Signer, error) { + pubKey, err := NewPublicKey(signer.Public()) + if err != nil { + return nil, err + } + + return &wrappedSigner{signer, pubKey}, nil +} + +func (s *wrappedSigner) PublicKey() PublicKey { + return s.pubKey +} + +func (s *wrappedSigner) Sign(rand io.Reader, data []byte) (*Signature, error) { + return s.SignWithAlgorithm(rand, data, "") +} + +func (s *wrappedSigner) SignWithAlgorithm(rand io.Reader, data []byte, algorithm string) (*Signature, error) { + var hashFunc crypto.Hash + + if _, ok := s.pubKey.(*rsaPublicKey); ok { + // RSA keys support a few hash functions determined by the requested signature algorithm + switch algorithm { + case "", SigAlgoRSA: + algorithm = SigAlgoRSA + hashFunc = crypto.SHA1 + case SigAlgoRSASHA2256: + hashFunc = crypto.SHA256 + case SigAlgoRSASHA2512: + hashFunc = crypto.SHA512 + default: + return nil, fmt.Errorf("ssh: unsupported signature algorithm %s", algorithm) + } + } else { + // The only supported algorithm for all other key types is the same as the type of the key + if algorithm == "" { + algorithm = s.pubKey.Type() + } else if algorithm != s.pubKey.Type() { + return nil, fmt.Errorf("ssh: unsupported signature algorithm %s", algorithm) + } + + switch key := s.pubKey.(type) { + case *dsaPublicKey: + hashFunc = crypto.SHA1 + case *ecdsaPublicKey: + hashFunc = ecHash(key.Curve) + case ed25519PublicKey: + default: + return nil, fmt.Errorf("ssh: unsupported key type %T", key) + } + } + + var digest []byte + if hashFunc != 0 { + h := hashFunc.New() + h.Write(data) + digest = h.Sum(nil) + } else { + digest = data + } + + signature, err := s.signer.Sign(rand, digest, hashFunc) + if err != nil { + return nil, err + } + + // crypto.Signer.Sign is expected to return an ASN.1-encoded signature + // for ECDSA and DSA, but that's not the encoding expected by SSH, so + // re-encode. + switch s.pubKey.(type) { + case *ecdsaPublicKey, *dsaPublicKey: + type asn1Signature struct { + R, S *big.Int + } + asn1Sig := new(asn1Signature) + _, err := asn1.Unmarshal(signature, asn1Sig) + if err != nil { + return nil, err + } + + switch s.pubKey.(type) { + case *ecdsaPublicKey: + signature = Marshal(asn1Sig) + + case *dsaPublicKey: + signature = make([]byte, 40) + r := asn1Sig.R.Bytes() + s := asn1Sig.S.Bytes() + copy(signature[20-len(r):20], r) + copy(signature[40-len(s):40], s) + } + } + + return &Signature{ + Format: algorithm, + Blob: signature, + }, nil +} + +// NewPublicKey takes an *rsa.PublicKey, *dsa.PublicKey, *ecdsa.PublicKey, +// or ed25519.PublicKey returns a corresponding PublicKey instance. +// ECDSA keys must use P-256, P-384 or P-521. +func NewPublicKey(key interface{}) (PublicKey, error) { + switch key := key.(type) { + case *rsa.PublicKey: + return (*rsaPublicKey)(key), nil + case *ecdsa.PublicKey: + if !supportedEllipticCurve(key.Curve) { + return nil, errors.New("ssh: only P-256, P-384 and P-521 EC keys are supported") + } + return (*ecdsaPublicKey)(key), nil + case *dsa.PublicKey: + return (*dsaPublicKey)(key), nil + case ed25519.PublicKey: + if l := len(key); l != ed25519.PublicKeySize { + return nil, fmt.Errorf("ssh: invalid size %d for Ed25519 public key", l) + } + return ed25519PublicKey(key), nil + default: + return nil, fmt.Errorf("ssh: unsupported key type %T", key) + } +} + +// ParsePrivateKey returns a Signer from a PEM encoded private key. It supports +// the same keys as ParseRawPrivateKey. If the private key is encrypted, it +// will return a PassphraseMissingError. +func ParsePrivateKey(pemBytes []byte) (Signer, error) { + key, err := ParseRawPrivateKey(pemBytes) + if err != nil { + return nil, err + } + + return NewSignerFromKey(key) +} + +// ParsePrivateKeyWithPassphrase returns a Signer from a PEM encoded private +// key and passphrase. It supports the same keys as +// ParseRawPrivateKeyWithPassphrase. +func ParsePrivateKeyWithPassphrase(pemBytes, passphrase []byte) (Signer, error) { + key, err := ParseRawPrivateKeyWithPassphrase(pemBytes, passphrase) + if err != nil { + return nil, err + } + + return NewSignerFromKey(key) +} + +// encryptedBlock tells whether a private key is +// encrypted by examining its Proc-Type header +// for a mention of ENCRYPTED +// according to RFC 1421 Section 4.6.1.1. +func encryptedBlock(block *pem.Block) bool { + return strings.Contains(block.Headers["Proc-Type"], "ENCRYPTED") +} + +// A PassphraseMissingError indicates that parsing this private key requires a +// passphrase. Use ParsePrivateKeyWithPassphrase. +type PassphraseMissingError struct { + // PublicKey will be set if the private key format includes an unencrypted + // public key along with the encrypted private key. + PublicKey PublicKey +} + +func (*PassphraseMissingError) Error() string { + return "ssh: this private key is passphrase protected" +} + +// ParseRawPrivateKey returns a private key from a PEM encoded private key. It +// supports RSA (PKCS#1), PKCS#8, DSA (OpenSSL), and ECDSA private keys. If the +// private key is encrypted, it will return a PassphraseMissingError. +func ParseRawPrivateKey(pemBytes []byte) (interface{}, error) { + block, _ := pem.Decode(pemBytes) + if block == nil { + return nil, errors.New("ssh: no key found") + } + + if encryptedBlock(block) { + return nil, &PassphraseMissingError{} + } + + switch block.Type { + case "RSA PRIVATE KEY": + return x509.ParsePKCS1PrivateKey(block.Bytes) + // RFC5208 - https://tools.ietf.org/html/rfc5208 + case "PRIVATE KEY": + return x509.ParsePKCS8PrivateKey(block.Bytes) + case "EC PRIVATE KEY": + return x509.ParseECPrivateKey(block.Bytes) + case "DSA PRIVATE KEY": + return ParseDSAPrivateKey(block.Bytes) + case "OPENSSH PRIVATE KEY": + return parseOpenSSHPrivateKey(block.Bytes, unencryptedOpenSSHKey) + default: + return nil, fmt.Errorf("ssh: unsupported key type %q", block.Type) + } +} + +// ParseRawPrivateKeyWithPassphrase returns a private key decrypted with +// passphrase from a PEM encoded private key. If the passphrase is wrong, it +// will return x509.IncorrectPasswordError. +func ParseRawPrivateKeyWithPassphrase(pemBytes, passphrase []byte) (interface{}, error) { + block, _ := pem.Decode(pemBytes) + if block == nil { + return nil, errors.New("ssh: no key found") + } + + if block.Type == "OPENSSH PRIVATE KEY" { + return parseOpenSSHPrivateKey(block.Bytes, passphraseProtectedOpenSSHKey(passphrase)) + } + + if !encryptedBlock(block) || !x509.IsEncryptedPEMBlock(block) { + return nil, errors.New("ssh: not an encrypted key") + } + + buf, err := x509.DecryptPEMBlock(block, passphrase) + if err != nil { + if err == x509.IncorrectPasswordError { + return nil, err + } + return nil, fmt.Errorf("ssh: cannot decode encrypted private keys: %v", err) + } + + switch block.Type { + case "RSA PRIVATE KEY": + return x509.ParsePKCS1PrivateKey(buf) + case "EC PRIVATE KEY": + return x509.ParseECPrivateKey(buf) + case "DSA PRIVATE KEY": + return ParseDSAPrivateKey(buf) + default: + return nil, fmt.Errorf("ssh: unsupported key type %q", block.Type) + } +} + +// ParseDSAPrivateKey returns a DSA private key from its ASN.1 DER encoding, as +// specified by the OpenSSL DSA man page. +func ParseDSAPrivateKey(der []byte) (*dsa.PrivateKey, error) { + var k struct { + Version int + P *big.Int + Q *big.Int + G *big.Int + Pub *big.Int + Priv *big.Int + } + rest, err := asn1.Unmarshal(der, &k) + if err != nil { + return nil, errors.New("ssh: failed to parse DSA key: " + err.Error()) + } + if len(rest) > 0 { + return nil, errors.New("ssh: garbage after DSA key") + } + + return &dsa.PrivateKey{ + PublicKey: dsa.PublicKey{ + Parameters: dsa.Parameters{ + P: k.P, + Q: k.Q, + G: k.G, + }, + Y: k.Pub, + }, + X: k.Priv, + }, nil +} + +func unencryptedOpenSSHKey(cipherName, kdfName, kdfOpts string, privKeyBlock []byte) ([]byte, error) { + if kdfName != "none" || cipherName != "none" { + return nil, &PassphraseMissingError{} + } + if kdfOpts != "" { + return nil, errors.New("ssh: invalid openssh private key") + } + return privKeyBlock, nil +} + +func passphraseProtectedOpenSSHKey(passphrase []byte) openSSHDecryptFunc { + return func(cipherName, kdfName, kdfOpts string, privKeyBlock []byte) ([]byte, error) { + if kdfName == "none" || cipherName == "none" { + return nil, errors.New("ssh: key is not password protected") + } + if kdfName != "bcrypt" { + return nil, fmt.Errorf("ssh: unknown KDF %q, only supports %q", kdfName, "bcrypt") + } + + var opts struct { + Salt string + Rounds uint32 + } + if err := Unmarshal([]byte(kdfOpts), &opts); err != nil { + return nil, err + } + + k, err := bcrypt_pbkdf.Key(passphrase, []byte(opts.Salt), int(opts.Rounds), 32+16) + if err != nil { + return nil, err + } + key, iv := k[:32], k[32:] + + c, err := aes.NewCipher(key) + if err != nil { + return nil, err + } + switch cipherName { + case "aes256-ctr": + ctr := cipher.NewCTR(c, iv) + ctr.XORKeyStream(privKeyBlock, privKeyBlock) + case "aes256-cbc": + if len(privKeyBlock)%c.BlockSize() != 0 { + return nil, fmt.Errorf("ssh: invalid encrypted private key length, not a multiple of the block size") + } + cbc := cipher.NewCBCDecrypter(c, iv) + cbc.CryptBlocks(privKeyBlock, privKeyBlock) + default: + return nil, fmt.Errorf("ssh: unknown cipher %q, only supports %q or %q", cipherName, "aes256-ctr", "aes256-cbc") + } + + return privKeyBlock, nil + } +} + +type openSSHDecryptFunc func(CipherName, KdfName, KdfOpts string, PrivKeyBlock []byte) ([]byte, error) + +// parseOpenSSHPrivateKey parses an OpenSSH private key, using the decrypt +// function to unwrap the encrypted portion. unencryptedOpenSSHKey can be used +// as the decrypt function to parse an unencrypted private key. See +// https://github.com/openssh/openssh-portable/blob/master/PROTOCOL.key. +func parseOpenSSHPrivateKey(key []byte, decrypt openSSHDecryptFunc) (crypto.PrivateKey, error) { + const magic = "openssh-key-v1\x00" + if len(key) < len(magic) || string(key[:len(magic)]) != magic { + return nil, errors.New("ssh: invalid openssh private key format") + } + remaining := key[len(magic):] + + var w struct { + CipherName string + KdfName string + KdfOpts string + NumKeys uint32 + PubKey []byte + PrivKeyBlock []byte + } + + if err := Unmarshal(remaining, &w); err != nil { + return nil, err + } + if w.NumKeys != 1 { + // We only support single key files, and so does OpenSSH. + // https://github.com/openssh/openssh-portable/blob/4103a3ec7/sshkey.c#L4171 + return nil, errors.New("ssh: multi-key files are not supported") + } + + privKeyBlock, err := decrypt(w.CipherName, w.KdfName, w.KdfOpts, w.PrivKeyBlock) + if err != nil { + if err, ok := err.(*PassphraseMissingError); ok { + pub, errPub := ParsePublicKey(w.PubKey) + if errPub != nil { + return nil, fmt.Errorf("ssh: failed to parse embedded public key: %v", errPub) + } + err.PublicKey = pub + } + return nil, err + } + + pk1 := struct { + Check1 uint32 + Check2 uint32 + Keytype string + Rest []byte `ssh:"rest"` + }{} + + if err := Unmarshal(privKeyBlock, &pk1); err != nil || pk1.Check1 != pk1.Check2 { + if w.CipherName != "none" { + return nil, x509.IncorrectPasswordError + } + return nil, errors.New("ssh: malformed OpenSSH key") + } + + switch pk1.Keytype { + case KeyAlgoRSA: + // https://github.com/openssh/openssh-portable/blob/master/sshkey.c#L2760-L2773 + key := struct { + N *big.Int + E *big.Int + D *big.Int + Iqmp *big.Int + P *big.Int + Q *big.Int + Comment string + Pad []byte `ssh:"rest"` + }{} + + if err := Unmarshal(pk1.Rest, &key); err != nil { + return nil, err + } + + if err := checkOpenSSHKeyPadding(key.Pad); err != nil { + return nil, err + } + + pk := &rsa.PrivateKey{ + PublicKey: rsa.PublicKey{ + N: key.N, + E: int(key.E.Int64()), + }, + D: key.D, + Primes: []*big.Int{key.P, key.Q}, + } + + if err := pk.Validate(); err != nil { + return nil, err + } + + pk.Precompute() + + return pk, nil + case KeyAlgoED25519: + key := struct { + Pub []byte + Priv []byte + Comment string + Pad []byte `ssh:"rest"` + }{} + + if err := Unmarshal(pk1.Rest, &key); err != nil { + return nil, err + } + + if len(key.Priv) != ed25519.PrivateKeySize { + return nil, errors.New("ssh: private key unexpected length") + } + + if err := checkOpenSSHKeyPadding(key.Pad); err != nil { + return nil, err + } + + pk := ed25519.PrivateKey(make([]byte, ed25519.PrivateKeySize)) + copy(pk, key.Priv) + return &pk, nil + case KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521: + key := struct { + Curve string + Pub []byte + D *big.Int + Comment string + Pad []byte `ssh:"rest"` + }{} + + if err := Unmarshal(pk1.Rest, &key); err != nil { + return nil, err + } + + if err := checkOpenSSHKeyPadding(key.Pad); err != nil { + return nil, err + } + + var curve elliptic.Curve + switch key.Curve { + case "nistp256": + curve = elliptic.P256() + case "nistp384": + curve = elliptic.P384() + case "nistp521": + curve = elliptic.P521() + default: + return nil, errors.New("ssh: unhandled elliptic curve: " + key.Curve) + } + + X, Y := elliptic.Unmarshal(curve, key.Pub) + if X == nil || Y == nil { + return nil, errors.New("ssh: failed to unmarshal public key") + } + + if key.D.Cmp(curve.Params().N) >= 0 { + return nil, errors.New("ssh: scalar is out of range") + } + + x, y := curve.ScalarBaseMult(key.D.Bytes()) + if x.Cmp(X) != 0 || y.Cmp(Y) != 0 { + return nil, errors.New("ssh: public key does not match private key") + } + + return &ecdsa.PrivateKey{ + PublicKey: ecdsa.PublicKey{ + Curve: curve, + X: X, + Y: Y, + }, + D: key.D, + }, nil + default: + return nil, errors.New("ssh: unhandled key type") + } +} + +func checkOpenSSHKeyPadding(pad []byte) error { + for i, b := range pad { + if int(b) != i+1 { + return errors.New("ssh: padding not as expected") + } + } + return nil +} + +// FingerprintLegacyMD5 returns the user presentation of the key's +// fingerprint as described by RFC 4716 section 4. +func FingerprintLegacyMD5(pubKey PublicKey) string { + md5sum := md5.Sum(pubKey.Marshal()) + hexarray := make([]string, len(md5sum)) + for i, c := range md5sum { + hexarray[i] = hex.EncodeToString([]byte{c}) + } + return strings.Join(hexarray, ":") +} + +// FingerprintSHA256 returns the user presentation of the key's +// fingerprint as unpadded base64 encoded sha256 hash. +// This format was introduced from OpenSSH 6.8. +// https://www.openssh.com/txt/release-6.8 +// https://tools.ietf.org/html/rfc4648#section-3.2 (unpadded base64 encoding) +func FingerprintSHA256(pubKey PublicKey) string { + sha256sum := sha256.Sum256(pubKey.Marshal()) + hash := base64.RawStdEncoding.EncodeToString(sha256sum[:]) + return "SHA256:" + hash +} diff --git a/vendor/golang.org/x/crypto/ssh/mac.go b/vendor/golang.org/x/crypto/ssh/mac.go new file mode 100644 index 00000000..c07a0628 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/mac.go @@ -0,0 +1,61 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +// Message authentication support + +import ( + "crypto/hmac" + "crypto/sha1" + "crypto/sha256" + "hash" +) + +type macMode struct { + keySize int + etm bool + new func(key []byte) hash.Hash +} + +// truncatingMAC wraps around a hash.Hash and truncates the output digest to +// a given size. +type truncatingMAC struct { + length int + hmac hash.Hash +} + +func (t truncatingMAC) Write(data []byte) (int, error) { + return t.hmac.Write(data) +} + +func (t truncatingMAC) Sum(in []byte) []byte { + out := t.hmac.Sum(in) + return out[:len(in)+t.length] +} + +func (t truncatingMAC) Reset() { + t.hmac.Reset() +} + +func (t truncatingMAC) Size() int { + return t.length +} + +func (t truncatingMAC) BlockSize() int { return t.hmac.BlockSize() } + +var macModes = map[string]*macMode{ + "hmac-sha2-256-etm@openssh.com": {32, true, func(key []byte) hash.Hash { + return hmac.New(sha256.New, key) + }}, + "hmac-sha2-256": {32, false, func(key []byte) hash.Hash { + return hmac.New(sha256.New, key) + }}, + "hmac-sha1": {20, false, func(key []byte) hash.Hash { + return hmac.New(sha1.New, key) + }}, + "hmac-sha1-96": {20, false, func(key []byte) hash.Hash { + return truncatingMAC{12, hmac.New(sha1.New, key)} + }}, +} diff --git a/vendor/golang.org/x/crypto/ssh/messages.go b/vendor/golang.org/x/crypto/ssh/messages.go new file mode 100644 index 00000000..ac41a416 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/messages.go @@ -0,0 +1,866 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "encoding/binary" + "errors" + "fmt" + "io" + "math/big" + "reflect" + "strconv" + "strings" +) + +// These are SSH message type numbers. They are scattered around several +// documents but many were taken from [SSH-PARAMETERS]. +const ( + msgIgnore = 2 + msgUnimplemented = 3 + msgDebug = 4 + msgNewKeys = 21 +) + +// SSH messages: +// +// These structures mirror the wire format of the corresponding SSH messages. +// They are marshaled using reflection with the marshal and unmarshal functions +// in this file. The only wrinkle is that a final member of type []byte with a +// ssh tag of "rest" receives the remainder of a packet when unmarshaling. + +// See RFC 4253, section 11.1. +const msgDisconnect = 1 + +// disconnectMsg is the message that signals a disconnect. It is also +// the error type returned from mux.Wait() +type disconnectMsg struct { + Reason uint32 `sshtype:"1"` + Message string + Language string +} + +func (d *disconnectMsg) Error() string { + return fmt.Sprintf("ssh: disconnect, reason %d: %s", d.Reason, d.Message) +} + +// See RFC 4253, section 7.1. +const msgKexInit = 20 + +type kexInitMsg struct { + Cookie [16]byte `sshtype:"20"` + KexAlgos []string + ServerHostKeyAlgos []string + CiphersClientServer []string + CiphersServerClient []string + MACsClientServer []string + MACsServerClient []string + CompressionClientServer []string + CompressionServerClient []string + LanguagesClientServer []string + LanguagesServerClient []string + FirstKexFollows bool + Reserved uint32 +} + +// See RFC 4253, section 8. + +// Diffie-Helman +const msgKexDHInit = 30 + +type kexDHInitMsg struct { + X *big.Int `sshtype:"30"` +} + +const msgKexECDHInit = 30 + +type kexECDHInitMsg struct { + ClientPubKey []byte `sshtype:"30"` +} + +const msgKexECDHReply = 31 + +type kexECDHReplyMsg struct { + HostKey []byte `sshtype:"31"` + EphemeralPubKey []byte + Signature []byte +} + +const msgKexDHReply = 31 + +type kexDHReplyMsg struct { + HostKey []byte `sshtype:"31"` + Y *big.Int + Signature []byte +} + +// See RFC 4419, section 5. +const msgKexDHGexGroup = 31 + +type kexDHGexGroupMsg struct { + P *big.Int `sshtype:"31"` + G *big.Int +} + +const msgKexDHGexInit = 32 + +type kexDHGexInitMsg struct { + X *big.Int `sshtype:"32"` +} + +const msgKexDHGexReply = 33 + +type kexDHGexReplyMsg struct { + HostKey []byte `sshtype:"33"` + Y *big.Int + Signature []byte +} + +const msgKexDHGexRequest = 34 + +type kexDHGexRequestMsg struct { + MinBits uint32 `sshtype:"34"` + PreferedBits uint32 + MaxBits uint32 +} + +// See RFC 4253, section 10. +const msgServiceRequest = 5 + +type serviceRequestMsg struct { + Service string `sshtype:"5"` +} + +// See RFC 4253, section 10. +const msgServiceAccept = 6 + +type serviceAcceptMsg struct { + Service string `sshtype:"6"` +} + +// See RFC 4252, section 5. +const msgUserAuthRequest = 50 + +type userAuthRequestMsg struct { + User string `sshtype:"50"` + Service string + Method string + Payload []byte `ssh:"rest"` +} + +// Used for debug printouts of packets. +type userAuthSuccessMsg struct { +} + +// See RFC 4252, section 5.1 +const msgUserAuthFailure = 51 + +type userAuthFailureMsg struct { + Methods []string `sshtype:"51"` + PartialSuccess bool +} + +// See RFC 4252, section 5.1 +const msgUserAuthSuccess = 52 + +// See RFC 4252, section 5.4 +const msgUserAuthBanner = 53 + +type userAuthBannerMsg struct { + Message string `sshtype:"53"` + // unused, but required to allow message parsing + Language string +} + +// See RFC 4256, section 3.2 +const msgUserAuthInfoRequest = 60 +const msgUserAuthInfoResponse = 61 + +type userAuthInfoRequestMsg struct { + User string `sshtype:"60"` + Instruction string + DeprecatedLanguage string + NumPrompts uint32 + Prompts []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.1. +const msgChannelOpen = 90 + +type channelOpenMsg struct { + ChanType string `sshtype:"90"` + PeersID uint32 + PeersWindow uint32 + MaxPacketSize uint32 + TypeSpecificData []byte `ssh:"rest"` +} + +const msgChannelExtendedData = 95 +const msgChannelData = 94 + +// Used for debug print outs of packets. +type channelDataMsg struct { + PeersID uint32 `sshtype:"94"` + Length uint32 + Rest []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.1. +const msgChannelOpenConfirm = 91 + +type channelOpenConfirmMsg struct { + PeersID uint32 `sshtype:"91"` + MyID uint32 + MyWindow uint32 + MaxPacketSize uint32 + TypeSpecificData []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.1. +const msgChannelOpenFailure = 92 + +type channelOpenFailureMsg struct { + PeersID uint32 `sshtype:"92"` + Reason RejectionReason + Message string + Language string +} + +const msgChannelRequest = 98 + +type channelRequestMsg struct { + PeersID uint32 `sshtype:"98"` + Request string + WantReply bool + RequestSpecificData []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.4. +const msgChannelSuccess = 99 + +type channelRequestSuccessMsg struct { + PeersID uint32 `sshtype:"99"` +} + +// See RFC 4254, section 5.4. +const msgChannelFailure = 100 + +type channelRequestFailureMsg struct { + PeersID uint32 `sshtype:"100"` +} + +// See RFC 4254, section 5.3 +const msgChannelClose = 97 + +type channelCloseMsg struct { + PeersID uint32 `sshtype:"97"` +} + +// See RFC 4254, section 5.3 +const msgChannelEOF = 96 + +type channelEOFMsg struct { + PeersID uint32 `sshtype:"96"` +} + +// See RFC 4254, section 4 +const msgGlobalRequest = 80 + +type globalRequestMsg struct { + Type string `sshtype:"80"` + WantReply bool + Data []byte `ssh:"rest"` +} + +// See RFC 4254, section 4 +const msgRequestSuccess = 81 + +type globalRequestSuccessMsg struct { + Data []byte `ssh:"rest" sshtype:"81"` +} + +// See RFC 4254, section 4 +const msgRequestFailure = 82 + +type globalRequestFailureMsg struct { + Data []byte `ssh:"rest" sshtype:"82"` +} + +// See RFC 4254, section 5.2 +const msgChannelWindowAdjust = 93 + +type windowAdjustMsg struct { + PeersID uint32 `sshtype:"93"` + AdditionalBytes uint32 +} + +// See RFC 4252, section 7 +const msgUserAuthPubKeyOk = 60 + +type userAuthPubKeyOkMsg struct { + Algo string `sshtype:"60"` + PubKey []byte +} + +// See RFC 4462, section 3 +const msgUserAuthGSSAPIResponse = 60 + +type userAuthGSSAPIResponse struct { + SupportMech []byte `sshtype:"60"` +} + +const msgUserAuthGSSAPIToken = 61 + +type userAuthGSSAPIToken struct { + Token []byte `sshtype:"61"` +} + +const msgUserAuthGSSAPIMIC = 66 + +type userAuthGSSAPIMIC struct { + MIC []byte `sshtype:"66"` +} + +// See RFC 4462, section 3.9 +const msgUserAuthGSSAPIErrTok = 64 + +type userAuthGSSAPIErrTok struct { + ErrorToken []byte `sshtype:"64"` +} + +// See RFC 4462, section 3.8 +const msgUserAuthGSSAPIError = 65 + +type userAuthGSSAPIError struct { + MajorStatus uint32 `sshtype:"65"` + MinorStatus uint32 + Message string + LanguageTag string +} + +// typeTags returns the possible type bytes for the given reflect.Type, which +// should be a struct. The possible values are separated by a '|' character. +func typeTags(structType reflect.Type) (tags []byte) { + tagStr := structType.Field(0).Tag.Get("sshtype") + + for _, tag := range strings.Split(tagStr, "|") { + i, err := strconv.Atoi(tag) + if err == nil { + tags = append(tags, byte(i)) + } + } + + return tags +} + +func fieldError(t reflect.Type, field int, problem string) error { + if problem != "" { + problem = ": " + problem + } + return fmt.Errorf("ssh: unmarshal error for field %s of type %s%s", t.Field(field).Name, t.Name(), problem) +} + +var errShortRead = errors.New("ssh: short read") + +// Unmarshal parses data in SSH wire format into a structure. The out +// argument should be a pointer to struct. If the first member of the +// struct has the "sshtype" tag set to a '|'-separated set of numbers +// in decimal, the packet must start with one of those numbers. In +// case of error, Unmarshal returns a ParseError or +// UnexpectedMessageError. +func Unmarshal(data []byte, out interface{}) error { + v := reflect.ValueOf(out).Elem() + structType := v.Type() + expectedTypes := typeTags(structType) + + var expectedType byte + if len(expectedTypes) > 0 { + expectedType = expectedTypes[0] + } + + if len(data) == 0 { + return parseError(expectedType) + } + + if len(expectedTypes) > 0 { + goodType := false + for _, e := range expectedTypes { + if e > 0 && data[0] == e { + goodType = true + break + } + } + if !goodType { + return fmt.Errorf("ssh: unexpected message type %d (expected one of %v)", data[0], expectedTypes) + } + data = data[1:] + } + + var ok bool + for i := 0; i < v.NumField(); i++ { + field := v.Field(i) + t := field.Type() + switch t.Kind() { + case reflect.Bool: + if len(data) < 1 { + return errShortRead + } + field.SetBool(data[0] != 0) + data = data[1:] + case reflect.Array: + if t.Elem().Kind() != reflect.Uint8 { + return fieldError(structType, i, "array of unsupported type") + } + if len(data) < t.Len() { + return errShortRead + } + for j, n := 0, t.Len(); j < n; j++ { + field.Index(j).Set(reflect.ValueOf(data[j])) + } + data = data[t.Len():] + case reflect.Uint64: + var u64 uint64 + if u64, data, ok = parseUint64(data); !ok { + return errShortRead + } + field.SetUint(u64) + case reflect.Uint32: + var u32 uint32 + if u32, data, ok = parseUint32(data); !ok { + return errShortRead + } + field.SetUint(uint64(u32)) + case reflect.Uint8: + if len(data) < 1 { + return errShortRead + } + field.SetUint(uint64(data[0])) + data = data[1:] + case reflect.String: + var s []byte + if s, data, ok = parseString(data); !ok { + return fieldError(structType, i, "") + } + field.SetString(string(s)) + case reflect.Slice: + switch t.Elem().Kind() { + case reflect.Uint8: + if structType.Field(i).Tag.Get("ssh") == "rest" { + field.Set(reflect.ValueOf(data)) + data = nil + } else { + var s []byte + if s, data, ok = parseString(data); !ok { + return errShortRead + } + field.Set(reflect.ValueOf(s)) + } + case reflect.String: + var nl []string + if nl, data, ok = parseNameList(data); !ok { + return errShortRead + } + field.Set(reflect.ValueOf(nl)) + default: + return fieldError(structType, i, "slice of unsupported type") + } + case reflect.Ptr: + if t == bigIntType { + var n *big.Int + if n, data, ok = parseInt(data); !ok { + return errShortRead + } + field.Set(reflect.ValueOf(n)) + } else { + return fieldError(structType, i, "pointer to unsupported type") + } + default: + return fieldError(structType, i, fmt.Sprintf("unsupported type: %v", t)) + } + } + + if len(data) != 0 { + return parseError(expectedType) + } + + return nil +} + +// Marshal serializes the message in msg to SSH wire format. The msg +// argument should be a struct or pointer to struct. If the first +// member has the "sshtype" tag set to a number in decimal, that +// number is prepended to the result. If the last of member has the +// "ssh" tag set to "rest", its contents are appended to the output. +func Marshal(msg interface{}) []byte { + out := make([]byte, 0, 64) + return marshalStruct(out, msg) +} + +func marshalStruct(out []byte, msg interface{}) []byte { + v := reflect.Indirect(reflect.ValueOf(msg)) + msgTypes := typeTags(v.Type()) + if len(msgTypes) > 0 { + out = append(out, msgTypes[0]) + } + + for i, n := 0, v.NumField(); i < n; i++ { + field := v.Field(i) + switch t := field.Type(); t.Kind() { + case reflect.Bool: + var v uint8 + if field.Bool() { + v = 1 + } + out = append(out, v) + case reflect.Array: + if t.Elem().Kind() != reflect.Uint8 { + panic(fmt.Sprintf("array of non-uint8 in field %d: %T", i, field.Interface())) + } + for j, l := 0, t.Len(); j < l; j++ { + out = append(out, uint8(field.Index(j).Uint())) + } + case reflect.Uint32: + out = appendU32(out, uint32(field.Uint())) + case reflect.Uint64: + out = appendU64(out, uint64(field.Uint())) + case reflect.Uint8: + out = append(out, uint8(field.Uint())) + case reflect.String: + s := field.String() + out = appendInt(out, len(s)) + out = append(out, s...) + case reflect.Slice: + switch t.Elem().Kind() { + case reflect.Uint8: + if v.Type().Field(i).Tag.Get("ssh") != "rest" { + out = appendInt(out, field.Len()) + } + out = append(out, field.Bytes()...) + case reflect.String: + offset := len(out) + out = appendU32(out, 0) + if n := field.Len(); n > 0 { + for j := 0; j < n; j++ { + f := field.Index(j) + if j != 0 { + out = append(out, ',') + } + out = append(out, f.String()...) + } + // overwrite length value + binary.BigEndian.PutUint32(out[offset:], uint32(len(out)-offset-4)) + } + default: + panic(fmt.Sprintf("slice of unknown type in field %d: %T", i, field.Interface())) + } + case reflect.Ptr: + if t == bigIntType { + var n *big.Int + nValue := reflect.ValueOf(&n) + nValue.Elem().Set(field) + needed := intLength(n) + oldLength := len(out) + + if cap(out)-len(out) < needed { + newOut := make([]byte, len(out), 2*(len(out)+needed)) + copy(newOut, out) + out = newOut + } + out = out[:oldLength+needed] + marshalInt(out[oldLength:], n) + } else { + panic(fmt.Sprintf("pointer to unknown type in field %d: %T", i, field.Interface())) + } + } + } + + return out +} + +var bigOne = big.NewInt(1) + +func parseString(in []byte) (out, rest []byte, ok bool) { + if len(in) < 4 { + return + } + length := binary.BigEndian.Uint32(in) + in = in[4:] + if uint32(len(in)) < length { + return + } + out = in[:length] + rest = in[length:] + ok = true + return +} + +var ( + comma = []byte{','} + emptyNameList = []string{} +) + +func parseNameList(in []byte) (out []string, rest []byte, ok bool) { + contents, rest, ok := parseString(in) + if !ok { + return + } + if len(contents) == 0 { + out = emptyNameList + return + } + parts := bytes.Split(contents, comma) + out = make([]string, len(parts)) + for i, part := range parts { + out[i] = string(part) + } + return +} + +func parseInt(in []byte) (out *big.Int, rest []byte, ok bool) { + contents, rest, ok := parseString(in) + if !ok { + return + } + out = new(big.Int) + + if len(contents) > 0 && contents[0]&0x80 == 0x80 { + // This is a negative number + notBytes := make([]byte, len(contents)) + for i := range notBytes { + notBytes[i] = ^contents[i] + } + out.SetBytes(notBytes) + out.Add(out, bigOne) + out.Neg(out) + } else { + // Positive number + out.SetBytes(contents) + } + ok = true + return +} + +func parseUint32(in []byte) (uint32, []byte, bool) { + if len(in) < 4 { + return 0, nil, false + } + return binary.BigEndian.Uint32(in), in[4:], true +} + +func parseUint64(in []byte) (uint64, []byte, bool) { + if len(in) < 8 { + return 0, nil, false + } + return binary.BigEndian.Uint64(in), in[8:], true +} + +func intLength(n *big.Int) int { + length := 4 /* length bytes */ + if n.Sign() < 0 { + nMinus1 := new(big.Int).Neg(n) + nMinus1.Sub(nMinus1, bigOne) + bitLen := nMinus1.BitLen() + if bitLen%8 == 0 { + // The number will need 0xff padding + length++ + } + length += (bitLen + 7) / 8 + } else if n.Sign() == 0 { + // A zero is the zero length string + } else { + bitLen := n.BitLen() + if bitLen%8 == 0 { + // The number will need 0x00 padding + length++ + } + length += (bitLen + 7) / 8 + } + + return length +} + +func marshalUint32(to []byte, n uint32) []byte { + binary.BigEndian.PutUint32(to, n) + return to[4:] +} + +func marshalUint64(to []byte, n uint64) []byte { + binary.BigEndian.PutUint64(to, n) + return to[8:] +} + +func marshalInt(to []byte, n *big.Int) []byte { + lengthBytes := to + to = to[4:] + length := 0 + + if n.Sign() < 0 { + // A negative number has to be converted to two's-complement + // form. So we'll subtract 1 and invert. If the + // most-significant-bit isn't set then we'll need to pad the + // beginning with 0xff in order to keep the number negative. + nMinus1 := new(big.Int).Neg(n) + nMinus1.Sub(nMinus1, bigOne) + bytes := nMinus1.Bytes() + for i := range bytes { + bytes[i] ^= 0xff + } + if len(bytes) == 0 || bytes[0]&0x80 == 0 { + to[0] = 0xff + to = to[1:] + length++ + } + nBytes := copy(to, bytes) + to = to[nBytes:] + length += nBytes + } else if n.Sign() == 0 { + // A zero is the zero length string + } else { + bytes := n.Bytes() + if len(bytes) > 0 && bytes[0]&0x80 != 0 { + // We'll have to pad this with a 0x00 in order to + // stop it looking like a negative number. + to[0] = 0 + to = to[1:] + length++ + } + nBytes := copy(to, bytes) + to = to[nBytes:] + length += nBytes + } + + lengthBytes[0] = byte(length >> 24) + lengthBytes[1] = byte(length >> 16) + lengthBytes[2] = byte(length >> 8) + lengthBytes[3] = byte(length) + return to +} + +func writeInt(w io.Writer, n *big.Int) { + length := intLength(n) + buf := make([]byte, length) + marshalInt(buf, n) + w.Write(buf) +} + +func writeString(w io.Writer, s []byte) { + var lengthBytes [4]byte + lengthBytes[0] = byte(len(s) >> 24) + lengthBytes[1] = byte(len(s) >> 16) + lengthBytes[2] = byte(len(s) >> 8) + lengthBytes[3] = byte(len(s)) + w.Write(lengthBytes[:]) + w.Write(s) +} + +func stringLength(n int) int { + return 4 + n +} + +func marshalString(to []byte, s []byte) []byte { + to[0] = byte(len(s) >> 24) + to[1] = byte(len(s) >> 16) + to[2] = byte(len(s) >> 8) + to[3] = byte(len(s)) + to = to[4:] + copy(to, s) + return to[len(s):] +} + +var bigIntType = reflect.TypeOf((*big.Int)(nil)) + +// Decode a packet into its corresponding message. +func decode(packet []byte) (interface{}, error) { + var msg interface{} + switch packet[0] { + case msgDisconnect: + msg = new(disconnectMsg) + case msgServiceRequest: + msg = new(serviceRequestMsg) + case msgServiceAccept: + msg = new(serviceAcceptMsg) + case msgKexInit: + msg = new(kexInitMsg) + case msgKexDHInit: + msg = new(kexDHInitMsg) + case msgKexDHReply: + msg = new(kexDHReplyMsg) + case msgUserAuthRequest: + msg = new(userAuthRequestMsg) + case msgUserAuthSuccess: + return new(userAuthSuccessMsg), nil + case msgUserAuthFailure: + msg = new(userAuthFailureMsg) + case msgUserAuthPubKeyOk: + msg = new(userAuthPubKeyOkMsg) + case msgGlobalRequest: + msg = new(globalRequestMsg) + case msgRequestSuccess: + msg = new(globalRequestSuccessMsg) + case msgRequestFailure: + msg = new(globalRequestFailureMsg) + case msgChannelOpen: + msg = new(channelOpenMsg) + case msgChannelData: + msg = new(channelDataMsg) + case msgChannelOpenConfirm: + msg = new(channelOpenConfirmMsg) + case msgChannelOpenFailure: + msg = new(channelOpenFailureMsg) + case msgChannelWindowAdjust: + msg = new(windowAdjustMsg) + case msgChannelEOF: + msg = new(channelEOFMsg) + case msgChannelClose: + msg = new(channelCloseMsg) + case msgChannelRequest: + msg = new(channelRequestMsg) + case msgChannelSuccess: + msg = new(channelRequestSuccessMsg) + case msgChannelFailure: + msg = new(channelRequestFailureMsg) + case msgUserAuthGSSAPIToken: + msg = new(userAuthGSSAPIToken) + case msgUserAuthGSSAPIMIC: + msg = new(userAuthGSSAPIMIC) + case msgUserAuthGSSAPIErrTok: + msg = new(userAuthGSSAPIErrTok) + case msgUserAuthGSSAPIError: + msg = new(userAuthGSSAPIError) + default: + return nil, unexpectedMessageError(0, packet[0]) + } + if err := Unmarshal(packet, msg); err != nil { + return nil, err + } + return msg, nil +} + +var packetTypeNames = map[byte]string{ + msgDisconnect: "disconnectMsg", + msgServiceRequest: "serviceRequestMsg", + msgServiceAccept: "serviceAcceptMsg", + msgKexInit: "kexInitMsg", + msgKexDHInit: "kexDHInitMsg", + msgKexDHReply: "kexDHReplyMsg", + msgUserAuthRequest: "userAuthRequestMsg", + msgUserAuthSuccess: "userAuthSuccessMsg", + msgUserAuthFailure: "userAuthFailureMsg", + msgUserAuthPubKeyOk: "userAuthPubKeyOkMsg", + msgGlobalRequest: "globalRequestMsg", + msgRequestSuccess: "globalRequestSuccessMsg", + msgRequestFailure: "globalRequestFailureMsg", + msgChannelOpen: "channelOpenMsg", + msgChannelData: "channelDataMsg", + msgChannelOpenConfirm: "channelOpenConfirmMsg", + msgChannelOpenFailure: "channelOpenFailureMsg", + msgChannelWindowAdjust: "windowAdjustMsg", + msgChannelEOF: "channelEOFMsg", + msgChannelClose: "channelCloseMsg", + msgChannelRequest: "channelRequestMsg", + msgChannelSuccess: "channelRequestSuccessMsg", + msgChannelFailure: "channelRequestFailureMsg", +} diff --git a/vendor/golang.org/x/crypto/ssh/mux.go b/vendor/golang.org/x/crypto/ssh/mux.go new file mode 100644 index 00000000..9654c018 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/mux.go @@ -0,0 +1,351 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "encoding/binary" + "fmt" + "io" + "log" + "sync" + "sync/atomic" +) + +// debugMux, if set, causes messages in the connection protocol to be +// logged. +const debugMux = false + +// chanList is a thread safe channel list. +type chanList struct { + // protects concurrent access to chans + sync.Mutex + + // chans are indexed by the local id of the channel, which the + // other side should send in the PeersId field. + chans []*channel + + // This is a debugging aid: it offsets all IDs by this + // amount. This helps distinguish otherwise identical + // server/client muxes + offset uint32 +} + +// Assigns a channel ID to the given channel. +func (c *chanList) add(ch *channel) uint32 { + c.Lock() + defer c.Unlock() + for i := range c.chans { + if c.chans[i] == nil { + c.chans[i] = ch + return uint32(i) + c.offset + } + } + c.chans = append(c.chans, ch) + return uint32(len(c.chans)-1) + c.offset +} + +// getChan returns the channel for the given ID. +func (c *chanList) getChan(id uint32) *channel { + id -= c.offset + + c.Lock() + defer c.Unlock() + if id < uint32(len(c.chans)) { + return c.chans[id] + } + return nil +} + +func (c *chanList) remove(id uint32) { + id -= c.offset + c.Lock() + if id < uint32(len(c.chans)) { + c.chans[id] = nil + } + c.Unlock() +} + +// dropAll forgets all channels it knows, returning them in a slice. +func (c *chanList) dropAll() []*channel { + c.Lock() + defer c.Unlock() + var r []*channel + + for _, ch := range c.chans { + if ch == nil { + continue + } + r = append(r, ch) + } + c.chans = nil + return r +} + +// mux represents the state for the SSH connection protocol, which +// multiplexes many channels onto a single packet transport. +type mux struct { + conn packetConn + chanList chanList + + incomingChannels chan NewChannel + + globalSentMu sync.Mutex + globalResponses chan interface{} + incomingRequests chan *Request + + errCond *sync.Cond + err error +} + +// When debugging, each new chanList instantiation has a different +// offset. +var globalOff uint32 + +func (m *mux) Wait() error { + m.errCond.L.Lock() + defer m.errCond.L.Unlock() + for m.err == nil { + m.errCond.Wait() + } + return m.err +} + +// newMux returns a mux that runs over the given connection. +func newMux(p packetConn) *mux { + m := &mux{ + conn: p, + incomingChannels: make(chan NewChannel, chanSize), + globalResponses: make(chan interface{}, 1), + incomingRequests: make(chan *Request, chanSize), + errCond: newCond(), + } + if debugMux { + m.chanList.offset = atomic.AddUint32(&globalOff, 1) + } + + go m.loop() + return m +} + +func (m *mux) sendMessage(msg interface{}) error { + p := Marshal(msg) + if debugMux { + log.Printf("send global(%d): %#v", m.chanList.offset, msg) + } + return m.conn.writePacket(p) +} + +func (m *mux) SendRequest(name string, wantReply bool, payload []byte) (bool, []byte, error) { + if wantReply { + m.globalSentMu.Lock() + defer m.globalSentMu.Unlock() + } + + if err := m.sendMessage(globalRequestMsg{ + Type: name, + WantReply: wantReply, + Data: payload, + }); err != nil { + return false, nil, err + } + + if !wantReply { + return false, nil, nil + } + + msg, ok := <-m.globalResponses + if !ok { + return false, nil, io.EOF + } + switch msg := msg.(type) { + case *globalRequestFailureMsg: + return false, msg.Data, nil + case *globalRequestSuccessMsg: + return true, msg.Data, nil + default: + return false, nil, fmt.Errorf("ssh: unexpected response to request: %#v", msg) + } +} + +// ackRequest must be called after processing a global request that +// has WantReply set. +func (m *mux) ackRequest(ok bool, data []byte) error { + if ok { + return m.sendMessage(globalRequestSuccessMsg{Data: data}) + } + return m.sendMessage(globalRequestFailureMsg{Data: data}) +} + +func (m *mux) Close() error { + return m.conn.Close() +} + +// loop runs the connection machine. It will process packets until an +// error is encountered. To synchronize on loop exit, use mux.Wait. +func (m *mux) loop() { + var err error + for err == nil { + err = m.onePacket() + } + + for _, ch := range m.chanList.dropAll() { + ch.close() + } + + close(m.incomingChannels) + close(m.incomingRequests) + close(m.globalResponses) + + m.conn.Close() + + m.errCond.L.Lock() + m.err = err + m.errCond.Broadcast() + m.errCond.L.Unlock() + + if debugMux { + log.Println("loop exit", err) + } +} + +// onePacket reads and processes one packet. +func (m *mux) onePacket() error { + packet, err := m.conn.readPacket() + if err != nil { + return err + } + + if debugMux { + if packet[0] == msgChannelData || packet[0] == msgChannelExtendedData { + log.Printf("decoding(%d): data packet - %d bytes", m.chanList.offset, len(packet)) + } else { + p, _ := decode(packet) + log.Printf("decoding(%d): %d %#v - %d bytes", m.chanList.offset, packet[0], p, len(packet)) + } + } + + switch packet[0] { + case msgChannelOpen: + return m.handleChannelOpen(packet) + case msgGlobalRequest, msgRequestSuccess, msgRequestFailure: + return m.handleGlobalPacket(packet) + } + + // assume a channel packet. + if len(packet) < 5 { + return parseError(packet[0]) + } + id := binary.BigEndian.Uint32(packet[1:]) + ch := m.chanList.getChan(id) + if ch == nil { + return m.handleUnknownChannelPacket(id, packet) + } + + return ch.handlePacket(packet) +} + +func (m *mux) handleGlobalPacket(packet []byte) error { + msg, err := decode(packet) + if err != nil { + return err + } + + switch msg := msg.(type) { + case *globalRequestMsg: + m.incomingRequests <- &Request{ + Type: msg.Type, + WantReply: msg.WantReply, + Payload: msg.Data, + mux: m, + } + case *globalRequestSuccessMsg, *globalRequestFailureMsg: + m.globalResponses <- msg + default: + panic(fmt.Sprintf("not a global message %#v", msg)) + } + + return nil +} + +// handleChannelOpen schedules a channel to be Accept()ed. +func (m *mux) handleChannelOpen(packet []byte) error { + var msg channelOpenMsg + if err := Unmarshal(packet, &msg); err != nil { + return err + } + + if msg.MaxPacketSize < minPacketLength || msg.MaxPacketSize > 1<<31 { + failMsg := channelOpenFailureMsg{ + PeersID: msg.PeersID, + Reason: ConnectionFailed, + Message: "invalid request", + Language: "en_US.UTF-8", + } + return m.sendMessage(failMsg) + } + + c := m.newChannel(msg.ChanType, channelInbound, msg.TypeSpecificData) + c.remoteId = msg.PeersID + c.maxRemotePayload = msg.MaxPacketSize + c.remoteWin.add(msg.PeersWindow) + m.incomingChannels <- c + return nil +} + +func (m *mux) OpenChannel(chanType string, extra []byte) (Channel, <-chan *Request, error) { + ch, err := m.openChannel(chanType, extra) + if err != nil { + return nil, nil, err + } + + return ch, ch.incomingRequests, nil +} + +func (m *mux) openChannel(chanType string, extra []byte) (*channel, error) { + ch := m.newChannel(chanType, channelOutbound, extra) + + ch.maxIncomingPayload = channelMaxPacket + + open := channelOpenMsg{ + ChanType: chanType, + PeersWindow: ch.myWindow, + MaxPacketSize: ch.maxIncomingPayload, + TypeSpecificData: extra, + PeersID: ch.localId, + } + if err := m.sendMessage(open); err != nil { + return nil, err + } + + switch msg := (<-ch.msg).(type) { + case *channelOpenConfirmMsg: + return ch, nil + case *channelOpenFailureMsg: + return nil, &OpenChannelError{msg.Reason, msg.Message} + default: + return nil, fmt.Errorf("ssh: unexpected packet in response to channel open: %T", msg) + } +} + +func (m *mux) handleUnknownChannelPacket(id uint32, packet []byte) error { + msg, err := decode(packet) + if err != nil { + return err + } + + switch msg := msg.(type) { + // RFC 4254 section 5.4 says unrecognized channel requests should + // receive a failure response. + case *channelRequestMsg: + if msg.WantReply { + return m.sendMessage(channelRequestFailureMsg{ + PeersID: msg.PeersID, + }) + } + return nil + default: + return fmt.Errorf("ssh: invalid channel %d", id) + } +} diff --git a/vendor/golang.org/x/crypto/ssh/server.go b/vendor/golang.org/x/crypto/ssh/server.go new file mode 100644 index 00000000..7d42a8c8 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/server.go @@ -0,0 +1,716 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "errors" + "fmt" + "io" + "net" + "strings" +) + +// The Permissions type holds fine-grained permissions that are +// specific to a user or a specific authentication method for a user. +// The Permissions value for a successful authentication attempt is +// available in ServerConn, so it can be used to pass information from +// the user-authentication phase to the application layer. +type Permissions struct { + // CriticalOptions indicate restrictions to the default + // permissions, and are typically used in conjunction with + // user certificates. The standard for SSH certificates + // defines "force-command" (only allow the given command to + // execute) and "source-address" (only allow connections from + // the given address). The SSH package currently only enforces + // the "source-address" critical option. It is up to server + // implementations to enforce other critical options, such as + // "force-command", by checking them after the SSH handshake + // is successful. In general, SSH servers should reject + // connections that specify critical options that are unknown + // or not supported. + CriticalOptions map[string]string + + // Extensions are extra functionality that the server may + // offer on authenticated connections. Lack of support for an + // extension does not preclude authenticating a user. Common + // extensions are "permit-agent-forwarding", + // "permit-X11-forwarding". The Go SSH library currently does + // not act on any extension, and it is up to server + // implementations to honor them. Extensions can be used to + // pass data from the authentication callbacks to the server + // application layer. + Extensions map[string]string +} + +type GSSAPIWithMICConfig struct { + // AllowLogin, must be set, is called when gssapi-with-mic + // authentication is selected (RFC 4462 section 3). The srcName is from the + // results of the GSS-API authentication. The format is username@DOMAIN. + // GSSAPI just guarantees to the server who the user is, but not if they can log in, and with what permissions. + // This callback is called after the user identity is established with GSSAPI to decide if the user can login with + // which permissions. If the user is allowed to login, it should return a nil error. + AllowLogin func(conn ConnMetadata, srcName string) (*Permissions, error) + + // Server must be set. It's the implementation + // of the GSSAPIServer interface. See GSSAPIServer interface for details. + Server GSSAPIServer +} + +// ServerConfig holds server specific configuration data. +type ServerConfig struct { + // Config contains configuration shared between client and server. + Config + + hostKeys []Signer + + // NoClientAuth is true if clients are allowed to connect without + // authenticating. + NoClientAuth bool + + // MaxAuthTries specifies the maximum number of authentication attempts + // permitted per connection. If set to a negative number, the number of + // attempts are unlimited. If set to zero, the number of attempts are limited + // to 6. + MaxAuthTries int + + // PasswordCallback, if non-nil, is called when a user + // attempts to authenticate using a password. + PasswordCallback func(conn ConnMetadata, password []byte) (*Permissions, error) + + // PublicKeyCallback, if non-nil, is called when a client + // offers a public key for authentication. It must return a nil error + // if the given public key can be used to authenticate the + // given user. For example, see CertChecker.Authenticate. A + // call to this function does not guarantee that the key + // offered is in fact used to authenticate. To record any data + // depending on the public key, store it inside a + // Permissions.Extensions entry. + PublicKeyCallback func(conn ConnMetadata, key PublicKey) (*Permissions, error) + + // KeyboardInteractiveCallback, if non-nil, is called when + // keyboard-interactive authentication is selected (RFC + // 4256). The client object's Challenge function should be + // used to query the user. The callback may offer multiple + // Challenge rounds. To avoid information leaks, the client + // should be presented a challenge even if the user is + // unknown. + KeyboardInteractiveCallback func(conn ConnMetadata, client KeyboardInteractiveChallenge) (*Permissions, error) + + // AuthLogCallback, if non-nil, is called to log all authentication + // attempts. + AuthLogCallback func(conn ConnMetadata, method string, err error) + + // ServerVersion is the version identification string to announce in + // the public handshake. + // If empty, a reasonable default is used. + // Note that RFC 4253 section 4.2 requires that this string start with + // "SSH-2.0-". + ServerVersion string + + // BannerCallback, if present, is called and the return string is sent to + // the client after key exchange completed but before authentication. + BannerCallback func(conn ConnMetadata) string + + // GSSAPIWithMICConfig includes gssapi server and callback, which if both non-nil, is used + // when gssapi-with-mic authentication is selected (RFC 4462 section 3). + GSSAPIWithMICConfig *GSSAPIWithMICConfig +} + +// AddHostKey adds a private key as a host key. If an existing host +// key exists with the same algorithm, it is overwritten. Each server +// config must have at least one host key. +func (s *ServerConfig) AddHostKey(key Signer) { + for i, k := range s.hostKeys { + if k.PublicKey().Type() == key.PublicKey().Type() { + s.hostKeys[i] = key + return + } + } + + s.hostKeys = append(s.hostKeys, key) +} + +// cachedPubKey contains the results of querying whether a public key is +// acceptable for a user. +type cachedPubKey struct { + user string + pubKeyData []byte + result error + perms *Permissions +} + +const maxCachedPubKeys = 16 + +// pubKeyCache caches tests for public keys. Since SSH clients +// will query whether a public key is acceptable before attempting to +// authenticate with it, we end up with duplicate queries for public +// key validity. The cache only applies to a single ServerConn. +type pubKeyCache struct { + keys []cachedPubKey +} + +// get returns the result for a given user/algo/key tuple. +func (c *pubKeyCache) get(user string, pubKeyData []byte) (cachedPubKey, bool) { + for _, k := range c.keys { + if k.user == user && bytes.Equal(k.pubKeyData, pubKeyData) { + return k, true + } + } + return cachedPubKey{}, false +} + +// add adds the given tuple to the cache. +func (c *pubKeyCache) add(candidate cachedPubKey) { + if len(c.keys) < maxCachedPubKeys { + c.keys = append(c.keys, candidate) + } +} + +// ServerConn is an authenticated SSH connection, as seen from the +// server +type ServerConn struct { + Conn + + // If the succeeding authentication callback returned a + // non-nil Permissions pointer, it is stored here. + Permissions *Permissions +} + +// NewServerConn starts a new SSH server with c as the underlying +// transport. It starts with a handshake and, if the handshake is +// unsuccessful, it closes the connection and returns an error. The +// Request and NewChannel channels must be serviced, or the connection +// will hang. +// +// The returned error may be of type *ServerAuthError for +// authentication errors. +func NewServerConn(c net.Conn, config *ServerConfig) (*ServerConn, <-chan NewChannel, <-chan *Request, error) { + fullConf := *config + fullConf.SetDefaults() + if fullConf.MaxAuthTries == 0 { + fullConf.MaxAuthTries = 6 + } + // Check if the config contains any unsupported key exchanges + for _, kex := range fullConf.KeyExchanges { + if _, ok := serverForbiddenKexAlgos[kex]; ok { + return nil, nil, nil, fmt.Errorf("ssh: unsupported key exchange %s for server", kex) + } + } + + s := &connection{ + sshConn: sshConn{conn: c}, + } + perms, err := s.serverHandshake(&fullConf) + if err != nil { + c.Close() + return nil, nil, nil, err + } + return &ServerConn{s, perms}, s.mux.incomingChannels, s.mux.incomingRequests, nil +} + +// signAndMarshal signs the data with the appropriate algorithm, +// and serializes the result in SSH wire format. +func signAndMarshal(k Signer, rand io.Reader, data []byte) ([]byte, error) { + sig, err := k.Sign(rand, data) + if err != nil { + return nil, err + } + + return Marshal(sig), nil +} + +// handshake performs key exchange and user authentication. +func (s *connection) serverHandshake(config *ServerConfig) (*Permissions, error) { + if len(config.hostKeys) == 0 { + return nil, errors.New("ssh: server has no host keys") + } + + if !config.NoClientAuth && config.PasswordCallback == nil && config.PublicKeyCallback == nil && + config.KeyboardInteractiveCallback == nil && (config.GSSAPIWithMICConfig == nil || + config.GSSAPIWithMICConfig.AllowLogin == nil || config.GSSAPIWithMICConfig.Server == nil) { + return nil, errors.New("ssh: no authentication methods configured but NoClientAuth is also false") + } + + if config.ServerVersion != "" { + s.serverVersion = []byte(config.ServerVersion) + } else { + s.serverVersion = []byte(packageVersion) + } + var err error + s.clientVersion, err = exchangeVersions(s.sshConn.conn, s.serverVersion) + if err != nil { + return nil, err + } + + tr := newTransport(s.sshConn.conn, config.Rand, false /* not client */) + s.transport = newServerTransport(tr, s.clientVersion, s.serverVersion, config) + + if err := s.transport.waitSession(); err != nil { + return nil, err + } + + // We just did the key change, so the session ID is established. + s.sessionID = s.transport.getSessionID() + + var packet []byte + if packet, err = s.transport.readPacket(); err != nil { + return nil, err + } + + var serviceRequest serviceRequestMsg + if err = Unmarshal(packet, &serviceRequest); err != nil { + return nil, err + } + if serviceRequest.Service != serviceUserAuth { + return nil, errors.New("ssh: requested service '" + serviceRequest.Service + "' before authenticating") + } + serviceAccept := serviceAcceptMsg{ + Service: serviceUserAuth, + } + if err := s.transport.writePacket(Marshal(&serviceAccept)); err != nil { + return nil, err + } + + perms, err := s.serverAuthenticate(config) + if err != nil { + return nil, err + } + s.mux = newMux(s.transport) + return perms, err +} + +func isAcceptableAlgo(algo string) bool { + switch algo { + case KeyAlgoRSA, KeyAlgoDSA, KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521, KeyAlgoSKECDSA256, KeyAlgoED25519, KeyAlgoSKED25519, + CertAlgoRSAv01, CertAlgoDSAv01, CertAlgoECDSA256v01, CertAlgoECDSA384v01, CertAlgoECDSA521v01, CertAlgoSKECDSA256v01, CertAlgoED25519v01, CertAlgoSKED25519v01: + return true + } + return false +} + +func checkSourceAddress(addr net.Addr, sourceAddrs string) error { + if addr == nil { + return errors.New("ssh: no address known for client, but source-address match required") + } + + tcpAddr, ok := addr.(*net.TCPAddr) + if !ok { + return fmt.Errorf("ssh: remote address %v is not an TCP address when checking source-address match", addr) + } + + for _, sourceAddr := range strings.Split(sourceAddrs, ",") { + if allowedIP := net.ParseIP(sourceAddr); allowedIP != nil { + if allowedIP.Equal(tcpAddr.IP) { + return nil + } + } else { + _, ipNet, err := net.ParseCIDR(sourceAddr) + if err != nil { + return fmt.Errorf("ssh: error parsing source-address restriction %q: %v", sourceAddr, err) + } + + if ipNet.Contains(tcpAddr.IP) { + return nil + } + } + } + + return fmt.Errorf("ssh: remote address %v is not allowed because of source-address restriction", addr) +} + +func gssExchangeToken(gssapiConfig *GSSAPIWithMICConfig, firstToken []byte, s *connection, + sessionID []byte, userAuthReq userAuthRequestMsg) (authErr error, perms *Permissions, err error) { + gssAPIServer := gssapiConfig.Server + defer gssAPIServer.DeleteSecContext() + var srcName string + for { + var ( + outToken []byte + needContinue bool + ) + outToken, srcName, needContinue, err = gssAPIServer.AcceptSecContext(firstToken) + if err != nil { + return err, nil, nil + } + if len(outToken) != 0 { + if err := s.transport.writePacket(Marshal(&userAuthGSSAPIToken{ + Token: outToken, + })); err != nil { + return nil, nil, err + } + } + if !needContinue { + break + } + packet, err := s.transport.readPacket() + if err != nil { + return nil, nil, err + } + userAuthGSSAPITokenReq := &userAuthGSSAPIToken{} + if err := Unmarshal(packet, userAuthGSSAPITokenReq); err != nil { + return nil, nil, err + } + } + packet, err := s.transport.readPacket() + if err != nil { + return nil, nil, err + } + userAuthGSSAPIMICReq := &userAuthGSSAPIMIC{} + if err := Unmarshal(packet, userAuthGSSAPIMICReq); err != nil { + return nil, nil, err + } + mic := buildMIC(string(sessionID), userAuthReq.User, userAuthReq.Service, userAuthReq.Method) + if err := gssAPIServer.VerifyMIC(mic, userAuthGSSAPIMICReq.MIC); err != nil { + return err, nil, nil + } + perms, authErr = gssapiConfig.AllowLogin(s, srcName) + return authErr, perms, nil +} + +// ServerAuthError represents server authentication errors and is +// sometimes returned by NewServerConn. It appends any authentication +// errors that may occur, and is returned if all of the authentication +// methods provided by the user failed to authenticate. +type ServerAuthError struct { + // Errors contains authentication errors returned by the authentication + // callback methods. The first entry is typically ErrNoAuth. + Errors []error +} + +func (l ServerAuthError) Error() string { + var errs []string + for _, err := range l.Errors { + errs = append(errs, err.Error()) + } + return "[" + strings.Join(errs, ", ") + "]" +} + +// ErrNoAuth is the error value returned if no +// authentication method has been passed yet. This happens as a normal +// part of the authentication loop, since the client first tries +// 'none' authentication to discover available methods. +// It is returned in ServerAuthError.Errors from NewServerConn. +var ErrNoAuth = errors.New("ssh: no auth passed yet") + +func (s *connection) serverAuthenticate(config *ServerConfig) (*Permissions, error) { + sessionID := s.transport.getSessionID() + var cache pubKeyCache + var perms *Permissions + + authFailures := 0 + var authErrs []error + var displayedBanner bool + +userAuthLoop: + for { + if authFailures >= config.MaxAuthTries && config.MaxAuthTries > 0 { + discMsg := &disconnectMsg{ + Reason: 2, + Message: "too many authentication failures", + } + + if err := s.transport.writePacket(Marshal(discMsg)); err != nil { + return nil, err + } + + return nil, discMsg + } + + var userAuthReq userAuthRequestMsg + if packet, err := s.transport.readPacket(); err != nil { + if err == io.EOF { + return nil, &ServerAuthError{Errors: authErrs} + } + return nil, err + } else if err = Unmarshal(packet, &userAuthReq); err != nil { + return nil, err + } + + if userAuthReq.Service != serviceSSH { + return nil, errors.New("ssh: client attempted to negotiate for unknown service: " + userAuthReq.Service) + } + + s.user = userAuthReq.User + + if !displayedBanner && config.BannerCallback != nil { + displayedBanner = true + msg := config.BannerCallback(s) + if msg != "" { + bannerMsg := &userAuthBannerMsg{ + Message: msg, + } + if err := s.transport.writePacket(Marshal(bannerMsg)); err != nil { + return nil, err + } + } + } + + perms = nil + authErr := ErrNoAuth + + switch userAuthReq.Method { + case "none": + if config.NoClientAuth { + authErr = nil + } + + // allow initial attempt of 'none' without penalty + if authFailures == 0 { + authFailures-- + } + case "password": + if config.PasswordCallback == nil { + authErr = errors.New("ssh: password auth not configured") + break + } + payload := userAuthReq.Payload + if len(payload) < 1 || payload[0] != 0 { + return nil, parseError(msgUserAuthRequest) + } + payload = payload[1:] + password, payload, ok := parseString(payload) + if !ok || len(payload) > 0 { + return nil, parseError(msgUserAuthRequest) + } + + perms, authErr = config.PasswordCallback(s, password) + case "keyboard-interactive": + if config.KeyboardInteractiveCallback == nil { + authErr = errors.New("ssh: keyboard-interactive auth not configured") + break + } + + prompter := &sshClientKeyboardInteractive{s} + perms, authErr = config.KeyboardInteractiveCallback(s, prompter.Challenge) + case "publickey": + if config.PublicKeyCallback == nil { + authErr = errors.New("ssh: publickey auth not configured") + break + } + payload := userAuthReq.Payload + if len(payload) < 1 { + return nil, parseError(msgUserAuthRequest) + } + isQuery := payload[0] == 0 + payload = payload[1:] + algoBytes, payload, ok := parseString(payload) + if !ok { + return nil, parseError(msgUserAuthRequest) + } + algo := string(algoBytes) + if !isAcceptableAlgo(algo) { + authErr = fmt.Errorf("ssh: algorithm %q not accepted", algo) + break + } + + pubKeyData, payload, ok := parseString(payload) + if !ok { + return nil, parseError(msgUserAuthRequest) + } + + pubKey, err := ParsePublicKey(pubKeyData) + if err != nil { + return nil, err + } + + candidate, ok := cache.get(s.user, pubKeyData) + if !ok { + candidate.user = s.user + candidate.pubKeyData = pubKeyData + candidate.perms, candidate.result = config.PublicKeyCallback(s, pubKey) + if candidate.result == nil && candidate.perms != nil && candidate.perms.CriticalOptions != nil && candidate.perms.CriticalOptions[sourceAddressCriticalOption] != "" { + candidate.result = checkSourceAddress( + s.RemoteAddr(), + candidate.perms.CriticalOptions[sourceAddressCriticalOption]) + } + cache.add(candidate) + } + + if isQuery { + // The client can query if the given public key + // would be okay. + + if len(payload) > 0 { + return nil, parseError(msgUserAuthRequest) + } + + if candidate.result == nil { + okMsg := userAuthPubKeyOkMsg{ + Algo: algo, + PubKey: pubKeyData, + } + if err = s.transport.writePacket(Marshal(&okMsg)); err != nil { + return nil, err + } + continue userAuthLoop + } + authErr = candidate.result + } else { + sig, payload, ok := parseSignature(payload) + if !ok || len(payload) > 0 { + return nil, parseError(msgUserAuthRequest) + } + // Ensure the public key algo and signature algo + // are supported. Compare the private key + // algorithm name that corresponds to algo with + // sig.Format. This is usually the same, but + // for certs, the names differ. + if !isAcceptableAlgo(sig.Format) { + authErr = fmt.Errorf("ssh: algorithm %q not accepted", sig.Format) + break + } + signedData := buildDataSignedForAuth(sessionID, userAuthReq, algoBytes, pubKeyData) + + if err := pubKey.Verify(signedData, sig); err != nil { + return nil, err + } + + authErr = candidate.result + perms = candidate.perms + } + case "gssapi-with-mic": + gssapiConfig := config.GSSAPIWithMICConfig + userAuthRequestGSSAPI, err := parseGSSAPIPayload(userAuthReq.Payload) + if err != nil { + return nil, parseError(msgUserAuthRequest) + } + // OpenSSH supports Kerberos V5 mechanism only for GSS-API authentication. + if userAuthRequestGSSAPI.N == 0 { + authErr = fmt.Errorf("ssh: Mechanism negotiation is not supported") + break + } + var i uint32 + present := false + for i = 0; i < userAuthRequestGSSAPI.N; i++ { + if userAuthRequestGSSAPI.OIDS[i].Equal(krb5Mesh) { + present = true + break + } + } + if !present { + authErr = fmt.Errorf("ssh: GSSAPI authentication must use the Kerberos V5 mechanism") + break + } + // Initial server response, see RFC 4462 section 3.3. + if err := s.transport.writePacket(Marshal(&userAuthGSSAPIResponse{ + SupportMech: krb5OID, + })); err != nil { + return nil, err + } + // Exchange token, see RFC 4462 section 3.4. + packet, err := s.transport.readPacket() + if err != nil { + return nil, err + } + userAuthGSSAPITokenReq := &userAuthGSSAPIToken{} + if err := Unmarshal(packet, userAuthGSSAPITokenReq); err != nil { + return nil, err + } + authErr, perms, err = gssExchangeToken(gssapiConfig, userAuthGSSAPITokenReq.Token, s, sessionID, + userAuthReq) + if err != nil { + return nil, err + } + default: + authErr = fmt.Errorf("ssh: unknown method %q", userAuthReq.Method) + } + + authErrs = append(authErrs, authErr) + + if config.AuthLogCallback != nil { + config.AuthLogCallback(s, userAuthReq.Method, authErr) + } + + if authErr == nil { + break userAuthLoop + } + + authFailures++ + + var failureMsg userAuthFailureMsg + if config.PasswordCallback != nil { + failureMsg.Methods = append(failureMsg.Methods, "password") + } + if config.PublicKeyCallback != nil { + failureMsg.Methods = append(failureMsg.Methods, "publickey") + } + if config.KeyboardInteractiveCallback != nil { + failureMsg.Methods = append(failureMsg.Methods, "keyboard-interactive") + } + if config.GSSAPIWithMICConfig != nil && config.GSSAPIWithMICConfig.Server != nil && + config.GSSAPIWithMICConfig.AllowLogin != nil { + failureMsg.Methods = append(failureMsg.Methods, "gssapi-with-mic") + } + + if len(failureMsg.Methods) == 0 { + return nil, errors.New("ssh: no authentication methods configured but NoClientAuth is also false") + } + + if err := s.transport.writePacket(Marshal(&failureMsg)); err != nil { + return nil, err + } + } + + if err := s.transport.writePacket([]byte{msgUserAuthSuccess}); err != nil { + return nil, err + } + return perms, nil +} + +// sshClientKeyboardInteractive implements a ClientKeyboardInteractive by +// asking the client on the other side of a ServerConn. +type sshClientKeyboardInteractive struct { + *connection +} + +func (c *sshClientKeyboardInteractive) Challenge(user, instruction string, questions []string, echos []bool) (answers []string, err error) { + if len(questions) != len(echos) { + return nil, errors.New("ssh: echos and questions must have equal length") + } + + var prompts []byte + for i := range questions { + prompts = appendString(prompts, questions[i]) + prompts = appendBool(prompts, echos[i]) + } + + if err := c.transport.writePacket(Marshal(&userAuthInfoRequestMsg{ + Instruction: instruction, + NumPrompts: uint32(len(questions)), + Prompts: prompts, + })); err != nil { + return nil, err + } + + packet, err := c.transport.readPacket() + if err != nil { + return nil, err + } + if packet[0] != msgUserAuthInfoResponse { + return nil, unexpectedMessageError(msgUserAuthInfoResponse, packet[0]) + } + packet = packet[1:] + + n, packet, ok := parseUint32(packet) + if !ok || int(n) != len(questions) { + return nil, parseError(msgUserAuthInfoResponse) + } + + for i := uint32(0); i < n; i++ { + ans, rest, ok := parseString(packet) + if !ok { + return nil, parseError(msgUserAuthInfoResponse) + } + + answers = append(answers, string(ans)) + packet = rest + } + if len(packet) != 0 { + return nil, errors.New("ssh: junk at end of message") + } + + return answers, nil +} diff --git a/vendor/golang.org/x/crypto/ssh/session.go b/vendor/golang.org/x/crypto/ssh/session.go new file mode 100644 index 00000000..d3321f6b --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/session.go @@ -0,0 +1,647 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +// Session implements an interactive session described in +// "RFC 4254, section 6". + +import ( + "bytes" + "encoding/binary" + "errors" + "fmt" + "io" + "io/ioutil" + "sync" +) + +type Signal string + +// POSIX signals as listed in RFC 4254 Section 6.10. +const ( + SIGABRT Signal = "ABRT" + SIGALRM Signal = "ALRM" + SIGFPE Signal = "FPE" + SIGHUP Signal = "HUP" + SIGILL Signal = "ILL" + SIGINT Signal = "INT" + SIGKILL Signal = "KILL" + SIGPIPE Signal = "PIPE" + SIGQUIT Signal = "QUIT" + SIGSEGV Signal = "SEGV" + SIGTERM Signal = "TERM" + SIGUSR1 Signal = "USR1" + SIGUSR2 Signal = "USR2" +) + +var signals = map[Signal]int{ + SIGABRT: 6, + SIGALRM: 14, + SIGFPE: 8, + SIGHUP: 1, + SIGILL: 4, + SIGINT: 2, + SIGKILL: 9, + SIGPIPE: 13, + SIGQUIT: 3, + SIGSEGV: 11, + SIGTERM: 15, +} + +type TerminalModes map[uint8]uint32 + +// POSIX terminal mode flags as listed in RFC 4254 Section 8. +const ( + tty_OP_END = 0 + VINTR = 1 + VQUIT = 2 + VERASE = 3 + VKILL = 4 + VEOF = 5 + VEOL = 6 + VEOL2 = 7 + VSTART = 8 + VSTOP = 9 + VSUSP = 10 + VDSUSP = 11 + VREPRINT = 12 + VWERASE = 13 + VLNEXT = 14 + VFLUSH = 15 + VSWTCH = 16 + VSTATUS = 17 + VDISCARD = 18 + IGNPAR = 30 + PARMRK = 31 + INPCK = 32 + ISTRIP = 33 + INLCR = 34 + IGNCR = 35 + ICRNL = 36 + IUCLC = 37 + IXON = 38 + IXANY = 39 + IXOFF = 40 + IMAXBEL = 41 + ISIG = 50 + ICANON = 51 + XCASE = 52 + ECHO = 53 + ECHOE = 54 + ECHOK = 55 + ECHONL = 56 + NOFLSH = 57 + TOSTOP = 58 + IEXTEN = 59 + ECHOCTL = 60 + ECHOKE = 61 + PENDIN = 62 + OPOST = 70 + OLCUC = 71 + ONLCR = 72 + OCRNL = 73 + ONOCR = 74 + ONLRET = 75 + CS7 = 90 + CS8 = 91 + PARENB = 92 + PARODD = 93 + TTY_OP_ISPEED = 128 + TTY_OP_OSPEED = 129 +) + +// A Session represents a connection to a remote command or shell. +type Session struct { + // Stdin specifies the remote process's standard input. + // If Stdin is nil, the remote process reads from an empty + // bytes.Buffer. + Stdin io.Reader + + // Stdout and Stderr specify the remote process's standard + // output and error. + // + // If either is nil, Run connects the corresponding file + // descriptor to an instance of ioutil.Discard. There is a + // fixed amount of buffering that is shared for the two streams. + // If either blocks it may eventually cause the remote + // command to block. + Stdout io.Writer + Stderr io.Writer + + ch Channel // the channel backing this session + started bool // true once Start, Run or Shell is invoked. + copyFuncs []func() error + errors chan error // one send per copyFunc + + // true if pipe method is active + stdinpipe, stdoutpipe, stderrpipe bool + + // stdinPipeWriter is non-nil if StdinPipe has not been called + // and Stdin was specified by the user; it is the write end of + // a pipe connecting Session.Stdin to the stdin channel. + stdinPipeWriter io.WriteCloser + + exitStatus chan error +} + +// SendRequest sends an out-of-band channel request on the SSH channel +// underlying the session. +func (s *Session) SendRequest(name string, wantReply bool, payload []byte) (bool, error) { + return s.ch.SendRequest(name, wantReply, payload) +} + +func (s *Session) Close() error { + return s.ch.Close() +} + +// RFC 4254 Section 6.4. +type setenvRequest struct { + Name string + Value string +} + +// Setenv sets an environment variable that will be applied to any +// command executed by Shell or Run. +func (s *Session) Setenv(name, value string) error { + msg := setenvRequest{ + Name: name, + Value: value, + } + ok, err := s.ch.SendRequest("env", true, Marshal(&msg)) + if err == nil && !ok { + err = errors.New("ssh: setenv failed") + } + return err +} + +// RFC 4254 Section 6.2. +type ptyRequestMsg struct { + Term string + Columns uint32 + Rows uint32 + Width uint32 + Height uint32 + Modelist string +} + +// RequestPty requests the association of a pty with the session on the remote host. +func (s *Session) RequestPty(term string, h, w int, termmodes TerminalModes) error { + var tm []byte + for k, v := range termmodes { + kv := struct { + Key byte + Val uint32 + }{k, v} + + tm = append(tm, Marshal(&kv)...) + } + tm = append(tm, tty_OP_END) + req := ptyRequestMsg{ + Term: term, + Columns: uint32(w), + Rows: uint32(h), + Width: uint32(w * 8), + Height: uint32(h * 8), + Modelist: string(tm), + } + ok, err := s.ch.SendRequest("pty-req", true, Marshal(&req)) + if err == nil && !ok { + err = errors.New("ssh: pty-req failed") + } + return err +} + +// RFC 4254 Section 6.5. +type subsystemRequestMsg struct { + Subsystem string +} + +// RequestSubsystem requests the association of a subsystem with the session on the remote host. +// A subsystem is a predefined command that runs in the background when the ssh session is initiated +func (s *Session) RequestSubsystem(subsystem string) error { + msg := subsystemRequestMsg{ + Subsystem: subsystem, + } + ok, err := s.ch.SendRequest("subsystem", true, Marshal(&msg)) + if err == nil && !ok { + err = errors.New("ssh: subsystem request failed") + } + return err +} + +// RFC 4254 Section 6.7. +type ptyWindowChangeMsg struct { + Columns uint32 + Rows uint32 + Width uint32 + Height uint32 +} + +// WindowChange informs the remote host about a terminal window dimension change to h rows and w columns. +func (s *Session) WindowChange(h, w int) error { + req := ptyWindowChangeMsg{ + Columns: uint32(w), + Rows: uint32(h), + Width: uint32(w * 8), + Height: uint32(h * 8), + } + _, err := s.ch.SendRequest("window-change", false, Marshal(&req)) + return err +} + +// RFC 4254 Section 6.9. +type signalMsg struct { + Signal string +} + +// Signal sends the given signal to the remote process. +// sig is one of the SIG* constants. +func (s *Session) Signal(sig Signal) error { + msg := signalMsg{ + Signal: string(sig), + } + + _, err := s.ch.SendRequest("signal", false, Marshal(&msg)) + return err +} + +// RFC 4254 Section 6.5. +type execMsg struct { + Command string +} + +// Start runs cmd on the remote host. Typically, the remote +// server passes cmd to the shell for interpretation. +// A Session only accepts one call to Run, Start or Shell. +func (s *Session) Start(cmd string) error { + if s.started { + return errors.New("ssh: session already started") + } + req := execMsg{ + Command: cmd, + } + + ok, err := s.ch.SendRequest("exec", true, Marshal(&req)) + if err == nil && !ok { + err = fmt.Errorf("ssh: command %v failed", cmd) + } + if err != nil { + return err + } + return s.start() +} + +// Run runs cmd on the remote host. Typically, the remote +// server passes cmd to the shell for interpretation. +// A Session only accepts one call to Run, Start, Shell, Output, +// or CombinedOutput. +// +// The returned error is nil if the command runs, has no problems +// copying stdin, stdout, and stderr, and exits with a zero exit +// status. +// +// If the remote server does not send an exit status, an error of type +// *ExitMissingError is returned. If the command completes +// unsuccessfully or is interrupted by a signal, the error is of type +// *ExitError. Other error types may be returned for I/O problems. +func (s *Session) Run(cmd string) error { + err := s.Start(cmd) + if err != nil { + return err + } + return s.Wait() +} + +// Output runs cmd on the remote host and returns its standard output. +func (s *Session) Output(cmd string) ([]byte, error) { + if s.Stdout != nil { + return nil, errors.New("ssh: Stdout already set") + } + var b bytes.Buffer + s.Stdout = &b + err := s.Run(cmd) + return b.Bytes(), err +} + +type singleWriter struct { + b bytes.Buffer + mu sync.Mutex +} + +func (w *singleWriter) Write(p []byte) (int, error) { + w.mu.Lock() + defer w.mu.Unlock() + return w.b.Write(p) +} + +// CombinedOutput runs cmd on the remote host and returns its combined +// standard output and standard error. +func (s *Session) CombinedOutput(cmd string) ([]byte, error) { + if s.Stdout != nil { + return nil, errors.New("ssh: Stdout already set") + } + if s.Stderr != nil { + return nil, errors.New("ssh: Stderr already set") + } + var b singleWriter + s.Stdout = &b + s.Stderr = &b + err := s.Run(cmd) + return b.b.Bytes(), err +} + +// Shell starts a login shell on the remote host. A Session only +// accepts one call to Run, Start, Shell, Output, or CombinedOutput. +func (s *Session) Shell() error { + if s.started { + return errors.New("ssh: session already started") + } + + ok, err := s.ch.SendRequest("shell", true, nil) + if err == nil && !ok { + return errors.New("ssh: could not start shell") + } + if err != nil { + return err + } + return s.start() +} + +func (s *Session) start() error { + s.started = true + + type F func(*Session) + for _, setupFd := range []F{(*Session).stdin, (*Session).stdout, (*Session).stderr} { + setupFd(s) + } + + s.errors = make(chan error, len(s.copyFuncs)) + for _, fn := range s.copyFuncs { + go func(fn func() error) { + s.errors <- fn() + }(fn) + } + return nil +} + +// Wait waits for the remote command to exit. +// +// The returned error is nil if the command runs, has no problems +// copying stdin, stdout, and stderr, and exits with a zero exit +// status. +// +// If the remote server does not send an exit status, an error of type +// *ExitMissingError is returned. If the command completes +// unsuccessfully or is interrupted by a signal, the error is of type +// *ExitError. Other error types may be returned for I/O problems. +func (s *Session) Wait() error { + if !s.started { + return errors.New("ssh: session not started") + } + waitErr := <-s.exitStatus + + if s.stdinPipeWriter != nil { + s.stdinPipeWriter.Close() + } + var copyError error + for range s.copyFuncs { + if err := <-s.errors; err != nil && copyError == nil { + copyError = err + } + } + if waitErr != nil { + return waitErr + } + return copyError +} + +func (s *Session) wait(reqs <-chan *Request) error { + wm := Waitmsg{status: -1} + // Wait for msg channel to be closed before returning. + for msg := range reqs { + switch msg.Type { + case "exit-status": + wm.status = int(binary.BigEndian.Uint32(msg.Payload)) + case "exit-signal": + var sigval struct { + Signal string + CoreDumped bool + Error string + Lang string + } + if err := Unmarshal(msg.Payload, &sigval); err != nil { + return err + } + + // Must sanitize strings? + wm.signal = sigval.Signal + wm.msg = sigval.Error + wm.lang = sigval.Lang + default: + // This handles keepalives and matches + // OpenSSH's behaviour. + if msg.WantReply { + msg.Reply(false, nil) + } + } + } + if wm.status == 0 { + return nil + } + if wm.status == -1 { + // exit-status was never sent from server + if wm.signal == "" { + // signal was not sent either. RFC 4254 + // section 6.10 recommends against this + // behavior, but it is allowed, so we let + // clients handle it. + return &ExitMissingError{} + } + wm.status = 128 + if _, ok := signals[Signal(wm.signal)]; ok { + wm.status += signals[Signal(wm.signal)] + } + } + + return &ExitError{wm} +} + +// ExitMissingError is returned if a session is torn down cleanly, but +// the server sends no confirmation of the exit status. +type ExitMissingError struct{} + +func (e *ExitMissingError) Error() string { + return "wait: remote command exited without exit status or exit signal" +} + +func (s *Session) stdin() { + if s.stdinpipe { + return + } + var stdin io.Reader + if s.Stdin == nil { + stdin = new(bytes.Buffer) + } else { + r, w := io.Pipe() + go func() { + _, err := io.Copy(w, s.Stdin) + w.CloseWithError(err) + }() + stdin, s.stdinPipeWriter = r, w + } + s.copyFuncs = append(s.copyFuncs, func() error { + _, err := io.Copy(s.ch, stdin) + if err1 := s.ch.CloseWrite(); err == nil && err1 != io.EOF { + err = err1 + } + return err + }) +} + +func (s *Session) stdout() { + if s.stdoutpipe { + return + } + if s.Stdout == nil { + s.Stdout = ioutil.Discard + } + s.copyFuncs = append(s.copyFuncs, func() error { + _, err := io.Copy(s.Stdout, s.ch) + return err + }) +} + +func (s *Session) stderr() { + if s.stderrpipe { + return + } + if s.Stderr == nil { + s.Stderr = ioutil.Discard + } + s.copyFuncs = append(s.copyFuncs, func() error { + _, err := io.Copy(s.Stderr, s.ch.Stderr()) + return err + }) +} + +// sessionStdin reroutes Close to CloseWrite. +type sessionStdin struct { + io.Writer + ch Channel +} + +func (s *sessionStdin) Close() error { + return s.ch.CloseWrite() +} + +// StdinPipe returns a pipe that will be connected to the +// remote command's standard input when the command starts. +func (s *Session) StdinPipe() (io.WriteCloser, error) { + if s.Stdin != nil { + return nil, errors.New("ssh: Stdin already set") + } + if s.started { + return nil, errors.New("ssh: StdinPipe after process started") + } + s.stdinpipe = true + return &sessionStdin{s.ch, s.ch}, nil +} + +// StdoutPipe returns a pipe that will be connected to the +// remote command's standard output when the command starts. +// There is a fixed amount of buffering that is shared between +// stdout and stderr streams. If the StdoutPipe reader is +// not serviced fast enough it may eventually cause the +// remote command to block. +func (s *Session) StdoutPipe() (io.Reader, error) { + if s.Stdout != nil { + return nil, errors.New("ssh: Stdout already set") + } + if s.started { + return nil, errors.New("ssh: StdoutPipe after process started") + } + s.stdoutpipe = true + return s.ch, nil +} + +// StderrPipe returns a pipe that will be connected to the +// remote command's standard error when the command starts. +// There is a fixed amount of buffering that is shared between +// stdout and stderr streams. If the StderrPipe reader is +// not serviced fast enough it may eventually cause the +// remote command to block. +func (s *Session) StderrPipe() (io.Reader, error) { + if s.Stderr != nil { + return nil, errors.New("ssh: Stderr already set") + } + if s.started { + return nil, errors.New("ssh: StderrPipe after process started") + } + s.stderrpipe = true + return s.ch.Stderr(), nil +} + +// newSession returns a new interactive session on the remote host. +func newSession(ch Channel, reqs <-chan *Request) (*Session, error) { + s := &Session{ + ch: ch, + } + s.exitStatus = make(chan error, 1) + go func() { + s.exitStatus <- s.wait(reqs) + }() + + return s, nil +} + +// An ExitError reports unsuccessful completion of a remote command. +type ExitError struct { + Waitmsg +} + +func (e *ExitError) Error() string { + return e.Waitmsg.String() +} + +// Waitmsg stores the information about an exited remote command +// as reported by Wait. +type Waitmsg struct { + status int + signal string + msg string + lang string +} + +// ExitStatus returns the exit status of the remote command. +func (w Waitmsg) ExitStatus() int { + return w.status +} + +// Signal returns the exit signal of the remote command if +// it was terminated violently. +func (w Waitmsg) Signal() string { + return w.signal +} + +// Msg returns the exit message given by the remote command +func (w Waitmsg) Msg() string { + return w.msg +} + +// Lang returns the language tag. See RFC 3066 +func (w Waitmsg) Lang() string { + return w.lang +} + +func (w Waitmsg) String() string { + str := fmt.Sprintf("Process exited with status %v", w.status) + if w.signal != "" { + str += fmt.Sprintf(" from signal %v", w.signal) + } + if w.msg != "" { + str += fmt.Sprintf(". Reason was: %v", w.msg) + } + return str +} diff --git a/vendor/golang.org/x/crypto/ssh/ssh_gss.go b/vendor/golang.org/x/crypto/ssh/ssh_gss.go new file mode 100644 index 00000000..24bd7c8e --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/ssh_gss.go @@ -0,0 +1,139 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "encoding/asn1" + "errors" +) + +var krb5OID []byte + +func init() { + krb5OID, _ = asn1.Marshal(krb5Mesh) +} + +// GSSAPIClient provides the API to plug-in GSSAPI authentication for client logins. +type GSSAPIClient interface { + // InitSecContext initiates the establishment of a security context for GSS-API between the + // ssh client and ssh server. Initially the token parameter should be specified as nil. + // The routine may return a outputToken which should be transferred to + // the ssh server, where the ssh server will present it to + // AcceptSecContext. If no token need be sent, InitSecContext will indicate this by setting + // needContinue to false. To complete the context + // establishment, one or more reply tokens may be required from the ssh + // server;if so, InitSecContext will return a needContinue which is true. + // In this case, InitSecContext should be called again when the + // reply token is received from the ssh server, passing the reply + // token to InitSecContext via the token parameters. + // See RFC 2743 section 2.2.1 and RFC 4462 section 3.4. + InitSecContext(target string, token []byte, isGSSDelegCreds bool) (outputToken []byte, needContinue bool, err error) + // GetMIC generates a cryptographic MIC for the SSH2 message, and places + // the MIC in a token for transfer to the ssh server. + // The contents of the MIC field are obtained by calling GSS_GetMIC() + // over the following, using the GSS-API context that was just + // established: + // string session identifier + // byte SSH_MSG_USERAUTH_REQUEST + // string user name + // string service + // string "gssapi-with-mic" + // See RFC 2743 section 2.3.1 and RFC 4462 3.5. + GetMIC(micFiled []byte) ([]byte, error) + // Whenever possible, it should be possible for + // DeleteSecContext() calls to be successfully processed even + // if other calls cannot succeed, thereby enabling context-related + // resources to be released. + // In addition to deleting established security contexts, + // gss_delete_sec_context must also be able to delete "half-built" + // security contexts resulting from an incomplete sequence of + // InitSecContext()/AcceptSecContext() calls. + // See RFC 2743 section 2.2.3. + DeleteSecContext() error +} + +// GSSAPIServer provides the API to plug in GSSAPI authentication for server logins. +type GSSAPIServer interface { + // AcceptSecContext allows a remotely initiated security context between the application + // and a remote peer to be established by the ssh client. The routine may return a + // outputToken which should be transferred to the ssh client, + // where the ssh client will present it to InitSecContext. + // If no token need be sent, AcceptSecContext will indicate this + // by setting the needContinue to false. To + // complete the context establishment, one or more reply tokens may be + // required from the ssh client. if so, AcceptSecContext + // will return a needContinue which is true, in which case it + // should be called again when the reply token is received from the ssh + // client, passing the token to AcceptSecContext via the + // token parameters. + // The srcName return value is the authenticated username. + // See RFC 2743 section 2.2.2 and RFC 4462 section 3.4. + AcceptSecContext(token []byte) (outputToken []byte, srcName string, needContinue bool, err error) + // VerifyMIC verifies that a cryptographic MIC, contained in the token parameter, + // fits the supplied message is received from the ssh client. + // See RFC 2743 section 2.3.2. + VerifyMIC(micField []byte, micToken []byte) error + // Whenever possible, it should be possible for + // DeleteSecContext() calls to be successfully processed even + // if other calls cannot succeed, thereby enabling context-related + // resources to be released. + // In addition to deleting established security contexts, + // gss_delete_sec_context must also be able to delete "half-built" + // security contexts resulting from an incomplete sequence of + // InitSecContext()/AcceptSecContext() calls. + // See RFC 2743 section 2.2.3. + DeleteSecContext() error +} + +var ( + // OpenSSH supports Kerberos V5 mechanism only for GSS-API authentication, + // so we also support the krb5 mechanism only. + // See RFC 1964 section 1. + krb5Mesh = asn1.ObjectIdentifier{1, 2, 840, 113554, 1, 2, 2} +) + +// The GSS-API authentication method is initiated when the client sends an SSH_MSG_USERAUTH_REQUEST +// See RFC 4462 section 3.2. +type userAuthRequestGSSAPI struct { + N uint32 + OIDS []asn1.ObjectIdentifier +} + +func parseGSSAPIPayload(payload []byte) (*userAuthRequestGSSAPI, error) { + n, rest, ok := parseUint32(payload) + if !ok { + return nil, errors.New("parse uint32 failed") + } + s := &userAuthRequestGSSAPI{ + N: n, + OIDS: make([]asn1.ObjectIdentifier, n), + } + for i := 0; i < int(n); i++ { + var ( + desiredMech []byte + err error + ) + desiredMech, rest, ok = parseString(rest) + if !ok { + return nil, errors.New("parse string failed") + } + if rest, err = asn1.Unmarshal(desiredMech, &s.OIDS[i]); err != nil { + return nil, err + } + + } + return s, nil +} + +// See RFC 4462 section 3.6. +func buildMIC(sessionID string, username string, service string, authMethod string) []byte { + out := make([]byte, 0, 0) + out = appendString(out, sessionID) + out = append(out, msgUserAuthRequest) + out = appendString(out, username) + out = appendString(out, service) + out = appendString(out, authMethod) + return out +} diff --git a/vendor/golang.org/x/crypto/ssh/streamlocal.go b/vendor/golang.org/x/crypto/ssh/streamlocal.go new file mode 100644 index 00000000..b171b330 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/streamlocal.go @@ -0,0 +1,116 @@ +package ssh + +import ( + "errors" + "io" + "net" +) + +// streamLocalChannelOpenDirectMsg is a struct used for SSH_MSG_CHANNEL_OPEN message +// with "direct-streamlocal@openssh.com" string. +// +// See openssh-portable/PROTOCOL, section 2.4. connection: Unix domain socket forwarding +// https://github.com/openssh/openssh-portable/blob/master/PROTOCOL#L235 +type streamLocalChannelOpenDirectMsg struct { + socketPath string + reserved0 string + reserved1 uint32 +} + +// forwardedStreamLocalPayload is a struct used for SSH_MSG_CHANNEL_OPEN message +// with "forwarded-streamlocal@openssh.com" string. +type forwardedStreamLocalPayload struct { + SocketPath string + Reserved0 string +} + +// streamLocalChannelForwardMsg is a struct used for SSH2_MSG_GLOBAL_REQUEST message +// with "streamlocal-forward@openssh.com"/"cancel-streamlocal-forward@openssh.com" string. +type streamLocalChannelForwardMsg struct { + socketPath string +} + +// ListenUnix is similar to ListenTCP but uses a Unix domain socket. +func (c *Client) ListenUnix(socketPath string) (net.Listener, error) { + c.handleForwardsOnce.Do(c.handleForwards) + m := streamLocalChannelForwardMsg{ + socketPath, + } + // send message + ok, _, err := c.SendRequest("streamlocal-forward@openssh.com", true, Marshal(&m)) + if err != nil { + return nil, err + } + if !ok { + return nil, errors.New("ssh: streamlocal-forward@openssh.com request denied by peer") + } + ch := c.forwards.add(&net.UnixAddr{Name: socketPath, Net: "unix"}) + + return &unixListener{socketPath, c, ch}, nil +} + +func (c *Client) dialStreamLocal(socketPath string) (Channel, error) { + msg := streamLocalChannelOpenDirectMsg{ + socketPath: socketPath, + } + ch, in, err := c.OpenChannel("direct-streamlocal@openssh.com", Marshal(&msg)) + if err != nil { + return nil, err + } + go DiscardRequests(in) + return ch, err +} + +type unixListener struct { + socketPath string + + conn *Client + in <-chan forward +} + +// Accept waits for and returns the next connection to the listener. +func (l *unixListener) Accept() (net.Conn, error) { + s, ok := <-l.in + if !ok { + return nil, io.EOF + } + ch, incoming, err := s.newCh.Accept() + if err != nil { + return nil, err + } + go DiscardRequests(incoming) + + return &chanConn{ + Channel: ch, + laddr: &net.UnixAddr{ + Name: l.socketPath, + Net: "unix", + }, + raddr: &net.UnixAddr{ + Name: "@", + Net: "unix", + }, + }, nil +} + +// Close closes the listener. +func (l *unixListener) Close() error { + // this also closes the listener. + l.conn.forwards.remove(&net.UnixAddr{Name: l.socketPath, Net: "unix"}) + m := streamLocalChannelForwardMsg{ + l.socketPath, + } + ok, _, err := l.conn.SendRequest("cancel-streamlocal-forward@openssh.com", true, Marshal(&m)) + if err == nil && !ok { + err = errors.New("ssh: cancel-streamlocal-forward@openssh.com failed") + } + return err +} + +// Addr returns the listener's network address. +func (l *unixListener) Addr() net.Addr { + return &net.UnixAddr{ + Name: l.socketPath, + Net: "unix", + } +} diff --git a/vendor/golang.org/x/crypto/ssh/tcpip.go b/vendor/golang.org/x/crypto/ssh/tcpip.go new file mode 100644 index 00000000..80d35f5e --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/tcpip.go @@ -0,0 +1,474 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "errors" + "fmt" + "io" + "math/rand" + "net" + "strconv" + "strings" + "sync" + "time" +) + +// Listen requests the remote peer open a listening socket on +// addr. Incoming connections will be available by calling Accept on +// the returned net.Listener. The listener must be serviced, or the +// SSH connection may hang. +// N must be "tcp", "tcp4", "tcp6", or "unix". +func (c *Client) Listen(n, addr string) (net.Listener, error) { + switch n { + case "tcp", "tcp4", "tcp6": + laddr, err := net.ResolveTCPAddr(n, addr) + if err != nil { + return nil, err + } + return c.ListenTCP(laddr) + case "unix": + return c.ListenUnix(addr) + default: + return nil, fmt.Errorf("ssh: unsupported protocol: %s", n) + } +} + +// Automatic port allocation is broken with OpenSSH before 6.0. See +// also https://bugzilla.mindrot.org/show_bug.cgi?id=2017. In +// particular, OpenSSH 5.9 sends a channelOpenMsg with port number 0, +// rather than the actual port number. This means you can never open +// two different listeners with auto allocated ports. We work around +// this by trying explicit ports until we succeed. + +const openSSHPrefix = "OpenSSH_" + +var portRandomizer = rand.New(rand.NewSource(time.Now().UnixNano())) + +// isBrokenOpenSSHVersion returns true if the given version string +// specifies a version of OpenSSH that is known to have a bug in port +// forwarding. +func isBrokenOpenSSHVersion(versionStr string) bool { + i := strings.Index(versionStr, openSSHPrefix) + if i < 0 { + return false + } + i += len(openSSHPrefix) + j := i + for ; j < len(versionStr); j++ { + if versionStr[j] < '0' || versionStr[j] > '9' { + break + } + } + version, _ := strconv.Atoi(versionStr[i:j]) + return version < 6 +} + +// autoPortListenWorkaround simulates automatic port allocation by +// trying random ports repeatedly. +func (c *Client) autoPortListenWorkaround(laddr *net.TCPAddr) (net.Listener, error) { + var sshListener net.Listener + var err error + const tries = 10 + for i := 0; i < tries; i++ { + addr := *laddr + addr.Port = 1024 + portRandomizer.Intn(60000) + sshListener, err = c.ListenTCP(&addr) + if err == nil { + laddr.Port = addr.Port + return sshListener, err + } + } + return nil, fmt.Errorf("ssh: listen on random port failed after %d tries: %v", tries, err) +} + +// RFC 4254 7.1 +type channelForwardMsg struct { + addr string + rport uint32 +} + +// handleForwards starts goroutines handling forwarded connections. +// It's called on first use by (*Client).ListenTCP to not launch +// goroutines until needed. +func (c *Client) handleForwards() { + go c.forwards.handleChannels(c.HandleChannelOpen("forwarded-tcpip")) + go c.forwards.handleChannels(c.HandleChannelOpen("forwarded-streamlocal@openssh.com")) +} + +// ListenTCP requests the remote peer open a listening socket +// on laddr. Incoming connections will be available by calling +// Accept on the returned net.Listener. +func (c *Client) ListenTCP(laddr *net.TCPAddr) (net.Listener, error) { + c.handleForwardsOnce.Do(c.handleForwards) + if laddr.Port == 0 && isBrokenOpenSSHVersion(string(c.ServerVersion())) { + return c.autoPortListenWorkaround(laddr) + } + + m := channelForwardMsg{ + laddr.IP.String(), + uint32(laddr.Port), + } + // send message + ok, resp, err := c.SendRequest("tcpip-forward", true, Marshal(&m)) + if err != nil { + return nil, err + } + if !ok { + return nil, errors.New("ssh: tcpip-forward request denied by peer") + } + + // If the original port was 0, then the remote side will + // supply a real port number in the response. + if laddr.Port == 0 { + var p struct { + Port uint32 + } + if err := Unmarshal(resp, &p); err != nil { + return nil, err + } + laddr.Port = int(p.Port) + } + + // Register this forward, using the port number we obtained. + ch := c.forwards.add(laddr) + + return &tcpListener{laddr, c, ch}, nil +} + +// forwardList stores a mapping between remote +// forward requests and the tcpListeners. +type forwardList struct { + sync.Mutex + entries []forwardEntry +} + +// forwardEntry represents an established mapping of a laddr on a +// remote ssh server to a channel connected to a tcpListener. +type forwardEntry struct { + laddr net.Addr + c chan forward +} + +// forward represents an incoming forwarded tcpip connection. The +// arguments to add/remove/lookup should be address as specified in +// the original forward-request. +type forward struct { + newCh NewChannel // the ssh client channel underlying this forward + raddr net.Addr // the raddr of the incoming connection +} + +func (l *forwardList) add(addr net.Addr) chan forward { + l.Lock() + defer l.Unlock() + f := forwardEntry{ + laddr: addr, + c: make(chan forward, 1), + } + l.entries = append(l.entries, f) + return f.c +} + +// See RFC 4254, section 7.2 +type forwardedTCPPayload struct { + Addr string + Port uint32 + OriginAddr string + OriginPort uint32 +} + +// parseTCPAddr parses the originating address from the remote into a *net.TCPAddr. +func parseTCPAddr(addr string, port uint32) (*net.TCPAddr, error) { + if port == 0 || port > 65535 { + return nil, fmt.Errorf("ssh: port number out of range: %d", port) + } + ip := net.ParseIP(string(addr)) + if ip == nil { + return nil, fmt.Errorf("ssh: cannot parse IP address %q", addr) + } + return &net.TCPAddr{IP: ip, Port: int(port)}, nil +} + +func (l *forwardList) handleChannels(in <-chan NewChannel) { + for ch := range in { + var ( + laddr net.Addr + raddr net.Addr + err error + ) + switch channelType := ch.ChannelType(); channelType { + case "forwarded-tcpip": + var payload forwardedTCPPayload + if err = Unmarshal(ch.ExtraData(), &payload); err != nil { + ch.Reject(ConnectionFailed, "could not parse forwarded-tcpip payload: "+err.Error()) + continue + } + + // RFC 4254 section 7.2 specifies that incoming + // addresses should list the address, in string + // format. It is implied that this should be an IP + // address, as it would be impossible to connect to it + // otherwise. + laddr, err = parseTCPAddr(payload.Addr, payload.Port) + if err != nil { + ch.Reject(ConnectionFailed, err.Error()) + continue + } + raddr, err = parseTCPAddr(payload.OriginAddr, payload.OriginPort) + if err != nil { + ch.Reject(ConnectionFailed, err.Error()) + continue + } + + case "forwarded-streamlocal@openssh.com": + var payload forwardedStreamLocalPayload + if err = Unmarshal(ch.ExtraData(), &payload); err != nil { + ch.Reject(ConnectionFailed, "could not parse forwarded-streamlocal@openssh.com payload: "+err.Error()) + continue + } + laddr = &net.UnixAddr{ + Name: payload.SocketPath, + Net: "unix", + } + raddr = &net.UnixAddr{ + Name: "@", + Net: "unix", + } + default: + panic(fmt.Errorf("ssh: unknown channel type %s", channelType)) + } + if ok := l.forward(laddr, raddr, ch); !ok { + // Section 7.2, implementations MUST reject spurious incoming + // connections. + ch.Reject(Prohibited, "no forward for address") + continue + } + + } +} + +// remove removes the forward entry, and the channel feeding its +// listener. +func (l *forwardList) remove(addr net.Addr) { + l.Lock() + defer l.Unlock() + for i, f := range l.entries { + if addr.Network() == f.laddr.Network() && addr.String() == f.laddr.String() { + l.entries = append(l.entries[:i], l.entries[i+1:]...) + close(f.c) + return + } + } +} + +// closeAll closes and clears all forwards. +func (l *forwardList) closeAll() { + l.Lock() + defer l.Unlock() + for _, f := range l.entries { + close(f.c) + } + l.entries = nil +} + +func (l *forwardList) forward(laddr, raddr net.Addr, ch NewChannel) bool { + l.Lock() + defer l.Unlock() + for _, f := range l.entries { + if laddr.Network() == f.laddr.Network() && laddr.String() == f.laddr.String() { + f.c <- forward{newCh: ch, raddr: raddr} + return true + } + } + return false +} + +type tcpListener struct { + laddr *net.TCPAddr + + conn *Client + in <-chan forward +} + +// Accept waits for and returns the next connection to the listener. +func (l *tcpListener) Accept() (net.Conn, error) { + s, ok := <-l.in + if !ok { + return nil, io.EOF + } + ch, incoming, err := s.newCh.Accept() + if err != nil { + return nil, err + } + go DiscardRequests(incoming) + + return &chanConn{ + Channel: ch, + laddr: l.laddr, + raddr: s.raddr, + }, nil +} + +// Close closes the listener. +func (l *tcpListener) Close() error { + m := channelForwardMsg{ + l.laddr.IP.String(), + uint32(l.laddr.Port), + } + + // this also closes the listener. + l.conn.forwards.remove(l.laddr) + ok, _, err := l.conn.SendRequest("cancel-tcpip-forward", true, Marshal(&m)) + if err == nil && !ok { + err = errors.New("ssh: cancel-tcpip-forward failed") + } + return err +} + +// Addr returns the listener's network address. +func (l *tcpListener) Addr() net.Addr { + return l.laddr +} + +// Dial initiates a connection to the addr from the remote host. +// The resulting connection has a zero LocalAddr() and RemoteAddr(). +func (c *Client) Dial(n, addr string) (net.Conn, error) { + var ch Channel + switch n { + case "tcp", "tcp4", "tcp6": + // Parse the address into host and numeric port. + host, portString, err := net.SplitHostPort(addr) + if err != nil { + return nil, err + } + port, err := strconv.ParseUint(portString, 10, 16) + if err != nil { + return nil, err + } + ch, err = c.dial(net.IPv4zero.String(), 0, host, int(port)) + if err != nil { + return nil, err + } + // Use a zero address for local and remote address. + zeroAddr := &net.TCPAddr{ + IP: net.IPv4zero, + Port: 0, + } + return &chanConn{ + Channel: ch, + laddr: zeroAddr, + raddr: zeroAddr, + }, nil + case "unix": + var err error + ch, err = c.dialStreamLocal(addr) + if err != nil { + return nil, err + } + return &chanConn{ + Channel: ch, + laddr: &net.UnixAddr{ + Name: "@", + Net: "unix", + }, + raddr: &net.UnixAddr{ + Name: addr, + Net: "unix", + }, + }, nil + default: + return nil, fmt.Errorf("ssh: unsupported protocol: %s", n) + } +} + +// DialTCP connects to the remote address raddr on the network net, +// which must be "tcp", "tcp4", or "tcp6". If laddr is not nil, it is used +// as the local address for the connection. +func (c *Client) DialTCP(n string, laddr, raddr *net.TCPAddr) (net.Conn, error) { + if laddr == nil { + laddr = &net.TCPAddr{ + IP: net.IPv4zero, + Port: 0, + } + } + ch, err := c.dial(laddr.IP.String(), laddr.Port, raddr.IP.String(), raddr.Port) + if err != nil { + return nil, err + } + return &chanConn{ + Channel: ch, + laddr: laddr, + raddr: raddr, + }, nil +} + +// RFC 4254 7.2 +type channelOpenDirectMsg struct { + raddr string + rport uint32 + laddr string + lport uint32 +} + +func (c *Client) dial(laddr string, lport int, raddr string, rport int) (Channel, error) { + msg := channelOpenDirectMsg{ + raddr: raddr, + rport: uint32(rport), + laddr: laddr, + lport: uint32(lport), + } + ch, in, err := c.OpenChannel("direct-tcpip", Marshal(&msg)) + if err != nil { + return nil, err + } + go DiscardRequests(in) + return ch, err +} + +type tcpChan struct { + Channel // the backing channel +} + +// chanConn fulfills the net.Conn interface without +// the tcpChan having to hold laddr or raddr directly. +type chanConn struct { + Channel + laddr, raddr net.Addr +} + +// LocalAddr returns the local network address. +func (t *chanConn) LocalAddr() net.Addr { + return t.laddr +} + +// RemoteAddr returns the remote network address. +func (t *chanConn) RemoteAddr() net.Addr { + return t.raddr +} + +// SetDeadline sets the read and write deadlines associated +// with the connection. +func (t *chanConn) SetDeadline(deadline time.Time) error { + if err := t.SetReadDeadline(deadline); err != nil { + return err + } + return t.SetWriteDeadline(deadline) +} + +// SetReadDeadline sets the read deadline. +// A zero value for t means Read will not time out. +// After the deadline, the error from Read will implement net.Error +// with Timeout() == true. +func (t *chanConn) SetReadDeadline(deadline time.Time) error { + // for compatibility with previous version, + // the error message contains "tcpChan" + return errors.New("ssh: tcpChan: deadline not supported") +} + +// SetWriteDeadline exists to satisfy the net.Conn interface +// but is not implemented by this type. It always returns an error. +func (t *chanConn) SetWriteDeadline(deadline time.Time) error { + return errors.New("ssh: tcpChan: deadline not supported") +} diff --git a/vendor/golang.org/x/crypto/ssh/transport.go b/vendor/golang.org/x/crypto/ssh/transport.go new file mode 100644 index 00000000..49ddc2e7 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/transport.go @@ -0,0 +1,353 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bufio" + "bytes" + "errors" + "io" + "log" +) + +// debugTransport if set, will print packet types as they go over the +// wire. No message decoding is done, to minimize the impact on timing. +const debugTransport = false + +const ( + gcmCipherID = "aes128-gcm@openssh.com" + aes128cbcID = "aes128-cbc" + tripledescbcID = "3des-cbc" +) + +// packetConn represents a transport that implements packet based +// operations. +type packetConn interface { + // Encrypt and send a packet of data to the remote peer. + writePacket(packet []byte) error + + // Read a packet from the connection. The read is blocking, + // i.e. if error is nil, then the returned byte slice is + // always non-empty. + readPacket() ([]byte, error) + + // Close closes the write-side of the connection. + Close() error +} + +// transport is the keyingTransport that implements the SSH packet +// protocol. +type transport struct { + reader connectionState + writer connectionState + + bufReader *bufio.Reader + bufWriter *bufio.Writer + rand io.Reader + isClient bool + io.Closer +} + +// packetCipher represents a combination of SSH encryption/MAC +// protocol. A single instance should be used for one direction only. +type packetCipher interface { + // writeCipherPacket encrypts the packet and writes it to w. The + // contents of the packet are generally scrambled. + writeCipherPacket(seqnum uint32, w io.Writer, rand io.Reader, packet []byte) error + + // readCipherPacket reads and decrypts a packet of data. The + // returned packet may be overwritten by future calls of + // readPacket. + readCipherPacket(seqnum uint32, r io.Reader) ([]byte, error) +} + +// connectionState represents one side (read or write) of the +// connection. This is necessary because each direction has its own +// keys, and can even have its own algorithms +type connectionState struct { + packetCipher + seqNum uint32 + dir direction + pendingKeyChange chan packetCipher +} + +// prepareKeyChange sets up key material for a keychange. The key changes in +// both directions are triggered by reading and writing a msgNewKey packet +// respectively. +func (t *transport) prepareKeyChange(algs *algorithms, kexResult *kexResult) error { + ciph, err := newPacketCipher(t.reader.dir, algs.r, kexResult) + if err != nil { + return err + } + t.reader.pendingKeyChange <- ciph + + ciph, err = newPacketCipher(t.writer.dir, algs.w, kexResult) + if err != nil { + return err + } + t.writer.pendingKeyChange <- ciph + + return nil +} + +func (t *transport) printPacket(p []byte, write bool) { + if len(p) == 0 { + return + } + who := "server" + if t.isClient { + who = "client" + } + what := "read" + if write { + what = "write" + } + + log.Println(what, who, p[0]) +} + +// Read and decrypt next packet. +func (t *transport) readPacket() (p []byte, err error) { + for { + p, err = t.reader.readPacket(t.bufReader) + if err != nil { + break + } + if len(p) == 0 || (p[0] != msgIgnore && p[0] != msgDebug) { + break + } + } + if debugTransport { + t.printPacket(p, false) + } + + return p, err +} + +func (s *connectionState) readPacket(r *bufio.Reader) ([]byte, error) { + packet, err := s.packetCipher.readCipherPacket(s.seqNum, r) + s.seqNum++ + if err == nil && len(packet) == 0 { + err = errors.New("ssh: zero length packet") + } + + if len(packet) > 0 { + switch packet[0] { + case msgNewKeys: + select { + case cipher := <-s.pendingKeyChange: + s.packetCipher = cipher + default: + return nil, errors.New("ssh: got bogus newkeys message") + } + + case msgDisconnect: + // Transform a disconnect message into an + // error. Since this is lowest level at which + // we interpret message types, doing it here + // ensures that we don't have to handle it + // elsewhere. + var msg disconnectMsg + if err := Unmarshal(packet, &msg); err != nil { + return nil, err + } + return nil, &msg + } + } + + // The packet may point to an internal buffer, so copy the + // packet out here. + fresh := make([]byte, len(packet)) + copy(fresh, packet) + + return fresh, err +} + +func (t *transport) writePacket(packet []byte) error { + if debugTransport { + t.printPacket(packet, true) + } + return t.writer.writePacket(t.bufWriter, t.rand, packet) +} + +func (s *connectionState) writePacket(w *bufio.Writer, rand io.Reader, packet []byte) error { + changeKeys := len(packet) > 0 && packet[0] == msgNewKeys + + err := s.packetCipher.writeCipherPacket(s.seqNum, w, rand, packet) + if err != nil { + return err + } + if err = w.Flush(); err != nil { + return err + } + s.seqNum++ + if changeKeys { + select { + case cipher := <-s.pendingKeyChange: + s.packetCipher = cipher + default: + panic("ssh: no key material for msgNewKeys") + } + } + return err +} + +func newTransport(rwc io.ReadWriteCloser, rand io.Reader, isClient bool) *transport { + t := &transport{ + bufReader: bufio.NewReader(rwc), + bufWriter: bufio.NewWriter(rwc), + rand: rand, + reader: connectionState{ + packetCipher: &streamPacketCipher{cipher: noneCipher{}}, + pendingKeyChange: make(chan packetCipher, 1), + }, + writer: connectionState{ + packetCipher: &streamPacketCipher{cipher: noneCipher{}}, + pendingKeyChange: make(chan packetCipher, 1), + }, + Closer: rwc, + } + t.isClient = isClient + + if isClient { + t.reader.dir = serverKeys + t.writer.dir = clientKeys + } else { + t.reader.dir = clientKeys + t.writer.dir = serverKeys + } + + return t +} + +type direction struct { + ivTag []byte + keyTag []byte + macKeyTag []byte +} + +var ( + serverKeys = direction{[]byte{'B'}, []byte{'D'}, []byte{'F'}} + clientKeys = direction{[]byte{'A'}, []byte{'C'}, []byte{'E'}} +) + +// setupKeys sets the cipher and MAC keys from kex.K, kex.H and sessionId, as +// described in RFC 4253, section 6.4. direction should either be serverKeys +// (to setup server->client keys) or clientKeys (for client->server keys). +func newPacketCipher(d direction, algs directionAlgorithms, kex *kexResult) (packetCipher, error) { + cipherMode := cipherModes[algs.Cipher] + macMode := macModes[algs.MAC] + + iv := make([]byte, cipherMode.ivSize) + key := make([]byte, cipherMode.keySize) + macKey := make([]byte, macMode.keySize) + + generateKeyMaterial(iv, d.ivTag, kex) + generateKeyMaterial(key, d.keyTag, kex) + generateKeyMaterial(macKey, d.macKeyTag, kex) + + return cipherModes[algs.Cipher].create(key, iv, macKey, algs) +} + +// generateKeyMaterial fills out with key material generated from tag, K, H +// and sessionId, as specified in RFC 4253, section 7.2. +func generateKeyMaterial(out, tag []byte, r *kexResult) { + var digestsSoFar []byte + + h := r.Hash.New() + for len(out) > 0 { + h.Reset() + h.Write(r.K) + h.Write(r.H) + + if len(digestsSoFar) == 0 { + h.Write(tag) + h.Write(r.SessionID) + } else { + h.Write(digestsSoFar) + } + + digest := h.Sum(nil) + n := copy(out, digest) + out = out[n:] + if len(out) > 0 { + digestsSoFar = append(digestsSoFar, digest...) + } + } +} + +const packageVersion = "SSH-2.0-Go" + +// Sends and receives a version line. The versionLine string should +// be US ASCII, start with "SSH-2.0-", and should not include a +// newline. exchangeVersions returns the other side's version line. +func exchangeVersions(rw io.ReadWriter, versionLine []byte) (them []byte, err error) { + // Contrary to the RFC, we do not ignore lines that don't + // start with "SSH-2.0-" to make the library usable with + // nonconforming servers. + for _, c := range versionLine { + // The spec disallows non US-ASCII chars, and + // specifically forbids null chars. + if c < 32 { + return nil, errors.New("ssh: junk character in version line") + } + } + if _, err = rw.Write(append(versionLine, '\r', '\n')); err != nil { + return + } + + them, err = readVersion(rw) + return them, err +} + +// maxVersionStringBytes is the maximum number of bytes that we'll +// accept as a version string. RFC 4253 section 4.2 limits this at 255 +// chars +const maxVersionStringBytes = 255 + +// Read version string as specified by RFC 4253, section 4.2. +func readVersion(r io.Reader) ([]byte, error) { + versionString := make([]byte, 0, 64) + var ok bool + var buf [1]byte + + for length := 0; length < maxVersionStringBytes; length++ { + _, err := io.ReadFull(r, buf[:]) + if err != nil { + return nil, err + } + // The RFC says that the version should be terminated with \r\n + // but several SSH servers actually only send a \n. + if buf[0] == '\n' { + if !bytes.HasPrefix(versionString, []byte("SSH-")) { + // RFC 4253 says we need to ignore all version string lines + // except the one containing the SSH version (provided that + // all the lines do not exceed 255 bytes in total). + versionString = versionString[:0] + continue + } + ok = true + break + } + + // non ASCII chars are disallowed, but we are lenient, + // since Go doesn't use null-terminated strings. + + // The RFC allows a comment after a space, however, + // all of it (version and comments) goes into the + // session hash. + versionString = append(versionString, buf[0]) + } + + if !ok { + return nil, errors.New("ssh: overflow reading version string") + } + + // There might be a '\r' on the end which we should remove. + if len(versionString) > 0 && versionString[len(versionString)-1] == '\r' { + versionString = versionString[:len(versionString)-1] + } + return versionString, nil +} diff --git a/vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s b/vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s new file mode 100644 index 00000000..06f84b85 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s @@ -0,0 +1,17 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo + +#include "textflag.h" + +// +// System calls for ppc64, AIX are implemented in runtime/syscall_aix.go +// + +TEXT ·syscall6(SB),NOSPLIT,$0-88 + JMP syscall·syscall6(SB) + +TEXT ·rawSyscall6(SB),NOSPLIT,$0-88 + JMP syscall·rawSyscall6(SB) diff --git a/vendor/golang.org/x/sys/cpu/byteorder.go b/vendor/golang.org/x/sys/cpu/byteorder.go new file mode 100644 index 00000000..ed8da8de --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/byteorder.go @@ -0,0 +1,60 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package cpu + +import ( + "runtime" +) + +// byteOrder is a subset of encoding/binary.ByteOrder. +type byteOrder interface { + Uint32([]byte) uint32 + Uint64([]byte) uint64 +} + +type littleEndian struct{} +type bigEndian struct{} + +func (littleEndian) Uint32(b []byte) uint32 { + _ = b[3] // bounds check hint to compiler; see golang.org/issue/14808 + return uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24 +} + +func (littleEndian) Uint64(b []byte) uint64 { + _ = b[7] // bounds check hint to compiler; see golang.org/issue/14808 + return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 | + uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56 +} + +func (bigEndian) Uint32(b []byte) uint32 { + _ = b[3] // bounds check hint to compiler; see golang.org/issue/14808 + return uint32(b[3]) | uint32(b[2])<<8 | uint32(b[1])<<16 | uint32(b[0])<<24 +} + +func (bigEndian) Uint64(b []byte) uint64 { + _ = b[7] // bounds check hint to compiler; see golang.org/issue/14808 + return uint64(b[7]) | uint64(b[6])<<8 | uint64(b[5])<<16 | uint64(b[4])<<24 | + uint64(b[3])<<32 | uint64(b[2])<<40 | uint64(b[1])<<48 | uint64(b[0])<<56 +} + +// hostByteOrder returns binary.LittleEndian on little-endian machines and +// binary.BigEndian on big-endian machines. +func hostByteOrder() byteOrder { + switch runtime.GOARCH { + case "386", "amd64", "amd64p32", + "arm", "arm64", + "mipsle", "mips64le", "mips64p32le", + "ppc64le", + "riscv", "riscv64": + return littleEndian{} + case "armbe", "arm64be", + "mips", "mips64", "mips64p32", + "ppc", "ppc64", + "s390", "s390x", + "sparc", "sparc64": + return bigEndian{} + } + panic("unknown architecture") +} diff --git a/vendor/golang.org/x/sys/cpu/cpu.go b/vendor/golang.org/x/sys/cpu/cpu.go new file mode 100644 index 00000000..e44deb75 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu.go @@ -0,0 +1,171 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package cpu implements processor feature detection for +// various CPU architectures. +package cpu + +// Initialized reports whether the CPU features were initialized. +// +// For some GOOS/GOARCH combinations initialization of the CPU features depends +// on reading an operating specific file, e.g. /proc/self/auxv on linux/arm +// Initialized will report false if reading the file fails. +var Initialized bool + +// CacheLinePad is used to pad structs to avoid false sharing. +type CacheLinePad struct{ _ [cacheLineSize]byte } + +// X86 contains the supported CPU features of the +// current X86/AMD64 platform. If the current platform +// is not X86/AMD64 then all feature flags are false. +// +// X86 is padded to avoid false sharing. Further the HasAVX +// and HasAVX2 are only set if the OS supports XMM and YMM +// registers in addition to the CPUID feature bit being set. +var X86 struct { + _ CacheLinePad + HasAES bool // AES hardware implementation (AES NI) + HasADX bool // Multi-precision add-carry instruction extensions + HasAVX bool // Advanced vector extension + HasAVX2 bool // Advanced vector extension 2 + HasBMI1 bool // Bit manipulation instruction set 1 + HasBMI2 bool // Bit manipulation instruction set 2 + HasERMS bool // Enhanced REP for MOVSB and STOSB + HasFMA bool // Fused-multiply-add instructions + HasOSXSAVE bool // OS supports XSAVE/XRESTOR for saving/restoring XMM registers. + HasPCLMULQDQ bool // PCLMULQDQ instruction - most often used for AES-GCM + HasPOPCNT bool // Hamming weight instruction POPCNT. + HasRDRAND bool // RDRAND instruction (on-chip random number generator) + HasRDSEED bool // RDSEED instruction (on-chip random number generator) + HasSSE2 bool // Streaming SIMD extension 2 (always available on amd64) + HasSSE3 bool // Streaming SIMD extension 3 + HasSSSE3 bool // Supplemental streaming SIMD extension 3 + HasSSE41 bool // Streaming SIMD extension 4 and 4.1 + HasSSE42 bool // Streaming SIMD extension 4 and 4.2 + _ CacheLinePad +} + +// ARM64 contains the supported CPU features of the +// current ARMv8(aarch64) platform. If the current platform +// is not arm64 then all feature flags are false. +var ARM64 struct { + _ CacheLinePad + HasFP bool // Floating-point instruction set (always available) + HasASIMD bool // Advanced SIMD (always available) + HasEVTSTRM bool // Event stream support + HasAES bool // AES hardware implementation + HasPMULL bool // Polynomial multiplication instruction set + HasSHA1 bool // SHA1 hardware implementation + HasSHA2 bool // SHA2 hardware implementation + HasCRC32 bool // CRC32 hardware implementation + HasATOMICS bool // Atomic memory operation instruction set + HasFPHP bool // Half precision floating-point instruction set + HasASIMDHP bool // Advanced SIMD half precision instruction set + HasCPUID bool // CPUID identification scheme registers + HasASIMDRDM bool // Rounding double multiply add/subtract instruction set + HasJSCVT bool // Javascript conversion from floating-point to integer + HasFCMA bool // Floating-point multiplication and addition of complex numbers + HasLRCPC bool // Release Consistent processor consistent support + HasDCPOP bool // Persistent memory support + HasSHA3 bool // SHA3 hardware implementation + HasSM3 bool // SM3 hardware implementation + HasSM4 bool // SM4 hardware implementation + HasASIMDDP bool // Advanced SIMD double precision instruction set + HasSHA512 bool // SHA512 hardware implementation + HasSVE bool // Scalable Vector Extensions + HasASIMDFHM bool // Advanced SIMD multiplication FP16 to FP32 + _ CacheLinePad +} + +// ARM contains the supported CPU features of the current ARM (32-bit) platform. +// All feature flags are false if: +// 1. the current platform is not arm, or +// 2. the current operating system is not Linux. +var ARM struct { + _ CacheLinePad + HasSWP bool // SWP instruction support + HasHALF bool // Half-word load and store support + HasTHUMB bool // ARM Thumb instruction set + Has26BIT bool // Address space limited to 26-bits + HasFASTMUL bool // 32-bit operand, 64-bit result multiplication support + HasFPA bool // Floating point arithmetic support + HasVFP bool // Vector floating point support + HasEDSP bool // DSP Extensions support + HasJAVA bool // Java instruction set + HasIWMMXT bool // Intel Wireless MMX technology support + HasCRUNCH bool // MaverickCrunch context switching and handling + HasTHUMBEE bool // Thumb EE instruction set + HasNEON bool // NEON instruction set + HasVFPv3 bool // Vector floating point version 3 support + HasVFPv3D16 bool // Vector floating point version 3 D8-D15 + HasTLS bool // Thread local storage support + HasVFPv4 bool // Vector floating point version 4 support + HasIDIVA bool // Integer divide instruction support in ARM mode + HasIDIVT bool // Integer divide instruction support in Thumb mode + HasVFPD32 bool // Vector floating point version 3 D15-D31 + HasLPAE bool // Large Physical Address Extensions + HasEVTSTRM bool // Event stream support + HasAES bool // AES hardware implementation + HasPMULL bool // Polynomial multiplication instruction set + HasSHA1 bool // SHA1 hardware implementation + HasSHA2 bool // SHA2 hardware implementation + HasCRC32 bool // CRC32 hardware implementation + _ CacheLinePad +} + +// MIPS64X contains the supported CPU features of the current mips64/mips64le +// platforms. If the current platform is not mips64/mips64le or the current +// operating system is not Linux then all feature flags are false. +var MIPS64X struct { + _ CacheLinePad + HasMSA bool // MIPS SIMD architecture + _ CacheLinePad +} + +// PPC64 contains the supported CPU features of the current ppc64/ppc64le platforms. +// If the current platform is not ppc64/ppc64le then all feature flags are false. +// +// For ppc64/ppc64le, it is safe to check only for ISA level starting on ISA v3.00, +// since there are no optional categories. There are some exceptions that also +// require kernel support to work (DARN, SCV), so there are feature bits for +// those as well. The minimum processor requirement is POWER8 (ISA 2.07). +// The struct is padded to avoid false sharing. +var PPC64 struct { + _ CacheLinePad + HasDARN bool // Hardware random number generator (requires kernel enablement) + HasSCV bool // Syscall vectored (requires kernel enablement) + IsPOWER8 bool // ISA v2.07 (POWER8) + IsPOWER9 bool // ISA v3.00 (POWER9) + _ CacheLinePad +} + +// S390X contains the supported CPU features of the current IBM Z +// (s390x) platform. If the current platform is not IBM Z then all +// feature flags are false. +// +// S390X is padded to avoid false sharing. Further HasVX is only set +// if the OS supports vector registers in addition to the STFLE +// feature bit being set. +var S390X struct { + _ CacheLinePad + HasZARCH bool // z/Architecture mode is active [mandatory] + HasSTFLE bool // store facility list extended + HasLDISP bool // long (20-bit) displacements + HasEIMM bool // 32-bit immediates + HasDFP bool // decimal floating point + HasETF3EH bool // ETF-3 enhanced + HasMSA bool // message security assist (CPACF) + HasAES bool // KM-AES{128,192,256} functions + HasAESCBC bool // KMC-AES{128,192,256} functions + HasAESCTR bool // KMCTR-AES{128,192,256} functions + HasAESGCM bool // KMA-GCM-AES{128,192,256} functions + HasGHASH bool // KIMD-GHASH function + HasSHA1 bool // K{I,L}MD-SHA-1 functions + HasSHA256 bool // K{I,L}MD-SHA-256 functions + HasSHA512 bool // K{I,L}MD-SHA-512 functions + HasSHA3 bool // K{I,L}MD-SHA3-{224,256,384,512} and K{I,L}MD-SHAKE-{128,256} functions + HasVX bool // vector facility + HasVXE bool // vector-enhancements facility 1 + _ CacheLinePad +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_aix_ppc64.go b/vendor/golang.org/x/sys/cpu/cpu_aix_ppc64.go new file mode 100644 index 00000000..be602722 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_aix_ppc64.go @@ -0,0 +1,34 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build aix,ppc64 + +package cpu + +const cacheLineSize = 128 + +const ( + // getsystemcfg constants + _SC_IMPL = 2 + _IMPL_POWER8 = 0x10000 + _IMPL_POWER9 = 0x20000 +) + +func init() { + impl := getsystemcfg(_SC_IMPL) + if impl&_IMPL_POWER8 != 0 { + PPC64.IsPOWER8 = true + } + if impl&_IMPL_POWER9 != 0 { + PPC64.IsPOWER9 = true + } + + Initialized = true +} + +func getsystemcfg(label int) (n uint64) { + r0, _ := callgetsystemcfg(label) + n = uint64(r0) + return +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_arm.go b/vendor/golang.org/x/sys/cpu/cpu_arm.go new file mode 100644 index 00000000..981af681 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_arm.go @@ -0,0 +1,40 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package cpu + +const cacheLineSize = 32 + +// HWCAP/HWCAP2 bits. +// These are specific to Linux. +const ( + hwcap_SWP = 1 << 0 + hwcap_HALF = 1 << 1 + hwcap_THUMB = 1 << 2 + hwcap_26BIT = 1 << 3 + hwcap_FAST_MULT = 1 << 4 + hwcap_FPA = 1 << 5 + hwcap_VFP = 1 << 6 + hwcap_EDSP = 1 << 7 + hwcap_JAVA = 1 << 8 + hwcap_IWMMXT = 1 << 9 + hwcap_CRUNCH = 1 << 10 + hwcap_THUMBEE = 1 << 11 + hwcap_NEON = 1 << 12 + hwcap_VFPv3 = 1 << 13 + hwcap_VFPv3D16 = 1 << 14 + hwcap_TLS = 1 << 15 + hwcap_VFPv4 = 1 << 16 + hwcap_IDIVA = 1 << 17 + hwcap_IDIVT = 1 << 18 + hwcap_VFPD32 = 1 << 19 + hwcap_LPAE = 1 << 20 + hwcap_EVTSTRM = 1 << 21 + + hwcap2_AES = 1 << 0 + hwcap2_PMULL = 1 << 1 + hwcap2_SHA1 = 1 << 2 + hwcap2_SHA2 = 1 << 3 + hwcap2_CRC32 = 1 << 4 +) diff --git a/vendor/golang.org/x/sys/cpu/cpu_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_arm64.go new file mode 100644 index 00000000..9c87677a --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_arm64.go @@ -0,0 +1,138 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package cpu + +import "runtime" + +const cacheLineSize = 64 + +func init() { + switch runtime.GOOS { + case "android", "darwin": + // Android and iOS don't seem to allow reading these registers. + // Fake the minimal features expected by + // TestARM64minimalFeatures. + ARM64.HasASIMD = true + ARM64.HasFP = true + case "linux": + doinit() + default: + readARM64Registers() + } +} + +func readARM64Registers() { + Initialized = true + + // ID_AA64ISAR0_EL1 + isar0 := getisar0() + + switch extractBits(isar0, 4, 7) { + case 1: + ARM64.HasAES = true + case 2: + ARM64.HasAES = true + ARM64.HasPMULL = true + } + + switch extractBits(isar0, 8, 11) { + case 1: + ARM64.HasSHA1 = true + } + + switch extractBits(isar0, 12, 15) { + case 1: + ARM64.HasSHA2 = true + case 2: + ARM64.HasSHA2 = true + ARM64.HasSHA512 = true + } + + switch extractBits(isar0, 16, 19) { + case 1: + ARM64.HasCRC32 = true + } + + switch extractBits(isar0, 20, 23) { + case 2: + ARM64.HasATOMICS = true + } + + switch extractBits(isar0, 28, 31) { + case 1: + ARM64.HasASIMDRDM = true + } + + switch extractBits(isar0, 32, 35) { + case 1: + ARM64.HasSHA3 = true + } + + switch extractBits(isar0, 36, 39) { + case 1: + ARM64.HasSM3 = true + } + + switch extractBits(isar0, 40, 43) { + case 1: + ARM64.HasSM4 = true + } + + switch extractBits(isar0, 44, 47) { + case 1: + ARM64.HasASIMDDP = true + } + + // ID_AA64ISAR1_EL1 + isar1 := getisar1() + + switch extractBits(isar1, 0, 3) { + case 1: + ARM64.HasDCPOP = true + } + + switch extractBits(isar1, 12, 15) { + case 1: + ARM64.HasJSCVT = true + } + + switch extractBits(isar1, 16, 19) { + case 1: + ARM64.HasFCMA = true + } + + switch extractBits(isar1, 20, 23) { + case 1: + ARM64.HasLRCPC = true + } + + // ID_AA64PFR0_EL1 + pfr0 := getpfr0() + + switch extractBits(pfr0, 16, 19) { + case 0: + ARM64.HasFP = true + case 1: + ARM64.HasFP = true + ARM64.HasFPHP = true + } + + switch extractBits(pfr0, 20, 23) { + case 0: + ARM64.HasASIMD = true + case 1: + ARM64.HasASIMD = true + ARM64.HasASIMDHP = true + } + + switch extractBits(pfr0, 32, 35) { + case 1: + ARM64.HasSVE = true + } +} + +func extractBits(data uint64, start, end uint) uint { + return (uint)(data>>start) & ((1 << (end - start + 1)) - 1) +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_arm64.s b/vendor/golang.org/x/sys/cpu/cpu_arm64.s new file mode 100644 index 00000000..a54436e3 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_arm64.s @@ -0,0 +1,31 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo + +#include "textflag.h" + +// func getisar0() uint64 +TEXT ·getisar0(SB),NOSPLIT,$0-8 + // get Instruction Set Attributes 0 into x0 + // mrs x0, ID_AA64ISAR0_EL1 = d5380600 + WORD $0xd5380600 + MOVD R0, ret+0(FP) + RET + +// func getisar1() uint64 +TEXT ·getisar1(SB),NOSPLIT,$0-8 + // get Instruction Set Attributes 1 into x0 + // mrs x0, ID_AA64ISAR1_EL1 = d5380620 + WORD $0xd5380620 + MOVD R0, ret+0(FP) + RET + +// func getpfr0() uint64 +TEXT ·getpfr0(SB),NOSPLIT,$0-8 + // get Processor Feature Register 0 into x0 + // mrs x0, ID_AA64PFR0_EL1 = d5380400 + WORD $0xd5380400 + MOVD R0, ret+0(FP) + RET diff --git a/vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go new file mode 100644 index 00000000..7b88e865 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo + +package cpu + +func getisar0() uint64 +func getisar1() uint64 +func getpfr0() uint64 diff --git a/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go b/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go new file mode 100644 index 00000000..568bcd03 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go @@ -0,0 +1,21 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo + +package cpu + +// haveAsmFunctions reports whether the other functions in this file can +// be safely called. +func haveAsmFunctions() bool { return true } + +// The following feature detection functions are defined in cpu_s390x.s. +// They are likely to be expensive to call so the results should be cached. +func stfle() facilityList +func kmQuery() queryResult +func kmcQuery() queryResult +func kmctrQuery() queryResult +func kmaQuery() queryResult +func kimdQuery() queryResult +func klmdQuery() queryResult diff --git a/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go b/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go new file mode 100644 index 00000000..f7cb4697 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go @@ -0,0 +1,16 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build 386 amd64 amd64p32 +// +build !gccgo + +package cpu + +// cpuid is implemented in cpu_x86.s for gc compiler +// and in cpu_gccgo.c for gccgo. +func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32) + +// xgetbv with ecx = 0 is implemented in cpu_x86.s for gc compiler +// and in cpu_gccgo.c for gccgo. +func xgetbv() (eax, edx uint32) diff --git a/vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go new file mode 100644 index 00000000..53ca8d65 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build gccgo + +package cpu + +func getisar0() uint64 { return 0 } +func getisar1() uint64 { return 0 } +func getpfr0() uint64 { return 0 } diff --git a/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go b/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go new file mode 100644 index 00000000..aa986f77 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go @@ -0,0 +1,22 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build gccgo + +package cpu + +// haveAsmFunctions reports whether the other functions in this file can +// be safely called. +func haveAsmFunctions() bool { return false } + +// TODO(mundaym): the following feature detection functions are currently +// stubs. See https://golang.org/cl/162887 for how to fix this. +// They are likely to be expensive to call so the results should be cached. +func stfle() facilityList { panic("not implemented for gccgo") } +func kmQuery() queryResult { panic("not implemented for gccgo") } +func kmcQuery() queryResult { panic("not implemented for gccgo") } +func kmctrQuery() queryResult { panic("not implemented for gccgo") } +func kmaQuery() queryResult { panic("not implemented for gccgo") } +func kimdQuery() queryResult { panic("not implemented for gccgo") } +func klmdQuery() queryResult { panic("not implemented for gccgo") } diff --git a/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c new file mode 100644 index 00000000..e363c7d1 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c @@ -0,0 +1,43 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build 386 amd64 amd64p32 +// +build gccgo + +#include +#include + +// Need to wrap __get_cpuid_count because it's declared as static. +int +gccgoGetCpuidCount(uint32_t leaf, uint32_t subleaf, + uint32_t *eax, uint32_t *ebx, + uint32_t *ecx, uint32_t *edx) +{ + return __get_cpuid_count(leaf, subleaf, eax, ebx, ecx, edx); +} + +// xgetbv reads the contents of an XCR (Extended Control Register) +// specified in the ECX register into registers EDX:EAX. +// Currently, the only supported value for XCR is 0. +// +// TODO: Replace with a better alternative: +// +// #include +// +// #pragma GCC target("xsave") +// +// void gccgoXgetbv(uint32_t *eax, uint32_t *edx) { +// unsigned long long x = _xgetbv(0); +// *eax = x & 0xffffffff; +// *edx = (x >> 32) & 0xffffffff; +// } +// +// Note that _xgetbv is defined starting with GCC 8. +void +gccgoXgetbv(uint32_t *eax, uint32_t *edx) +{ + __asm(" xorl %%ecx, %%ecx\n" + " xgetbv" + : "=a"(*eax), "=d"(*edx)); +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go new file mode 100644 index 00000000..ba49b91b --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go @@ -0,0 +1,26 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build 386 amd64 amd64p32 +// +build gccgo + +package cpu + +//extern gccgoGetCpuidCount +func gccgoGetCpuidCount(eaxArg, ecxArg uint32, eax, ebx, ecx, edx *uint32) + +func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32) { + var a, b, c, d uint32 + gccgoGetCpuidCount(eaxArg, ecxArg, &a, &b, &c, &d) + return a, b, c, d +} + +//extern gccgoXgetbv +func gccgoXgetbv(eax, edx *uint32) + +func xgetbv() (eax, edx uint32) { + var a, d uint32 + gccgoXgetbv(&a, &d) + return a, d +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux.go b/vendor/golang.org/x/sys/cpu/cpu_linux.go new file mode 100644 index 00000000..fe139182 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_linux.go @@ -0,0 +1,15 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !386,!amd64,!amd64p32,!arm64 + +package cpu + +func init() { + if err := readHWCAP(); err != nil { + return + } + doinit() + Initialized = true +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_arm.go b/vendor/golang.org/x/sys/cpu/cpu_linux_arm.go new file mode 100644 index 00000000..2057006d --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_linux_arm.go @@ -0,0 +1,39 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package cpu + +func doinit() { + ARM.HasSWP = isSet(hwCap, hwcap_SWP) + ARM.HasHALF = isSet(hwCap, hwcap_HALF) + ARM.HasTHUMB = isSet(hwCap, hwcap_THUMB) + ARM.Has26BIT = isSet(hwCap, hwcap_26BIT) + ARM.HasFASTMUL = isSet(hwCap, hwcap_FAST_MULT) + ARM.HasFPA = isSet(hwCap, hwcap_FPA) + ARM.HasVFP = isSet(hwCap, hwcap_VFP) + ARM.HasEDSP = isSet(hwCap, hwcap_EDSP) + ARM.HasJAVA = isSet(hwCap, hwcap_JAVA) + ARM.HasIWMMXT = isSet(hwCap, hwcap_IWMMXT) + ARM.HasCRUNCH = isSet(hwCap, hwcap_CRUNCH) + ARM.HasTHUMBEE = isSet(hwCap, hwcap_THUMBEE) + ARM.HasNEON = isSet(hwCap, hwcap_NEON) + ARM.HasVFPv3 = isSet(hwCap, hwcap_VFPv3) + ARM.HasVFPv3D16 = isSet(hwCap, hwcap_VFPv3D16) + ARM.HasTLS = isSet(hwCap, hwcap_TLS) + ARM.HasVFPv4 = isSet(hwCap, hwcap_VFPv4) + ARM.HasIDIVA = isSet(hwCap, hwcap_IDIVA) + ARM.HasIDIVT = isSet(hwCap, hwcap_IDIVT) + ARM.HasVFPD32 = isSet(hwCap, hwcap_VFPD32) + ARM.HasLPAE = isSet(hwCap, hwcap_LPAE) + ARM.HasEVTSTRM = isSet(hwCap, hwcap_EVTSTRM) + ARM.HasAES = isSet(hwCap2, hwcap2_AES) + ARM.HasPMULL = isSet(hwCap2, hwcap2_PMULL) + ARM.HasSHA1 = isSet(hwCap2, hwcap2_SHA1) + ARM.HasSHA2 = isSet(hwCap2, hwcap2_SHA2) + ARM.HasCRC32 = isSet(hwCap2, hwcap2_CRC32) +} + +func isSet(hwc uint, value uint) bool { + return hwc&value != 0 +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go new file mode 100644 index 00000000..79a38a0b --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go @@ -0,0 +1,71 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package cpu + +// HWCAP/HWCAP2 bits. These are exposed by Linux. +const ( + hwcap_FP = 1 << 0 + hwcap_ASIMD = 1 << 1 + hwcap_EVTSTRM = 1 << 2 + hwcap_AES = 1 << 3 + hwcap_PMULL = 1 << 4 + hwcap_SHA1 = 1 << 5 + hwcap_SHA2 = 1 << 6 + hwcap_CRC32 = 1 << 7 + hwcap_ATOMICS = 1 << 8 + hwcap_FPHP = 1 << 9 + hwcap_ASIMDHP = 1 << 10 + hwcap_CPUID = 1 << 11 + hwcap_ASIMDRDM = 1 << 12 + hwcap_JSCVT = 1 << 13 + hwcap_FCMA = 1 << 14 + hwcap_LRCPC = 1 << 15 + hwcap_DCPOP = 1 << 16 + hwcap_SHA3 = 1 << 17 + hwcap_SM3 = 1 << 18 + hwcap_SM4 = 1 << 19 + hwcap_ASIMDDP = 1 << 20 + hwcap_SHA512 = 1 << 21 + hwcap_SVE = 1 << 22 + hwcap_ASIMDFHM = 1 << 23 +) + +func doinit() { + if err := readHWCAP(); err != nil { + // failed to read /proc/self/auxv, try reading registers directly + readARM64Registers() + return + } + + // HWCAP feature bits + ARM64.HasFP = isSet(hwCap, hwcap_FP) + ARM64.HasASIMD = isSet(hwCap, hwcap_ASIMD) + ARM64.HasEVTSTRM = isSet(hwCap, hwcap_EVTSTRM) + ARM64.HasAES = isSet(hwCap, hwcap_AES) + ARM64.HasPMULL = isSet(hwCap, hwcap_PMULL) + ARM64.HasSHA1 = isSet(hwCap, hwcap_SHA1) + ARM64.HasSHA2 = isSet(hwCap, hwcap_SHA2) + ARM64.HasCRC32 = isSet(hwCap, hwcap_CRC32) + ARM64.HasATOMICS = isSet(hwCap, hwcap_ATOMICS) + ARM64.HasFPHP = isSet(hwCap, hwcap_FPHP) + ARM64.HasASIMDHP = isSet(hwCap, hwcap_ASIMDHP) + ARM64.HasCPUID = isSet(hwCap, hwcap_CPUID) + ARM64.HasASIMDRDM = isSet(hwCap, hwcap_ASIMDRDM) + ARM64.HasJSCVT = isSet(hwCap, hwcap_JSCVT) + ARM64.HasFCMA = isSet(hwCap, hwcap_FCMA) + ARM64.HasLRCPC = isSet(hwCap, hwcap_LRCPC) + ARM64.HasDCPOP = isSet(hwCap, hwcap_DCPOP) + ARM64.HasSHA3 = isSet(hwCap, hwcap_SHA3) + ARM64.HasSM3 = isSet(hwCap, hwcap_SM3) + ARM64.HasSM4 = isSet(hwCap, hwcap_SM4) + ARM64.HasASIMDDP = isSet(hwCap, hwcap_ASIMDDP) + ARM64.HasSHA512 = isSet(hwCap, hwcap_SHA512) + ARM64.HasSVE = isSet(hwCap, hwcap_SVE) + ARM64.HasASIMDFHM = isSet(hwCap, hwcap_ASIMDFHM) +} + +func isSet(hwc uint, value uint) bool { + return hwc&value != 0 +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_mips64x.go b/vendor/golang.org/x/sys/cpu/cpu_linux_mips64x.go new file mode 100644 index 00000000..eb24e507 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_linux_mips64x.go @@ -0,0 +1,22 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build mips64 mips64le + +package cpu + +// HWCAP bits. These are exposed by the Linux kernel 5.4. +const ( + // CPU features + hwcap_MIPS_MSA = 1 << 1 +) + +func doinit() { + // HWCAP feature bits + MIPS64X.HasMSA = isSet(hwCap, hwcap_MIPS_MSA) +} + +func isSet(hwc uint, value uint) bool { + return hwc&value != 0 +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go b/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go new file mode 100644 index 00000000..42b5d33c --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go @@ -0,0 +1,9 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build linux,!arm,!arm64,!mips64,!mips64le,!ppc64,!ppc64le,!s390x + +package cpu + +func doinit() {} diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go b/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go new file mode 100644 index 00000000..6c8d975d --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go @@ -0,0 +1,33 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build linux +// +build ppc64 ppc64le + +package cpu + +const cacheLineSize = 128 + +// HWCAP/HWCAP2 bits. These are exposed by the kernel. +const ( + // ISA Level + _PPC_FEATURE2_ARCH_2_07 = 0x80000000 + _PPC_FEATURE2_ARCH_3_00 = 0x00800000 + + // CPU features + _PPC_FEATURE2_DARN = 0x00200000 + _PPC_FEATURE2_SCV = 0x00100000 +) + +func doinit() { + // HWCAP2 feature bits + PPC64.IsPOWER8 = isSet(hwCap2, _PPC_FEATURE2_ARCH_2_07) + PPC64.IsPOWER9 = isSet(hwCap2, _PPC_FEATURE2_ARCH_3_00) + PPC64.HasDARN = isSet(hwCap2, _PPC_FEATURE2_DARN) + PPC64.HasSCV = isSet(hwCap2, _PPC_FEATURE2_SCV) +} + +func isSet(hwc uint, value uint) bool { + return hwc&value != 0 +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go b/vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go new file mode 100644 index 00000000..d579eaef --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go @@ -0,0 +1,161 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package cpu + +const cacheLineSize = 256 + +const ( + // bit mask values from /usr/include/bits/hwcap.h + hwcap_ZARCH = 2 + hwcap_STFLE = 4 + hwcap_MSA = 8 + hwcap_LDISP = 16 + hwcap_EIMM = 32 + hwcap_DFP = 64 + hwcap_ETF3EH = 256 + hwcap_VX = 2048 + hwcap_VXE = 8192 +) + +// bitIsSet reports whether the bit at index is set. The bit index +// is in big endian order, so bit index 0 is the leftmost bit. +func bitIsSet(bits []uint64, index uint) bool { + return bits[index/64]&((1<<63)>>(index%64)) != 0 +} + +// function is the code for the named cryptographic function. +type function uint8 + +const ( + // KM{,A,C,CTR} function codes + aes128 function = 18 // AES-128 + aes192 function = 19 // AES-192 + aes256 function = 20 // AES-256 + + // K{I,L}MD function codes + sha1 function = 1 // SHA-1 + sha256 function = 2 // SHA-256 + sha512 function = 3 // SHA-512 + sha3_224 function = 32 // SHA3-224 + sha3_256 function = 33 // SHA3-256 + sha3_384 function = 34 // SHA3-384 + sha3_512 function = 35 // SHA3-512 + shake128 function = 36 // SHAKE-128 + shake256 function = 37 // SHAKE-256 + + // KLMD function codes + ghash function = 65 // GHASH +) + +// queryResult contains the result of a Query function +// call. Bits are numbered in big endian order so the +// leftmost bit (the MSB) is at index 0. +type queryResult struct { + bits [2]uint64 +} + +// Has reports whether the given functions are present. +func (q *queryResult) Has(fns ...function) bool { + if len(fns) == 0 { + panic("no function codes provided") + } + for _, f := range fns { + if !bitIsSet(q.bits[:], uint(f)) { + return false + } + } + return true +} + +// facility is a bit index for the named facility. +type facility uint8 + +const ( + // cryptography facilities + msa4 facility = 77 // message-security-assist extension 4 + msa8 facility = 146 // message-security-assist extension 8 +) + +// facilityList contains the result of an STFLE call. +// Bits are numbered in big endian order so the +// leftmost bit (the MSB) is at index 0. +type facilityList struct { + bits [4]uint64 +} + +// Has reports whether the given facilities are present. +func (s *facilityList) Has(fs ...facility) bool { + if len(fs) == 0 { + panic("no facility bits provided") + } + for _, f := range fs { + if !bitIsSet(s.bits[:], uint(f)) { + return false + } + } + return true +} + +func doinit() { + // test HWCAP bit vector + has := func(featureMask uint) bool { + return hwCap&featureMask == featureMask + } + + // mandatory + S390X.HasZARCH = has(hwcap_ZARCH) + + // optional + S390X.HasSTFLE = has(hwcap_STFLE) + S390X.HasLDISP = has(hwcap_LDISP) + S390X.HasEIMM = has(hwcap_EIMM) + S390X.HasETF3EH = has(hwcap_ETF3EH) + S390X.HasDFP = has(hwcap_DFP) + S390X.HasMSA = has(hwcap_MSA) + S390X.HasVX = has(hwcap_VX) + if S390X.HasVX { + S390X.HasVXE = has(hwcap_VXE) + } + + // We need implementations of stfle, km and so on + // to detect cryptographic features. + if !haveAsmFunctions() { + return + } + + // optional cryptographic functions + if S390X.HasMSA { + aes := []function{aes128, aes192, aes256} + + // cipher message + km, kmc := kmQuery(), kmcQuery() + S390X.HasAES = km.Has(aes...) + S390X.HasAESCBC = kmc.Has(aes...) + if S390X.HasSTFLE { + facilities := stfle() + if facilities.Has(msa4) { + kmctr := kmctrQuery() + S390X.HasAESCTR = kmctr.Has(aes...) + } + if facilities.Has(msa8) { + kma := kmaQuery() + S390X.HasAESGCM = kma.Has(aes...) + } + } + + // compute message digest + kimd := kimdQuery() // intermediate (no padding) + klmd := klmdQuery() // last (padding) + S390X.HasSHA1 = kimd.Has(sha1) && klmd.Has(sha1) + S390X.HasSHA256 = kimd.Has(sha256) && klmd.Has(sha256) + S390X.HasSHA512 = kimd.Has(sha512) && klmd.Has(sha512) + S390X.HasGHASH = kimd.Has(ghash) // KLMD-GHASH does not exist + sha3 := []function{ + sha3_224, sha3_256, sha3_384, sha3_512, + shake128, shake256, + } + S390X.HasSHA3 = kimd.Has(sha3...) && klmd.Has(sha3...) + } +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_mips64x.go b/vendor/golang.org/x/sys/cpu/cpu_mips64x.go new file mode 100644 index 00000000..6165f121 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_mips64x.go @@ -0,0 +1,9 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build mips64 mips64le + +package cpu + +const cacheLineSize = 32 diff --git a/vendor/golang.org/x/sys/cpu/cpu_mipsx.go b/vendor/golang.org/x/sys/cpu/cpu_mipsx.go new file mode 100644 index 00000000..1269eee8 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_mipsx.go @@ -0,0 +1,9 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build mips mipsle + +package cpu + +const cacheLineSize = 32 diff --git a/vendor/golang.org/x/sys/cpu/cpu_other_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_other_arm64.go new file mode 100644 index 00000000..3ffc4afa --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_other_arm64.go @@ -0,0 +1,9 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !linux,arm64 + +package cpu + +func doinit() {} diff --git a/vendor/golang.org/x/sys/cpu/cpu_riscv64.go b/vendor/golang.org/x/sys/cpu/cpu_riscv64.go new file mode 100644 index 00000000..efe2b7a8 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_riscv64.go @@ -0,0 +1,9 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build riscv64 + +package cpu + +const cacheLineSize = 32 diff --git a/vendor/golang.org/x/sys/cpu/cpu_s390x.s b/vendor/golang.org/x/sys/cpu/cpu_s390x.s new file mode 100644 index 00000000..e5037d92 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_s390x.s @@ -0,0 +1,57 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !gccgo + +#include "textflag.h" + +// func stfle() facilityList +TEXT ·stfle(SB), NOSPLIT|NOFRAME, $0-32 + MOVD $ret+0(FP), R1 + MOVD $3, R0 // last doubleword index to store + XC $32, (R1), (R1) // clear 4 doublewords (32 bytes) + WORD $0xb2b01000 // store facility list extended (STFLE) + RET + +// func kmQuery() queryResult +TEXT ·kmQuery(SB), NOSPLIT|NOFRAME, $0-16 + MOVD $0, R0 // set function code to 0 (KM-Query) + MOVD $ret+0(FP), R1 // address of 16-byte return value + WORD $0xB92E0024 // cipher message (KM) + RET + +// func kmcQuery() queryResult +TEXT ·kmcQuery(SB), NOSPLIT|NOFRAME, $0-16 + MOVD $0, R0 // set function code to 0 (KMC-Query) + MOVD $ret+0(FP), R1 // address of 16-byte return value + WORD $0xB92F0024 // cipher message with chaining (KMC) + RET + +// func kmctrQuery() queryResult +TEXT ·kmctrQuery(SB), NOSPLIT|NOFRAME, $0-16 + MOVD $0, R0 // set function code to 0 (KMCTR-Query) + MOVD $ret+0(FP), R1 // address of 16-byte return value + WORD $0xB92D4024 // cipher message with counter (KMCTR) + RET + +// func kmaQuery() queryResult +TEXT ·kmaQuery(SB), NOSPLIT|NOFRAME, $0-16 + MOVD $0, R0 // set function code to 0 (KMA-Query) + MOVD $ret+0(FP), R1 // address of 16-byte return value + WORD $0xb9296024 // cipher message with authentication (KMA) + RET + +// func kimdQuery() queryResult +TEXT ·kimdQuery(SB), NOSPLIT|NOFRAME, $0-16 + MOVD $0, R0 // set function code to 0 (KIMD-Query) + MOVD $ret+0(FP), R1 // address of 16-byte return value + WORD $0xB93E0024 // compute intermediate message digest (KIMD) + RET + +// func klmdQuery() queryResult +TEXT ·klmdQuery(SB), NOSPLIT|NOFRAME, $0-16 + MOVD $0, R0 // set function code to 0 (KLMD-Query) + MOVD $ret+0(FP), R1 // address of 16-byte return value + WORD $0xB93F0024 // compute last message digest (KLMD) + RET diff --git a/vendor/golang.org/x/sys/cpu/cpu_wasm.go b/vendor/golang.org/x/sys/cpu/cpu_wasm.go new file mode 100644 index 00000000..8681e876 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_wasm.go @@ -0,0 +1,13 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build wasm + +package cpu + +// We're compiling the cpu package for an unknown (software-abstracted) CPU. +// Make CacheLinePad an empty struct and hope that the usual struct alignment +// rules are good enough. + +const cacheLineSize = 0 diff --git a/vendor/golang.org/x/sys/cpu/cpu_x86.go b/vendor/golang.org/x/sys/cpu/cpu_x86.go new file mode 100644 index 00000000..d70d317f --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_x86.go @@ -0,0 +1,59 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build 386 amd64 amd64p32 + +package cpu + +const cacheLineSize = 64 + +func init() { + Initialized = true + + maxID, _, _, _ := cpuid(0, 0) + + if maxID < 1 { + return + } + + _, _, ecx1, edx1 := cpuid(1, 0) + X86.HasSSE2 = isSet(26, edx1) + + X86.HasSSE3 = isSet(0, ecx1) + X86.HasPCLMULQDQ = isSet(1, ecx1) + X86.HasSSSE3 = isSet(9, ecx1) + X86.HasFMA = isSet(12, ecx1) + X86.HasSSE41 = isSet(19, ecx1) + X86.HasSSE42 = isSet(20, ecx1) + X86.HasPOPCNT = isSet(23, ecx1) + X86.HasAES = isSet(25, ecx1) + X86.HasOSXSAVE = isSet(27, ecx1) + X86.HasRDRAND = isSet(30, ecx1) + + osSupportsAVX := false + // For XGETBV, OSXSAVE bit is required and sufficient. + if X86.HasOSXSAVE { + eax, _ := xgetbv() + // Check if XMM and YMM registers have OS support. + osSupportsAVX = isSet(1, eax) && isSet(2, eax) + } + + X86.HasAVX = isSet(28, ecx1) && osSupportsAVX + + if maxID < 7 { + return + } + + _, ebx7, _, _ := cpuid(7, 0) + X86.HasBMI1 = isSet(3, ebx7) + X86.HasAVX2 = isSet(5, ebx7) && osSupportsAVX + X86.HasBMI2 = isSet(8, ebx7) + X86.HasERMS = isSet(9, ebx7) + X86.HasRDSEED = isSet(18, ebx7) + X86.HasADX = isSet(19, ebx7) +} + +func isSet(bitpos uint, value uint32) bool { + return value&(1<> 63)) +) + +// For those platforms don't have a 'cpuid' equivalent we use HWCAP/HWCAP2 +// These are initialized in cpu_$GOARCH.go +// and should not be changed after they are initialized. +var hwCap uint +var hwCap2 uint + +func readHWCAP() error { + buf, err := ioutil.ReadFile(procAuxv) + if err != nil { + // e.g. on android /proc/self/auxv is not accessible, so silently + // ignore the error and leave Initialized = false. On some + // architectures (e.g. arm64) doinit() implements a fallback + // readout and will set Initialized = true again. + return err + } + bo := hostByteOrder() + for len(buf) >= 2*(uintSize/8) { + var tag, val uint + switch uintSize { + case 32: + tag = uint(bo.Uint32(buf[0:])) + val = uint(bo.Uint32(buf[4:])) + buf = buf[8:] + case 64: + tag = uint(bo.Uint64(buf[0:])) + val = uint(bo.Uint64(buf[8:])) + buf = buf[16:] + } + switch tag { + case _AT_HWCAP: + hwCap = val + case _AT_HWCAP2: + hwCap2 = val + } + } + return nil +} diff --git a/vendor/golang.org/x/sys/cpu/syscall_aix_ppc64_gc.go b/vendor/golang.org/x/sys/cpu/syscall_aix_ppc64_gc.go new file mode 100644 index 00000000..78fe25e8 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/syscall_aix_ppc64_gc.go @@ -0,0 +1,36 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Minimal copy of x/sys/unix so the cpu package can make a +// system call on AIX without depending on x/sys/unix. +// (See golang.org/issue/32102) + +// +build aix,ppc64 +// +build !gccgo + +package cpu + +import ( + "syscall" + "unsafe" +) + +//go:cgo_import_dynamic libc_getsystemcfg getsystemcfg "libc.a/shr_64.o" + +//go:linkname libc_getsystemcfg libc_getsystemcfg + +type syscallFunc uintptr + +var libc_getsystemcfg syscallFunc + +type errno = syscall.Errno + +// Implemented in runtime/syscall_aix.go. +func rawSyscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err errno) +func syscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err errno) + +func callgetsystemcfg(label int) (r1 uintptr, e1 errno) { + r1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_getsystemcfg)), 1, uintptr(label), 0, 0, 0, 0, 0) + return +} diff --git a/vendor/modules.txt b/vendor/modules.txt index 3d44be7f..13665e70 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -56,7 +56,7 @@ github.com/aws/aws-sdk-go/service/sts/stsiface github.com/bgentry/go-netrc/netrc # github.com/bgentry/speakeasy v0.1.0 github.com/bgentry/speakeasy -# github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220209133549-b2680916c1f0 +# github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220221090018-2ef5003b2be2 github.com/ciscoecosystem/mso-go-client/client github.com/ciscoecosystem/mso-go-client/container github.com/ciscoecosystem/mso-go-client/models @@ -133,6 +133,7 @@ github.com/hashicorp/terraform-config-inspect/tfconfig github.com/hashicorp/terraform-json # github.com/hashicorp/terraform-plugin-sdk v1.14.0 github.com/hashicorp/terraform-plugin-sdk/acctest +github.com/hashicorp/terraform-plugin-sdk/helper/acctest github.com/hashicorp/terraform-plugin-sdk/helper/hashcode github.com/hashicorp/terraform-plugin-sdk/helper/logging github.com/hashicorp/terraform-plugin-sdk/helper/resource @@ -256,12 +257,20 @@ go.opencensus.io/trace/tracestate golang.org/x/crypto/bcrypt golang.org/x/crypto/blowfish golang.org/x/crypto/cast5 +golang.org/x/crypto/chacha20 +golang.org/x/crypto/curve25519 +golang.org/x/crypto/ed25519 +golang.org/x/crypto/ed25519/internal/edwards25519 +golang.org/x/crypto/internal/subtle golang.org/x/crypto/openpgp golang.org/x/crypto/openpgp/armor golang.org/x/crypto/openpgp/elgamal golang.org/x/crypto/openpgp/errors golang.org/x/crypto/openpgp/packet golang.org/x/crypto/openpgp/s2k +golang.org/x/crypto/poly1305 +golang.org/x/crypto/ssh +golang.org/x/crypto/ssh/internal/bcrypt_pbkdf # golang.org/x/net v0.0.0-20200301022130-244492dfa37a golang.org/x/net/context golang.org/x/net/context/ctxhttp @@ -278,6 +287,7 @@ golang.org/x/oauth2/internal golang.org/x/oauth2/jws golang.org/x/oauth2/jwt # golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527 +golang.org/x/sys/cpu golang.org/x/sys/unix # golang.org/x/text v0.3.2 golang.org/x/text/secure/bidirule From 01b90610a0e2f064606d93594ef807182bfe31ac Mon Sep 17 00:00:00 2001 From: harshthakkar_crest Date: Thu, 17 Feb 2022 15:23:33 +0530 Subject: [PATCH 05/67] final commit for mso_schema_site_l3out_final --- examples/schema_site_l3out/main.tf | 50 +++ go.mod | 2 +- go.sum | 8 +- mso/datasource_mso_schema_site_l3out.go | 70 ++++ mso/datasource_mso_schema_site_l3out_test.go | 220 ++++++++++++ mso/provider.go | 3 + mso/provider_test.go | 29 ++ ...resource_mso_schema_site_anp_epg_domain.go | 2 +- mso/resource_mso_schema_site_l3out.go | 162 +++++++++ mso/resource_mso_schema_site_l3out_test.go | 313 ++++++++++++++++++ ...ce_mso_schema_template_anp_epg_contract.go | 2 +- ...urce_mso_schema_template_anp_epg_subnet.go | 2 +- ...mso_schema_template_external_epg_subnet.go | 2 +- .../docs/d/schema_site_l3out.html.markdown | 34 ++ .../docs/r/schema_site_l3out.html.markdown | 42 +++ website/mso.erb | 6 + 16 files changed, 940 insertions(+), 7 deletions(-) create mode 100644 examples/schema_site_l3out/main.tf create mode 100644 mso/datasource_mso_schema_site_l3out.go create mode 100644 mso/datasource_mso_schema_site_l3out_test.go create mode 100644 mso/resource_mso_schema_site_l3out.go create mode 100644 mso/resource_mso_schema_site_l3out_test.go create mode 100644 website/docs/d/schema_site_l3out.html.markdown create mode 100644 website/docs/r/schema_site_l3out.html.markdown diff --git a/examples/schema_site_l3out/main.tf b/examples/schema_site_l3out/main.tf new file mode 100644 index 00000000..dc340e55 --- /dev/null +++ b/examples/schema_site_l3out/main.tf @@ -0,0 +1,50 @@ +terraform { + required_providers { + mso = { + source = "CiscoDevNet/mso" + } + } +} + +provider "mso" { + username = "" # + password = "" # + url = "" # + insecure = true +} + +data "mso_site" "example" { + name = "example" +} + +data "mso_tenant" "example" { + name = "example" + display_name = "example" +} + +resource "mso_schema" "example" { + name = "example" + template_name = "example" + tenant_id = data.mso_tenant.example.id +} + +resource "mso_schema_site" "example" { + schema_id = mso_schema.example.id + site_id = data.mso_site.example.id + template_name = "example" +} + +resource "mso_schema_site_vrf" "example" { + template_name = mso_schema_site.example.template_name + site_id = mso_schema_site.example.site_id + schema_id = mso_schema_site.example.schema_id + vrf_name = "example" +} + +resource "mso_schema_site_l3out" "example" { + schema_id = mso_schema_site.example.schema_id + l3out_name = "example" + template_name = mso_schema_site.example.template_name + vrf_name = mso_schema_site_vrf.example.vrf_name + site_id = mso_schema_site.example.site_id +} \ No newline at end of file diff --git a/go.mod b/go.mod index 898e590a..453174d5 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/terraform-providers/terraform-provider-mso go 1.13 require ( - github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220221090018-2ef5003b2be2 + github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220217092633-41a1e5eef2d2 github.com/hashicorp/terraform-plugin-sdk v1.14.0 github.com/stretchr/testify v1.6.1 // indirect golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect diff --git a/go.sum b/go.sum index 8c09a408..d5f3eab7 100644 --- a/go.sum +++ b/go.sum @@ -32,8 +32,12 @@ github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQ github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cheggaaa/pb v1.0.27/go.mod h1:pQciLPpbU0oxA0h+VJYYLxO+XeDQb5pZijXscXHm81s= -github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220221090018-2ef5003b2be2 h1:nlZk0IUkjbKzUNgwJZdAy6Q7m9+ZONxXxmmP/bh/QMU= -github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220221090018-2ef5003b2be2/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= +github.com/ciscoecosystem/mso-go-client v1.2.6 h1:CU8l0cs15WNJFHQLJA/hJA6H4/vgra2WbP/+Rt4h9uM= +github.com/ciscoecosystem/mso-go-client v1.2.6/go.mod h1:ffy+aqN7Zo7GZC8e0pSt+Kbc32wjqkc+zDD42Ug0lWw= +github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220217092633-41a1e5eef2d2 h1:e8C9TjfWngtnNftfX+1UrohBSiRxurnM6Q9Dh1buTBg= +github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220217092633-41a1e5eef2d2/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= +github.com/ciscoecosystem/mso-go-client v1.3.1-0.20220217072151-d0264473c67b h1:8W5XE/Mrh2W1g/bjXP3JO+8J8+lL0iVw0lMzQQfOu+4= +github.com/ciscoecosystem/mso-go-client v1.3.1-0.20220217072151-d0264473c67b/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/mso/datasource_mso_schema_site_l3out.go b/mso/datasource_mso_schema_site_l3out.go new file mode 100644 index 00000000..5e420ffe --- /dev/null +++ b/mso/datasource_mso_schema_site_l3out.go @@ -0,0 +1,70 @@ +package mso + +import ( + "log" + + "github.com/ciscoecosystem/mso-go-client/client" + "github.com/ciscoecosystem/mso-go-client/models" + "github.com/hashicorp/terraform-plugin-sdk/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/helper/validation" +) + +func datasourceMSOSchemaSiteL3out() *schema.Resource { + return &schema.Resource{ + Read: datasourceMSOSchemaSiteL3outRead, + SchemaVersion: 1, + Schema: map[string]*schema.Schema{ + "l3out_name": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "vrf_name": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "template_name": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "site_id": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "schema_id": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + }, + } +} + +func datasourceMSOSchemaSiteL3outRead(d *schema.ResourceData, m interface{}) error { + log.Println("[DEBUG] Schema Site L3out: Beginning Read") + msoClient := m.(*client.Client) + schemaId := d.Get("schema_id").(string) + siteId := d.Get("site_id").(string) + templateName := d.Get("template_name").(string) + vrfName := d.Get("vrf_name").(string) + l3outName := d.Get("l3out_name").(string) + l3outMap := models.IntersiteL3outs{ + SchemaID: schemaId, + SiteId: siteId, + TemplateName: templateName, + VRFName: vrfName, + L3outName: l3outName, + } + l3outMapRemote, err := msoClient.ReadIntersiteL3outs(&l3outMap) + if err != nil { + d.SetId("") + return err + } + setMSOSchemaSiteL3outAttributes(l3outMapRemote, d) + d.SetId(L3outModelToL3outId(&l3outMap)) + log.Println("[DEBUG] Schema Site L3out: Reading Completed", d.Id()) + return nil +} diff --git a/mso/datasource_mso_schema_site_l3out_test.go b/mso/datasource_mso_schema_site_l3out_test.go new file mode 100644 index 00000000..74178ed4 --- /dev/null +++ b/mso/datasource_mso_schema_site_l3out_test.go @@ -0,0 +1,220 @@ +package mso + +import ( + "fmt" + "regexp" + "testing" + + "github.com/ciscoecosystem/mso-go-client/models" + "github.com/hashicorp/terraform-plugin-sdk/helper/acctest" + "github.com/hashicorp/terraform-plugin-sdk/helper/resource" +) + +func TestAccMSOSchemaSiteL3out_DataSource(t *testing.T) { + var l3outModel models.IntersiteL3outs + resourceName := "mso_schema_site_l3out.test" + dataSourceName := "mso_schema_site_l3out.test" + vrf := makeTestVariable(acctest.RandString(5)) + l3out := makeTestVariable(acctest.RandString(5)) + prnames := makeTestVariable(acctest.RandString(5)) + randomParameter := acctest.RandStringFromCharSet(5, "abcdefghijklmnopqrstuvwxyz") + randomValue := acctest.RandString(5) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSOSchemaSiteL3outDestroy, + Steps: []resource.TestStep{ + { + Config: MSOSchemaSiteL3outDataSourceWithoutRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out, "schema_id"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteL3outDataSourceWithoutRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out, "l3out_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteL3outDataSourceWithoutRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out, "template_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteL3outDataSourceWithoutRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out, "vrf_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteL3outDataSourceWithoutRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out, "site_id"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteL3outDataSourceAttr(siteNames[0], tenantNames[0], prnames, vrf, l3out, randomParameter, randomValue), + ExpectError: regexp.MustCompile(`An argument named(.)+is not expected here.`), + }, + { + Config: MSOSchemaSiteL3outDataSourceInvalidName(siteNames[0], tenantNames[0], prnames, vrf, l3out), + ExpectError: regexp.MustCompile(`unable to find siteL3out`), + }, + { + Config: MSOSchemaSiteL3outDataSourceWithRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &l3outModel), + resource.TestCheckResourceAttrPair(resourceName, "schema_id", dataSourceName, "schema_id"), + resource.TestCheckResourceAttrPair(resourceName, "l3out_name", dataSourceName, "l3out_name"), + resource.TestCheckResourceAttrPair(resourceName, "template_name", dataSourceName, "template_name"), + resource.TestCheckResourceAttrPair(resourceName, "vrf_name", dataSourceName, "vrf_name"), + resource.TestCheckResourceAttrPair(resourceName, "site_id", dataSourceName, "site_id"), + ), + }, + }, + }) +} + +func MSOSchemaSiteL3outDataSourceWithoutRequired(site, tenant, name, vrf, l3out, attr string) string { + rBlock := CreatSchemaSiteConfig(site, tenant, name) + rBlock += ` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + resource "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site.test.schema_id + l3out_name = "%s" + template_name = mso_schema_site.test.template_name + vrf_name = mso_schema_site_vrf.test.vrf_name + site_id = mso_schema_site.test.site_id + } + ` + switch attr { + case "schema_id": + rBlock += ` + data "mso_schema_site_l3out" "test" { + # schema_id = mso_schema_site_l3out.test.schema_id + l3out_name = mso_schema_site_l3out.test.l3out_name + template_name = mso_schema_site_l3out.test.template_name + vrf_name = mso_schema_site_l3out.test.vrf_name + site_id = mso_schema_site_l3out.test.site_id + }` + case "l3out_name": + rBlock += ` + data "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site_l3out.test.schema_id + # l3out_name = mso_schema_site_l3out.test.l3out_name + template_name = mso_schema_site_l3out.test.template_name + vrf_name = mso_schema_site_l3out.test.vrf_name + site_id = mso_schema_site_l3out.test.site_id + }` + case "template_name": + rBlock += ` + data "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site_l3out.test.schema_id + l3out_name = mso_schema_site_l3out.test.l3out_name + # template_name = mso_schema_site_l3out.test.template_name + vrf_name = mso_schema_site_l3out.test.vrf_name + site_id = mso_schema_site_l3out.test.site_id + } + ` + case "vrf_name": + rBlock += ` + data "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site_l3out.test.schema_id + l3out_name = mso_schema_site_l3out.test.l3out_name + template_name = mso_schema_site_l3out.test.template_name + # vrf_name = mso_schema_site_l3out.test.vrf_name + site_id = mso_schema_site_l3out.test.site_id + } + ` + case "site_id": + rBlock += ` + data "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site_l3out.test.schema_id + l3out_name = mso_schema_site_l3out.test.l3out_name + template_name = mso_schema_site_l3out.test.template_name + vrf_name = mso_schema_site_l3out.test.vrf_name + # site_id = mso_schema_site_l3out.test.site_id + } + ` + } + return fmt.Sprintf(rBlock, vrf, l3out) +} + +func MSOSchemaSiteL3outDataSourceInvalidName(site, name, user, vrf, l3out string) string { + resource := CreatSchemaSiteConfig(site, name, user) + resource += fmt.Sprintf(` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + resource "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site.test.schema_id + l3out_name = "%s" + template_name = mso_schema_site.test.template_name + vrf_name = mso_schema_site_vrf.test.vrf_name + site_id = mso_schema_site.test.site_id + } + data "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site_l3out.test.schema_id + l3out_name = "${mso_schema_site_l3out.test.l3out_name}_invalid" + template_name = mso_schema_site_l3out.test.template_name + vrf_name = mso_schema_site_l3out.test.vrf_name + site_id = mso_schema_site_l3out.test.site_id + } + `, vrf, l3out) + return resource +} + +func MSOSchemaSiteL3outDataSourceAttr(site, name, user, vrf, l3out, key, val string) string { + resource := CreatSchemaSiteConfig(site, name, user) + resource += fmt.Sprintf(` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + resource "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site.test.schema_id + l3out_name = "%s" + template_name = mso_schema_site.test.template_name + vrf_name = mso_schema_site_vrf.test.vrf_name + site_id = mso_schema_site.test.site_id + } + data "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site_l3out.test.schema_id + l3out_name = mso_schema_site_l3out.test.l3out_name + template_name = mso_schema_site_l3out.test.template_name + vrf_name = mso_schema_site_l3out.test.vrf_name + site_id = mso_schema_site_l3out.test.site_id + %s = "%s" + } + `, vrf, l3out, key, val) + return resource +} + +func MSOSchemaSiteL3outDataSourceWithRequired(site, name, user, vrf, l3out string) string { + resource := CreatSchemaSiteConfig(site, name, user) + resource += fmt.Sprintf(` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + resource "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site.test.schema_id + l3out_name = "%s" + template_name = mso_schema_site.test.template_name + vrf_name = mso_schema_site_vrf.test.vrf_name + site_id = mso_schema_site.test.site_id + } + data "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site_l3out.test.schema_id + l3out_name = mso_schema_site_l3out.test.l3out_name + template_name = mso_schema_site_l3out.test.template_name + vrf_name = mso_schema_site_l3out.test.vrf_name + site_id = mso_schema_site_l3out.test.site_id + } + `, vrf, l3out) + return resource +} diff --git a/mso/provider.go b/mso/provider.go index c7ec2a54..06c16145 100644 --- a/mso/provider.go +++ b/mso/provider.go @@ -52,6 +52,7 @@ func Provider() terraform.ResourceProvider { Type: schema.TypeString, Optional: true, Description: "Parameter that specifies where MSO is installed", // defaults to "mso" + DefaultFunc: schema.EnvDefaultFunc("MSO_PLATFORM", "mso"), ValidateFunc: validation.StringInSlice([]string{ "mso", "nd", @@ -108,6 +109,7 @@ func Provider() terraform.ResourceProvider { "mso_service_node_type": resourceMSOServiceNodeType(), "mso_schema_template_contract_service_graph": resourceTemplateContractServiceGraph(), "mso_dhcp_option_policy": resourceMSODHCPOptionPolicy(), + "mso_schema_site_l3out": resourceMSOSchemaSiteL3out(), }, DataSourcesMap: map[string]*schema.Resource{ @@ -157,6 +159,7 @@ func Provider() terraform.ResourceProvider { "mso_service_node_type": dataSourceMSOServiceNodeType(), "mso_schema_template_contract_service_graph": datasourceTemplateContractServiceGraph(), "mso_dhcp_option_policy": datasourceMSODHCPOptionPolicy(), + "mso_schema_site_l3out": datasourceMSOSchemaSiteL3out(), }, ConfigureFunc: configureClient, diff --git a/mso/provider_test.go b/mso/provider_test.go index 055ffe2c..91d72819 100644 --- a/mso/provider_test.go +++ b/mso/provider_test.go @@ -1,6 +1,7 @@ package mso import ( + "fmt" "os" "testing" @@ -10,6 +11,34 @@ import ( var testAccProviders map[string]terraform.ResourceProvider var testAccProvider *schema.Provider +var siteNames = []string{"ansible_test"} +var tenantNames=[]string{"acctest_crest"} + +func CreatSchemaSiteConfig(site, tenant, name string) string { + resource := fmt.Sprintf(` + data "mso_site" "test" { + name = "%s" + } + + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + + resource "mso_schema" "test" { + name = "%s" + template_name = "%s" + tenant_id = data.mso_tenant.test.id + } + + resource "mso_schema_site" "test" { + schema_id = mso_schema.test.id + site_id = data.mso_site.test.id + template_name = "%s" + } + `, site, tenant,tenant,name,name,name) + return resource +} func init() { testAccProvider = Provider().(*schema.Provider) diff --git a/mso/resource_mso_schema_site_anp_epg_domain.go b/mso/resource_mso_schema_site_anp_epg_domain.go index fa77d23f..5d43a06f 100644 --- a/mso/resource_mso_schema_site_anp_epg_domain.go +++ b/mso/resource_mso_schema_site_anp_epg_domain.go @@ -818,7 +818,7 @@ func resourceMSOSchemaSiteAnpEpgDomainUpdate(d *schema.ResourceData, m interface return err } if index == -1 { - fmt.Errorf("The given Anp Epg Domain is not found") + return fmt.Errorf("The given Anp Epg Domain is not found") } indexs := strconv.Itoa(index) diff --git a/mso/resource_mso_schema_site_l3out.go b/mso/resource_mso_schema_site_l3out.go new file mode 100644 index 00000000..2f9d33d6 --- /dev/null +++ b/mso/resource_mso_schema_site_l3out.go @@ -0,0 +1,162 @@ +package mso + +import ( + "fmt" + "log" + "strings" + + "github.com/ciscoecosystem/mso-go-client/client" + "github.com/ciscoecosystem/mso-go-client/models" + "github.com/hashicorp/terraform-plugin-sdk/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/helper/validation" +) + +func resourceMSOSchemaSiteL3out() *schema.Resource { + return &schema.Resource{ + Create: resourceMSOSchemaSiteL3outCreate, + Read: resourceMSOSchemaSiteL3outRead, + Delete: resourceMSOSchemaSiteL3outDelete, + Importer: &schema.ResourceImporter{ + State: resourceMSOSchemaSiteL3outImport, + }, + SchemaVersion: 1, + Schema: map[string]*schema.Schema{ + "l3out_name": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "vrf_name": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "template_name": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "site_id": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "schema_id": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + }, + } +} + +func setMSOSchemaSiteL3outAttributes(l3outMap *models.IntersiteL3outs, d *schema.ResourceData) { + d.Set("l3out_name", l3outMap.L3outName) + d.Set("vrf_name", l3outMap.VRFName) + d.Set("template_name", l3outMap.TemplateName) + d.Set("site_id", l3outMap.SiteId) + d.Set("schema_id", l3outMap.SchemaID) +} + +func resourceMSOSchemaSiteL3outImport(d *schema.ResourceData, m interface{}) ([]*schema.ResourceData, error) { + log.Println("[DEBUG] Schema Site L3out: Beginning Import", d.Id()) + msoClient := m.(*client.Client) + id := d.Id() + L3out, err := L3outIdToL3outModel(id) + if err != nil { + return nil, err + } + l3outMapRemote, err := msoClient.ReadIntersiteL3outs(L3out) + if err != nil { + return nil, err + } + setMSOSchemaSiteL3outAttributes(l3outMapRemote, d) + d.SetId(id) + log.Println("[DEBUG] Schema Site L3out: Import Completed", d.Id()) + return []*schema.ResourceData{d}, nil +} + +func resourceMSOSchemaSiteL3outCreate(d *schema.ResourceData, m interface{}) error { + log.Printf("[DEBUG] Schema Site L3out: Beginning Creation") + msoClient := m.(*client.Client) + schemaId := d.Get("schema_id").(string) + siteId := d.Get("site_id").(string) + templateName := d.Get("template_name").(string) + vrfName := d.Get("vrf_name").(string) + l3outName := d.Get("l3out_name").(string) + l3outMap := models.IntersiteL3outs{ + L3outName: l3outName, + VRFName: vrfName, + SiteId: siteId, + TemplateName: templateName, + SchemaID: schemaId, + } + err := msoClient.CreateIntersiteL3outs(&l3outMap) + if err != nil { + return err + } + l3outId := L3outModelToL3outId(&l3outMap) + d.SetId(l3outId) + log.Printf("[DEBUG] Schema Site L3out: Creation Completed") + return resourceMSOSchemaSiteL3outRead(d, m) +} + +func resourceMSOSchemaSiteL3outRead(d *schema.ResourceData, m interface{}) error { + log.Println("[DEBUG] Schema Site L3out: Beginning Read", d.Id()) + msoClient := m.(*client.Client) + id := d.Id() + l3out, err := L3outIdToL3outModel(id) + if err != nil { + return err + } + l3outMapRemote, err := msoClient.ReadIntersiteL3outs(l3out) + if err != nil { + d.SetId("") + return nil + } + setMSOSchemaSiteL3outAttributes(l3outMapRemote, d) + d.SetId(L3outModelToL3outId(l3out)) + log.Println("[DEBUG] Schema Site L3out: Reading Completed", d.Id()) + return nil +} + +func resourceMSOSchemaSiteL3outDelete(d *schema.ResourceData, m interface{}) error { + log.Println("[DEBUG] Schema Site L3out: Beginning Destroy", d.Id()) + msoClient := m.(*client.Client) + id := d.Id() + l3out, err := L3outIdToL3outModel(id) + if err != nil { + return err + } + err = msoClient.DeleteIntersiteL3outs(l3out) + if err != nil { + return err + } + log.Println("[DEBUG] Schema Site L3out: Beginning Destroy", d.Id()) + d.SetId("") + return err +} + +func L3outModelToL3outId(m *models.IntersiteL3outs) string { + return fmt.Sprintf("%s/site/%s/template/%s/vrf/%s/l3out/%s", m.SchemaID, m.SiteId, m.TemplateName, m.VRFName, m.L3outName) +} + +func L3outIdToL3outModel(id string) (*models.IntersiteL3outs, error) { + getAttributes := strings.Split(id, "/") + if len(getAttributes) != 9 || getAttributes[1] != "site" || getAttributes[3] != "template" || getAttributes[5] != "vrf" || getAttributes[7] != "l3out" { + return nil, fmt.Errorf("invalid mso_schema_site_l3out id format") + } + l3outMap := models.IntersiteL3outs{ + SchemaID: getAttributes[0], + SiteId: getAttributes[2], + TemplateName: getAttributes[4], + VRFName: getAttributes[6], + L3outName: getAttributes[8], + } + return &l3outMap, nil +} diff --git a/mso/resource_mso_schema_site_l3out_test.go b/mso/resource_mso_schema_site_l3out_test.go new file mode 100644 index 00000000..832678e0 --- /dev/null +++ b/mso/resource_mso_schema_site_l3out_test.go @@ -0,0 +1,313 @@ +package mso + +import ( + "fmt" + "regexp" + "testing" + + "github.com/ciscoecosystem/mso-go-client/client" + "github.com/ciscoecosystem/mso-go-client/models" + "github.com/hashicorp/terraform-plugin-sdk/helper/acctest" + "github.com/hashicorp/terraform-plugin-sdk/helper/resource" + "github.com/hashicorp/terraform-plugin-sdk/terraform" +) + +func TestAccMSOSchemaSiteL3out_Basic(t *testing.T) { + var l3out1 models.IntersiteL3outs + var l3out2 models.IntersiteL3outs + resourceName := "mso_schema_site_l3out.test" + vrf := makeTestVariable(acctest.RandString(5)) + vrfOther := makeTestVariable(acctest.RandString(5)) + l3out := makeTestVariable(acctest.RandString(5)) + l3outOther := makeTestVariable(acctest.RandString(5)) + prnames := makeTestVariable(acctest.RandString(5)) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSOSchemaSiteL3outDestroy, + Steps: []resource.TestStep{ + { + Config: MSOSchemaSiteL3outWithoutRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out, "schema_id"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteL3outWithoutRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out, "l3out_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteL3outWithoutRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out, "template_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteL3outWithoutRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out, "vrf_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteL3outWithoutRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out, "site_id"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteL3outWithRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &l3out1), + resource.TestCheckResourceAttrSet(resourceName, "schema_id"), + resource.TestCheckResourceAttr(resourceName, "l3out_name", l3out), + resource.TestCheckResourceAttr(resourceName, "template_name", prnames), + resource.TestCheckResourceAttr(resourceName, "vrf_name", vrf), + resource.TestCheckResourceAttrSet(resourceName, "site_id"), + ), + }, + { + ResourceName: resourceName, + ImportState: true, + ImportStateVerify: true, + }, + { + Config: MSOSchemaSiteL3outWithRequired(siteNames[0], tenantNames[0], prnames, vrf, l3outOther), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &l3out2), + resource.TestCheckResourceAttrSet(resourceName, "schema_id"), + resource.TestCheckResourceAttr(resourceName, "l3out_name", l3outOther), + resource.TestCheckResourceAttr(resourceName, "template_name", prnames), + resource.TestCheckResourceAttr(resourceName, "vrf_name", vrf), + resource.TestCheckResourceAttrSet(resourceName, "site_id"), + testAccCheckMSOSchemaSiteL3outIdNotEqual(&l3out1, &l3out2), + ), + }, + { + Config: MSOSchemaSiteL3outWithRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out), + }, + { + Config: MSOSchemaSiteL3outWithRequired(siteNames[0], tenantNames[0], prnames, vrfOther, l3out), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPOptionPolicyExists(resourceName, &l3out2), + resource.TestCheckResourceAttrSet(resourceName, "schema_id"), + resource.TestCheckResourceAttr(resourceName, "l3out_name", l3out), + resource.TestCheckResourceAttr(resourceName, "template_name", prnames), + resource.TestCheckResourceAttr(resourceName, "vrf_name", vrfOther), + resource.TestCheckResourceAttrSet(resourceName, "site_id"), + testAccCheckMSOSchemaSiteL3outIdNotEqual(&l3out1, &l3out2), + ), + }, + }, + }) +} + +func TestAccMSOSchemaSiteL3out_Negative(t *testing.T) { + vrf := makeTestVariable(acctest.RandString(5)) + l3out := makeTestVariable(acctest.RandString(5)) + prnames := makeTestVariable(acctest.RandString(5)) + randomParameter := acctest.RandStringFromCharSet(5, "abcdefghijklmnopqrstuvwxyz") + randomValue := acctest.RandString(5) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSOSchemaSiteL3outDestroy, + Steps: []resource.TestStep{ + { + Config: MSOSchemaSiteL3outWithRequired(siteNames[0], tenantNames[0], prnames, vrf, acctest.RandString(1001)), + ExpectError: regexp.MustCompile(`1 - 1000`), + }, + { + Config: MSOSchemaSiteL3outAttr(siteNames[0], tenantNames[0], prnames, vrf, l3out, randomParameter, randomValue), + ExpectError: regexp.MustCompile(`An argument named(.)+is not expected here.`), + }, + { + Config: MSOSchemaSiteL3outWithRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out), + }, + }, + }) +} + +func TestAccMSOSchemaSiteL3out_MultipleCreateDelete(t *testing.T) { + vrf := makeTestVariable(acctest.RandString(5)) + l3out := makeTestVariable(acctest.RandString(5)) + prnames := makeTestVariable(acctest.RandString(5)) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSOSchemaSiteL3outDestroy, + Steps: []resource.TestStep{ + { + Config: MSOSchemaSiteL3outMultiple(siteNames[0], tenantNames[0], prnames, vrf, l3out), + }, + }, + }) +} + +func testAccCheckMSOSchemaSiteL3outIdNotEqual(m1, m2 *models.IntersiteL3outs) resource.TestCheckFunc { + return func(s *terraform.State) error { + id1 := L3outModelToL3outId(m1) + id2 := L3outModelToL3outId(m2) + if id1 == id2 { + return fmt.Errorf("Schema Site L3out Ids are equal") + } + return nil + } +} + +func testAccCheckMSOSchemaSiteL3outDestroy(s *terraform.State) error { + client := testAccProvider.Meta().(*client.Client) + + for _, rs := range s.RootModule().Resources { + + if rs.Type == "mso_schema_site_l3out" { + id := rs.Primary.ID + l3out, _ := L3outIdToL3outModel(id) + _, err := client.ReadIntersiteL3outs(l3out) + if err == nil { + return fmt.Errorf("Schema Site L3out still exist") + } + } + } + return nil +} + +func testAccCheckMSODHCPOptionPolicyExists(l3outName string, m *models.IntersiteL3outs) resource.TestCheckFunc { + return func(s *terraform.State) error { + client := testAccProvider.Meta().(*client.Client) + rs, ok := s.RootModule().Resources[l3outName] + if !ok { + return fmt.Errorf("Schema Site L3out %s not found", l3outName) + } + if rs.Primary.ID == "" { + return fmt.Errorf("No Schema Site L3out Id was set") + } + l3out, err := L3outIdToL3outModel(rs.Primary.ID) + if err != nil { + return err + } + var read *models.IntersiteL3outs + read, err = client.ReadIntersiteL3outs(l3out) + if err != nil { + return err + } + *m = *read + return nil + } +} + +func MSOSchemaSiteL3outWithoutRequired(site, tenant, name, vrf, l3out, attr string) string { + rBlock := CreatSchemaSiteConfig(site, tenant, name) + rBlock += ` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + ` + switch attr { + case "schema_id": + rBlock += ` + resource "mso_schema_site_l3out" "test" { + # schema_id = mso_schema_site.test.schema_id + l3out_name = "%s" + template_name = mso_schema_site.test.template_name + vrf_name = mso_schema_site_vrf.test.vrf_name + site_id = mso_schema_site.test.site_id + }` + case "l3out_name": + rBlock += ` + resource "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site.test.schema_id + # l3out_name = "%s" + template_name = mso_schema_site.test.template_name + vrf_name = mso_schema_site_vrf.test.vrf_name + site_id = mso_schema_site.test.site_id + }` + case "template_name": + rBlock += ` + resource "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site.test.schema_id + l3out_name = "%s" + # template_name = mso_schema_site.test.template_name + vrf_name = mso_schema_site_vrf.test.vrf_name + site_id = mso_schema_site.test.site_id + } + ` + case "vrf_name": + rBlock += ` + resource "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site.test.schema_id + l3out_name = "%s" + template_name = mso_schema_site.test.template_name + # vrf_name = mso_schema_site_vrf.test.vrf_name + site_id = mso_schema_site.test.site_id + } + ` + case "site_id": + rBlock += ` + resource "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site.test.schema_id + l3out_name = "%s" + template_name = mso_schema_site.test.template_name + vrf_name = mso_schema_site_vrf.test.vrf_name + # site_id = mso_schema_site.test.site_id + } + ` + } + return fmt.Sprintf(rBlock, vrf, l3out) +} + +func MSOSchemaSiteL3outAttr(site, name, user, vrf, l3out, key, val string) string { + resource := CreatSchemaSiteConfig(site, name, user) + resource += fmt.Sprintf(` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + resource "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site.test.schema_id + l3out_name = "%s" + template_name = mso_schema_site.test.template_name + vrf_name = mso_schema_site_vrf.test.vrf_name + site_id = mso_schema_site.test.site_id + %s = "%s" + } + `, vrf, l3out, key, val) + return resource +} + +func MSOSchemaSiteL3outWithRequired(site, name, user, vrf, l3out string) string { + resource := CreatSchemaSiteConfig(site, name, user) + resource += fmt.Sprintf(` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + resource "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site.test.schema_id + l3out_name = "%s" + template_name = mso_schema_site.test.template_name + vrf_name = mso_schema_site_vrf.test.vrf_name + site_id = mso_schema_site.test.site_id + } + `, vrf, l3out) + return resource +} + +func MSOSchemaSiteL3outMultiple(site, tenant, name, vrf, l3out string) string { + resource := CreatSchemaSiteConfig(site, tenant, name) + resource += fmt.Sprintf(` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + resource "mso_schema_site_l3out" "test" { + schema_id = mso_schema_site.test.schema_id + l3out_name = "%s${count.index}" + template_name = mso_schema_site.test.template_name + vrf_name = mso_schema_site_vrf.test.vrf_name + site_id = mso_schema_site.test.site_id + count = 5 + } + `, vrf, l3out) + return resource +} diff --git a/mso/resource_mso_schema_template_anp_epg_contract.go b/mso/resource_mso_schema_template_anp_epg_contract.go index 518afb81..43e67efc 100644 --- a/mso/resource_mso_schema_template_anp_epg_contract.go +++ b/mso/resource_mso_schema_template_anp_epg_contract.go @@ -346,7 +346,7 @@ func resourceMSOTemplateAnpEpgContractUpdate(d *schema.ResourceData, m interface return err } if index == -1 { - fmt.Errorf("The given contract id is not found") + return fmt.Errorf("The given contract id is not found") } indexs := strconv.Itoa(index) diff --git a/mso/resource_mso_schema_template_anp_epg_subnet.go b/mso/resource_mso_schema_template_anp_epg_subnet.go index 125c98ef..346dc3ee 100644 --- a/mso/resource_mso_schema_template_anp_epg_subnet.go +++ b/mso/resource_mso_schema_template_anp_epg_subnet.go @@ -294,7 +294,7 @@ func resourceMSOSchemaTemplateAnpEpgSubnetUpdate(d *schema.ResourceData, m inter } if index == -1 { - fmt.Errorf("The given subnet ip is not found") + return fmt.Errorf("The given subnet ip is not found") } indexs := strconv.Itoa(index) diff --git a/mso/resource_mso_schema_template_external_epg_subnet.go b/mso/resource_mso_schema_template_external_epg_subnet.go index 7913166d..e357fbfc 100644 --- a/mso/resource_mso_schema_template_external_epg_subnet.go +++ b/mso/resource_mso_schema_template_external_epg_subnet.go @@ -311,7 +311,7 @@ func resourceMSOTemplateExtenalepgSubnetUpdate(d *schema.ResourceData, m interfa return err } if index == -1 { - fmt.Errorf("The given subnet ip is not found") + return fmt.Errorf("The given subnet ip is not found") } indexs := strconv.Itoa(index) diff --git a/website/docs/d/schema_site_l3out.html.markdown b/website/docs/d/schema_site_l3out.html.markdown new file mode 100644 index 00000000..7301b925 --- /dev/null +++ b/website/docs/d/schema_site_l3out.html.markdown @@ -0,0 +1,34 @@ +--- +layout: "mso" +page_title: "MSO: mso_schema_site_l3out" +sidebar_current: "docs-mso-data-source-schema_site_l3out" +description: |- + Data source for MSO Schema Site L3out +--- + +# mso_schema_site_l3out # + +Data source for MSO schema site L3out, to fetch the MSO schema site L3out details. + +## Example Usage ## + +```hcl +data "mso_schema_site_l3out" "exmple" { + vrf_name = data.mso_schema_site_vrf.example.vrf_name + l3out_name = mso_schema_site_l3out.example.l3out_name + template_name = data.mso_site.example.template_name + site_id = data.mso_site.example.site_id + schema_id = data.mso_site.example.schema_id +} +``` + +## Argument Reference ## +* `schema_id` - (Required) The schema-id where L3out is added. +* `l3out_name` - (Required) Name of the added L3out. +* `template_name` - (Required) Template name associated with the L3out. +* `vrf_name` - (Required) VRF name associated with the L3out. +* `site_id` - (Required) SiteID associated with the L3out. + +## Attribute Reference ## + +No attributes are exported. \ No newline at end of file diff --git a/website/docs/r/schema_site_l3out.html.markdown b/website/docs/r/schema_site_l3out.html.markdown new file mode 100644 index 00000000..be95af17 --- /dev/null +++ b/website/docs/r/schema_site_l3out.html.markdown @@ -0,0 +1,42 @@ +--- +layout: "mso" +page_title: "MSO: mso_schema_site_l3out" +sidebar_current: "docs-mso-resource-schema_site_l3out" +description: |- + Manages MSO Schema Site L3out +--- + +# mso_schema_site_l3out # + +Manages MSO Schema Site L3out. + +## Example Usage ## + +```hcl +resource "mso_schema_site_l3out" "example" { + vrf_name = data.mso_schema_site_vrf.example.vrf_name + l3out_name = "example" + template_name = data.mso_site.example.template_name + site_id = data.mso_site.example.site_id + schema_id = data.mso_site.example.schema_id +} + +``` + +## Argument Reference ## +* `schema_id` - (Required) The schema-id where user wants to add L3out. +* `l3out_name` - (Required) Name of the L3out that user wants to add. +* `template_name` - (Required) Template name associated with the L3out. +* `vrf_name` - (Required) VRF name associated with the L3out. +* `site_id` - (Required) SiteID associated with the L3out. + +## Attribute Reference ## +The only Attribute exposed for this resource is `id`. Which is set to the node name of Service Node created. + +## Importing ## + +An existing MSO Schema Site L3out can be [imported][docs-import] into this resource via its Id/path, via the following command: [docs-import]: + +```bash +terraform import mso_schema_site_l3out.example {schema_id}/site/{site_id}/template/{template_name}/vrf/{vrf_name}/l3out/{l3out_name} +``` \ No newline at end of file diff --git a/website/mso.erb b/website/mso.erb index 63dd7d03..564a957f 100644 --- a/website/mso.erb +++ b/website/mso.erb @@ -56,6 +56,9 @@ > mso_schema_site_bd_subnet + > + mso_schema_site_l3out + > mso_schema_site_vrf @@ -196,6 +199,9 @@ > mso_schema_site_bd_subnet + > + mso_schema_site_l3out + > mso_schema_site_vrf From cfb943dc9860b1087b63922f9079213caf644e96 Mon Sep 17 00:00:00 2001 From: hthakkar-crest Date: Mon, 21 Feb 2022 14:59:02 +0530 Subject: [PATCH 06/67] updated test files for schema_site_l3out --- mso/datasource_mso_schema_site_l3out_test.go | 2 +- mso/resource_mso_schema_site_l3out_test.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mso/datasource_mso_schema_site_l3out_test.go b/mso/datasource_mso_schema_site_l3out_test.go index 74178ed4..3e38d340 100644 --- a/mso/datasource_mso_schema_site_l3out_test.go +++ b/mso/datasource_mso_schema_site_l3out_test.go @@ -55,7 +55,7 @@ func TestAccMSOSchemaSiteL3out_DataSource(t *testing.T) { { Config: MSOSchemaSiteL3outDataSourceWithRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out), Check: resource.ComposeTestCheckFunc( - testAccCheckMSODHCPOptionPolicyExists(resourceName, &l3outModel), + testAccCheckMSOSchemaSiteL3outExists(resourceName, &l3outModel), resource.TestCheckResourceAttrPair(resourceName, "schema_id", dataSourceName, "schema_id"), resource.TestCheckResourceAttrPair(resourceName, "l3out_name", dataSourceName, "l3out_name"), resource.TestCheckResourceAttrPair(resourceName, "template_name", dataSourceName, "template_name"), diff --git a/mso/resource_mso_schema_site_l3out_test.go b/mso/resource_mso_schema_site_l3out_test.go index 832678e0..09e8e58b 100644 --- a/mso/resource_mso_schema_site_l3out_test.go +++ b/mso/resource_mso_schema_site_l3out_test.go @@ -49,7 +49,7 @@ func TestAccMSOSchemaSiteL3out_Basic(t *testing.T) { { Config: MSOSchemaSiteL3outWithRequired(siteNames[0], tenantNames[0], prnames, vrf, l3out), Check: resource.ComposeTestCheckFunc( - testAccCheckMSODHCPOptionPolicyExists(resourceName, &l3out1), + testAccCheckMSOSchemaSiteL3outExists(resourceName, &l3out1), resource.TestCheckResourceAttrSet(resourceName, "schema_id"), resource.TestCheckResourceAttr(resourceName, "l3out_name", l3out), resource.TestCheckResourceAttr(resourceName, "template_name", prnames), @@ -65,7 +65,7 @@ func TestAccMSOSchemaSiteL3out_Basic(t *testing.T) { { Config: MSOSchemaSiteL3outWithRequired(siteNames[0], tenantNames[0], prnames, vrf, l3outOther), Check: resource.ComposeTestCheckFunc( - testAccCheckMSODHCPOptionPolicyExists(resourceName, &l3out2), + testAccCheckMSOSchemaSiteL3outExists(resourceName, &l3out2), resource.TestCheckResourceAttrSet(resourceName, "schema_id"), resource.TestCheckResourceAttr(resourceName, "l3out_name", l3outOther), resource.TestCheckResourceAttr(resourceName, "template_name", prnames), @@ -80,7 +80,7 @@ func TestAccMSOSchemaSiteL3out_Basic(t *testing.T) { { Config: MSOSchemaSiteL3outWithRequired(siteNames[0], tenantNames[0], prnames, vrfOther, l3out), Check: resource.ComposeTestCheckFunc( - testAccCheckMSODHCPOptionPolicyExists(resourceName, &l3out2), + testAccCheckMSOSchemaSiteL3outExists(resourceName, &l3out2), resource.TestCheckResourceAttrSet(resourceName, "schema_id"), resource.TestCheckResourceAttr(resourceName, "l3out_name", l3out), resource.TestCheckResourceAttr(resourceName, "template_name", prnames), @@ -163,7 +163,7 @@ func testAccCheckMSOSchemaSiteL3outDestroy(s *terraform.State) error { return nil } -func testAccCheckMSODHCPOptionPolicyExists(l3outName string, m *models.IntersiteL3outs) resource.TestCheckFunc { +func testAccCheckMSOSchemaSiteL3outExists(l3outName string, m *models.IntersiteL3outs) resource.TestCheckFunc { return func(s *terraform.State) error { client := testAccProvider.Meta().(*client.Client) rs, ok := s.RootModule().Resources[l3outName] From c35d78b7aed785a8b0c7410fac4ccdf9a3e42162 Mon Sep 17 00:00:00 2001 From: RutvikS-crest Date: Mon, 21 Feb 2022 17:01:39 +0530 Subject: [PATCH 07/67] added example for dhcp_option_policy --- examples/dhcp_option_policy/main.tf | 41 +++++++++++++++++++++++++ examples/dhcp_option_policy/variable.tf | 6 ++++ mso/provider_test.go | 4 +-- 3 files changed, 49 insertions(+), 2 deletions(-) create mode 100644 examples/dhcp_option_policy/main.tf create mode 100644 examples/dhcp_option_policy/variable.tf diff --git a/examples/dhcp_option_policy/main.tf b/examples/dhcp_option_policy/main.tf new file mode 100644 index 00000000..42806779 --- /dev/null +++ b/examples/dhcp_option_policy/main.tf @@ -0,0 +1,41 @@ +terraform { + required_providers { + mso = { + source = "CiscoDevNet/mso" + } + } +} + +provider "mso" { + username = "" # + password = "" # + url = "" # + insecure = true +} + +resource "mso_tenant" "tenant1" { + name = var.tenant_name + display_name = var.tenant_name + description = "DemoTenant" +} + +resource "mso_dhcp_option_policy" "dp1" { + tenant_id = mso_tenant.tenant1.id + name = "dhcp_opx" + description = "desc" + option { + name = "op2" + data = "d1" + id = "2" + } + option { + name = "op3" + data = "d3" + id = "4" + } + option { + name = "op1" + data = "d1" + id = "1" + } +} diff --git a/examples/dhcp_option_policy/variable.tf b/examples/dhcp_option_policy/variable.tf new file mode 100644 index 00000000..48d0ee61 --- /dev/null +++ b/examples/dhcp_option_policy/variable.tf @@ -0,0 +1,6 @@ + +variable "tenant_name" { + type = string + default = "mso_tenant" + description = "The name of MSO tenant to use for this configuration" +} diff --git a/mso/provider_test.go b/mso/provider_test.go index 91d72819..28c23c82 100644 --- a/mso/provider_test.go +++ b/mso/provider_test.go @@ -12,7 +12,7 @@ import ( var testAccProviders map[string]terraform.ResourceProvider var testAccProvider *schema.Provider var siteNames = []string{"ansible_test"} -var tenantNames=[]string{"acctest_crest"} +var tenantNames = []string{"acctest_crest"} func CreatSchemaSiteConfig(site, tenant, name string) string { resource := fmt.Sprintf(` @@ -36,7 +36,7 @@ func CreatSchemaSiteConfig(site, tenant, name string) string { site_id = data.mso_site.test.id template_name = "%s" } - `, site, tenant,tenant,name,name,name) + `, site, tenant, tenant, name, name, name) return resource } From 4b6a9742882a985558c85ad802a838ad87cad9f7 Mon Sep 17 00:00:00 2001 From: hussainsadikot_crest Date: Mon, 21 Feb 2022 15:27:47 +0530 Subject: [PATCH 08/67] Initial Commit --- go.mod | 4 +- ..._mso_schema_site_vrf_region_hub_network.go | 84 +++++++ ...schema_site_vrf_region_hub_network_test.go | 1 + mso/provider.go | 2 + ..._mso_schema_site_vrf_region_hub_network.go | 185 +++++++++++++++ ...schema_site_vrf_region_hub_network_test.go | 1 + ...ema_site_vrf_region_hub_network_service.go | 54 +++++ .../schema_site_vrf_region_hub_network.go | 215 ++++++++++++++++++ vendor/modules.txt | 2 +- 9 files changed, 544 insertions(+), 4 deletions(-) create mode 100644 mso/datasource_mso_schema_site_vrf_region_hub_network.go create mode 100644 mso/datasource_mso_schema_site_vrf_region_hub_network_test.go create mode 100644 mso/resource_mso_schema_site_vrf_region_hub_network.go create mode 100644 mso/resource_mso_schema_site_vrf_region_hub_network_test.go create mode 100644 vendor/github.com/ciscoecosystem/mso-go-client/client/schema_site_vrf_region_hub_network_service.go create mode 100644 vendor/github.com/ciscoecosystem/mso-go-client/models/schema_site_vrf_region_hub_network.go diff --git a/go.mod b/go.mod index 453174d5..87b38dda 100644 --- a/go.mod +++ b/go.mod @@ -7,6 +7,4 @@ require ( github.com/hashicorp/terraform-plugin-sdk v1.14.0 github.com/stretchr/testify v1.6.1 // indirect golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect -) - -// replace github.com/ciscoecosystem/mso-go-client => ../../ciscoecosystem/mso-go-client +) \ No newline at end of file diff --git a/mso/datasource_mso_schema_site_vrf_region_hub_network.go b/mso/datasource_mso_schema_site_vrf_region_hub_network.go new file mode 100644 index 00000000..4c3e94bb --- /dev/null +++ b/mso/datasource_mso_schema_site_vrf_region_hub_network.go @@ -0,0 +1,84 @@ +package mso + +import ( + "log" + + "github.com/ciscoecosystem/mso-go-client/client" + "github.com/ciscoecosystem/mso-go-client/models" + "github.com/hashicorp/terraform-plugin-sdk/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/helper/validation" +) + +func datasourceMSOSchemaSiteVRFRegionHubNetwork() *schema.Resource { + return &schema.Resource{ + Read: datasourceMSOSchemaSiteVRFRegionHubNetworkRead, + SchemaVersion: 1, + Schema: map[string]*schema.Schema{ + "name": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "tenant_name": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "site_id": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "template_name": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "vrf_name": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "region_name": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "schema_id": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + }, + } +} + +func datasourceMSOSchemaSiteVRFRegionHubNetworkRead(d *schema.ResourceData, m interface{}) error { + log.Println("[DEBUG] Schema Site VRF Region Hub Network: Beginning Read") + msoClient := m.(client.Client) + schemaID := d.Get("schema_id").(string) + siteID := d.Get("site_id").(string) + templateName := d.Get("template_name").(string) + vrfName := d.Get("vrf_name").(string) + regionName := d.Get("region_name").(string) + name := d.Get("name").(string) + tenantName := d.Get("tenant_name").(string) + hubNetworkMap := models.InterSchemaSiteVrfRegionHubNetork{ + SchemaID: schemaID, + SiteID: siteID, + TemplateName: templateName, + VrfName: vrfName, + Region: regionName, + Name: name, + TenantName: tenantName, + } + hubNetworkMapRemote, err := msoClient.ReadInterSchemaSiteVrfRegionHubNetwork(&hubNetworkMap) + if err != nil { + d.SetId("") + return err + } + setMSOSchemaSiteVrfRegionHubNetworkAttributes(hubNetworkMapRemote, d) + d.SetId(hubNetworkModeltohubNetworkID(&hubNetworkMap)) + log.Println("[DEBUG] Schema Site VRF Region Hub Network: Reading Completed", d.Id()) + return nil +} diff --git a/mso/datasource_mso_schema_site_vrf_region_hub_network_test.go b/mso/datasource_mso_schema_site_vrf_region_hub_network_test.go new file mode 100644 index 00000000..a40a6dff --- /dev/null +++ b/mso/datasource_mso_schema_site_vrf_region_hub_network_test.go @@ -0,0 +1 @@ +package mso diff --git a/mso/provider.go b/mso/provider.go index 06c16145..525a8098 100644 --- a/mso/provider.go +++ b/mso/provider.go @@ -110,6 +110,7 @@ func Provider() terraform.ResourceProvider { "mso_schema_template_contract_service_graph": resourceTemplateContractServiceGraph(), "mso_dhcp_option_policy": resourceMSODHCPOptionPolicy(), "mso_schema_site_l3out": resourceMSOSchemaSiteL3out(), + "mso_schema_site_vrf_region_hub_network": resourceMSOSchemaSiteVRFRegionHubNetwork(), }, DataSourcesMap: map[string]*schema.Resource{ @@ -160,6 +161,7 @@ func Provider() terraform.ResourceProvider { "mso_schema_template_contract_service_graph": datasourceTemplateContractServiceGraph(), "mso_dhcp_option_policy": datasourceMSODHCPOptionPolicy(), "mso_schema_site_l3out": datasourceMSOSchemaSiteL3out(), + "mso_schema_site_vrf_region_hub_network": datasourceMSOSchemaSiteVRFRegionHubNetwork(), }, ConfigureFunc: configureClient, diff --git a/mso/resource_mso_schema_site_vrf_region_hub_network.go b/mso/resource_mso_schema_site_vrf_region_hub_network.go new file mode 100644 index 00000000..494211a8 --- /dev/null +++ b/mso/resource_mso_schema_site_vrf_region_hub_network.go @@ -0,0 +1,185 @@ +package mso + +import ( + "fmt" + "log" + "strings" + + "github.com/ciscoecosystem/mso-go-client/client" + "github.com/ciscoecosystem/mso-go-client/models" + "github.com/hashicorp/terraform-plugin-sdk/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/helper/validation" +) + +func resourceMSOSchemaSiteVRFRegionHubNetwork() *schema.Resource { + return &schema.Resource{ + Create: resourceMSOSchemaSiteVRFRegionHubNetworkCreate, + Delete: resourceMSOSchemaSiteVRFRegionHubNetworkDelete, + Read: resourceMSOSchemaSiteVRFRegionHubNetworkRead, + + Importer: &schema.ResourceImporter{ + State: resourceMSOSchemaSiteVRFRegionHubNetworkImport, + }, + + SchemaVersion: 1, + Schema: map[string]*schema.Schema{ + "name": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "tenant_name": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "site_id": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "template_name": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "vrf_name": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "region_name": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "schema_id": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + }, + } +} + +func setMSOSchemaSiteVrfRegionHubNetworkAttributes(hubNetwork *models.InterSchemaSiteVrfRegionHubNetork, d *schema.ResourceData) { + d.Set("name", hubNetwork.Name) + d.Set("tenant_name", hubNetwork.TenantName) + d.Set("site_id", hubNetwork.SiteID) + d.Set("template_name", hubNetwork.TemplateName) + d.Set("vrf_name", hubNetwork.VrfName) + d.Set("region_name", hubNetwork.Region) + d.Set("schema_id", hubNetwork.SchemaID) +} + +func resourceMSOSchemaSiteVRFRegionHubNetworkImport(d *schema.ResourceData, m interface{}) ([]*schema.ResourceData, error) { + log.Println("[DEBUG] Schema Site VRF Region Hub Network: Beginning Import", d.Id()) + msoClient := m.(client.Client) + id := d.Id() + hubNetwork, err := hubNetworkIDtohubNetwork(id) + if err != nil { + return nil, err + } + hubNetworkMapRemote, err := msoClient.ReadInterSchemaSiteVrfRegionHubNetwork(hubNetwork) + if err != nil { + return nil, err + } + setMSOSchemaSiteVrfRegionHubNetworkAttributes(hubNetworkMapRemote, d) + d.SetId(id) + log.Println("[DEBUG] Schema Site VRF Region Hub Network: Import Completed", d.Id()) + return []*schema.ResourceData{d}, nil +} + +func resourceMSOSchemaSiteVRFRegionHubNetworkCreate(d *schema.ResourceData, m interface{}) error { + log.Println("[DEBUG] Schema Site VRF Region Hub Network: Beginning Creation") + msoClient := m.(*client.Client) + schemaId := d.Get("schema_id").(string) + siteId := d.Get("site_id").(string) + templateName := d.Get("template_name").(string) + vrfName := d.Get("vrf_name").(string) + name := d.Get("name").(string) + regionName := d.Get("region_name").(string) + tenantName := d.Get("tenant_name").(string) + hubNetworkMap := models.InterSchemaSiteVrfRegionHubNetork{ + Name: name, + TenantName: tenantName, + Region: regionName, + VrfName: vrfName, + TemplateName: templateName, + SiteID: siteId, + SchemaID: schemaId, + } + err := msoClient.CreateInterSchemaSiteVrfRegionHubNetwork(&hubNetworkMap) + if err != nil { + return err + } + hubNetworkID := hubNetworkModeltohubNetworkID(&hubNetworkMap) + d.SetId(hubNetworkID) + log.Println("[DEBUG] Schema Site VRF Region Hub Network: Creation Complete") + return resourceMSOSchemaSiteVRFRegionHubNetworkRead(d, m) +} + +func resourceMSOSchemaSiteVRFRegionHubNetworkRead(d *schema.ResourceData, m interface{}) error { + log.Println("[DEBUG] Schema Site VRF Region Hub Network: Beginning Read") + msoClient := m.(*client.Client) + id := d.Id() + hubNetwork, err := hubNetworkIDtohubNetwork(id) + if err != nil { + return err + } + hubNetworkMapRemote, err := msoClient.ReadInterSchemaSiteVrfRegionHubNetwork(hubNetwork) + if err != nil { + d.SetId("") + return nil + } + log.Printf("%v", hubNetworkMapRemote) + setMSOSchemaSiteVrfRegionHubNetworkAttributes(hubNetworkMapRemote, d) + d.SetId(hubNetworkModeltohubNetworkID(hubNetwork)) + log.Println("[DEBUG] Schema Site VRF Region Hub Network: Read Complete", d.Id()) + return nil +} + +func resourceMSOSchemaSiteVRFRegionHubNetworkDelete(d *schema.ResourceData, m interface{}) error { + log.Println("[DEBUG] Schema Site VRF Region Hub Network: Beginning Destroy") + msoClient := m.(*client.Client) + id := d.Id() + hubNetwork, err := hubNetworkIDtohubNetwork(id) + if err != nil { + return err + } + err = msoClient.DeleteInterSchemaSiteVrfRegionHubNetwork(hubNetwork) + if err != nil { + return err + } + log.Println("[DEBUG] Schema Site VRF Region Hub Network: Destroy Completed", d.Id()) + d.SetId("") + return err +} + +func hubNetworkModeltohubNetworkID(m *models.InterSchemaSiteVrfRegionHubNetork) string { + return fmt.Sprintf("%s/site/%s/template/%s/vrf/%s/region/%s/tenant/%s/%s", m.SchemaID, m.SiteID, m.TemplateName, m.VrfName, m.Region, m.TenantName, m.Name) +} + +func hubNetworkIDtohubNetwork(ID string) (*models.InterSchemaSiteVrfRegionHubNetork, error) { + getAttributes := strings.Split(ID, "/") + if len(getAttributes) != 12 || getAttributes[1] != "site" || getAttributes[3] != "template" || getAttributes[5] != "vrf" || getAttributes[7] != "region" || getAttributes[9] != "tenant" { + return nil, fmt.Errorf("invalid mso_schema_site_vrf_region_hub_network ID format") + } + hubNetwork := models.InterSchemaSiteVrfRegionHubNetork{ + SchemaID: getAttributes[0], + SiteID: getAttributes[2], + TemplateName: getAttributes[4], + VrfName: getAttributes[6], + Region: getAttributes[8], + TenantName: getAttributes[10], + Name: getAttributes[11], + } + return &hubNetwork, nil +} diff --git a/mso/resource_mso_schema_site_vrf_region_hub_network_test.go b/mso/resource_mso_schema_site_vrf_region_hub_network_test.go new file mode 100644 index 00000000..a40a6dff --- /dev/null +++ b/mso/resource_mso_schema_site_vrf_region_hub_network_test.go @@ -0,0 +1 @@ +package mso diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_site_vrf_region_hub_network_service.go b/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_site_vrf_region_hub_network_service.go new file mode 100644 index 00000000..77505600 --- /dev/null +++ b/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_site_vrf_region_hub_network_service.go @@ -0,0 +1,54 @@ +package client + +import ( + "fmt" + "log" + "sync" + + "github.com/ciscoecosystem/mso-go-client/models" +) + +var regionHubNetworkMutex sync.Mutex + +func (client *Client) CreateInterSchemaSiteVrfRegionHubNetwork(obj *models.InterSchemaSiteVrfRegionHubNetork) error { + schemaCont, err := client.GetViaURL(fmt.Sprintf("api/v1/schemas/%s", obj.SchemaID)) + if err != nil { + return err + } + hubNetwork := models.CreateInterSchemaSiteVrfRegionNetworkModel(obj, schemaCont) + regionHubNetworkMutex.Lock() + log.Printf("hubNetwork: %v\n", hubNetwork) + _, err = client.PatchbyID(fmt.Sprintf("api/v1/schemas/%s", obj.SchemaID), hubNetwork) + if err != nil { + return err + } + regionHubNetworkMutex.Unlock() + return nil +} + +func (client *Client) DeleteInterSchemaSiteVrfRegionHubNetwork(obj *models.InterSchemaSiteVrfRegionHubNetork) error { + schemaCont, err := client.GetViaURL(fmt.Sprintf("api/v1/schemas/%s", obj.SchemaID)) + if err != nil { + return err + } + hubNetwork := models.DeleteInterSchemaSiteVrfRegionNetworkModel(obj, schemaCont) + regionHubNetworkMutex.Lock() + _, err = client.PatchbyID(fmt.Sprintf("api/v1/schemas/%s", obj.SchemaID), hubNetwork) + if err != nil { + return err + } + regionHubNetworkMutex.Unlock() + return nil +} + +func (client *Client) ReadInterSchemaSiteVrfRegionHubNetwork(obj *models.InterSchemaSiteVrfRegionHubNetork) (*models.InterSchemaSiteVrfRegionHubNetork, error) { + schemaCont, err := client.GetViaURL(fmt.Sprintf("api/v1/schemas/%s", obj.SchemaID)) + if err != nil { + return nil, err + } + hubNetwork, err := models.InterSchemaSiteVrfRegionHubNetworkFromContainer(schemaCont, obj) + if err != nil { + return nil, err + } + return hubNetwork, nil +} diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_site_vrf_region_hub_network.go b/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_site_vrf_region_hub_network.go new file mode 100644 index 00000000..189c01b6 --- /dev/null +++ b/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_site_vrf_region_hub_network.go @@ -0,0 +1,215 @@ +package models + +import ( + "encoding/json" + "fmt" + "log" + "strings" + + "github.com/ciscoecosystem/mso-go-client/container" +) + +type SchemaSiteVrfRegionHubNetork struct { + Ops string `json:",omitempty"` + Path string `json:",omitempty"` + Value map[string]interface{} `json:",omitempty"` +} + +type InterSchemaSiteVrfRegionHubNetork struct { + Name string + TenantName string + SiteID string + TemplateName string + VrfName string + Region string + SchemaID string +} + +func CreateInterSchemaSiteVrfRegionNetworkModel(hubNetwork *InterSchemaSiteVrfRegionHubNetork, cont *container.Container) *SchemaSiteVrfRegionHubNetork { + vrfHubNetwork := SchemaSiteVrfRegionHubNetork{ + Ops: "replace", + Path: fmt.Sprintf("/sites/%s-%s/vrfs/%s/regions/%s", hubNetwork.SiteID, hubNetwork.TemplateName, hubNetwork.VrfName, hubNetwork.Region), + } + vrfRegionMap, err := InterSchemaSiteVrfRegionFromContainer(cont, hubNetwork) + if err != nil { + log.Printf("%s", err) + return nil + } + vrfRegionMap["cloudRsCtxProfileToGatewayRouterP"] = map[string]string{ + "name": hubNetwork.Name, + "tenantName": hubNetwork.TenantName, + } + vrfHubNetwork.Value = vrfRegionMap + return &vrfHubNetwork +} + +func DeleteInterSchemaSiteVrfRegionNetworkModel(hubNetwork *InterSchemaSiteVrfRegionHubNetork, cont *container.Container) *SchemaSiteVrfRegionHubNetork { + vrfHubNetwork := SchemaSiteVrfRegionHubNetork{ + Ops: "replace", + Path: fmt.Sprintf("/sites/%s-%s/vrfs/%s/regions/%s", hubNetwork.SiteID, hubNetwork.TemplateName, hubNetwork.VrfName, hubNetwork.Region), + } + vrfHubNetworkMap := make(map[string]interface{}) + vrfHubNetworkMap["name"] = hubNetwork.Region + vrfRegionMap, err := InterSchemaSiteVrfRegionFromContainer(cont, hubNetwork) + if err != nil { + return nil + } + vrfRegionMap["cloudRsCtxProfileToGatewayRouterP"] = nil + vrfHubNetwork.Value = vrfRegionMap + return &vrfHubNetwork +} + +func InterSchemaSiteVrfRegionFromContainer(cont *container.Container, regionHubNetwork *InterSchemaSiteVrfRegionHubNetork) (map[string]interface{}, error) { + regionMap := make(map[string]interface{}) + var found bool = false + count, err := cont.ArrayCount("sites") + log.Printf("Count: %v\n", count) + if err != nil { + return nil, fmt.Errorf("no sites found") + } + for i := 0; i < count; i++ { + tempCont, err := cont.ArrayElement(i, "sites") + log.Printf("tempCont: %v\n", tempCont) + if err != nil { + log.Printf("error in tempCont: %v", err) + return nil, err + } + siteId := StripQuotes(tempCont.S("siteId").String()) + log.Printf("siteId: %v\n", siteId) + templateName := StripQuotes((tempCont.S("templateName")).String()) + log.Printf("templateName: %v\n", templateName) + log.Printf("regionHubNetwork.SiteID: %v\n", regionHubNetwork.SiteID) + log.Printf("regionHubNetwork.TemplateName: %v\n", regionHubNetwork.TemplateName) + if (siteId == regionHubNetwork.SiteID) && (templateName == regionHubNetwork.TemplateName) { + vrfCount, err := tempCont.ArrayCount("vrfs") + log.Printf("vrfCount: %v\n", vrfCount) + if err != nil { + return nil, fmt.Errorf("unable to get VRFs List") + } + vrfCont := tempCont.S("vrfs") + for j := 0; j < vrfCount; j++ { + vrfTempCont := vrfCont.Index(j) + log.Printf("vrfTempCont: %v\n", vrfTempCont) + log.Printf("%v", StripQuotes(vrfTempCont.S("vrfRef").String())) + vrfRef := strings.Split(StripQuotes(vrfTempCont.S("vrfRef").String()), "/") + log.Printf("vrfRef: %v", vrfRef) + vrfName := vrfRef[len(vrfRef)-1] + log.Printf("vrfName: %v", vrfName) + if vrfName == regionHubNetwork.VrfName { + regionCount, err := vrfTempCont.ArrayCount("regions") + log.Printf("regionCount: %v\n", regionCount) + if err != nil { + return nil, fmt.Errorf("unable to Regions List") + } + regionCont := vrfTempCont.S("regions") + for k := 0; k < regionCount; k++ { + regionTempCont := regionCont.Index(k) + log.Printf("regionTempCont: %v\n", regionTempCont) + regionName := G(regionTempCont, "name") + if regionName == regionHubNetwork.Region { + log.Printf("in if block of regionName: %v", regionTempCont) + err := json.Unmarshal(regionTempCont.EncodeJSON(), ®ionMap) + if err != nil { + log.Printf("error is: %v", err) + return nil, err + } + found = true + return regionMap, nil + } + } + } + } + } + } + log.Printf("region Map holds value: %v", regionMap) + if !found { + return nil, fmt.Errorf("unable to find siteVrfRegionHubNetwork %s", regionHubNetwork.Name) + } + return regionMap, nil +} + +func InterSchemaSiteVrfRegionHubNetworkFromContainer(cont *container.Container, regionHubNetwork *InterSchemaSiteVrfRegionHubNetork) (*InterSchemaSiteVrfRegionHubNetork, error) { + hubNetwork := InterSchemaSiteVrfRegionHubNetork{} + var found bool = false + count, err := cont.ArrayCount("sites") + log.Printf("Count: %v\n", count) + if err != nil { + return nil, fmt.Errorf("no sites found") + } + for i := 0; i < count; i++ { + tempCont, err := cont.ArrayElement(i, "sites") + log.Printf("tempCont: %v\n", tempCont) + if err != nil { + return nil, err + } + siteId := StripQuotes(tempCont.S("siteId").String()) + log.Printf("siteId: %v\n", siteId) + templateName := StripQuotes((tempCont.S("templateName")).String()) + log.Printf("templateName: %v\n", templateName) + log.Printf("regionHubNetwork.SiteID: %v\n", regionHubNetwork.SiteID) + log.Printf("regionHubNetwork.TemplateName: %v\n", regionHubNetwork.TemplateName) + if (siteId == regionHubNetwork.SiteID) && (templateName == regionHubNetwork.TemplateName) { + vrfCount, err := tempCont.ArrayCount("vrfs") + log.Printf("vrfCount: %v\n", vrfCount) + if err != nil { + return nil, fmt.Errorf("unable to get VRFs List") + } + vrfCont := tempCont.S("vrfs") + for j := 0; j < vrfCount; j++ { + vrfTempCont := vrfCont.Index(j) + log.Printf("vrfTempCont: %v\n", vrfTempCont) + vrfRef := strings.Split(StripQuotes(vrfTempCont.S("vrfRef").String()), "/") + vrfName := vrfRef[len(vrfRef)-1] + if vrfName == regionHubNetwork.VrfName { + regionCount, err := vrfTempCont.ArrayCount("regions") + log.Printf("regionCount: %v\n", regionCount) + if err != nil { + return nil, fmt.Errorf("unable to Regions List") + } + regionCont := vrfTempCont.S("regions") + for k := 0; k < regionCount; k++ { + regionTempCont := regionCont.Index(k) + log.Printf("regionTempCont: %v\n", regionTempCont) + regionName := G(regionTempCont, "name") + if regionName == regionHubNetwork.Region { + routePCont := regionTempCont.S("cloudRsCtxProfileToGatewayRouterP") + log.Printf("routePCont: %v\n", routePCont) + hubName := StripQuotes(routePCont.S("name").String()) + tenantName := StripQuotes(routePCont.S("tenantName").String()) + log.Printf("hubName: %v\n", hubName) + log.Printf("tenantName: %v\n", tenantName) + log.Printf("regionHubNetwork.Name: %v\n", regionHubNetwork.Name) + log.Printf("regionHubNetwork.TenantName: %v\n", regionHubNetwork.TenantName) + if hubName == regionHubNetwork.Name && tenantName == regionHubNetwork.TenantName { + log.Printf("in if container") + hubNetwork.Name = hubName + hubNetwork.TenantName = tenantName + hubNetwork.Region = regionName + hubNetwork.VrfName = vrfName + hubNetwork.TemplateName = templateName + hubNetwork.SiteID = siteId + hubNetwork.SchemaID = vrfRef[2] + found = true + break + } + } + } + } + } + } + } + if !found { + return nil, fmt.Errorf("unable to find siteVrfRegionHubNetwork %s", regionHubNetwork.Name) + } + return &hubNetwork, nil +} + +func (hubNetwork *SchemaSiteVrfRegionHubNetork) ToMap() (map[string]interface{}, error) { + hubNetworkMap := make(map[string]interface{}) + A(hubNetworkMap, "op", hubNetwork.Ops) + A(hubNetworkMap, "path", hubNetwork.Path) + if hubNetwork.Value != nil { + A(hubNetworkMap, "value", hubNetwork.Value) + } + return hubNetworkMap, nil +} diff --git a/vendor/modules.txt b/vendor/modules.txt index 13665e70..0d83ff20 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -56,7 +56,7 @@ github.com/aws/aws-sdk-go/service/sts/stsiface github.com/bgentry/go-netrc/netrc # github.com/bgentry/speakeasy v0.1.0 github.com/bgentry/speakeasy -# github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220221090018-2ef5003b2be2 +# github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220221090018-2ef5003b2be2 => ../../ciscoecosystem/mso-go-client github.com/ciscoecosystem/mso-go-client/client github.com/ciscoecosystem/mso-go-client/container github.com/ciscoecosystem/mso-go-client/models From f40627e95fcdfc205df0b8a0cfbef780d35c1c95 Mon Sep 17 00:00:00 2001 From: hussainsadikot_crest Date: Tue, 22 Feb 2022 12:29:38 +0530 Subject: [PATCH 09/67] Added support for resource and data source with test scripts for hubNetwork --- .../main.tf | 67 ++++ go.mod | 4 +- ..._mso_schema_site_vrf_region_hub_network.go | 2 +- ...schema_site_vrf_region_hub_network_test.go | 332 ++++++++++++++++ ..._mso_schema_site_vrf_region_hub_network.go | 2 +- ...schema_site_vrf_region_hub_network_test.go | 365 ++++++++++++++++++ ...chema_site_vrf_region_hub_network.markdown | 38 ++ ...chema_site_vrf_region_hub_network.markdown | 46 +++ website/mso.erb | 6 + 9 files changed, 858 insertions(+), 4 deletions(-) create mode 100644 examples/schema_site_vrf_region_hub_network/main.tf create mode 100644 website/docs/d/schema_site_vrf_region_hub_network.markdown create mode 100644 website/docs/r/schema_site_vrf_region_hub_network.markdown diff --git a/examples/schema_site_vrf_region_hub_network/main.tf b/examples/schema_site_vrf_region_hub_network/main.tf new file mode 100644 index 00000000..2838bf4c --- /dev/null +++ b/examples/schema_site_vrf_region_hub_network/main.tf @@ -0,0 +1,67 @@ +terraform { + required_providers { + mso = { + source = "CiscoDevNet/mso" + } + } +} + +provider "mso" { + username = "" # + password = "" # + url = "" # + insecure = true +} + +data "mso_site" "example" { + name = "example" +} + +data "mso_tenant" "example" { + name = "example" + display_name = "example" +} + +resource "mso_schema" "example" { + name = "example" + template_name = "example" + tenant_id = data.mso_tenant.example.id +} + +resource "mso_schema_site" "example" { + schema_id = mso_schema.example.id + site_id = data.mso_site.example.id + template_name = "example" +} + +resource "mso_schema_site_vrf" "example" { + template_name = mso_schema_site.example.template_name + site_id = mso_schema_site.example.site_id + schema_id = mso_schema_site.example.schema_id + vrf_name = "mso_schema_site_vrf_example" +} + +resource "mso_schema_site_vrf_region" "example"{ + schema_id = mso_schema_site.example.schema_id + template_name = mso_schema_site.example.template_name + site_id = mso_schema_site.example.site_id + vrf_name = mso_schema_site_vrf.example.vrf_name + region_name = "example" + cidr { + cidr_ip = "2.2.2.2/10" + primary = "true" + subnet { + ip = "1.20.30.4" + } + } +} + +resource "mso_schema_site_vrf_region_hub_network" "example"{ + schema_id = mso_schema_site.example.schema_id + template_name = mso_schema_site.example.template_name + site_id = mso_schema_site.example.site_id + vrf_name = mso_schema_site_vrf.example.vrf_name + region_name = mso_schema_site_vrf_region.example.region_name + name = "example" + tenant_name = data.mso_tenant.example.id +} \ No newline at end of file diff --git a/go.mod b/go.mod index 87b38dda..09c0ad07 100644 --- a/go.mod +++ b/go.mod @@ -3,8 +3,8 @@ module github.com/terraform-providers/terraform-provider-mso go 1.13 require ( - github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220217092633-41a1e5eef2d2 + github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222065320-bf37ac54051a github.com/hashicorp/terraform-plugin-sdk v1.14.0 github.com/stretchr/testify v1.6.1 // indirect golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect -) \ No newline at end of file +) diff --git a/mso/datasource_mso_schema_site_vrf_region_hub_network.go b/mso/datasource_mso_schema_site_vrf_region_hub_network.go index 4c3e94bb..e833985f 100644 --- a/mso/datasource_mso_schema_site_vrf_region_hub_network.go +++ b/mso/datasource_mso_schema_site_vrf_region_hub_network.go @@ -55,7 +55,7 @@ func datasourceMSOSchemaSiteVRFRegionHubNetwork() *schema.Resource { func datasourceMSOSchemaSiteVRFRegionHubNetworkRead(d *schema.ResourceData, m interface{}) error { log.Println("[DEBUG] Schema Site VRF Region Hub Network: Beginning Read") - msoClient := m.(client.Client) + msoClient := m.(*client.Client) schemaID := d.Get("schema_id").(string) siteID := d.Get("site_id").(string) templateName := d.Get("template_name").(string) diff --git a/mso/datasource_mso_schema_site_vrf_region_hub_network_test.go b/mso/datasource_mso_schema_site_vrf_region_hub_network_test.go index a40a6dff..76f54802 100644 --- a/mso/datasource_mso_schema_site_vrf_region_hub_network_test.go +++ b/mso/datasource_mso_schema_site_vrf_region_hub_network_test.go @@ -1 +1,333 @@ package mso + +import ( + "fmt" + "regexp" + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/helper/acctest" + "github.com/hashicorp/terraform-plugin-sdk/helper/resource" +) + +func TestAccMSOSchemaSiteVRFRegionHubNetworkDataSource_Basic(t *testing.T) { + resourceName := "mso_schema_site_vrf_region_hub_network.test" + dataSourceName := "data.mso_schema_site_vrf_region_hub_network.test" + name := makeTestVariable(acctest.RandString(5)) + regionName := makeTestVariable(acctest.RandString(5)) + vrfName := makeTestVariable(acctest.RandString(5)) + templateName := makeTestVariable(acctest.RandString(5)) + schemaID := makeTestVariable(acctest.RandString(5)) + randomParameter := acctest.RandStringFromCharSet(5, "abcdefghijklmnopqrstuvwxyz") + randomValue := acctest.RandString(5) + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSOSchemaSiteVRFRegionHubNetworkDestroy, + Steps: []resource.TestStep{ + { + Config: MSOSchemaSiteVrfRegionHubNetworkDataSourceWithoutRequired(siteNames[0], schemaID, templateName, vrfName, regionName, name, tenantNames[0], "schema_id"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVrfRegionHubNetworkDataSourceWithoutRequired(siteNames[0], schemaID, templateName, vrfName, regionName, name, tenantNames[0], "site_id"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVrfRegionHubNetworkDataSourceWithoutRequired(siteNames[0], schemaID, templateName, vrfName, regionName, name, tenantNames[0], "template_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVrfRegionHubNetworkDataSourceWithoutRequired(siteNames[0], schemaID, templateName, vrfName, regionName, name, tenantNames[0], "vrf_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVrfRegionHubNetworkDataSourceWithoutRequired(siteNames[0], schemaID, templateName, vrfName, regionName, name, tenantNames[0], "region_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVrfRegionHubNetworkDataSourceWithoutRequired(siteNames[0], schemaID, templateName, vrfName, regionName, name, tenantNames[0], "name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVrfRegionHubNetworkDataSourceWithoutRequired(siteNames[0], schemaID, templateName, vrfName, regionName, name, tenantNames[0], "tenant_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVRFRegionHubNetworDataSourceAttr(siteNames[0], schemaID, templateName, vrfName, regionName, name, tenantNames[0], randomParameter, randomValue), + ExpectError: regexp.MustCompile(`An argument named(.)+is not expected here.`), + }, + { + Config: MSOSchemaSiteVRFRegionHubNetworDataSourceInvalidName(siteNames[0], schemaID, templateName, vrfName, regionName, name, tenantNames[0]), + ExpectError: regexp.MustCompile(`unable to find siteVrfRegionHubNetwork`), + }, + { + Config: MSOSchemaSiteVRFRegionHubNetworkDataSourceConfig(siteNames[0], schemaID, templateName, vrfName, regionName, name, tenantNames[0]), + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttrPair(resourceName, "name", dataSourceName, "name"), + resource.TestCheckResourceAttrPair(resourceName, "tenant_name", dataSourceName, "tenant_name"), + resource.TestCheckResourceAttrPair(resourceName, "template_name", dataSourceName, "template_name"), + resource.TestCheckResourceAttrPair(resourceName, "region_name", dataSourceName, "region_name"), + resource.TestCheckResourceAttrPair(resourceName, "vrf_name", dataSourceName, "vrf_name"), + resource.TestCheckResourceAttrPair(resourceName, "site_id", dataSourceName, "site_id"), + resource.TestCheckResourceAttrPair(resourceName, "schema_id", dataSourceName, "schema_id"), + ), + }, + }, + }) +} + +func MSOSchemaSiteVrfRegionHubNetworkDataSourceWithoutRequired(siteName, schemaId, templateName, vrfName, regionName, name, tenantName, attribute string) string { + rBlock := CreatSchemaSiteConfig(siteName, tenantName, name) + rBlock += ` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + + resource "mso_schema_site_vrf_region" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = "%s" + cidr { + cidr_ip = "2.2.2.2/10" + primary = "true" + subnet { + ip = "1.20.30.4" + } + } + } + + resource "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = "%s" + tenant_name = data.mso_tenant.test.id + } + ` + switch attribute { + case "schema_id": + rBlock += `data "mso_schema_site_vrf_region_hub_network" "test"{ + # schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = mso_schema_site_vrf_region_hub_network.test.name + tenant_name = data.mso_tenant.test.id + }` + case "site_id": + rBlock += `data "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + # site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = mso_schema_site_vrf_region_hub_network.test.name + tenant_name = data.mso_tenant.test.id + }` + case "template_name": + rBlock += `data "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + # template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = mso_schema_site_vrf_region_hub_network.test.name + tenant_name = data.mso_tenant.test.id + }` + case "vrf_name": + rBlock += `data "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + # vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = mso_schema_site_vrf_region_hub_network.test.name + tenant_name = data.mso_tenant.test.id + }` + case "region_name": + rBlock += `data "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + # region_name = mso_schema_site_vrf_region.test.region_name + name = mso_schema_site_vrf_region_hub_network.test.name + tenant_name = data.mso_tenant.test.id + }` + case "name": + rBlock += `data "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + # name = mso_schema_site_vrf_region_hub_network.test.name + tenant_name = data.mso_tenant.test.id + }` + case "tenant_name": + rBlock += `data "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = mso_schema_site_vrf_region_hub_network.test.name + # tenant_name = data.mso_tenant.test.id + }` + } + return fmt.Sprintf(rBlock, vrfName, regionName, name) +} + +func MSOSchemaSiteVRFRegionHubNetworDataSourceAttr(siteName, schemaId, templateName, vrfName, regionName, name, tenantName, key, value string) string { + rBlock := CreatSchemaSiteConfig(siteName, tenantName, name) + rBlock += ` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + + resource "mso_schema_site_vrf_region" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = "%s" + cidr { + cidr_ip = "2.2.2.2/10" + primary = "true" + subnet { + ip = "1.20.30.4" + } + } + } + + resource "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = "%s" + tenant_name = data.mso_tenant.test.id + } + + data "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = mso_schema_site_vrf_region_hub_network.test.name + %s = "%s" + tenant_name = data.mso_tenant.test.id + } + ` + return fmt.Sprintf(rBlock, vrfName, regionName, name, key, value) +} + +func MSOSchemaSiteVRFRegionHubNetworDataSourceInvalidName(siteName, schemaId, templateName, vrfName, regionName, name, tenantName string) string { + rBlock := CreatSchemaSiteConfig(siteName, tenantName, name) + rBlock += ` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + + resource "mso_schema_site_vrf_region" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = "%s" + cidr { + cidr_ip = "2.2.2.2/10" + primary = "true" + subnet { + ip = "1.20.30.4" + } + } + } + + resource "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = "%s" + tenant_name = data.mso_tenant.test.id + } + + data "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = "${mso_schema_site_vrf_region_hub_network.test.name}_invalid" + tenant_name = data.mso_tenant.test.id + } + ` + return fmt.Sprintf(rBlock, vrfName, regionName, name) +} + +func MSOSchemaSiteVRFRegionHubNetworkDataSourceConfig(siteName, schemaId, templateName, vrfName, regionName, name, tenantName string) string { + rBlock := CreatSchemaSiteConfig(siteName, tenantName, name) + rBlock += ` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + + resource "mso_schema_site_vrf_region" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = "%s" + cidr { + cidr_ip = "2.2.2.2/10" + primary = "true" + subnet { + ip = "1.20.30.4" + } + } + } + + resource "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = "%s" + tenant_name = data.mso_tenant.test.id + } + + data "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = mso_schema_site_vrf_region_hub_network.test.name + tenant_name = data.mso_tenant.test.id + } + ` + return fmt.Sprintf(rBlock, vrfName, regionName, name) +} diff --git a/mso/resource_mso_schema_site_vrf_region_hub_network.go b/mso/resource_mso_schema_site_vrf_region_hub_network.go index 494211a8..bc249d0a 100644 --- a/mso/resource_mso_schema_site_vrf_region_hub_network.go +++ b/mso/resource_mso_schema_site_vrf_region_hub_network.go @@ -81,7 +81,7 @@ func setMSOSchemaSiteVrfRegionHubNetworkAttributes(hubNetwork *models.InterSchem func resourceMSOSchemaSiteVRFRegionHubNetworkImport(d *schema.ResourceData, m interface{}) ([]*schema.ResourceData, error) { log.Println("[DEBUG] Schema Site VRF Region Hub Network: Beginning Import", d.Id()) - msoClient := m.(client.Client) + msoClient := m.(*client.Client) id := d.Id() hubNetwork, err := hubNetworkIDtohubNetwork(id) if err != nil { diff --git a/mso/resource_mso_schema_site_vrf_region_hub_network_test.go b/mso/resource_mso_schema_site_vrf_region_hub_network_test.go index a40a6dff..85f53a75 100644 --- a/mso/resource_mso_schema_site_vrf_region_hub_network_test.go +++ b/mso/resource_mso_schema_site_vrf_region_hub_network_test.go @@ -1 +1,366 @@ package mso + +import ( + "fmt" + "regexp" + "testing" + + "github.com/ciscoecosystem/mso-go-client/client" + "github.com/ciscoecosystem/mso-go-client/models" + "github.com/hashicorp/terraform-plugin-sdk/helper/acctest" + "github.com/hashicorp/terraform-plugin-sdk/helper/resource" + "github.com/hashicorp/terraform-plugin-sdk/terraform" +) + +func TestAccMSOSchemaSiteVRFRegionHubNetwork_Basic(t *testing.T) { + var hubNetwork1 models.InterSchemaSiteVrfRegionHubNetork + var hubNetwork2 models.InterSchemaSiteVrfRegionHubNetork + resourceName := "mso_schema_site_vrf_region_hub_network.test" + nameUpdated := makeTestVariable(acctest.RandString(5)) + name := makeTestVariable(acctest.RandString(5)) + regionName := makeTestVariable(acctest.RandString(5)) + vrfName := makeTestVariable(acctest.RandString(5)) + vrfNameUpdated := makeTestVariable(acctest.RandString(5)) + templateName := makeTestVariable(acctest.RandString(5)) + schemaName := makeTestVariable(acctest.RandString(5)) + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSOSchemaSiteVRFRegionHubNetworkDestroy, + Steps: []resource.TestStep{ + { + Config: MSOSchemaSiteVrfRegionHubNetworkWithoutRequired(siteNames[0], schemaName, templateName, vrfName, regionName, name, tenantNames[0], "schema_id"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVrfRegionHubNetworkWithoutRequired(siteNames[0], schemaName, templateName, vrfName, regionName, name, tenantNames[0], "site_id"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVrfRegionHubNetworkWithoutRequired(siteNames[0], schemaName, templateName, vrfName, regionName, name, tenantNames[0], "template_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVrfRegionHubNetworkWithoutRequired(siteNames[0], schemaName, templateName, vrfName, regionName, name, tenantNames[0], "vrf_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVrfRegionHubNetworkWithoutRequired(siteNames[0], schemaName, templateName, vrfName, regionName, name, tenantNames[0], "region_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVrfRegionHubNetworkWithoutRequired(siteNames[0], schemaName, templateName, vrfName, regionName, name, tenantNames[0], "name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVrfRegionHubNetworkWithoutRequired(siteNames[0], schemaName, templateName, vrfName, regionName, name, tenantNames[0], "tenant_name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaSiteVRFRegionHubNetworkWithRequired(siteNames[0], schemaName, templateName, vrfName, regionName, name, tenantNames[0]), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSOSchemaSiteVRFRegionHubNetworkExists(resourceName, &hubNetwork1), + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttrSet(resourceName, "tenant_name"), + resource.TestCheckResourceAttrSet(resourceName, "site_id"), + resource.TestCheckResourceAttrSet(resourceName, "schema_id"), + resource.TestCheckResourceAttr(resourceName, "vrf_name", vrfName), + resource.TestCheckResourceAttr(resourceName, "region_name", regionName), + resource.TestCheckResourceAttrSet(resourceName, "template_name"), + ), + }, + { + ResourceName: resourceName, + ImportState: true, + ImportStateVerify: true, + }, + { + Config: MSOSchemaSiteVRFRegionHubNetworkWithRequired(siteNames[0], schemaName, templateName, vrfName, regionName, nameUpdated, tenantNames[0]), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSOSchemaSiteVRFRegionHubNetworkExists(resourceName, &hubNetwork2), + resource.TestCheckResourceAttr(resourceName, "name", nameUpdated), + resource.TestCheckResourceAttrSet(resourceName, "tenant_name"), + resource.TestCheckResourceAttrSet(resourceName, "site_id"), + resource.TestCheckResourceAttrSet(resourceName, "schema_id"), + resource.TestCheckResourceAttr(resourceName, "vrf_name", vrfName), + resource.TestCheckResourceAttr(resourceName, "region_name", regionName), + resource.TestCheckResourceAttrSet(resourceName, "template_name"), + testAccCheckMSOSchemaSiteVRFRegionHubNetworkIdNotEqual(&hubNetwork1, &hubNetwork2), + ), + }, + { + Config: MSOSchemaSiteVRFRegionHubNetworkWithRequired(siteNames[0], schemaName, templateName, vrfName, regionName, name, tenantNames[0]), + }, + { + Config: MSOSchemaSiteVRFRegionHubNetworkWithRequired(siteNames[0], schemaName, templateName, vrfNameUpdated, regionName, name, tenantNames[0]), + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttrSet(resourceName, "tenant_name"), + resource.TestCheckResourceAttrSet(resourceName, "site_id"), + resource.TestCheckResourceAttrSet(resourceName, "schema_id"), + resource.TestCheckResourceAttr(resourceName, "vrf_name", vrfNameUpdated), + resource.TestCheckResourceAttr(resourceName, "region_name", regionName), + resource.TestCheckResourceAttrSet(resourceName, "template_name"), + testAccCheckMSOSchemaSiteVRFRegionHubNetworkIdNotEqual(&hubNetwork1, &hubNetwork2), + ), + }, + }, + }) +} + +func TestAccMSOSchemaSiteVRFRegionHubNetwork_Negative(t *testing.T) { + name := makeTestVariable(acctest.RandString(5)) + regionName := makeTestVariable(acctest.RandString(5)) + vrfName := makeTestVariable(acctest.RandString(5)) + templateName := makeTestVariable(acctest.RandString(5)) + schemaName := makeTestVariable(acctest.RandString(5)) + randomParameter := acctest.RandStringFromCharSet(5, "abcdefghijklmnopqrstuvwxyz") + randomValue := acctest.RandString(5) + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSOSchemaSiteVRFRegionHubNetworkDestroy, + Steps: []resource.TestStep{ + { + Config: MSOSchemaSiteVRFRegionHubNetworkWithRequired(siteNames[0], schemaName, templateName, vrfName, regionName, acctest.RandString(1001), tenantNames[0]), + ExpectError: regexp.MustCompile(`1 - 1000`), + }, + { + Config: MSOSchemaSiteVRFRegionHubNetworkAttr(siteNames[0], schemaName, templateName, vrfName, regionName, name, tenantNames[0], randomParameter, randomValue), + ExpectError: regexp.MustCompile(`An argument named(.)+is not expected here.`), + }, + { + Config: MSOSchemaSiteVRFRegionHubNetworkWithRequired(siteNames[0], schemaName, templateName, vrfName, regionName, name, tenantNames[0]), + }, + }, + }) +} + +func testAccCheckMSOSchemaSiteVRFRegionHubNetworkIdNotEqual(h1, h2 *models.InterSchemaSiteVrfRegionHubNetork) resource.TestCheckFunc { + return func(s *terraform.State) error { + id1 := hubNetworkModeltohubNetworkID(h1) + id2 := hubNetworkModeltohubNetworkID(h2) + if id1 == id2 { + return fmt.Errorf("Schema Site VRF Region Hub Network Ids are equal") + } + return nil + } +} + +func testAccCheckMSOSchemaSiteVRFRegionHubNetworkDestroy(s *terraform.State) error { + client := testAccProvider.Meta().(*client.Client) + + for _, rs := range s.RootModule().Resources { + + if rs.Type == "mso_schema_site_vrf_region_hub_network" { + id := rs.Primary.ID + hubNetwork, _ := hubNetworkIDtohubNetwork(id) + _, err := client.ReadInterSchemaSiteVrfRegionHubNetwork(hubNetwork) + if err == nil { + return fmt.Errorf("Schema Site VRF Region Hub Network still exist") + } + } + } + return nil +} + +func testAccCheckMSOSchemaSiteVRFRegionHubNetworkExists(hubNetwork string, m *models.InterSchemaSiteVrfRegionHubNetork) resource.TestCheckFunc { + return func(s *terraform.State) error { + client := testAccProvider.Meta().(*client.Client) + rs, ok := s.RootModule().Resources[hubNetwork] + if !ok { + return fmt.Errorf("Schema Site VRF Region Hub Network %s not found", hubNetwork) + } + if rs.Primary.ID == "" { + return fmt.Errorf("No Schema Site VRF Region Hub Network Id was set") + } + hubNetworkModel, err := hubNetworkIDtohubNetwork(rs.Primary.ID) + if err != nil { + return err + } + var read *models.InterSchemaSiteVrfRegionHubNetork + read, err = client.ReadInterSchemaSiteVrfRegionHubNetwork(hubNetworkModel) + if err != nil { + return err + } + *m = *read + return nil + } +} + +func MSOSchemaSiteVrfRegionHubNetworkWithoutRequired(siteName, schemaName, templateName, vrfName, regionName, name, tenantName, attribute string) string { + rBlock := CreatSchemaSiteConfig(siteName, tenantName, name) + rBlock += ` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + + resource "mso_schema_site_vrf_region" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = "%s" + cidr { + cidr_ip = "2.2.2.2/10" + primary = "true" + subnet { + ip = "1.20.30.4" + } + } + } + ` + switch attribute { + case "schema_id": + rBlock += `resource "mso_schema_site_vrf_region_hub_network" "test"{ + # schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = "%s" + tenant_name = data.mso_tenant.test.id + }` + case "site_id": + rBlock += `resource "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + # site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = "%s" + tenant_name = data.mso_tenant.test.id + }` + case "template_name": + rBlock += `resource "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + # template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = "%s" + tenant_name = data.mso_tenant.test.id + }` + case "vrf_name": + rBlock += `resource "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + # vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = "%s" + tenant_name = data.mso_tenant.test.id + }` + case "region_name": + rBlock += `resource "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + # region_name = mso_schema_site_vrf_region.test.region_name + name = "%s" + tenant_name = data.mso_tenant.test.id + }` + case "name": + rBlock += `resource "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + # name = "%s" + tenant_name = data.mso_tenant.test.id + }` + case "tenant_name": + rBlock += `resource "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = "%s" + # tenant_name = data.mso_tenant.test.id + }` + } + return fmt.Sprintf(rBlock, vrfName, regionName, name) +} + +func MSOSchemaSiteVRFRegionHubNetworkWithRequired(siteName, schemaName, templateName, vrfName, regionName, name, tenantName string) string { + rBlock := CreatSchemaSiteConfig(siteName, tenantName, schemaName) + rBlock += ` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + + resource "mso_schema_site_vrf_region" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = "%s" + cidr { + cidr_ip = "2.2.2.2/10" + primary = "true" + subnet { + ip = "1.20.30.4" + } + } + } + + resource "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = "%s" + tenant_name = data.mso_tenant.test.id + }` + return fmt.Sprintf(rBlock, vrfName, regionName, name) +} + +func MSOSchemaSiteVRFRegionHubNetworkAttr(siteName, schemaName, templateName, vrfName, regionName, name, tenantName, key, value string) string { + rBlock := CreatSchemaSiteConfig(siteName, tenantName, name) + rBlock += ` + resource "mso_schema_site_vrf" "test" { + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + schema_id = mso_schema_site.test.schema_id + vrf_name = "%s" + } + + resource "mso_schema_site_vrf_region" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = "%s" + cidr { + cidr_ip = "2.2.2.2/10" + primary = "true" + subnet { + ip = "1.20.30.4" + } + } + } + + resource "mso_schema_site_vrf_region_hub_network" "test"{ + schema_id = mso_schema_site.test.schema_id + template_name = mso_schema_site.test.template_name + site_id = mso_schema_site.test.site_id + vrf_name = mso_schema_site_vrf.test.vrf_name + region_name = mso_schema_site_vrf_region.test.region_name + name = "%s" + %s = "%s" + tenant_name = data.mso_tenant.test.id + }` + return fmt.Sprintf(rBlock, vrfName, regionName, name, key, value) +} diff --git a/website/docs/d/schema_site_vrf_region_hub_network.markdown b/website/docs/d/schema_site_vrf_region_hub_network.markdown new file mode 100644 index 00000000..5197cd3a --- /dev/null +++ b/website/docs/d/schema_site_vrf_region_hub_network.markdown @@ -0,0 +1,38 @@ +--- +layout: "mso" +page_title: "MSO: mso_schema_site_vrf_region_hub_network" +sidebar_current: "docs-mso-data-source-schema_site_vrf_region_hub_network" +description: |- + Data source for MSO Schema Site VRF Region Hub Network +--- + +# mso_schema_site_vrf_region_hub_network # + +Data source for MSO schema site VRF Region Hub Network, to fetch the MSO schema site VRF Region Hub Network details. + +## Example Usage ## + +```hcl +data "mso_schema_site_vrf_region_hub_network" "example"{ + schema_id = mso_schema_site.example.schema_id + template_name = mso_schema_site.example.template_name + site_id = mso_schema_site.example.site_id + vrf_name = mso_schema_site_vrf.example.vrf_name + region_name = mso_schema_site_vrf_region.example.region_name + name = mso_schema_site_vrf_region_hub_network.example.name + tenant_name = data.mso_tenant.example.id +} +``` + +## Argument Reference ## +* `schema_id` - (Required) The schema-id where Vrf Region Hub Network is added. +* `name` - (Required) Name of the added Vrf Region Hub Network. +* `template_name` - (Required) Template name associated with the Vrf Region Hub Network. +* `vrf_name` - (Required) VRF name associated with the Vrf Region Hub Network. +* `site_id` - (Required) SiteID associated with the Vrf Region Hub Network. +* `tenant_name` - (Required) Tenant Name associated with Vrf Region Hub Network. +* `region_name` - (Required) Region Name associated with Vrf Region Hub Network. + +## Attribute Reference ## + +No attributes are exported. \ No newline at end of file diff --git a/website/docs/r/schema_site_vrf_region_hub_network.markdown b/website/docs/r/schema_site_vrf_region_hub_network.markdown new file mode 100644 index 00000000..cb0f79b2 --- /dev/null +++ b/website/docs/r/schema_site_vrf_region_hub_network.markdown @@ -0,0 +1,46 @@ +--- +layout: "mso" +page_title: "MSO: mso_schema_site_vrf_region_hub_network" +sidebar_current: "docs-mso-resource-schema_site_vrf_region_hub_network" +description: |- + Manages MSO Schema Site VRF Region Hub Network +--- + +# mso_schema_site_vrf_region_hub_network # + +Manages MSO Schema Site VRF Region Hub Network. + +## Example Usage ## + +```hcl +resource "mso_schema_site_vrf_region_hub_network" "example"{ + schema_id = mso_schema_site.example.schema_id + template_name = mso_schema_site.example.template_name + site_id = mso_schema_site.example.site_id + vrf_name = mso_schema_site_vrf.example.vrf_name + region_name = mso_schema_site_vrf_region.example.region_name + name = "example" + tenant_name = data.mso_tenant.example.id +} + +``` + +## Argument Reference ## +* `schema_id` - (Required) The schema-id where user wants to add Vrf Region Hub Network. +* `name` - (Required) Name of the Hub Network that user wants to add. +* `template_name` - (Required) Template name associated with the Vrf Region Hub Network. +* `vrf_name` - (Required) VRF name associated with the Vrf Region Hub Network. +* `site_id` - (Required) SiteID associated with the Vrf Region Hub Network. +* `tenant_name` - (Required) Tenant Name associated with Vrf Region Hub Network. +* `region_name` - (Required) Region Name associated with Vrf Region Hub Network. + +## Attribute Reference ## +The only Attribute exposed for this resource is `id`. Which is set to the node name of Service Node created. + +## Importing ## + +An existing MSO Schema Site VRF Region Hub Network can be [imported][docs-import] into this resource via its Id/path, via the following command: [docs-import]: + +```bash +terraform import mso_schema_site_vrf_region_hub_network.example {schema_id}/site/{site_id}/template/{template_name}/vrf/{vrf_name}/region/{region_name}/tenant/{tenant_name}/{name} +``` \ No newline at end of file diff --git a/website/mso.erb b/website/mso.erb index 564a957f..2585e220 100644 --- a/website/mso.erb +++ b/website/mso.erb @@ -65,6 +65,9 @@ > mso_schema_site_vrf_region + > + mso_schema_site_vrf_region_hub_network + > mso_schema_site_vrf_region_cidr @@ -208,6 +211,9 @@ > mso_schema_site_vrf_region + > + mso_schema_site_vrf_region_hub_network + > mso_schema_site_vrf_region_cidr From 3fd76ccbbfe39235b83bea3a169b04383a08c5dd Mon Sep 17 00:00:00 2001 From: hussainsadikot_crest Date: Tue, 22 Feb 2022 13:11:14 +0530 Subject: [PATCH 10/67] Updated vendor files --- go.sum | 8 ++---- ...ema_site_vrf_region_hub_network_service.go | 2 -- .../schema_site_vrf_region_hub_network.go | 27 ------------------- vendor/modules.txt | 2 +- 4 files changed, 3 insertions(+), 36 deletions(-) diff --git a/go.sum b/go.sum index d5f3eab7..5a5af5b8 100644 --- a/go.sum +++ b/go.sum @@ -32,12 +32,8 @@ github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQ github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cheggaaa/pb v1.0.27/go.mod h1:pQciLPpbU0oxA0h+VJYYLxO+XeDQb5pZijXscXHm81s= -github.com/ciscoecosystem/mso-go-client v1.2.6 h1:CU8l0cs15WNJFHQLJA/hJA6H4/vgra2WbP/+Rt4h9uM= -github.com/ciscoecosystem/mso-go-client v1.2.6/go.mod h1:ffy+aqN7Zo7GZC8e0pSt+Kbc32wjqkc+zDD42Ug0lWw= -github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220217092633-41a1e5eef2d2 h1:e8C9TjfWngtnNftfX+1UrohBSiRxurnM6Q9Dh1buTBg= -github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220217092633-41a1e5eef2d2/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= -github.com/ciscoecosystem/mso-go-client v1.3.1-0.20220217072151-d0264473c67b h1:8W5XE/Mrh2W1g/bjXP3JO+8J8+lL0iVw0lMzQQfOu+4= -github.com/ciscoecosystem/mso-go-client v1.3.1-0.20220217072151-d0264473c67b/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= +github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222065320-bf37ac54051a h1:jOWBARQnyqjK3hjBbLnd/cCQPBcz0yxL0CciC7DZ5tY= +github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222065320-bf37ac54051a/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_site_vrf_region_hub_network_service.go b/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_site_vrf_region_hub_network_service.go index 77505600..d359ecbe 100644 --- a/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_site_vrf_region_hub_network_service.go +++ b/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_site_vrf_region_hub_network_service.go @@ -2,7 +2,6 @@ package client import ( "fmt" - "log" "sync" "github.com/ciscoecosystem/mso-go-client/models" @@ -17,7 +16,6 @@ func (client *Client) CreateInterSchemaSiteVrfRegionHubNetwork(obj *models.Inter } hubNetwork := models.CreateInterSchemaSiteVrfRegionNetworkModel(obj, schemaCont) regionHubNetworkMutex.Lock() - log.Printf("hubNetwork: %v\n", hubNetwork) _, err = client.PatchbyID(fmt.Sprintf("api/v1/schemas/%s", obj.SchemaID), hubNetwork) if err != nil { return err diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_site_vrf_region_hub_network.go b/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_site_vrf_region_hub_network.go index 189c01b6..614ddd43 100644 --- a/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_site_vrf_region_hub_network.go +++ b/vendor/github.com/ciscoecosystem/mso-go-client/models/schema_site_vrf_region_hub_network.go @@ -32,7 +32,6 @@ func CreateInterSchemaSiteVrfRegionNetworkModel(hubNetwork *InterSchemaSiteVrfRe } vrfRegionMap, err := InterSchemaSiteVrfRegionFromContainer(cont, hubNetwork) if err != nil { - log.Printf("%s", err) return nil } vrfRegionMap["cloudRsCtxProfileToGatewayRouterP"] = map[string]string{ @@ -63,7 +62,6 @@ func InterSchemaSiteVrfRegionFromContainer(cont *container.Container, regionHubN regionMap := make(map[string]interface{}) var found bool = false count, err := cont.ArrayCount("sites") - log.Printf("Count: %v\n", count) if err != nil { return nil, fmt.Errorf("no sites found") } @@ -71,18 +69,12 @@ func InterSchemaSiteVrfRegionFromContainer(cont *container.Container, regionHubN tempCont, err := cont.ArrayElement(i, "sites") log.Printf("tempCont: %v\n", tempCont) if err != nil { - log.Printf("error in tempCont: %v", err) return nil, err } siteId := StripQuotes(tempCont.S("siteId").String()) - log.Printf("siteId: %v\n", siteId) templateName := StripQuotes((tempCont.S("templateName")).String()) - log.Printf("templateName: %v\n", templateName) - log.Printf("regionHubNetwork.SiteID: %v\n", regionHubNetwork.SiteID) - log.Printf("regionHubNetwork.TemplateName: %v\n", regionHubNetwork.TemplateName) if (siteId == regionHubNetwork.SiteID) && (templateName == regionHubNetwork.TemplateName) { vrfCount, err := tempCont.ArrayCount("vrfs") - log.Printf("vrfCount: %v\n", vrfCount) if err != nil { return nil, fmt.Errorf("unable to get VRFs List") } @@ -90,14 +82,10 @@ func InterSchemaSiteVrfRegionFromContainer(cont *container.Container, regionHubN for j := 0; j < vrfCount; j++ { vrfTempCont := vrfCont.Index(j) log.Printf("vrfTempCont: %v\n", vrfTempCont) - log.Printf("%v", StripQuotes(vrfTempCont.S("vrfRef").String())) vrfRef := strings.Split(StripQuotes(vrfTempCont.S("vrfRef").String()), "/") - log.Printf("vrfRef: %v", vrfRef) vrfName := vrfRef[len(vrfRef)-1] - log.Printf("vrfName: %v", vrfName) if vrfName == regionHubNetwork.VrfName { regionCount, err := vrfTempCont.ArrayCount("regions") - log.Printf("regionCount: %v\n", regionCount) if err != nil { return nil, fmt.Errorf("unable to Regions List") } @@ -107,10 +95,8 @@ func InterSchemaSiteVrfRegionFromContainer(cont *container.Container, regionHubN log.Printf("regionTempCont: %v\n", regionTempCont) regionName := G(regionTempCont, "name") if regionName == regionHubNetwork.Region { - log.Printf("in if block of regionName: %v", regionTempCont) err := json.Unmarshal(regionTempCont.EncodeJSON(), ®ionMap) if err != nil { - log.Printf("error is: %v", err) return nil, err } found = true @@ -121,7 +107,6 @@ func InterSchemaSiteVrfRegionFromContainer(cont *container.Container, regionHubN } } } - log.Printf("region Map holds value: %v", regionMap) if !found { return nil, fmt.Errorf("unable to find siteVrfRegionHubNetwork %s", regionHubNetwork.Name) } @@ -132,7 +117,6 @@ func InterSchemaSiteVrfRegionHubNetworkFromContainer(cont *container.Container, hubNetwork := InterSchemaSiteVrfRegionHubNetork{} var found bool = false count, err := cont.ArrayCount("sites") - log.Printf("Count: %v\n", count) if err != nil { return nil, fmt.Errorf("no sites found") } @@ -143,14 +127,9 @@ func InterSchemaSiteVrfRegionHubNetworkFromContainer(cont *container.Container, return nil, err } siteId := StripQuotes(tempCont.S("siteId").String()) - log.Printf("siteId: %v\n", siteId) templateName := StripQuotes((tempCont.S("templateName")).String()) - log.Printf("templateName: %v\n", templateName) - log.Printf("regionHubNetwork.SiteID: %v\n", regionHubNetwork.SiteID) - log.Printf("regionHubNetwork.TemplateName: %v\n", regionHubNetwork.TemplateName) if (siteId == regionHubNetwork.SiteID) && (templateName == regionHubNetwork.TemplateName) { vrfCount, err := tempCont.ArrayCount("vrfs") - log.Printf("vrfCount: %v\n", vrfCount) if err != nil { return nil, fmt.Errorf("unable to get VRFs List") } @@ -162,7 +141,6 @@ func InterSchemaSiteVrfRegionHubNetworkFromContainer(cont *container.Container, vrfName := vrfRef[len(vrfRef)-1] if vrfName == regionHubNetwork.VrfName { regionCount, err := vrfTempCont.ArrayCount("regions") - log.Printf("regionCount: %v\n", regionCount) if err != nil { return nil, fmt.Errorf("unable to Regions List") } @@ -176,12 +154,7 @@ func InterSchemaSiteVrfRegionHubNetworkFromContainer(cont *container.Container, log.Printf("routePCont: %v\n", routePCont) hubName := StripQuotes(routePCont.S("name").String()) tenantName := StripQuotes(routePCont.S("tenantName").String()) - log.Printf("hubName: %v\n", hubName) - log.Printf("tenantName: %v\n", tenantName) - log.Printf("regionHubNetwork.Name: %v\n", regionHubNetwork.Name) - log.Printf("regionHubNetwork.TenantName: %v\n", regionHubNetwork.TenantName) if hubName == regionHubNetwork.Name && tenantName == regionHubNetwork.TenantName { - log.Printf("in if container") hubNetwork.Name = hubName hubNetwork.TenantName = tenantName hubNetwork.Region = regionName diff --git a/vendor/modules.txt b/vendor/modules.txt index 0d83ff20..6573383d 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -56,7 +56,7 @@ github.com/aws/aws-sdk-go/service/sts/stsiface github.com/bgentry/go-netrc/netrc # github.com/bgentry/speakeasy v0.1.0 github.com/bgentry/speakeasy -# github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220221090018-2ef5003b2be2 => ../../ciscoecosystem/mso-go-client +# github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222065320-bf37ac54051a github.com/ciscoecosystem/mso-go-client/client github.com/ciscoecosystem/mso-go-client/container github.com/ciscoecosystem/mso-go-client/models From 800c24e4b6ba89c8e92eec7ea222f2d76805b197 Mon Sep 17 00:00:00 2001 From: hthakkar-crest Date: Tue, 22 Feb 2022 12:55:50 +0530 Subject: [PATCH 11/67] added data source for mso_schema_validate --- examples/schema_validate/main.tf | 29 ++++++++ go.mod | 4 +- mso/datasource_mso_schema_validate.go | 51 +++++++++++++ mso/datasource_mso_schema_validate_test.go | 71 +++++++++++++++++++ mso/provider.go | 1 + mso/provider_test.go | 2 + .../client/schema_validate_service.go | 42 +++++++++++ .../mso-go-client/models/shema_validate.go | 6 ++ website/docs/d/schema_validate.html.markdown | 27 +++++++ website/mso.erb | 3 + 10 files changed, 235 insertions(+), 1 deletion(-) create mode 100644 examples/schema_validate/main.tf create mode 100644 mso/datasource_mso_schema_validate.go create mode 100644 mso/datasource_mso_schema_validate_test.go create mode 100644 vendor/github.com/ciscoecosystem/mso-go-client/client/schema_validate_service.go create mode 100644 vendor/github.com/ciscoecosystem/mso-go-client/models/shema_validate.go create mode 100644 website/docs/d/schema_validate.html.markdown diff --git a/examples/schema_validate/main.tf b/examples/schema_validate/main.tf new file mode 100644 index 00000000..80d8be79 --- /dev/null +++ b/examples/schema_validate/main.tf @@ -0,0 +1,29 @@ +terraform { + required_providers { + mso = { + source = "CiscoDevNet/mso" + } + } +} + +provider "mso" { + username = "" # + password = "" # + url = "" # + insecure = true +} + +data "mso_tenant" "example" { + name = "example" + display_name = "example" +} + +resource "mso_schema" "example" { + name = "example" + template_name = "example" + tenant_id = data.mso_tenant.test.id +} + +data "mso_schema_validate" "example" { + schema_id = mso_schema.example.id +} \ No newline at end of file diff --git a/go.mod b/go.mod index 09c0ad07..92a86889 100644 --- a/go.mod +++ b/go.mod @@ -3,8 +3,10 @@ module github.com/terraform-providers/terraform-provider-mso go 1.13 require ( - github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222065320-bf37ac54051a + github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222071607-6c0fd78257c7 github.com/hashicorp/terraform-plugin-sdk v1.14.0 github.com/stretchr/testify v1.6.1 // indirect golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect ) + +replace github.com/ciscoecosystem/mso-go-client => ../../ciscoecosystem/mso-go-client diff --git a/mso/datasource_mso_schema_validate.go b/mso/datasource_mso_schema_validate.go new file mode 100644 index 00000000..4ffde91e --- /dev/null +++ b/mso/datasource_mso_schema_validate.go @@ -0,0 +1,51 @@ +package mso + +import ( + "fmt" + "log" + + "github.com/ciscoecosystem/mso-go-client/client" + "github.com/ciscoecosystem/mso-go-client/models" + "github.com/hashicorp/terraform-plugin-sdk/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/helper/validation" +) + +func datasourceMSOSchemaValidate() *schema.Resource { + return &schema.Resource{ + Read: datasourceMSOSchemaValidateRead, + SchemaVersion: 1, + Schema: map[string]*schema.Schema{ + "schema_id": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + "result": { + Type: schema.TypeString, + Default: "false", + Optional: true, + }, + }, + } +} + +func datasourceMSOSchemaValidateRead(d *schema.ResourceData, m interface{}) error { + log.Println("[DEBUG] Schema Validate: Beginning Read") + msoClient := m.(*client.Client) + schemaValidate := models.SchemValidate{ + SchmaId: d.Get("schema_id").(string), + } + remoteSchemaValidate, err := msoClient.ReadSchemaValidate(&schemaValidate) + if err != nil { + return err + } + setSchemaValidateAttr(remoteSchemaValidate, d) + d.SetId(fmt.Sprintf("schemas/%s/validate", remoteSchemaValidate.SchmaId)) + log.Println("[DEBUG] Schema Validate: Reading Completed", d.Id()) + return nil +} + +func setSchemaValidateAttr(m *models.SchemValidate, d *schema.ResourceData) { + d.Set("schema_id", m.SchmaId) + d.Set("result", m.Result) +} diff --git a/mso/datasource_mso_schema_validate_test.go b/mso/datasource_mso_schema_validate_test.go new file mode 100644 index 00000000..25072fc8 --- /dev/null +++ b/mso/datasource_mso_schema_validate_test.go @@ -0,0 +1,71 @@ +package mso + +import ( + "fmt" + "regexp" + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/helper/acctest" + "github.com/hashicorp/terraform-plugin-sdk/helper/resource" +) + +func TestAccMSOSchemaValidate_DataSource(t *testing.T) { + dataSourceName := "data.mso_schema_validate.test" + randomParameter := acctest.RandStringFromCharSet(5, "abcdefghijklmnopqrstuvwxyz") + randomValue := acctest.RandString(5) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + Steps: []resource.TestStep{ + { + Config: MSOSchemaValidateDataSourceWithoutSchameId(), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSOSchemaValidateDataSourceWithRequired(inValidScheamaId), + ExpectError: regexp.MustCompile(`Bad Request`), + }, + { + Config: MSOSchemaValidateDataSourceWithRequired(randomValue), + ExpectError: regexp.MustCompile(`Resource Not Found`), + }, + { + Config: MSOSchemaValidateDataSourceRandomAttr(validSchemaId, randomParameter, randomValue), + ExpectError: regexp.MustCompile(`An argument named(.)+is not expected here.`), + }, + { + Config: MSOSchemaValidateDataSourceWithRequired(validSchemaId), + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttr(dataSourceName, "schema_id", validSchemaId), + resource.TestCheckResourceAttr(dataSourceName, "result", "true"), + ), + }, + }, + }) +} + +func MSOSchemaValidateDataSourceWithoutSchameId() string { + resource := fmt.Sprintln(` + data "mso_schema_validate" "test" {} + `) + return resource +} + +func MSOSchemaValidateDataSourceWithRequired(id string) string { + resource := fmt.Sprintf(` + data "mso_schema_validate" "test" { + schema_id = "%s" + } + `, id) + return resource +} + +func MSOSchemaValidateDataSourceRandomAttr(id, key, value string) string { + resource := fmt.Sprintf(` + data "mso_schema_validate" "test" { + schema_id = "%s" + %s = "%s" + } + `, id, key, value) + return resource +} diff --git a/mso/provider.go b/mso/provider.go index 525a8098..457cd82f 100644 --- a/mso/provider.go +++ b/mso/provider.go @@ -162,6 +162,7 @@ func Provider() terraform.ResourceProvider { "mso_dhcp_option_policy": datasourceMSODHCPOptionPolicy(), "mso_schema_site_l3out": datasourceMSOSchemaSiteL3out(), "mso_schema_site_vrf_region_hub_network": datasourceMSOSchemaSiteVRFRegionHubNetwork(), + "mso_schema_validate": datasourceMSOSchemaValidate(), }, ConfigureFunc: configureClient, diff --git a/mso/provider_test.go b/mso/provider_test.go index 28c23c82..65c025ee 100644 --- a/mso/provider_test.go +++ b/mso/provider_test.go @@ -13,6 +13,8 @@ var testAccProviders map[string]terraform.ResourceProvider var testAccProvider *schema.Provider var siteNames = []string{"ansible_test"} var tenantNames = []string{"acctest_crest"} +var validSchemaId = "6206831f1d000012864f99a8" +var inValidScheamaId = "620683151d0000f1854f99a4" func CreatSchemaSiteConfig(site, tenant, name string) string { resource := fmt.Sprintf(` diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_validate_service.go b/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_validate_service.go new file mode 100644 index 00000000..6d6aff8a --- /dev/null +++ b/vendor/github.com/ciscoecosystem/mso-go-client/client/schema_validate_service.go @@ -0,0 +1,42 @@ +package client + +import ( + "errors" + "fmt" + + "github.com/ciscoecosystem/mso-go-client/container" + "github.com/ciscoecosystem/mso-go-client/models" +) + +func (client *Client) ReadSchemaValidate(obj *models.SchemValidate) (*models.SchemValidate, error) { + cont, err := client.GetSchemaValidate(fmt.Sprintf("api/v1/schemas/%s/validate", obj.SchmaId)) + if err != nil { + return nil, err + } + remoteSchemaValidate := models.SchemValidate{ + SchmaId: obj.SchmaId, + Result: models.G(cont, "result"), + } + return &remoteSchemaValidate, nil +} + +func (c *Client) GetSchemaValidate(endpoint string) (*container.Container, error) { + + req, err := c.MakeRestRequest("GET", endpoint, nil, true) + + if err != nil { + return nil, err + } + req.Header.Del("Content-Type") + + obj, _, err := c.Do(req) + if err != nil { + return nil, err + } + + if obj == nil { + return nil, errors.New("empty response body") + } + return obj, CheckForErrors(obj, "GET") + +} diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/models/shema_validate.go b/vendor/github.com/ciscoecosystem/mso-go-client/models/shema_validate.go new file mode 100644 index 00000000..406febe7 --- /dev/null +++ b/vendor/github.com/ciscoecosystem/mso-go-client/models/shema_validate.go @@ -0,0 +1,6 @@ +package models + +type SchemValidate struct { + SchmaId string + Result string +} diff --git a/website/docs/d/schema_validate.html.markdown b/website/docs/d/schema_validate.html.markdown new file mode 100644 index 00000000..4d7bc1b8 --- /dev/null +++ b/website/docs/d/schema_validate.html.markdown @@ -0,0 +1,27 @@ +--- +layout: "mso" +page_title: "MSO: mso_schema_validate" +sidebar_current: "docs-mso-data-source-schema_validate" +description: |- + Data source for MSO Schema Template Vrf +--- + +# mso_schema_validate # + +Data source for MSO schema validate, to fetch the MSO schema validate details. + +## Example Usage ## + +```hcl +data "mso_schema_validate" "example" { + schema_id = mso_schema.example.id +} +``` + +## Argument Reference ## + +* `schema_id` - (Required) The schema-id which user want to validate. + +## Attribute Reference ## + +* `result` - (Optional) The validation result for schema_id given. diff --git a/website/mso.erb b/website/mso.erb index 2585e220..c03fd521 100644 --- a/website/mso.erb +++ b/website/mso.erb @@ -119,6 +119,9 @@ > mso_schema_template_external_epg_selector + > + mso_schema_validate + > mso_schema_site_external_epg_selector From 950011c0a8c1dfb73944c7a632235777b8d57ad4 Mon Sep 17 00:00:00 2001 From: hthakkar-crest Date: Tue, 22 Feb 2022 13:52:57 +0530 Subject: [PATCH 12/67] final commit for mso_schema_validate --- go.mod | 2 -- go.sum | 4 ++-- vendor/modules.txt | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index 92a86889..aea3f7f3 100644 --- a/go.mod +++ b/go.mod @@ -8,5 +8,3 @@ require ( github.com/stretchr/testify v1.6.1 // indirect golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect ) - -replace github.com/ciscoecosystem/mso-go-client => ../../ciscoecosystem/mso-go-client diff --git a/go.sum b/go.sum index 5a5af5b8..79ddd618 100644 --- a/go.sum +++ b/go.sum @@ -32,8 +32,8 @@ github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQ github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cheggaaa/pb v1.0.27/go.mod h1:pQciLPpbU0oxA0h+VJYYLxO+XeDQb5pZijXscXHm81s= -github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222065320-bf37ac54051a h1:jOWBARQnyqjK3hjBbLnd/cCQPBcz0yxL0CciC7DZ5tY= -github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222065320-bf37ac54051a/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= +github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222071607-6c0fd78257c7 h1:xREFYlR0m+2kqnh2njttKEMHpWINVzHpFvIYm1wpTxw= +github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222071607-6c0fd78257c7/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/vendor/modules.txt b/vendor/modules.txt index 6573383d..6aa1054e 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -56,7 +56,7 @@ github.com/aws/aws-sdk-go/service/sts/stsiface github.com/bgentry/go-netrc/netrc # github.com/bgentry/speakeasy v0.1.0 github.com/bgentry/speakeasy -# github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222065320-bf37ac54051a +# github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222071607-6c0fd78257c7 github.com/ciscoecosystem/mso-go-client/client github.com/ciscoecosystem/mso-go-client/container github.com/ciscoecosystem/mso-go-client/models From 10203708ce09ab4140956d5349e4964c685bb788 Mon Sep 17 00:00:00 2001 From: hthakkar-crest Date: Tue, 22 Feb 2022 14:00:32 +0530 Subject: [PATCH 13/67] updated schema of mso_schema_validate --- mso/datasource_mso_schema_validate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mso/datasource_mso_schema_validate.go b/mso/datasource_mso_schema_validate.go index 4ffde91e..1caca4ea 100644 --- a/mso/datasource_mso_schema_validate.go +++ b/mso/datasource_mso_schema_validate.go @@ -22,7 +22,7 @@ func datasourceMSOSchemaValidate() *schema.Resource { }, "result": { Type: schema.TypeString, - Default: "false", + Computed: true, Optional: true, }, }, From d7941f304ad89b3486faee863fcab243e8442678 Mon Sep 17 00:00:00 2001 From: Darshit Sachdev Date: Tue, 22 Feb 2022 18:43:46 +0530 Subject: [PATCH 14/67] Initial commit for MSO DHCP relay policy. --- go.mod | 2 +- go.sum | 4 +- mso/TF.log | 55883 ++++++++++++++++ mso/datasource_mso_dhcp_relay_policy.go | 79 + mso/datasource_mso_dhcp_relay_policy_test.go | 209 + mso/provider.go | 2 + mso/provider_test.go | 1 + mso/resource_mso_dhcp_relay_policy.go | 243 + mso/resource_mso_dhcp_relay_policy_test.go | 607 + mso/resource_mso_schema_template_anp_epg.go | 6 +- ...source_mso_schema_template_external_epg.go | 6 +- .../client/dhcp_relay_policy_service.go | 59 + .../mso-go-client/models/relay_policy.go | 54 + vendor/modules.txt | 2 +- 14 files changed, 57149 insertions(+), 8 deletions(-) create mode 100644 mso/TF.log create mode 100644 mso/datasource_mso_dhcp_relay_policy.go create mode 100644 mso/datasource_mso_dhcp_relay_policy_test.go create mode 100644 mso/resource_mso_dhcp_relay_policy.go create mode 100644 mso/resource_mso_dhcp_relay_policy_test.go create mode 100644 vendor/github.com/ciscoecosystem/mso-go-client/client/dhcp_relay_policy_service.go create mode 100644 vendor/github.com/ciscoecosystem/mso-go-client/models/relay_policy.go diff --git a/go.mod b/go.mod index aea3f7f3..42901b11 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/terraform-providers/terraform-provider-mso go 1.13 require ( - github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222071607-6c0fd78257c7 + github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222130833-44686049b065 github.com/hashicorp/terraform-plugin-sdk v1.14.0 github.com/stretchr/testify v1.6.1 // indirect golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect diff --git a/go.sum b/go.sum index 79ddd618..2639061c 100644 --- a/go.sum +++ b/go.sum @@ -32,8 +32,8 @@ github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQ github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cheggaaa/pb v1.0.27/go.mod h1:pQciLPpbU0oxA0h+VJYYLxO+XeDQb5pZijXscXHm81s= -github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222071607-6c0fd78257c7 h1:xREFYlR0m+2kqnh2njttKEMHpWINVzHpFvIYm1wpTxw= -github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222071607-6c0fd78257c7/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= +github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222130833-44686049b065 h1:h0Drd+djvNn1u+2kL/AJWPX4FUV6hh8m1ns8zkrW3tQ= +github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222130833-44686049b065/go.mod h1:K/Pe1jG59kJCYHGlZEt7/R3dTARsM1bHW8ZN5FAr0bw= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/mso/TF.log b/mso/TF.log new file mode 100644 index 00000000..3ebf0131 --- /dev/null +++ b/mso/TF.log @@ -0,0 +1,55883 @@ +2022/02/21 18:52:08 [DEBUG] Test: Executing step 0 +2022/02/21 18:52:08 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:08 [INFO] terraform: building graph: GraphTypeValidate +2022/02/21 18:52:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/21 18:52:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:08 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:08 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:08 [DEBUG] Starting graph walk: walkValidate +2022/02/21 18:52:08 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/21 18:52:08 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/21 18:52:08 [DEBUG] Test: Executing step 1 +2022/02/21 18:52:08 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:08 [INFO] terraform: building graph: GraphTypeValidate +2022/02/21 18:52:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/21 18:52:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:08 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/21 18:52:08 [DEBUG] Starting graph walk: walkValidate +2022/02/21 18:52:08 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "qealg" is not expected here. +2022/02/21 18:52:08 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "qealg" is not expected here. +2022/02/21 18:52:08 [DEBUG] Test: Executing step 2 +2022/02/21 18:52:08 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:08 [INFO] terraform: building graph: GraphTypeValidate +2022/02/21 18:52:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/21 18:52:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:08 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:08 [DEBUG] Starting graph walk: walkValidate +2022/02/21 18:52:08 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:08 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/21 18:52:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/21 18:52:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/21 18:52:08 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:08 [DEBUG] Starting graph walk: walkRefresh +2022/02/21 18:52:08 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:08 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/21 18:52:08 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:08 [DEBUG] : Beginning Read +2022/02/21 18:52:08 HTTP request GET mso/api/v1/tenants +2022/02/21 18:52:08 [DEBUG] Begin Injection +2022/02/21 18:52:08 HTTP request POST /login +2022/02/21 18:52:08 HTTP request after injection POST /login +2022/02/21 18:52:08 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/21 18:52:10 +HTTP Request: POST https://173.36.219.31/login +2022/02/21 18:52:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:09 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU0NTA5MjksImlhdCI6MTY0NTQ0OTcyOSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI4V0duOEJJSXVoWkV5NkxHWUhISkZlbUwiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Y3nRmseefoUjSbmG3ZYSWxLGSevpNHM_Cyu9P9KIL6eZoqU24XrNXxN_a7gjiaNh-g9XBf70SLirzCbwgTWjskBLWQ3NgyoLzuWDmq4JS4ZJruMW3Z9kNN21csWF--Qt5s660ssqs2NT2E-ppU5_9IAyMarcoPFQNJ6NkL_UhEGrG--33dDBqcWc5ow8_YVvunWu7O2_ZoUuwhsokFRM9Q8rdc_jkPtOliktYhPka5e72hNiYmjg8Ybq6kFtpUvB5kSoY8E3DnSksvhWCCIa3e9kHym8KSLP1FbvCAQgUR_iKxv1BquMQlXKXb5Fp6WUJbqEW7DbXA3R-e57zVEThA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000498100 -1 [chunked] false false map[] 0xc0008c0600 0xc0000f60b0} +2022/02/21 18:52:10 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU0NTA5MjksImlhdCI6MTY0NTQ0OTcyOSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI4V0duOEJJSXVoWkV5NkxHWUhISkZlbUwiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Y3nRmseefoUjSbmG3ZYSWxLGSevpNHM_Cyu9P9KIL6eZoqU24XrNXxN_a7gjiaNh-g9XBf70SLirzCbwgTWjskBLWQ3NgyoLzuWDmq4JS4ZJruMW3Z9kNN21csWF--Qt5s660ssqs2NT2E-ppU5_9IAyMarcoPFQNJ6NkL_UhEGrG--33dDBqcWc5ow8_YVvunWu7O2_ZoUuwhsokFRM9Q8rdc_jkPtOliktYhPka5e72hNiYmjg8Ybq6kFtpUvB5kSoY8E3DnSksvhWCCIa3e9kHym8KSLP1FbvCAQgUR_iKxv1BquMQlXKXb5Fp6WUJbqEW7DbXA3R-e57zVEThA","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU0NTA5MjksImlhdCI6MTY0NTQ0OTcyOSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI4V0duOEJJSXVoWkV5NkxHWUhISkZlbUwiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Y3nRmseefoUjSbmG3ZYSWxLGSevpNHM_Cyu9P9KIL6eZoqU24XrNXxN_a7gjiaNh-g9XBf70SLirzCbwgTWjskBLWQ3NgyoLzuWDmq4JS4ZJruMW3Z9kNN21csWF--Qt5s660ssqs2NT2E-ppU5_9IAyMarcoPFQNJ6NkL_UhEGrG--33dDBqcWc5ow8_YVvunWu7O2_ZoUuwhsokFRM9Q8rdc_jkPtOliktYhPka5e72hNiYmjg8Ybq6kFtpUvB5kSoY8E3DnSksvhWCCIa3e9kHym8KSLP1FbvCAQgUR_iKxv1BquMQlXKXb5Fp6WUJbqEW7DbXA3R-e57zVEThA"} +2022/02/21 18:52:10 [DEBUG] Exit from do method +2022/02/21 18:52:10 HTTP request after injection GET mso/api/v1/tenants +2022/02/21 18:52:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/21 18:52:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/21 18:52:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004982c0 3980 [] false false map[] 0xc0008c0500 0xc0000f60b0} +2022/02/21 18:52:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/21 18:52:10 [DEBUG] Exit from do method +2022/02/21 18:52:10 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/21 18:52:10 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:10 [DEBUG] New state was assigned lineage "0ae1b683-50a4-a1c0-8289-645391c4fe21" +2022/02/21 18:52:10 [INFO] terraform: building graph: GraphTypePlan +2022/02/21 18:52:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/21 18:52:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/21 18:52:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/21 18:52:10 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/21 18:52:10 [DEBUG] Starting graph walk: walkPlan +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:10 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:10 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:10 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:10 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_24sxd_invalid" + tenant_id: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_24sxd" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/21 18:52:10 [INFO] terraform: building graph: GraphTypeApply +2022/02/21 18:52:10 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/21 18:52:10 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/21 18:52:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/21 18:52:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/21 18:52:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/21 18:52:10 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/21 18:52:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/21 18:52:10 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/21 18:52:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:10 [DEBUG] Starting graph walk: walkApply +2022/02/21 18:52:10 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/21 18:52:10 [DEBUG] : Beginning Create +2022/02/21 18:52:10 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:10 [DEBUG] Begin Injection +2022/02/21 18:52:10 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:10 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090f80 160 [] false false map[] 0xc000940c00 0xc0000f60b0} +2022/02/21 18:52:10 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621392021b0000183ffd060d","name":"acctest_24sxd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/21 18:52:10 [DEBUG] Exit from do method +2022/02/21 18:52:10 [DEBUG] 621392021b0000183ffd060d: Creation finished successfully +2022/02/21 18:52:10 [DEBUG] 621392021b0000183ffd060d: Beginning Read +2022/02/21 18:52:10 id: 621392021b0000183ffd060d +2022/02/21 18:52:10 HTTP request GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:10 [DEBUG] Begin Injection +2022/02/21 18:52:10 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001de3c0 160 [] false false map[] 0xc000570200 0xc0000f60b0} +2022/02/21 18:52:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d {"id":"621392021b0000183ffd060d","name":"acctest_24sxd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/21 18:52:11 [DEBUG] Exit from do method +2022/02/21 18:52:11 providerList: [] +2022/02/21 18:52:11 [DEBUG] 621392021b0000183ffd060d: Read finished successfully +2022/02/21 18:52:11 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/21 18:52:11 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:11 [DEBUG] Begin Injection +2022/02/21 18:52:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2262] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001df880 2262 [] false false map[] 0xc000180800 0xc0000f60b0} +2022/02/21 18:52:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620cb3551b0000afe0fd05dc","name":"test1","policyType":"dhcp","policySubtype":"relay","desc":"dfgh","tenantId":"620cb3101d000024464f99bd","provider":[],"version":1},{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620cecb41b00008aecfd05df","name":"test3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":35},{"id":"620cf2871b0000c7edfd05e0","name":"test4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"11.03.3.2","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EXT_EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"620f3ea71b0000fa61fd05e1","name":"practice_repo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[],"version":1},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621390f01b0000b33efd060c","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621392021b0000183ffd060d","name":"acctest_24sxd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/21 18:52:11 [DEBUG] Exit from do method +2022/02/21 18:52:11 [ERROR] : eval: *terraform.EvalReadData, err: DHCP Relay Policy with name: acctest_24sxd_invalid not found +2022/02/21 18:52:11 [ERROR] : eval: *terraform.EvalSequence, err: DHCP Relay Policy with name: acctest_24sxd_invalid not found +2022/02/21 18:52:11 [DEBUG] New state was assigned lineage "c0ed60cd-e878-716c-55e2-956653632675" +2022/02/21 18:52:11 [DEBUG] Test: Executing step 3 +2022/02/21 18:52:11 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:11 [INFO] terraform: building graph: GraphTypeValidate +2022/02/21 18:52:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/21 18:52:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:11 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:11 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/21 18:52:11 [DEBUG] Starting graph walk: walkValidate +2022/02/21 18:52:11 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:11 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/21 18:52:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/21 18:52:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/21 18:52:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/21 18:52:11 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/21 18:52:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/21 18:52:11 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/21 18:52:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/21 18:52:11 [DEBUG] Starting graph walk: walkRefresh +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:11 [DEBUG] : Beginning Read +2022/02/21 18:52:11 HTTP request GET mso/api/v1/tenants +2022/02/21 18:52:11 [DEBUG] Begin Injection +2022/02/21 18:52:11 HTTP request after injection GET mso/api/v1/tenants +2022/02/21 18:52:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/21 18:52:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/21 18:52:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050c800 3980 [] false false map[] 0xc000940100 0xc0000f60b0} +2022/02/21 18:52:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/21 18:52:11 [DEBUG] Exit from do method +2022/02/21 18:52:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/21 18:52:11 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/21 18:52:11 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/21 18:52:11 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/21 18:52:11 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/21 18:52:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:11 [DEBUG] 621392021b0000183ffd060d: Beginning Read +2022/02/21 18:52:11 id: 621392021b0000183ffd060d +2022/02/21 18:52:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:11 [DEBUG] Begin Injection +2022/02/21 18:52:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090700 160 [] false false map[] 0xc0002e6300 0xc0000f60b0} +2022/02/21 18:52:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d {"id":"621392021b0000183ffd060d","name":"acctest_24sxd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/21 18:52:12 [DEBUG] Exit from do method +2022/02/21 18:52:12 providerList: [] +2022/02/21 18:52:12 [DEBUG] 621392021b0000183ffd060d: Read finished successfully +2022/02/21 18:52:12 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:12 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/21 18:52:12 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:12 [DEBUG] Begin Injection +2022/02/21 18:52:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2262] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091480 2262 [] false false map[] 0xc000180900 0xc0000f60b0} +2022/02/21 18:52:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620cb3551b0000afe0fd05dc","name":"test1","policyType":"dhcp","policySubtype":"relay","desc":"dfgh","tenantId":"620cb3101d000024464f99bd","provider":[],"version":1},{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620cecb41b00008aecfd05df","name":"test3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":35},{"id":"620cf2871b0000c7edfd05e0","name":"test4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"11.03.3.2","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EXT_EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"620f3ea71b0000fa61fd05e1","name":"practice_repo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[],"version":1},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621390f01b0000b33efd060c","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621392021b0000183ffd060d","name":"acctest_24sxd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/21 18:52:12 [DEBUG] Exit from do method +2022/02/21 18:52:12 HTTP request GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:12 [DEBUG] Begin Injection +2022/02/21 18:52:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e8300 160 [] false false map[] 0xc0004d0400 0xc0000f60b0} +2022/02/21 18:52:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d {"id":"621392021b0000183ffd060d","name":"acctest_24sxd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/21 18:52:12 [DEBUG] Exit from do method +2022/02/21 18:52:12 providerList: [] +2022/02/21 18:52:12 [DEBUG] 621392021b0000183ffd060d: Import finished successfully +2022/02/21 18:52:12 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:12 [DEBUG] New state was assigned lineage "57f3ebe5-cb35-2ee4-5060-69d945d80d72" +2022/02/21 18:52:12 [INFO] terraform: building graph: GraphTypePlan +2022/02/21 18:52:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/21 18:52:12 [DEBUG] Starting graph walk: walkPlan +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:12 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/21 18:52:12 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/21 18:52:12 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/21 18:52:12 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:12 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:12 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_24sxd" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.220.227" + dhcp_relay_policy_provider.0.external_epg: "" => "" + id: "621392021b0000183ffd060d" => "621392021b0000183ffd060d" + name: "acctest_24sxd" => "acctest_24sxd" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_bodzh" + template_name: "" => "acctest_7dc7z" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_sb7ko" + external_epg_name: "" => "acctest_sb7ko" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_7dc7z" + vrf_name: "" => "acctest_sb7ko" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_sb7ko" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_sb7ko" + schema_id: "" => "" + template: "" => "acctest_7dc7z" + vzany: "" => "" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 621392021b0000183ffd060d + provider = provider.mso + description = + name = acctest_24sxd + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621392021b0000183ffd060d + provider = provider.mso + description = + name = acctest_24sxd + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/21 18:52:12 [INFO] terraform: building graph: GraphTypeApply +2022/02/21 18:52:12 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/21 18:52:12 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/21 18:52:12 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/21 18:52:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (prepare state) +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test (prepare state)] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/21 18:52:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:12 [DEBUG] Starting graph walk: walkApply +2022/02/21 18:52:12 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/21 18:52:12 [DEBUG] Schema: Beginning Creation +2022/02/21 18:52:12 HTTP request POST mso/api/v1/schemas +2022/02/21 18:52:12 [DEBUG] Begin Injection +2022/02/21 18:52:12 HTTP request after injection POST mso/api/v1/schemas +2022/02/21 18:52:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/21 18:52:13 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/21 18:52:13 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621392041d0000f7294f9d02] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f20c0 400 [] false false map[] 0xc000570800 0xc0000f60b0} +2022/02/21 18:52:13 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621392041d0000f7294f9d02","displayName":"acctest_bodzh","description":"","templates":[{"name":"acctest_7dc7z","displayName":"acctest_7dc7z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/21 18:52:13 [DEBUG] Exit from do method +2022/02/21 18:52:13 [DEBUG] 621392041d0000f7294f9d02: Schema Creation finished successfully +2022/02/21 18:52:13 [DEBUG] 621392041d0000f7294f9d02: Beginning Read +2022/02/21 18:52:13 HTTP request GET mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:13 [DEBUG] Begin Injection +2022/02/21 18:52:13 HTTP request after injection GET mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f2300 400 [] false false map[] 0xc000940000 0xc0000f60b0} +2022/02/21 18:52:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 {"id":"621392041d0000f7294f9d02","displayName":"acctest_bodzh","description":"","templates":[{"name":"acctest_7dc7z","displayName":"acctest_7dc7z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/21 18:52:13 [DEBUG] Exit from do method +2022/02/21 18:52:13 [DEBUG] 621392041d0000f7294f9d02: Read finished successfully +2022/02/21 18:52:13 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/21 18:52:13 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/21 18:52:13 HTTP request PATCH mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:13 [DEBUG] Begin Injection +2022/02/21 18:52:13 HTTP request after injection PATCH mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 21 Feb 2022 13:22:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004d0700 0xc0000f60b0} +2022/02/21 18:52:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:13 [DEBUG] acctest_sb7ko: Creation finished successfully +2022/02/21 18:52:13 [DEBUG] acctest_sb7ko: Beginning Read +2022/02/21 18:52:13 HTTP request GET mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:13 [DEBUG] Begin Injection +2022/02/21 18:52:13 HTTP request after injection GET mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004980c0 768 [] false false map[] 0xc0004d0000 0xc0000f60b0} +2022/02/21 18:52:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 {"id":"621392041d0000f7294f9d02","displayName":"acctest_bodzh","description":"","templates":[{"name":"acctest_7dc7z","displayName":"acctest_7dc7z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sb7ko","displayName":"acctest_sb7ko","vrfRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/vrfs/acctest_sb7ko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/21 18:52:14 [DEBUG] Exit from do method +2022/02/21 18:52:14 currentvrfname acctest_sb7ko +2022/02/21 18:52:14 found correct vrfname +2022/02/21 18:52:14 [DEBUG] acctest_sb7ko: Read finished successfully +2022/02/21 18:52:14 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/21 18:52:14 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/21 18:52:14 [DEBUG] Template Externalepg: Beginning Creation +2022/02/21 18:52:14 HTTP request PATCH mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:14 [DEBUG] Begin Injection +2022/02/21 18:52:14 HTTP request after injection PATCH mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:14 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 21 Feb 2022 13:22:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004d0a00 0xc0000f60b0} +2022/02/21 18:52:14 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:14 [DEBUG] : Beginning Read +2022/02/21 18:52:14 HTTP request GET mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:14 [DEBUG] Begin Injection +2022/02/21 18:52:14 HTTP request after injection GET mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004996c0 1147 [] false false map[] 0xc000570800 0xc0000f60b0} +2022/02/21 18:52:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 {"id":"621392041d0000f7294f9d02","displayName":"acctest_bodzh","description":"","templates":[{"name":"acctest_7dc7z","displayName":"acctest_7dc7z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sb7ko","displayName":"acctest_sb7ko","vrfRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/vrfs/acctest_sb7ko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_sb7ko","displayName":"acctest_sb7ko","extEpgType":"on-premise","vrfRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/vrfs/acctest_sb7ko","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/21 18:52:14 [DEBUG] Exit from do method +2022/02/21 18:52:14 [DEBUG] /schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko: Read finished successfully +2022/02/21 18:52:14 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/21 18:52:14 [DEBUG] 621392021b0000183ffd060d: Beginning Policy Update +2022/02/21 18:52:14 HTTP request PUT mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:14 [DEBUG] Begin Injection +2022/02/21 18:52:14 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:15 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f24c0 361 [] false false map[] 0xc000940800 0xc0000f60b0} +2022/02/21 18:52:15 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d {"id":"621392021b0000183ffd060d","name":"acctest_24sxd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.220.227","epgRef":"","externalEpgRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/21 18:52:15 [DEBUG] Exit from do method +2022/02/21 18:52:15 [DEBUG] Policy Update finished successfully: 621392021b0000183ffd060d +2022/02/21 18:52:15 [DEBUG] 621392021b0000183ffd060d: Beginning Read +2022/02/21 18:52:15 id: 621392021b0000183ffd060d +2022/02/21 18:52:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:15 [DEBUG] Begin Injection +2022/02/21 18:52:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001df680 361 [] false false map[] 0xc000180600 0xc0000f60b0} +2022/02/21 18:52:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d {"id":"621392021b0000183ffd060d","name":"acctest_24sxd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.220.227","epgRef":"","externalEpgRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/21 18:52:15 [DEBUG] Exit from do method +2022/02/21 18:52:15 providerList: [map[dhcp_server_address:1.2.220.227 epg: external_epg:/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/21 18:52:15 [DEBUG] 621392021b0000183ffd060d: Read finished successfully +2022/02/21 18:52:15 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/21 18:52:15 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/21 18:52:15 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:15 [DEBUG] Begin Injection +2022/02/21 18:52:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/21 18:52:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2463] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002ae080 2463 [] false false map[] 0xc0004d1400 0xc0000f60b0} +2022/02/21 18:52:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620cb3551b0000afe0fd05dc","name":"test1","policyType":"dhcp","policySubtype":"relay","desc":"dfgh","tenantId":"620cb3101d000024464f99bd","provider":[],"version":1},{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620cecb41b00008aecfd05df","name":"test3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":35},{"id":"620cf2871b0000c7edfd05e0","name":"test4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"11.03.3.2","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EXT_EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"620f3ea71b0000fa61fd05e1","name":"practice_repo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[],"version":1},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621390f01b0000b33efd060c","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621392021b0000183ffd060d","name":"acctest_24sxd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.220.227","epgRef":"","externalEpgRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/21 18:52:15 [DEBUG] Exit from do method +2022/02/21 18:52:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:15 [DEBUG] Begin Injection +2022/02/21 18:52:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090040 361 [] false false map[] 0xc000570000 0xc0000f60b0} +2022/02/21 18:52:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d {"id":"621392021b0000183ffd060d","name":"acctest_24sxd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.220.227","epgRef":"","externalEpgRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/21 18:52:15 [DEBUG] Exit from do method +2022/02/21 18:52:15 providerList: [map[dhcp_server_address:1.2.220.227 epg: external_epg:/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/21 18:52:15 [DEBUG] 621392021b0000183ffd060d: Import finished successfully +2022/02/21 18:52:15 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:15 [DEBUG] New state was assigned lineage "c1171937-e48d-f68d-1230-c8162d3bc872" +2022/02/21 18:52:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:15 [DEBUG] Begin Injection +2022/02/21 18:52:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002ae1c0 361 [] false false map[] 0xc000180000 0xc0000f60b0} +2022/02/21 18:52:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d {"id":"621392021b0000183ffd060d","name":"acctest_24sxd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.220.227","epgRef":"","externalEpgRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/21 18:52:16 [DEBUG] Exit from do method +2022/02/21 18:52:16 [WARN] Test: Executing destroy step +2022/02/21 18:52:16 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/21 18:52:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/21 18:52:16 [DEBUG] Starting graph walk: walkValidate +2022/02/21 18:52:16 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:16 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/21 18:52:16 [WARN] Not fixing up EachModes for data.mso_tenant.test because it has no config +2022/02/21 18:52:16 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/21 18:52:16 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/21 18:52:16 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/21 18:52:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:16 [DEBUG] Starting graph walk: walkRefresh +2022/02/21 18:52:16 [DEBUG] Resource state not found for node "mso_tenant.test", instance mso_tenant.test +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/21 18:52:16 [DEBUG] 621392041d0000f7294f9d02: Beginning Read +2022/02/21 18:52:16 HTTP request GET mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:16 [DEBUG] Begin Injection +2022/02/21 18:52:16 HTTP request after injection GET mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:16 [WARN] Provider "mso" produced an invalid plan for mso_tenant.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .site_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead + - .user_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:16 [DEBUG] 621392021b0000183ffd060d: Beginning Read +2022/02/21 18:52:16 id: 621392021b0000183ffd060d +2022/02/21 18:52:16 HTTP request GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:16 [DEBUG] Begin Injection +2022/02/21 18:52:16 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090840 1147 [] false false map[] 0xc00073c100 0xc0000f60b0} +2022/02/21 18:52:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 {"id":"621392041d0000f7294f9d02","displayName":"acctest_bodzh","description":"","templates":[{"name":"acctest_7dc7z","displayName":"acctest_7dc7z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sb7ko","displayName":"acctest_sb7ko","vrfRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/vrfs/acctest_sb7ko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_sb7ko","displayName":"acctest_sb7ko","extEpgType":"on-premise","vrfRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/vrfs/acctest_sb7ko","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/21 18:52:16 [DEBUG] Exit from do method +2022/02/21 18:52:16 [DEBUG] 621392041d0000f7294f9d02: Read finished successfully +2022/02/21 18:52:16 [DEBUG] acctest_sb7ko: Beginning Read +2022/02/21 18:52:16 HTTP request GET mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:16 [DEBUG] Begin Injection +2022/02/21 18:52:16 HTTP request after injection GET mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f3840 361 [] false false map[] 0xc000bfc800 0xc0000f60b0} +2022/02/21 18:52:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d {"id":"621392021b0000183ffd060d","name":"acctest_24sxd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.220.227","epgRef":"","externalEpgRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/21 18:52:16 [DEBUG] Exit from do method +2022/02/21 18:52:16 providerList: [map[dhcp_server_address:1.2.220.227 epg: external_epg:/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/21 18:52:16 [DEBUG] 621392021b0000183ffd060d: Read finished successfully +2022/02/21 18:52:16 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000918c0 1147 [] false false map[] 0xc0004d0c00 0xc0000f60b0} +2022/02/21 18:52:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 {"id":"621392041d0000f7294f9d02","displayName":"acctest_bodzh","description":"","templates":[{"name":"acctest_7dc7z","displayName":"acctest_7dc7z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sb7ko","displayName":"acctest_sb7ko","vrfRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/vrfs/acctest_sb7ko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_sb7ko","displayName":"acctest_sb7ko","extEpgType":"on-premise","vrfRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/vrfs/acctest_sb7ko","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/21 18:52:17 [DEBUG] Exit from do method +2022/02/21 18:52:17 currentvrfname acctest_sb7ko +2022/02/21 18:52:17 found correct vrfname +2022/02/21 18:52:17 [DEBUG] acctest_sb7ko: Read finished successfully +2022/02/21 18:52:17 [DEBUG] /schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko: Beginning Read +2022/02/21 18:52:17 HTTP request GET mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:17 [DEBUG] Begin Injection +2022/02/21 18:52:17 HTTP request after injection GET mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050c800 1147 [] false false map[] 0xc000180800 0xc0000f60b0} +2022/02/21 18:52:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 {"id":"621392041d0000f7294f9d02","displayName":"acctest_bodzh","description":"","templates":[{"name":"acctest_7dc7z","displayName":"acctest_7dc7z","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sb7ko","displayName":"acctest_sb7ko","vrfRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/vrfs/acctest_sb7ko","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_sb7ko","displayName":"acctest_sb7ko","extEpgType":"on-premise","vrfRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/vrfs/acctest_sb7ko","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/21 18:52:17 [DEBUG] Exit from do method +2022/02/21 18:52:17 [DEBUG] /schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko: Read finished successfully +2022/02/21 18:52:17 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:17 [DEBUG] New state was assigned lineage "01a30665-3968-5349-c343-42cb32a28f0d" +2022/02/21 18:52:17 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/21 18:52:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:17 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/21 18:52:17 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.220.227" => "" + dhcp_relay_policy_provider.0.epg: "" => "" + dhcp_relay_policy_provider.0.external_epg: "/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko" => "" + id: "621392021b0000183ffd060d" => "" + name: "acctest_24sxd" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621392041d0000f7294f9d02" => "" + name: "acctest_bodzh" => "" + template_name: "acctest_7dc7z" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_sb7ko" => "" + external_epg_name: "acctest_sb7ko" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "621392041d0000f7294f9d02" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_7dc7z" => "" + vrf_name: "acctest_sb7ko" => "" + vrf_schema_id: "621392041d0000f7294f9d02" => "" + vrf_template_name: "acctest_7dc7z" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_sb7ko" => "" + id: "acctest_sb7ko" => "" + layer3_multicast: "false" => "" + name: "acctest_sb7ko" => "" + schema_id: "621392041d0000f7294f9d02" => "" + template: "acctest_7dc7z" => "" + vzany: "false" => "" + + + +STATE: + +mso_dhcp_relay_policy.test: + ID = 621392021b0000183ffd060d + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.220.227 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko + name = acctest_24sxd + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 621392041d0000f7294f9d02 + provider = provider.mso + name = acctest_bodzh + template_name = acctest_7dc7z + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/621392041d0000f7294f9d02/templates/acctest_7dc7z/externalEpgs/acctest_sb7ko + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_sb7ko + external_epg_name = acctest_sb7ko + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 621392041d0000f7294f9d02 + selector_ip = + selector_name = + template_name = acctest_7dc7z + vrf_name = acctest_sb7ko + vrf_schema_id = 621392041d0000f7294f9d02 + vrf_template_name = acctest_7dc7z + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_sb7ko + provider = provider.mso + display_name = acctest_sb7ko + layer3_multicast = false + name = acctest_sb7ko + schema_id = 621392041d0000f7294f9d02 + template = acctest_7dc7z + vzany = false + + Dependencies: + mso_schema.test +2022/02/21 18:52:17 [INFO] terraform: building graph: GraphTypeApply +2022/02/21 18:52:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_tenant.test (prepare state)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/21 18:52:17 DestroyEdgeTransformer: pruning unused resource node data.mso_dhcp_relay_policy.test (prepare state) +2022/02/21 18:52:17 DestroyEdgeTransformer: pruning unused resource node mso_tenant.test (prepare state) +2022/02/21 18:52:17 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/21 18:52:17 [DEBUG] Starting graph walk: walkDestroy +2022/02/21 18:52:17 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/21 18:52:17 [DEBUG] 621392021b0000183ffd060d: Beginning Read +2022/02/21 18:52:17 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:17 [DEBUG] Begin Injection +2022/02/21 18:52:17 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:17 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/21 18:52:17 [DEBUG] Template Externalepg: Beginning Update +2022/02/21 18:52:17 HTTP request PATCH mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:17 [DEBUG] Begin Injection +2022/02/21 18:52:17 HTTP request after injection PATCH mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:17 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 21 Feb 2022 13:22:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004d0500 0xc000eee000} +2022/02/21 18:52:17 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:17 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/21 18:52:17 [DEBUG] acctest_sb7ko: Beginning Destroy +2022/02/21 18:52:17 HTTP request PATCH mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:17 [DEBUG] Begin Injection +2022/02/21 18:52:17 HTTP request after injection PATCH mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:17 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 21 Feb 2022 13:22:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000180000 0xc0000f6160} +2022/02/21 18:52:17 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:17 [DEBUG] : Read finished successfully +2022/02/21 18:52:18 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:18 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 21 Feb 2022 13:22:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000bfc400 0xc000eee000} +2022/02/21 18:52:18 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02?validate=false +2022/02/21 18:52:18 [DEBUG] acctest_sb7ko: Destroy finished successfully +2022/02/21 18:52:18 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/21 18:52:18 [DEBUG] 621392041d0000f7294f9d02: Beginning Destroy +2022/02/21 18:52:18 HTTP request DELETE mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:18 [DEBUG] Begin Injection +2022/02/21 18:52:18 HTTP request after injection DELETE mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:18 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:18 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Mon, 21 Feb 2022 13:22:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000bfcc00 0xc000eee000} +2022/02/21 18:52:18 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621392041d0000f7294f9d02 +2022/02/21 18:52:18 [DEBUG] 621392041d0000f7294f9d02: Destroy finished successfully +2022/02/21 18:52:18 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:18 [DEBUG] New state was assigned lineage "42a5b777-ee8e-553c-1e3e-8b8dcef3fa36" +2022/02/21 18:52:18 HTTP request GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:18 [DEBUG] Begin Injection +2022/02/21 18:52:18 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d +2022/02/21 18:52:18 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Mon, 21 Feb 2022 13:22:18 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007bc780 86 [] false false map[] 0xc0004d0900 0xc000eee000} +2022/02/21 18:52:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621392021b0000183ffd060d {"code":141,"message":"Resource Not Found: Policy 621392021b0000183ffd060d not found"} +2022/02/21 18:52:18 [DEBUG] Exit from do method +2022/02/21 18:52:18 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/21 18:52:18 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/21 18:52:18 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/21 18:52:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/21 18:52:18 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/21 18:52:18 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/21 18:52:18 [DEBUG] Starting graph walk: walkRefresh +2022/02/21 18:52:18 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/21 18:52:18 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/21 18:52:18 [DEBUG] provider has no plugin.Client +2022/02/21 18:52:18 [DEBUG] New state was assigned lineage "5b36b7f9-efbb-f263-0f00-a953a60d9b68" +2022/02/21 18:52:18 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/21 18:52:18 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 10:36:19 [DEBUG] Test: Executing step 0 +2022/02/22 10:36:19 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:19 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 10:36:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 10:36:19 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:19 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:19 [DEBUG] Starting graph walk: walkValidate +2022/02/22 10:36:19 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 10:36:19 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 10:36:19 [DEBUG] Test: Executing step 1 +2022/02/22 10:36:19 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:19 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 10:36:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 10:36:19 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 10:36:19 [DEBUG] Starting graph walk: walkValidate +2022/02/22 10:36:19 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "rcebq" is not expected here. +2022/02/22 10:36:19 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "rcebq" is not expected here. +2022/02/22 10:36:19 [DEBUG] Test: Executing step 2 +2022/02/22 10:36:19 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:19 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 10:36:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 10:36:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:19 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:19 [DEBUG] Starting graph walk: walkValidate +2022/02/22 10:36:19 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:19 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 10:36:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 10:36:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 10:36:19 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:19 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 10:36:19 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:19 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 10:36:19 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:19 [DEBUG] : Beginning Read +2022/02/22 10:36:19 HTTP request GET mso/api/v1/tenants +2022/02/22 10:36:19 [DEBUG] Begin Injection +2022/02/22 10:36:19 HTTP request POST /login +2022/02/22 10:36:19 HTTP request after injection POST /login +2022/02/22 10:36:19 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 10:36:21 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 10:36:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:21 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MDc1ODEsImlhdCI6MTY0NTUwNjM4MSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJTckJFUTdxMU91NnlhQWliVEdjcDAxcXEiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.dIFjC3Fg4dTQ0oqyGg5JwIgRKk1NLDCDj41LZ4NKRJHomLB3eugG0ZcLnSRzDj4ssm06WmPJ878LC-PBJzsJv7A4iGolq-nA_cbqNa6WEHHQjPsFo4OJAU4w-20b6evpkHJE_7wkQ2CD_PtCwZfQ2POxBpparIwlRHjAYFK-pNUihzmpzc4hJrEGRj4OO4UlfNbq--rJ4P51azLz14Z3-CID4T5N1QL2JE65M01mq31T_qKweoQBZFy8uErDYoJG5bZQfpknvXAoqq_YaYe_W_qUi-CV8qlZY11iSEszZcDr00MODJuyVQ75PXGE_cLUcG1WES-PxfDLe7MtT5f-pQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00050aec0 -1 [chunked] false false map[] 0xc00087a500 0xc0001366e0} +2022/02/22 10:36:21 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MDc1ODEsImlhdCI6MTY0NTUwNjM4MSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJTckJFUTdxMU91NnlhQWliVEdjcDAxcXEiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.dIFjC3Fg4dTQ0oqyGg5JwIgRKk1NLDCDj41LZ4NKRJHomLB3eugG0ZcLnSRzDj4ssm06WmPJ878LC-PBJzsJv7A4iGolq-nA_cbqNa6WEHHQjPsFo4OJAU4w-20b6evpkHJE_7wkQ2CD_PtCwZfQ2POxBpparIwlRHjAYFK-pNUihzmpzc4hJrEGRj4OO4UlfNbq--rJ4P51azLz14Z3-CID4T5N1QL2JE65M01mq31T_qKweoQBZFy8uErDYoJG5bZQfpknvXAoqq_YaYe_W_qUi-CV8qlZY11iSEszZcDr00MODJuyVQ75PXGE_cLUcG1WES-PxfDLe7MtT5f-pQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MDc1ODEsImlhdCI6MTY0NTUwNjM4MSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJTckJFUTdxMU91NnlhQWliVEdjcDAxcXEiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.dIFjC3Fg4dTQ0oqyGg5JwIgRKk1NLDCDj41LZ4NKRJHomLB3eugG0ZcLnSRzDj4ssm06WmPJ878LC-PBJzsJv7A4iGolq-nA_cbqNa6WEHHQjPsFo4OJAU4w-20b6evpkHJE_7wkQ2CD_PtCwZfQ2POxBpparIwlRHjAYFK-pNUihzmpzc4hJrEGRj4OO4UlfNbq--rJ4P51azLz14Z3-CID4T5N1QL2JE65M01mq31T_qKweoQBZFy8uErDYoJG5bZQfpknvXAoqq_YaYe_W_qUi-CV8qlZY11iSEszZcDr00MODJuyVQ75PXGE_cLUcG1WES-PxfDLe7MtT5f-pQ"} +2022/02/22 10:36:21 [DEBUG] Exit from do method +2022/02/22 10:36:21 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 10:36:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 10:36:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 10:36:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000496240 3980 [] false false map[] 0xc00087a400 0xc0001366e0} +2022/02/22 10:36:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 10:36:21 [DEBUG] Exit from do method +2022/02/22 10:36:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 10:36:21 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:21 [DEBUG] New state was assigned lineage "c7f07fa4-b07c-bec6-06d5-099608a17891" +2022/02/22 10:36:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 10:36:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 10:36:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 10:36:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 10:36:21 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:21 [DEBUG] Starting graph walk: walkPlan +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:21 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:21 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:21 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:21 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_qtybc_invalid" + tenant_id: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_qtybc" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 10:36:21 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 10:36:21 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 10:36:21 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 10:36:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 10:36:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 10:36:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 10:36:21 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 10:36:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 10:36:21 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 10:36:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 10:36:21 [DEBUG] Starting graph walk: walkApply +2022/02/22 10:36:21 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 10:36:21 [DEBUG] : Beginning Create +2022/02/22 10:36:21 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:21 [DEBUG] Begin Injection +2022/02/22 10:36:21 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:22 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000496c80 160 [] false false map[] 0xc000558300 0xc0001366e0} +2022/02/22 10:36:22 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"62146f4e1b0000046bfd0612","name":"acctest_qtybc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 10:36:22 [DEBUG] Exit from do method +2022/02/22 10:36:22 [DEBUG] 62146f4e1b0000046bfd0612: Creation finished successfully +2022/02/22 10:36:22 [DEBUG] 62146f4e1b0000046bfd0612: Beginning Read +2022/02/22 10:36:22 id: 62146f4e1b0000046bfd0612 +2022/02/22 10:36:22 HTTP request GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:22 [DEBUG] Begin Injection +2022/02/22 10:36:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050a100 160 [] false false map[] 0xc000558500 0xc0001366e0} +2022/02/22 10:36:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 {"id":"62146f4e1b0000046bfd0612","name":"acctest_qtybc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 10:36:22 [DEBUG] Exit from do method +2022/02/22 10:36:22 providerList: [] +2022/02/22 10:36:22 [DEBUG] 62146f4e1b0000046bfd0612: Read finished successfully +2022/02/22 10:36:22 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 10:36:22 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:22 [DEBUG] Begin Injection +2022/02/22 10:36:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2262] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090140 2262 [] false false map[] 0xc000558900 0xc0001366e0} +2022/02/22 10:36:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620cb3551b0000afe0fd05dc","name":"test1","policyType":"dhcp","policySubtype":"relay","desc":"dfgh","tenantId":"620cb3101d000024464f99bd","provider":[],"version":1},{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620cecb41b00008aecfd05df","name":"test3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":35},{"id":"620cf2871b0000c7edfd05e0","name":"test4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"11.03.3.2","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EXT_EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"620f3ea71b0000fa61fd05e1","name":"practice_repo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[],"version":1},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621392f81b0000573ffd0610","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"62146f4e1b0000046bfd0612","name":"acctest_qtybc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 10:36:22 [DEBUG] Exit from do method +2022/02/22 10:36:22 [ERROR] : eval: *terraform.EvalReadData, err: DHCP Relay Policy with name: acctest_qtybc_invalid not found +2022/02/22 10:36:22 [ERROR] : eval: *terraform.EvalSequence, err: DHCP Relay Policy with name: acctest_qtybc_invalid not found +2022/02/22 10:36:22 [DEBUG] New state was assigned lineage "87415b30-40af-1f4a-9502-dc5fe825e47f" +2022/02/22 10:36:22 [DEBUG] Test: Executing step 3 +2022/02/22 10:36:22 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:22 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 10:36:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 10:36:22 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 10:36:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:22 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 10:36:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:22 [DEBUG] Starting graph walk: walkValidate +2022/02/22 10:36:22 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:22 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 10:36:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 10:36:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 10:36:22 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 10:36:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 10:36:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 10:36:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:22 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 10:36:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:22 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 10:36:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:22 [DEBUG] : Beginning Read +2022/02/22 10:36:22 HTTP request GET mso/api/v1/tenants +2022/02/22 10:36:22 [DEBUG] Begin Injection +2022/02/22 10:36:22 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 10:36:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 10:36:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 10:36:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a1d380 3980 [] false false map[] 0xc00087a600 0xc0001366e0} +2022/02/22 10:36:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 10:36:23 [DEBUG] Exit from do method +2022/02/22 10:36:23 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 10:36:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:23 [DEBUG] 62146f4e1b0000046bfd0612: Beginning Read +2022/02/22 10:36:23 id: 62146f4e1b0000046bfd0612 +2022/02/22 10:36:23 HTTP request GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:23 [DEBUG] Begin Injection +2022/02/22 10:36:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000496300 160 [] false false map[] 0xc000559000 0xc0001366e0} +2022/02/22 10:36:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 {"id":"62146f4e1b0000046bfd0612","name":"acctest_qtybc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 10:36:23 [DEBUG] Exit from do method +2022/02/22 10:36:23 providerList: [] +2022/02/22 10:36:23 [DEBUG] 62146f4e1b0000046bfd0612: Read finished successfully +2022/02/22 10:36:23 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 10:36:23 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:23 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 10:36:23 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:23 [DEBUG] Begin Injection +2022/02/22 10:36:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2262] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050a100 2262 [] false false map[] 0xc00087ac00 0xc0001366e0} +2022/02/22 10:36:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620cb3551b0000afe0fd05dc","name":"test1","policyType":"dhcp","policySubtype":"relay","desc":"dfgh","tenantId":"620cb3101d000024464f99bd","provider":[],"version":1},{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620cecb41b00008aecfd05df","name":"test3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":35},{"id":"620cf2871b0000c7edfd05e0","name":"test4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"11.03.3.2","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EXT_EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"620f3ea71b0000fa61fd05e1","name":"practice_repo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[],"version":1},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621392f81b0000573ffd0610","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"62146f4e1b0000046bfd0612","name":"acctest_qtybc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 10:36:23 [DEBUG] Exit from do method +2022/02/22 10:36:23 HTTP request GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:23 [DEBUG] Begin Injection +2022/02/22 10:36:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000496600 160 [] false false map[] 0xc00049a100 0xc0001366e0} +2022/02/22 10:36:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 {"id":"62146f4e1b0000046bfd0612","name":"acctest_qtybc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 10:36:24 [DEBUG] Exit from do method +2022/02/22 10:36:24 providerList: [] +2022/02/22 10:36:24 [DEBUG] 62146f4e1b0000046bfd0612: Import finished successfully +2022/02/22 10:36:24 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:24 [DEBUG] New state was assigned lineage "092003ac-8f6f-0626-4e5c-424acb3f7b22" +2022/02/22 10:36:24 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 10:36:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 10:36:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 10:36:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 10:36:24 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:24 [DEBUG] Starting graph walk: walkPlan +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:24 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:24 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_qtybc" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.87.188" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1" + id: "62146f4e1b0000046bfd0612" => "62146f4e1b0000046bfd0612" + name: "acctest_qtybc" => "acctest_qtybc" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 62146f4e1b0000046bfd0612 + provider = provider.mso + description = + name = acctest_qtybc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 62146f4e1b0000046bfd0612 + provider = provider.mso + description = + name = acctest_qtybc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 10:36:24 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 10:36:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 10:36:24 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 10:36:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 10:36:24 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 10:36:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 10:36:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 10:36:24 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 10:36:24 [DEBUG] Starting graph walk: walkApply +2022/02/22 10:36:24 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 10:36:24 [DEBUG] 62146f4e1b0000046bfd0612: Beginning Policy Update +2022/02/22 10:36:24 HTTP request PUT mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:24 [DEBUG] Begin Injection +2022/02/22 10:36:24 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:24 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[350] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00054e080 350 [] false false map[] 0xc00087af00 0xc0001366e0} +2022/02/22 10:36:24 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 {"id":"62146f4e1b0000046bfd0612","name":"acctest_qtybc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.87.188","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 10:36:24 [DEBUG] Exit from do method +2022/02/22 10:36:24 [DEBUG] Policy Update finished successfully: 62146f4e1b0000046bfd0612 +2022/02/22 10:36:24 [DEBUG] 62146f4e1b0000046bfd0612: Beginning Read +2022/02/22 10:36:24 id: 62146f4e1b0000046bfd0612 +2022/02/22 10:36:24 HTTP request GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:24 [DEBUG] Begin Injection +2022/02/22 10:36:24 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[350] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00054e140 350 [] false false map[] 0xc00087a400 0xc0001366e0} +2022/02/22 10:36:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 {"id":"62146f4e1b0000046bfd0612","name":"acctest_qtybc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.87.188","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 10:36:24 [DEBUG] Exit from do method +2022/02/22 10:36:24 providerList: [map[dhcp_server_address:1.2.87.188 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 10:36:24 [DEBUG] 62146f4e1b0000046bfd0612: Read finished successfully +2022/02/22 10:36:24 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 10:36:24 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 10:36:24 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:24 [DEBUG] Begin Injection +2022/02/22 10:36:24 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 10:36:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2452] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090e00 2452 [] false false map[] 0xc00087a700 0xc0001366e0} +2022/02/22 10:36:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620cb3551b0000afe0fd05dc","name":"test1","policyType":"dhcp","policySubtype":"relay","desc":"dfgh","tenantId":"620cb3101d000024464f99bd","provider":[],"version":1},{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620cecb41b00008aecfd05df","name":"test3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":35},{"id":"620cf2871b0000c7edfd05e0","name":"test4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"11.03.3.2","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EXT_EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"620f3ea71b0000fa61fd05e1","name":"practice_repo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[],"version":1},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621392f81b0000573ffd0610","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"62146f4e1b0000046bfd0612","name":"acctest_qtybc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.87.188","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 10:36:25 [DEBUG] Exit from do method +2022/02/22 10:36:25 HTTP request GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:25 [DEBUG] Begin Injection +2022/02/22 10:36:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[350] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a1c140 350 [] false false map[] 0xc000188000 0xc0001366e0} +2022/02/22 10:36:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 {"id":"62146f4e1b0000046bfd0612","name":"acctest_qtybc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.87.188","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 10:36:25 [DEBUG] Exit from do method +2022/02/22 10:36:25 providerList: [map[dhcp_server_address:1.2.87.188 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 10:36:25 [DEBUG] 62146f4e1b0000046bfd0612: Import finished successfully +2022/02/22 10:36:25 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:25 [DEBUG] New state was assigned lineage "fc7fdb1d-4f91-ea46-4e9f-38700c924ad6" +2022/02/22 10:36:25 HTTP request GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:25 [DEBUG] Begin Injection +2022/02/22 10:36:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[350] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050af80 350 [] false false map[] 0xc00087ab00 0xc0001366e0} +2022/02/22 10:36:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 {"id":"62146f4e1b0000046bfd0612","name":"acctest_qtybc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.87.188","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 10:36:25 [DEBUG] Exit from do method +2022/02/22 10:36:25 [WARN] Test: Executing destroy step +2022/02/22 10:36:25 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:25 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 10:36:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 10:36:25 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:25 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 10:36:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 10:36:25 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 10:36:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 10:36:25 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 10:36:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:25 [DEBUG] Starting graph walk: walkValidate +2022/02/22 10:36:25 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:25 [WARN] Not fixing up EachModes for data.mso_tenant.test because it has no config +2022/02/22 10:36:25 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 10:36:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 10:36:25 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 10:36:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 10:36:25 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 10:36:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 10:36:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 10:36:25 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 10:36:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 10:36:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:25 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 10:36:25 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 10:36:25 [DEBUG] Resource state not found for node "mso_tenant.test", instance mso_tenant.test +2022/02/22 10:36:25 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 10:36:25 [WARN] Provider "mso" produced an invalid plan for mso_tenant.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .site_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead + - .user_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead +2022/02/22 10:36:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:26 [DEBUG] 62146f4e1b0000046bfd0612: Beginning Read +2022/02/22 10:36:26 id: 62146f4e1b0000046bfd0612 +2022/02/22 10:36:26 HTTP request GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:26 [DEBUG] Begin Injection +2022/02/22 10:36:26 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[350] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091840 350 [] false false map[] 0xc00088a700 0xc0001366e0} +2022/02/22 10:36:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 {"id":"62146f4e1b0000046bfd0612","name":"acctest_qtybc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.87.188","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 10:36:26 [DEBUG] Exit from do method +2022/02/22 10:36:26 providerList: [map[dhcp_server_address:1.2.87.188 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 10:36:26 [DEBUG] 62146f4e1b0000046bfd0612: Read finished successfully +2022/02/22 10:36:26 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:26 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:26 [DEBUG] New state was assigned lineage "d112d501-3067-5eeb-be3d-94332e160b7b" +2022/02/22 10:36:26 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 10:36:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 10:36:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 10:36:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 10:36:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 10:36:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 10:36:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 10:36:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:26 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 10:36:26 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.87.188" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + id: "62146f4e1b0000046bfd0612" => "" + name: "acctest_qtybc" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +mso_dhcp_relay_policy.test: + ID = 62146f4e1b0000046bfd0612 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.87.188 + dhcp_relay_policy_provider.0.epg = /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 + dhcp_relay_policy_provider.0.external_epg = + name = acctest_qtybc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 10:36:26 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 10:36:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test (prepare state) +2022/02/22 10:36:26 [DEBUG] ProviderTransformer: "mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 10:36:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 10:36:26 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 10:36:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 10:36:26 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 10:36:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 10:36:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:26 [DEBUG] ReferenceTransformer: "mso_tenant.test (prepare state)" references: [] +2022/02/22 10:36:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 10:36:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 10:36:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 10:36:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 10:36:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 10:36:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:26 DestroyEdgeTransformer: pruning unused resource node mso_tenant.test (prepare state) +2022/02/22 10:36:26 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 10:36:26 DestroyEdgeTransformer: pruning unused resource node data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 10:36:26 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 10:36:26 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 10:36:26 [DEBUG] 62146f4e1b0000046bfd0612: Beginning Read +2022/02/22 10:36:26 HTTP request DELETE mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:26 [DEBUG] Begin Injection +2022/02/22 10:36:26 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:26 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 05:06:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000664600 0xc0001366e0} +2022/02/22 10:36:26 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:26 [DEBUG] : Read finished successfully +2022/02/22 10:36:26 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:26 [DEBUG] New state was assigned lineage "5d6ab2cd-7245-dffb-9070-071404088fc3" +2022/02/22 10:36:26 HTTP request GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:26 [DEBUG] Begin Injection +2022/02/22 10:36:26 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 +2022/02/22 10:36:27 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 05:06:27 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006aa440 86 [] false false map[] 0xc000558000 0xc0001366e0} +2022/02/22 10:36:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62146f4e1b0000046bfd0612 {"code":141,"message":"Resource Not Found: Policy 62146f4e1b0000046bfd0612 not found"} +2022/02/22 10:36:27 [DEBUG] Exit from do method +2022/02/22 10:36:27 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 10:36:27 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 10:36:27 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 10:36:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 10:36:27 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 10:36:27 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 10:36:27 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 10:36:27 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 10:36:27 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 10:36:27 [DEBUG] provider has no plugin.Client +2022/02/22 10:36:27 [DEBUG] New state was assigned lineage "054477d7-e8d0-6782-b9c5-7b79b2b9fbfd" +2022/02/22 10:36:27 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 10:36:27 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 11:39:14 [DEBUG] Test: Executing step 0 +2022/02/22 11:39:14 [DEBUG] provider has no plugin.Client +2022/02/22 11:39:14 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:39:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 11:39:14 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:39:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:39:14 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:39:14 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 11:39:14 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 11:39:14 [DEBUG] Test: Executing step 1 +2022/02/22 11:39:14 [DEBUG] provider has no plugin.Client +2022/02/22 11:39:14 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:39:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:39:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:39:14 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:39:14 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:39:14 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 11:39:14 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 11:39:14 [DEBUG] Test: Executing step 2 +2022/02/22 11:39:14 [DEBUG] provider has no plugin.Client +2022/02/22 11:39:14 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:39:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 11:39:14 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:39:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:39:14 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:39:14 [DEBUG] provider has no plugin.Client +2022/02/22 11:39:14 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:39:14 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:39:14 [DEBUG] New state was assigned lineage "38b5153d-71e4-898b-14a0-d6463638a575" +2022/02/22 11:39:14 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 11:39:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 11:39:14 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:39:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 11:39:14 [DEBUG] Starting graph walk: walkPlan +2022/02/22 11:39:14 [DEBUG] Resource instance state not found for node "mso_tenant.test", instance mso_tenant.test +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 11:39:14 [WARN] Provider "mso" produced an invalid plan for mso_tenant.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .site_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead + - .user_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead +2022/02/22 11:39:14 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:39:14 [DEBUG] provider has no plugin.Client +2022/02/22 11:39:14 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_wf4wg" + tenant_id: "" => "" +CREATE: mso_tenant.test + description: "" => "" + display_name: "" => "acctest_sgsiv" + id: "" => "" + name: "" => "acctest_sgsiv" + site_associations: "" => "" + user_associations: "" => "" + + + +STATE: + + +2022/02/22 11:39:14 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 11:39:14 [DEBUG] Resource state not found for node "mso_tenant.test", instance mso_tenant.test +2022/02/22 11:39:14 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 11:39:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test (prepare state) +2022/02/22 11:39:14 [DEBUG] ProviderTransformer: "mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:39:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:39:14 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 11:39:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test mso_tenant.test mso_tenant.test (prepare state)] +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_tenant.test (prepare state)" references: [] +2022/02/22 11:39:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 11:39:14 [DEBUG] Starting graph walk: walkApply +2022/02/22 11:39:14 [WARN] Provider "mso" produced an invalid plan for mso_tenant.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .site_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead + - .user_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead +2022/02/22 11:39:14 [DEBUG] mso_tenant.test: applying the planned Create change +2022/02/22 11:39:14 [DEBUG] setting computed for "user_associations" from ComputedKeys +2022/02/22 11:39:14 [DEBUG] setting computed for "site_associations" from ComputedKeys +2022/02/22 11:39:14 [DEBUG] Tenant: Beginning Creation +2022/02/22 11:39:14 check .... : [] +2022/02/22 11:39:14 HTTP request POST mso/api/v1/tenants +2022/02/22 11:39:14 [DEBUG] Begin Injection +2022/02/22 11:39:14 HTTP request POST /login +2022/02/22 11:39:14 HTTP request after injection POST /login +2022/02/22 11:39:14 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 11:39:16 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 11:39:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:09:15 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTEzNTUsImlhdCI6MTY0NTUxMDE1NSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJVdGxLUUFKNERRbUJ4cnV2T3ZsSXN6cmMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.banN_i34JFI9xyHFWscpxVvAop1CYV4wwYZgOnfFTDaLt7v4n_0QduXexgvnOK-sAoni7YvSAOCETfEETTqx96RTrYv3j9X8pAhpb5vuq1JYAlpdtRyFEHPAKMuOgdbUetxZpXDYy8wEzpjzThT6yxtrTfn7GAy8Gp4rSTFMItVcBUGQwvarVJArgrxLMrfrJCLKUJwALhyba68MF96NB9acQjqEDM0afvLIgunp08JVS24xC-niSk_eZq5kbNxia_fElJ1tg9s5pZcCqH2ORFgBEhQXmh2UIc9GBog3im2HiFg9HCEol4mHHLCehK3hkJupv4m_YPMNfnxBbZd9lg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00056a100 -1 [chunked] false false map[] 0xc00009a700 0xc0003d5d90} +2022/02/22 11:39:16 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTEzNTUsImlhdCI6MTY0NTUxMDE1NSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJVdGxLUUFKNERRbUJ4cnV2T3ZsSXN6cmMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.banN_i34JFI9xyHFWscpxVvAop1CYV4wwYZgOnfFTDaLt7v4n_0QduXexgvnOK-sAoni7YvSAOCETfEETTqx96RTrYv3j9X8pAhpb5vuq1JYAlpdtRyFEHPAKMuOgdbUetxZpXDYy8wEzpjzThT6yxtrTfn7GAy8Gp4rSTFMItVcBUGQwvarVJArgrxLMrfrJCLKUJwALhyba68MF96NB9acQjqEDM0afvLIgunp08JVS24xC-niSk_eZq5kbNxia_fElJ1tg9s5pZcCqH2ORFgBEhQXmh2UIc9GBog3im2HiFg9HCEol4mHHLCehK3hkJupv4m_YPMNfnxBbZd9lg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTEzNTUsImlhdCI6MTY0NTUxMDE1NSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJVdGxLUUFKNERRbUJ4cnV2T3ZsSXN6cmMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.banN_i34JFI9xyHFWscpxVvAop1CYV4wwYZgOnfFTDaLt7v4n_0QduXexgvnOK-sAoni7YvSAOCETfEETTqx96RTrYv3j9X8pAhpb5vuq1JYAlpdtRyFEHPAKMuOgdbUetxZpXDYy8wEzpjzThT6yxtrTfn7GAy8Gp4rSTFMItVcBUGQwvarVJArgrxLMrfrJCLKUJwALhyba68MF96NB9acQjqEDM0afvLIgunp08JVS24xC-niSk_eZq5kbNxia_fElJ1tg9s5pZcCqH2ORFgBEhQXmh2UIc9GBog3im2HiFg9HCEol4mHHLCehK3hkJupv4m_YPMNfnxBbZd9lg"} +2022/02/22 11:39:16 [DEBUG] Exit from do method +2022/02/22 11:39:16 HTTP request after injection POST mso/api/v1/tenants +2022/02/22 11:39:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:39:16 +HTTP Request: POST https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:39:16 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[174] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:09:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/tenants/62147e0c1d0000bb474f9dd4] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e4480 174 [] false false map[] 0xc00009a500 0xc0003d5d90} +2022/02/22 11:39:16 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/tenants {"id":"62147e0c1d0000bb474f9dd4","name":"acctest_sgsiv","displayName":"acctest_sgsiv","siteAssociations":[],"userAssociations":[],"_updateVersion":0,"_versionDefaulted":true} +2022/02/22 11:39:16 [DEBUG] Exit from do method +2022/02/22 11:39:16 [DEBUG] 62147e0c1d0000bb474f9dd4: Creation finished successfully +2022/02/22 11:39:16 [DEBUG] 62147e0c1d0000bb474f9dd4: Beginning Read +2022/02/22 11:39:16 HTTP request GET mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:16 [DEBUG] Begin Injection +2022/02/22 11:39:16 HTTP request after injection GET mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[252] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:09:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e4840 252 [] false false map[] 0xc000558000 0xc0003d5d90} +2022/02/22 11:39:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 {"id":"62147e0c1d0000bb474f9dd4","name":"acctest_sgsiv","displayName":"acctest_sgsiv","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false} +2022/02/22 11:39:16 [DEBUG] Exit from do method +2022/02/22 11:39:16 [DEBUG] 62147e0c1d0000bb474f9dd4: Read finished successfully +2022/02/22 11:39:16 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 11:39:16 [DEBUG] : Beginning Create +2022/02/22 11:39:16 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 11:39:16 [DEBUG] Begin Injection +2022/02/22 11:39:16 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 11:39:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 11:39:17 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 11:39:17 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[116] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:09:17 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca4280 116 [] false false map[] 0xc000698a00 0xc0003d5d90} +2022/02/22 11:39:17 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: The tenant with id 62147e0c1d0000bb474f9dd4 is not found for the current user."} +2022/02/22 11:39:17 [DEBUG] Exit from do method +2022/02/22 11:39:17 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: The tenant with id 62147e0c1d0000bb474f9dd4 is not found for the current user."{} +2022/02/22 11:39:17 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: The tenant with id 62147e0c1d0000bb474f9dd4 is not found for the current user."{} +2022/02/22 11:39:17 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: The tenant with id 62147e0c1d0000bb474f9dd4 is not found for the current user."{} +2022/02/22 11:39:17 [DEBUG] New state was assigned lineage "cb1f5a95-5b1a-6be9-fdf4-f4eb3a404431" +2022/02/22 11:39:17 [WARN] Test: Executing destroy step +2022/02/22 11:39:17 [DEBUG] provider has no plugin.Client +2022/02/22 11:39:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:39:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test1 +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_tenant.test1" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test1" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test1] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 11:39:17 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:39:17 [DEBUG] provider has no plugin.Client +2022/02/22 11:39:17 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:39:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_tenant.test1" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test1" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test1] +2022/02/22 11:39:17 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 11:39:17 [DEBUG] Resource state not found for node "mso_tenant.test1", instance mso_tenant.test1 +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test1" references: [] +2022/02/22 11:39:17 [WARN] Provider "mso" produced an invalid plan for mso_tenant.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .site_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead + - .user_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead +2022/02/22 11:39:17 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 11:39:17 [DEBUG] 62147e0c1d0000bb474f9dd4: Beginning Read +2022/02/22 11:39:17 HTTP request GET mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:17 [DEBUG] Begin Injection +2022/02/22 11:39:17 HTTP request after injection GET mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:39:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[252] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:09:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e4b100 252 [] false false map[] 0xc000568100 0xc0003d5d90} +2022/02/22 11:39:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 {"id":"62147e0c1d0000bb474f9dd4","name":"acctest_sgsiv","displayName":"acctest_sgsiv","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false} +2022/02/22 11:39:17 [DEBUG] Exit from do method +2022/02/22 11:39:17 [DEBUG] 62147e0c1d0000bb474f9dd4: Read finished successfully +2022/02/22 11:39:17 [DEBUG] provider has no plugin.Client +2022/02/22 11:39:17 [DEBUG] New state was assigned lineage "03eb3113-8b9a-357c-dc8a-d6047d930414" +2022/02/22 11:39:17 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 11:39:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 11:39:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test (destroy)" references: [] +2022/02/22 11:39:17 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 11:39:17 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_tenant.test + description: "{}" => "" + display_name: "acctest_sgsiv" => "" + id: "62147e0c1d0000bb474f9dd4" => "" + name: "acctest_sgsiv" => "" + site_associations.#: "0" => "" + user_associations.#: "1" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + + + +STATE: + +mso_tenant.test: + ID = 62147e0c1d0000bb474f9dd4 + provider = provider.mso + description = {} + display_name = acctest_sgsiv + name = acctest_sgsiv + user_associations.# = 1 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa +2022/02/22 11:39:17 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 11:39:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test (prepare state) +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_tenant.test1 (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test (destroy)" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test (prepare state)" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test1 (prepare state)" references: [] +2022/02/22 11:39:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ProviderTransformer: "mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test (destroy)" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:39:17 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 11:39:17 DestroyEdgeTransformer: pruning unused resource node mso_tenant.test (prepare state) +2022/02/22 11:39:17 DestroyEdgeTransformer: pruning unused resource node mso_tenant.test1 (prepare state) +2022/02/22 11:39:17 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 11:39:17 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 11:39:17 [DEBUG] mso_tenant.test: applying the planned Delete change +2022/02/22 11:39:17 [DEBUG] 62147e0c1d0000bb474f9dd4: Beginning Destroy +2022/02/22 11:39:17 HTTP request DELETE mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:17 [DEBUG] Begin Injection +2022/02/22 11:39:17 HTTP request after injection DELETE mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:17 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 06:09:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00045f200 0xc0003d5d90} +2022/02/22 11:39:17 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/tenants/62147e0c1d0000bb474f9dd4 +2022/02/22 11:39:17 [DEBUG] 62147e0c1d0000bb474f9dd4: Destroy finished successfully +2022/02/22 11:39:17 [DEBUG] provider has no plugin.Client +2022/02/22 11:39:17 [DEBUG] New state was assigned lineage "c9d85c0f-e025-b916-8708-9749daa5c057" +2022/02/22 11:39:17 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 11:39:17 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 11:39:17 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:39:17 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:39:17 [DEBUG] New state was assigned lineage "a5909cf0-1211-328a-df3c-2e9f7256d06e" +2022/02/22 11:39:17 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 11:39:17 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 11:47:00 [DEBUG] Test: Executing step 0 +2022/02/22 11:47:00 [DEBUG] provider has no plugin.Client +2022/02/22 11:47:00 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:47:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:47:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:47:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:47:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:47:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:47:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:47:00 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:47:00 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 11:47:00 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 11:47:00 [DEBUG] Test: Executing step 1 +2022/02/22 11:47:00 [DEBUG] provider has no plugin.Client +2022/02/22 11:47:00 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:47:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:47:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:47:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:47:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:47:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:47:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:47:00 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:47:00 [ERROR] : eval: *terraform.EvalValidateResource, err: Reference to undeclared resource: A managed resource "mso_tenant" "test" has not been declared in the root module. +2022/02/22 11:47:00 [ERROR] : eval: *terraform.EvalSequence, err: Reference to undeclared resource: A managed resource "mso_tenant" "test" has not been declared in the root module. +2022/02/22 11:47:00 [WARN] Skipping destroy test since there is no state. +2022/02/22 11:48:05 [DEBUG] Test: Executing step 0 +2022/02/22 11:48:05 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:05 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:48:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:48:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:48:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:05 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:48:05 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 11:48:05 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 11:48:05 [DEBUG] Test: Executing step 1 +2022/02/22 11:48:05 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:05 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:48:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:48:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:48:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:05 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:48:05 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 11:48:05 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 11:48:05 [DEBUG] Test: Executing step 2 +2022/02/22 11:48:05 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:05 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:48:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:48:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:48:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:05 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:48:05 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:05 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:48:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:48:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:48:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:05 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:48:05 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 11:48:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:05 [DEBUG] : Beginning Read +2022/02/22 11:48:05 HTTP request GET mso/api/v1/tenants +2022/02/22 11:48:05 [DEBUG] Begin Injection +2022/02/22 11:48:05 HTTP request POST /login +2022/02/22 11:48:05 HTTP request after injection POST /login +2022/02/22 11:48:05 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 11:48:07 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 11:48:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:18:06 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTE4ODYsImlhdCI6MTY0NTUxMDY4NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJheWExdFhuN2o0YzE4WXlnanM9d2NYWUciLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.iFoAVm13E8qRf0NKGYACvfiCo_3CR8vfyHyov6jAzSkzfNp3KnhfagLGhJVU2iQCqCX1XFxR2v2n_FwYM316PJfSDD--R97XjCcZbK_npfFOSNf_whZqxPlsa50OR5xIfAECbrwvboBAkRTNu5MwveBc-C2KkVR3OcqgioQKxC_ReJFjNOPsp1ZEJxge8PmPRnCzbXt_OihqGk_u3hZvo8ZEBT7WMp_B2dZ0TD8gPUV7_zIWGgrzhiXv1IqsvSayy11LohFIj7kkmuox_GP8eUMhXGXt8hmHhWPZj3JG9sR8jbG0Yz2_Ep8Bkgw4ZKW3bNq68_mgtA-9_SGE_UysFA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0001dd240 -1 [chunked] false false map[] 0xc0009c6500 0xc0004fa0b0} +2022/02/22 11:48:07 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTE4ODYsImlhdCI6MTY0NTUxMDY4NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJheWExdFhuN2o0YzE4WXlnanM9d2NYWUciLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.iFoAVm13E8qRf0NKGYACvfiCo_3CR8vfyHyov6jAzSkzfNp3KnhfagLGhJVU2iQCqCX1XFxR2v2n_FwYM316PJfSDD--R97XjCcZbK_npfFOSNf_whZqxPlsa50OR5xIfAECbrwvboBAkRTNu5MwveBc-C2KkVR3OcqgioQKxC_ReJFjNOPsp1ZEJxge8PmPRnCzbXt_OihqGk_u3hZvo8ZEBT7WMp_B2dZ0TD8gPUV7_zIWGgrzhiXv1IqsvSayy11LohFIj7kkmuox_GP8eUMhXGXt8hmHhWPZj3JG9sR8jbG0Yz2_Ep8Bkgw4ZKW3bNq68_mgtA-9_SGE_UysFA","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTE4ODYsImlhdCI6MTY0NTUxMDY4NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJheWExdFhuN2o0YzE4WXlnanM9d2NYWUciLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.iFoAVm13E8qRf0NKGYACvfiCo_3CR8vfyHyov6jAzSkzfNp3KnhfagLGhJVU2iQCqCX1XFxR2v2n_FwYM316PJfSDD--R97XjCcZbK_npfFOSNf_whZqxPlsa50OR5xIfAECbrwvboBAkRTNu5MwveBc-C2KkVR3OcqgioQKxC_ReJFjNOPsp1ZEJxge8PmPRnCzbXt_OihqGk_u3hZvo8ZEBT7WMp_B2dZ0TD8gPUV7_zIWGgrzhiXv1IqsvSayy11LohFIj7kkmuox_GP8eUMhXGXt8hmHhWPZj3JG9sR8jbG0Yz2_Ep8Bkgw4ZKW3bNq68_mgtA-9_SGE_UysFA"} +2022/02/22 11:48:07 [DEBUG] Exit from do method +2022/02/22 11:48:07 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:48:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:48:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:48:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:18:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006ba840 3980 [] false false map[] 0xc0009c6400 0xc0004fa0b0} +2022/02/22 11:48:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:48:07 [DEBUG] Exit from do method +2022/02/22 11:48:07 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:48:07 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:07 [DEBUG] New state was assigned lineage "55fa5332-f291-280f-3577-7eafa70fb651" +2022/02/22 11:48:07 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 11:48:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:48:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:48:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:48:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:48:07 [DEBUG] Starting graph walk: walkPlan +2022/02/22 11:48:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:07 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 11:48:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:48:07 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:07 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_ctumt" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 11:48:07 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 11:48:07 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 11:48:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 11:48:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:48:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 11:48:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:48:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 11:48:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 11:48:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 11:48:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:07 [DEBUG] Starting graph walk: walkApply +2022/02/22 11:48:07 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 11:48:07 [DEBUG] : Beginning Create +2022/02/22 11:48:07 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 11:48:07 [DEBUG] Begin Injection +2022/02/22 11:48:07 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 11:48:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 11:48:07 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 11:48:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:18:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000199a40 160 [] false false map[] 0xc00078ab00 0xc0004fa0b0} +2022/02/22 11:48:07 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214801f1b0000c96efd0631","name":"acctest_ctumt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:48:07 [DEBUG] Exit from do method +2022/02/22 11:48:07 [DEBUG] 6214801f1b0000c96efd0631: Creation finished successfully +2022/02/22 11:48:07 [DEBUG] 6214801f1b0000c96efd0631: Beginning Read +2022/02/22 11:48:07 id: 6214801f1b0000c96efd0631 +2022/02/22 11:48:07 HTTP request GET mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:07 [DEBUG] Begin Injection +2022/02/22 11:48:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:18:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a50140 160 [] false false map[] 0xc00078a000 0xc0004fa0b0} +2022/02/22 11:48:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 {"id":"6214801f1b0000c96efd0631","name":"acctest_ctumt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:48:08 [DEBUG] Exit from do method +2022/02/22 11:48:08 providerList: [] +2022/02/22 11:48:08 [DEBUG] 6214801f1b0000c96efd0631: Read finished successfully +2022/02/22 11:48:08 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:08 [DEBUG] New state was assigned lineage "30a94474-7dc7-692b-df04-5632a04766d2" +2022/02/22 11:48:08 HTTP request GET mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:08 [DEBUG] Begin Injection +2022/02/22 11:48:08 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:18:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00022c400 160 [] false false map[] 0xc0004a4100 0xc0004fa0b0} +2022/02/22 11:48:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 {"id":"6214801f1b0000c96efd0631","name":"acctest_ctumt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:48:08 [DEBUG] Exit from do method +2022/02/22 11:48:08 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 11:48:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:48:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:48:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:48:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:48:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:08 [DEBUG] Starting graph walk: walkPlan +2022/02/22 11:48:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:48:08 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:08 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:48:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:48:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:48:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:48:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:48:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:08 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:48:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:08 [DEBUG] : Beginning Read +2022/02/22 11:48:08 HTTP request GET mso/api/v1/tenants +2022/02/22 11:48:08 [DEBUG] Begin Injection +2022/02/22 11:48:08 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:48:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:48:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:48:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:18:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00022ce00 3980 [] false false map[] 0xc0007c2400 0xc0004fa0b0} +2022/02/22 11:48:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:48:08 [DEBUG] Exit from do method +2022/02/22 11:48:08 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:48:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:48:08 [DEBUG] 6214801f1b0000c96efd0631: Beginning Read +2022/02/22 11:48:08 id: 6214801f1b0000c96efd0631 +2022/02/22 11:48:08 HTTP request GET mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:08 [DEBUG] Begin Injection +2022/02/22 11:48:08 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:18:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00022d3c0 160 [] false false map[] 0xc0007c2700 0xc0004fa0b0} +2022/02/22 11:48:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 {"id":"6214801f1b0000c96efd0631","name":"acctest_ctumt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:48:09 [DEBUG] Exit from do method +2022/02/22 11:48:09 providerList: [] +2022/02/22 11:48:09 [DEBUG] 6214801f1b0000c96efd0631: Read finished successfully +2022/02/22 11:48:09 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:09 [DEBUG] New state was assigned lineage "4e31958b-0c96-d9f9-94e1-71fa17793762" +2022/02/22 11:48:09 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 11:48:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:48:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:48:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:09 [DEBUG] Starting graph walk: walkPlan +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:48:09 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:09 [DEBUG] Test: Executing step 3 +2022/02/22 11:48:09 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:48:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_anp.test +2022/02/22 11:48:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:09 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:09 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema_template_anp.test mso_schema.test mso_schema.test] +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 11:48:09 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:48:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Reference to undeclared resource: A managed resource "mso_tenant" "test" has not been declared in the root module. +2022/02/22 11:48:09 [ERROR] : eval: *terraform.EvalSequence, err: Reference to undeclared resource: A managed resource "mso_tenant" "test" has not been declared in the root module. +2022/02/22 11:48:09 [WARN] Test: Executing destroy step +2022/02/22 11:48:09 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:48:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:48:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:09 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:48:09 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:09 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:48:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:48:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:48:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:09 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:09 [DEBUG] : Beginning Read +2022/02/22 11:48:09 HTTP request GET mso/api/v1/tenants +2022/02/22 11:48:09 [DEBUG] Begin Injection +2022/02/22 11:48:09 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:48:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:48:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:48:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:18:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00022c280 3980 [] false false map[] 0xc0007c2600 0xc0004fa0b0} +2022/02/22 11:48:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:48:09 [DEBUG] Exit from do method +2022/02/22 11:48:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:48:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:48:09 [DEBUG] 6214801f1b0000c96efd0631: Beginning Read +2022/02/22 11:48:09 id: 6214801f1b0000c96efd0631 +2022/02/22 11:48:09 HTTP request GET mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:09 [DEBUG] Begin Injection +2022/02/22 11:48:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:18:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000198cc0 160 [] false false map[] 0xc0004a4500 0xc0004fa0b0} +2022/02/22 11:48:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 {"id":"6214801f1b0000c96efd0631","name":"acctest_ctumt","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:48:10 [DEBUG] Exit from do method +2022/02/22 11:48:10 providerList: [] +2022/02/22 11:48:10 [DEBUG] 6214801f1b0000c96efd0631: Read finished successfully +2022/02/22 11:48:10 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:10 [DEBUG] New state was assigned lineage "bc6a9fc7-f630-8262-afb0-c81b99ecb7a1" +2022/02/22 11:48:10 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 11:48:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 11:48:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:10 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 11:48:10 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214801f1b0000c96efd0631" => "" + name: "acctest_ctumt" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214801f1b0000c96efd0631 + provider = provider.mso + description = + name = acctest_ctumt + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 11:48:10 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 11:48:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 11:48:10 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 11:48:10 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 11:48:10 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 11:48:10 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 11:48:10 [DEBUG] 6214801f1b0000c96efd0631: Beginning Read +2022/02/22 11:48:10 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:10 [DEBUG] Begin Injection +2022/02/22 11:48:10 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:10 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 06:18:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0007c2400 0xc0004fa0b0} +2022/02/22 11:48:10 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:10 [DEBUG] : Read finished successfully +2022/02/22 11:48:10 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:10 [DEBUG] New state was assigned lineage "887e53db-d0f0-e0a7-ccc7-13d7f554f88b" +2022/02/22 11:48:10 HTTP request GET mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:10 [DEBUG] Begin Injection +2022/02/22 11:48:10 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 +2022/02/22 11:48:10 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:18:10 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a5c040 86 [] false false map[] 0xc0004a4100 0xc0004fa0b0} +2022/02/22 11:48:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214801f1b0000c96efd0631 {"code":141,"message":"Resource Not Found: Policy 6214801f1b0000c96efd0631 not found"} +2022/02/22 11:48:10 [DEBUG] Exit from do method +2022/02/22 11:48:10 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 11:48:10 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 11:48:10 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:48:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:48:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:10 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:48:10 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 11:48:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:10 [DEBUG] : Beginning Read +2022/02/22 11:48:10 HTTP request GET mso/api/v1/tenants +2022/02/22 11:48:10 [DEBUG] Begin Injection +2022/02/22 11:48:10 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:48:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:48:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:48:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:18:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00018a040 3980 [] false false map[] 0xc0007c2f00 0xc0004fa0b0} +2022/02/22 11:48:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:48:11 [DEBUG] Exit from do method +2022/02/22 11:48:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:48:11 [DEBUG] provider has no plugin.Client +2022/02/22 11:48:11 [DEBUG] New state was assigned lineage "f0b9faff-efd4-91d5-5f1c-f5860d0d091b" +2022/02/22 11:48:11 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 11:48:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:48:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 11:48:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:48:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:48:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:48:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:48:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 11:48:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:48:11 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 11:51:24 [DEBUG] Test: Executing step 0 +2022/02/22 11:51:24 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:51:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:51:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:51:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:24 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:51:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 11:51:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 11:51:24 [DEBUG] Test: Executing step 1 +2022/02/22 11:51:24 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:51:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:51:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:51:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:24 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:51:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 11:51:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 11:51:24 [DEBUG] Test: Executing step 2 +2022/02/22 11:51:24 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:51:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:51:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:51:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:24 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:51:25 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:25 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:51:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:51:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:51:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:25 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:51:25 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 11:51:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:25 [DEBUG] : Beginning Read +2022/02/22 11:51:25 HTTP request GET mso/api/v1/tenants +2022/02/22 11:51:25 [DEBUG] Begin Injection +2022/02/22 11:51:25 HTTP request POST /login +2022/02/22 11:51:25 HTTP request after injection POST /login +2022/02/22 11:51:25 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 11:51:27 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 11:51:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:26 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTIwODYsImlhdCI6MTY0NTUxMDg4NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJBRFdDd3hoMjZMMHhuM2dKVWVqWGltdnUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.apCE0JsRT2XtkO1FT9A3JvHqIGEKJg60zSlG7X4waia7dsqfn7kpnZh766wnamHlg3BxI5vLXmuN1ILGO7me2CkoiDQPcbmawamYVTTs5W5wXYGwmuQ6KHB8oj-tNKGBJHPYGRpnAEIOtq2LyCbpWLr7SzWjJ2YWp_qIYNvvmjcJIJAIcdITVeClRjb5mRDldFAQjrBW_bA9EzC6kT-YU57dYwbPSdBQuJQatrfw3P1Kt6C4G0uymPIQnZ9Kd2Lz-O65fqCMW7a6uso0vknoWCJrYTa5uLG1LfrlnI_rxoZg4YYVQiQf_4outQz06ChHj0KBSX-TDCfDQiZgqHl_Tg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000306200 -1 [chunked] false false map[] 0xc0005c6f00 0xc000490dc0} +2022/02/22 11:51:27 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTIwODYsImlhdCI6MTY0NTUxMDg4NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJBRFdDd3hoMjZMMHhuM2dKVWVqWGltdnUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.apCE0JsRT2XtkO1FT9A3JvHqIGEKJg60zSlG7X4waia7dsqfn7kpnZh766wnamHlg3BxI5vLXmuN1ILGO7me2CkoiDQPcbmawamYVTTs5W5wXYGwmuQ6KHB8oj-tNKGBJHPYGRpnAEIOtq2LyCbpWLr7SzWjJ2YWp_qIYNvvmjcJIJAIcdITVeClRjb5mRDldFAQjrBW_bA9EzC6kT-YU57dYwbPSdBQuJQatrfw3P1Kt6C4G0uymPIQnZ9Kd2Lz-O65fqCMW7a6uso0vknoWCJrYTa5uLG1LfrlnI_rxoZg4YYVQiQf_4outQz06ChHj0KBSX-TDCfDQiZgqHl_Tg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTIwODYsImlhdCI6MTY0NTUxMDg4NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJBRFdDd3hoMjZMMHhuM2dKVWVqWGltdnUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.apCE0JsRT2XtkO1FT9A3JvHqIGEKJg60zSlG7X4waia7dsqfn7kpnZh766wnamHlg3BxI5vLXmuN1ILGO7me2CkoiDQPcbmawamYVTTs5W5wXYGwmuQ6KHB8oj-tNKGBJHPYGRpnAEIOtq2LyCbpWLr7SzWjJ2YWp_qIYNvvmjcJIJAIcdITVeClRjb5mRDldFAQjrBW_bA9EzC6kT-YU57dYwbPSdBQuJQatrfw3P1Kt6C4G0uymPIQnZ9Kd2Lz-O65fqCMW7a6uso0vknoWCJrYTa5uLG1LfrlnI_rxoZg4YYVQiQf_4outQz06ChHj0KBSX-TDCfDQiZgqHl_Tg"} +2022/02/22 11:51:27 [DEBUG] Exit from do method +2022/02/22 11:51:27 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:51:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:51:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:51:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b40c0 3980 [] false false map[] 0xc0005c6e00 0xc000490dc0} +2022/02/22 11:51:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:51:27 [DEBUG] Exit from do method +2022/02/22 11:51:27 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:51:27 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:27 [DEBUG] New state was assigned lineage "679c8cb7-c73d-db34-a062-57ee6d0416a9" +2022/02/22 11:51:27 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 11:51:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:51:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:51:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:51:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:51:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:27 [DEBUG] Starting graph walk: walkPlan +2022/02/22 11:51:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:27 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 11:51:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:51:27 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:27 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_nmz19" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 11:51:27 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 11:51:27 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 11:51:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 11:51:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:51:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 11:51:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:51:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 11:51:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 11:51:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 11:51:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:27 [DEBUG] Starting graph walk: walkApply +2022/02/22 11:51:27 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 11:51:27 [DEBUG] : Beginning Create +2022/02/22 11:51:27 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 11:51:27 [DEBUG] Begin Injection +2022/02/22 11:51:27 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 11:51:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 11:51:27 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 11:51:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b41c0 160 [] false false map[] 0xc000f4c200 0xc000490dc0} +2022/02/22 11:51:27 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621480e71b0000f66efd0632","name":"acctest_nmz19","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:51:27 [DEBUG] Exit from do method +2022/02/22 11:51:27 [DEBUG] 621480e71b0000f66efd0632: Creation finished successfully +2022/02/22 11:51:27 [DEBUG] 621480e71b0000f66efd0632: Beginning Read +2022/02/22 11:51:27 id: 621480e71b0000f66efd0632 +2022/02/22 11:51:27 HTTP request GET mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:27 [DEBUG] Begin Injection +2022/02/22 11:51:27 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000a3600 160 [] false false map[] 0xc0005c6200 0xc000490dc0} +2022/02/22 11:51:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 {"id":"621480e71b0000f66efd0632","name":"acctest_nmz19","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:51:28 [DEBUG] Exit from do method +2022/02/22 11:51:28 providerList: [] +2022/02/22 11:51:28 [DEBUG] 621480e71b0000f66efd0632: Read finished successfully +2022/02/22 11:51:28 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:28 [DEBUG] New state was assigned lineage "46d8e7ec-a9b6-724a-0055-7fa6702f09c9" +2022/02/22 11:51:28 HTTP request GET mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:28 [DEBUG] Begin Injection +2022/02/22 11:51:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b44c0 160 [] false false map[] 0xc00038c000 0xc000490dc0} +2022/02/22 11:51:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 {"id":"621480e71b0000f66efd0632","name":"acctest_nmz19","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:51:28 [DEBUG] Exit from do method +2022/02/22 11:51:28 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 11:51:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:51:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:51:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:51:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:51:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:28 [DEBUG] Starting graph walk: walkPlan +2022/02/22 11:51:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:51:28 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:28 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:51:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:51:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:51:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:51:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:51:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:28 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:51:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:28 [DEBUG] : Beginning Read +2022/02/22 11:51:28 HTTP request GET mso/api/v1/tenants +2022/02/22 11:51:28 [DEBUG] Begin Injection +2022/02/22 11:51:28 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:51:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:51:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:51:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004fa980 3980 [] false false map[] 0xc0000aa200 0xc000490dc0} +2022/02/22 11:51:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:51:28 [DEBUG] Exit from do method +2022/02/22 11:51:28 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:51:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:51:28 [DEBUG] 621480e71b0000f66efd0632: Beginning Read +2022/02/22 11:51:28 id: 621480e71b0000f66efd0632 +2022/02/22 11:51:28 HTTP request GET mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:28 [DEBUG] Begin Injection +2022/02/22 11:51:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000364cc0 160 [] false false map[] 0xc0005c6500 0xc000490dc0} +2022/02/22 11:51:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 {"id":"621480e71b0000f66efd0632","name":"acctest_nmz19","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:51:29 [DEBUG] Exit from do method +2022/02/22 11:51:29 providerList: [] +2022/02/22 11:51:29 [DEBUG] 621480e71b0000f66efd0632: Read finished successfully +2022/02/22 11:51:29 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:29 [DEBUG] New state was assigned lineage "cf69f9f9-ef20-858f-331b-de627ef29fe0" +2022/02/22 11:51:29 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 11:51:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:29 [DEBUG] Starting graph walk: walkPlan +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:51:29 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:29 [DEBUG] Test: Executing step 3 +2022/02/22 11:51:29 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:29 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:51:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_anp.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:51:29 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:51:29 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:29 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:51:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema.test mso_schema_template_anp.test mso_schema.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:29 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:29 [DEBUG] : Beginning Read +2022/02/22 11:51:29 HTTP request GET mso/api/v1/tenants +2022/02/22 11:51:29 [DEBUG] Begin Injection +2022/02/22 11:51:29 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:51:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:51:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:51:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003c4ec0 3980 [] false false map[] 0xc0000aa500 0xc000490dc0} +2022/02/22 11:51:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:51:29 [DEBUG] Exit from do method +2022/02/22 11:51:29 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:51:29 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:51:29 [DEBUG] Resource state not found for node "mso_schema_template_anp.test", instance mso_schema_template_anp.test +2022/02/22 11:51:29 [DEBUG] 621480e71b0000f66efd0632: Beginning Read +2022/02/22 11:51:29 id: 621480e71b0000f66efd0632 +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [] +2022/02/22 11:51:29 HTTP request GET mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:29 [DEBUG] Begin Injection +2022/02/22 11:51:29 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:29 [DEBUG] Resource state not found for node "mso_schema_template_anp_epg.test", instance mso_schema_template_anp_epg.test +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [] +2022/02/22 11:51:29 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_anp_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .proxy_arp: planned value cty.False does not match config value cty.NullVal(cty.Bool) + - .intersite_multicast_source: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 11:51:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002260c0 160 [] false false map[] 0xc0001a2400 0xc000490dc0} +2022/02/22 11:51:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 {"id":"621480e71b0000f66efd0632","name":"acctest_nmz19","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:51:29 [DEBUG] Exit from do method +2022/02/22 11:51:29 providerList: [] +2022/02/22 11:51:29 [DEBUG] 621480e71b0000f66efd0632: Read finished successfully +2022/02/22 11:51:29 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:29 [DEBUG] New state was assigned lineage "ca12d35c-f666-3c61-29ab-632439e59037" +2022/02/22 11:51:29 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 11:51:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema_template_anp.test mso_schema.test mso_schema.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:29 [DEBUG] Starting graph walk: walkPlan +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:29 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:51:29 [DEBUG] Resource instance state not found for node "mso_schema_template_anp.test", instance mso_schema_template_anp.test +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [] +2022/02/22 11:51:29 [DEBUG] Resource instance state not found for node "mso_schema_template_anp_epg.test", instance mso_schema_template_anp_epg.test +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [] +2022/02/22 11:51:29 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_anp_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .proxy_arp: planned value cty.False does not match config value cty.NullVal(cty.Bool) + - .intersite_multicast_source: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 11:51:29 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:29 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.72.142" + id: "621480e71b0000f66efd0632" => "621480e71b0000f66efd0632" + name: "acctest_nmz19" => "acctest_nmz19" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_mw3ej" + template_name: "" => "acctest_7ryju" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_anp.test + display_name: "" => "acctest_okv80" + id: "" => "" + name: "" => "acctest_okv80" + schema_id: "" => "" + template: "" => "acctest_7ryju" +CREATE: mso_schema_template_anp_epg.test + anp_name: "" => "acctest_okv80" + bd_schema_id: "" => "" + bd_template_name: "" => "" + display_name: "" => "" + id: "" => "" + intersite_multicast_source: "" => "false" + intra_epg: "" => "" + name: "" => "acctest_okv80" + preferred_group: "" => "" + proxy_arp: "" => "false" + schema_id: "" => "" + template_name: "" => "acctest_7ryju" + useg_epg: "" => "" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621480e71b0000f66efd0632 + provider = provider.mso + description = + name = acctest_nmz19 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 11:51:29 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 11:51:29 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 11:51:29 [DEBUG] Resource state not found for node "mso_schema_template_anp.test", instance mso_schema_template_anp.test +2022/02/22 11:51:29 [DEBUG] Resource state not found for node "mso_schema_template_anp_epg.test", instance mso_schema_template_anp_epg.test +2022/02/22 11:51:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_anp.test (prepare state) +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (prepare state)" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test (prepare state)" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_anp.test (prepare state) mso_schema_template_anp.test mso_schema_template_anp.test] +2022/02/22 11:51:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:29 [DEBUG] Starting graph walk: walkApply +2022/02/22 11:51:29 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 11:51:29 [DEBUG] Schema: Beginning Creation +2022/02/22 11:51:29 HTTP request POST mso/api/v1/schemas +2022/02/22 11:51:29 [DEBUG] Begin Injection +2022/02/22 11:51:29 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 11:51:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 11:51:30 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 11:51:30 [DEBUG] 621480e71b0000f66efd0632: Beginning Policy Update +2022/02/22 11:51:30 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg! +2022/02/22 11:51:30 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg! +2022/02/22 11:51:30 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg! +2022/02/22 11:51:30 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 11:51:30 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/621480ea1d000035484f9deb] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005a8380 400 [] false false map[] 0xc000582000 0xc000490dc0} +2022/02/22 11:51:30 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"621480ea1d000035484f9deb","displayName":"acctest_mw3ej","description":"","templates":[{"name":"acctest_7ryju","displayName":"acctest_7ryju","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 11:51:30 [DEBUG] Exit from do method +2022/02/22 11:51:30 [DEBUG] 621480ea1d000035484f9deb: Schema Creation finished successfully +2022/02/22 11:51:30 [DEBUG] 621480ea1d000035484f9deb: Beginning Read +2022/02/22 11:51:30 HTTP request GET mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:30 [DEBUG] Begin Injection +2022/02/22 11:51:30 HTTP request after injection GET mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000364080 400 [] false false map[] 0xc0005c6300 0xc000490dc0} +2022/02/22 11:51:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb {"id":"621480ea1d000035484f9deb","displayName":"acctest_mw3ej","description":"","templates":[{"name":"acctest_7ryju","displayName":"acctest_7ryju","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 11:51:30 [DEBUG] Exit from do method +2022/02/22 11:51:30 [DEBUG] 621480ea1d000035484f9deb: Read finished successfully +2022/02/22 11:51:30 [DEBUG] mso_schema_template_anp.test: applying the planned Create change +2022/02/22 11:51:30 [DEBUG] Schema Template Anp: Beginning Creation +2022/02/22 11:51:30 HTTP request PATCH mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:30 [DEBUG] Begin Injection +2022/02/22 11:51:30 HTTP request after injection PATCH mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:31 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 06:21:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000b0a400 0xc000490dc0} +2022/02/22 11:51:31 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:31 [DEBUG] acctest_okv80: Creation finished successfully +2022/02/22 11:51:31 [DEBUG] : Beginning Read +2022/02/22 11:51:31 HTTP request GET mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:31 [DEBUG] Begin Injection +2022/02/22 11:51:31 HTTP request after injection GET mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[552] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b5800 552 [] false false map[] 0xc0005c6200 0xc000490dc0} +2022/02/22 11:51:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb {"id":"621480ea1d000035484f9deb","displayName":"acctest_mw3ej","description":"","templates":[{"name":"acctest_7ryju","displayName":"acctest_7ryju","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[{"name":"acctest_okv80","displayName":"acctest_okv80","anpRef":"/schemas/621480ea1d000035484f9deb/templates/acctest_7ryju/anps/acctest_okv80","epgs":[]}],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 11:51:31 [DEBUG] Exit from do method +2022/02/22 11:51:31 currentanpname acctest_okv80 +2022/02/22 11:51:31 found correct anpname +2022/02/22 11:51:31 [DEBUG] acctest_okv80: Read finished successfully +2022/02/22 11:51:31 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_anp_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .intersite_multicast_source: planned value cty.False does not match config value cty.NullVal(cty.Bool) + - .proxy_arp: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 11:51:31 [DEBUG] mso_schema_template_anp_epg.test: applying the planned Create change +2022/02/22 11:51:31 [DEBUG] Template Anp Epg: Beginning Creation +2022/02/22 11:51:31 HTTP request PATCH mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:31 [DEBUG] Begin Injection +2022/02/22 11:51:31 HTTP request after injection PATCH mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:31 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:31 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[133] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:31 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc0005a8080 133 [] false false map[] 0xc0001a2300 0xc000490dc0} +2022/02/22 11:51:31 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false {"code":400,"message":"Bad Request: incomplete ref: /621480ea1d000035484f9deb/acctest_7ryju. If non-empty, must provide policy name"} +2022/02/22 11:51:31 [DEBUG] Exit from do method +2022/02/22 11:51:31 [DEBUG] mso_schema_template_anp_epg.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: incomplete ref: /621480ea1d000035484f9deb/acctest_7ryju. If non-empty, must provide policy name"{} +2022/02/22 11:51:31 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: incomplete ref: /621480ea1d000035484f9deb/acctest_7ryju. If non-empty, must provide policy name"{} +2022/02/22 11:51:31 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: incomplete ref: /621480ea1d000035484f9deb/acctest_7ryju. If non-empty, must provide policy name"{} +2022/02/22 11:51:31 [DEBUG] New state was assigned lineage "28735994-6305-571a-76fe-6cba284bfbd5" +2022/02/22 11:51:31 [WARN] Test: Executing destroy step +2022/02/22 11:51:31 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:51:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:51:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:51:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:51:31 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:51:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 11:51:31 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 11:51:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:51:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:31 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:51:31 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 11:51:31 [WARN] Not fixing up EachModes for mso_schema_template_anp.test because it has no config +2022/02/22 11:51:31 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:31 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:51:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:51:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:51:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 11:51:31 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 11:51:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:51:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:51:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 11:51:31 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 11:51:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:31 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:51:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:31 [DEBUG] : Beginning Read +2022/02/22 11:51:31 HTTP request GET mso/api/v1/tenants +2022/02/22 11:51:31 [DEBUG] Begin Injection +2022/02/22 11:51:31 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:51:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:51:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:51:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003c4140 3980 [] false false map[] 0xc0001a2600 0xc000490dc0} +2022/02/22 11:51:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:51:32 [DEBUG] Exit from do method +2022/02/22 11:51:32 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:51:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:51:32 [DEBUG] 621480ea1d000035484f9deb: Beginning Read +2022/02/22 11:51:32 HTTP request GET mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:32 [DEBUG] Begin Injection +2022/02/22 11:51:32 HTTP request after injection GET mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:32 [DEBUG] 621480e71b0000f66efd0632: Beginning Read +2022/02/22 11:51:32 id: 621480e71b0000f66efd0632 +2022/02/22 11:51:32 HTTP request GET mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:32 [DEBUG] Begin Injection +2022/02/22 11:51:32 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[552] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000364180 552 [] false false map[] 0xc0000aa400 0xc000490dc0} +2022/02/22 11:51:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb {"id":"621480ea1d000035484f9deb","displayName":"acctest_mw3ej","description":"","templates":[{"name":"acctest_7ryju","displayName":"acctest_7ryju","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[{"name":"acctest_okv80","displayName":"acctest_okv80","anpRef":"/schemas/621480ea1d000035484f9deb/templates/acctest_7ryju/anps/acctest_okv80","epgs":[]}],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 11:51:32 [DEBUG] Exit from do method +2022/02/22 11:51:32 [DEBUG] 621480ea1d000035484f9deb: Read finished successfully +2022/02/22 11:51:32 [DEBUG] acctest_okv80: Beginning Read +2022/02/22 11:51:32 HTTP request GET mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:32 [DEBUG] Begin Injection +2022/02/22 11:51:32 HTTP request after injection GET mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b40c0 160 [] false false map[] 0xc0001a2900 0xc000490dc0} +2022/02/22 11:51:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 {"id":"621480e71b0000f66efd0632","name":"acctest_nmz19","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:51:32 [DEBUG] Exit from do method +2022/02/22 11:51:32 providerList: [] +2022/02/22 11:51:32 [DEBUG] 621480e71b0000f66efd0632: Read finished successfully +2022/02/22 11:51:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[552] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003c41c0 552 [] false false map[] 0xc0005c6700 0xc000490dc0} +2022/02/22 11:51:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb {"id":"621480ea1d000035484f9deb","displayName":"acctest_mw3ej","description":"","templates":[{"name":"acctest_7ryju","displayName":"acctest_7ryju","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[{"name":"acctest_okv80","displayName":"acctest_okv80","anpRef":"/schemas/621480ea1d000035484f9deb/templates/acctest_7ryju/anps/acctest_okv80","epgs":[]}],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 11:51:33 [DEBUG] Exit from do method +2022/02/22 11:51:33 currentanpname acctest_okv80 +2022/02/22 11:51:33 found correct anpname +2022/02/22 11:51:33 [DEBUG] acctest_okv80: Read finished successfully +2022/02/22 11:51:33 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:33 [DEBUG] New state was assigned lineage "f0703352-2e61-f2e7-6e8f-7ca6941d53ff" +2022/02/22 11:51:33 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 11:51:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (destroy)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 11:51:33 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 11:51:33 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621480e71b0000f66efd0632" => "" + name: "acctest_nmz19" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "621480ea1d000035484f9deb" => "" + name: "acctest_mw3ej" => "" + template_name: "acctest_7ryju" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_anp.test + display_name: "acctest_okv80" => "" + id: "acctest_okv80" => "" + name: "acctest_okv80" => "" + schema_id: "621480ea1d000035484f9deb" => "" + template: "acctest_7ryju" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621480e71b0000f66efd0632 + provider = provider.mso + description = + name = acctest_nmz19 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 621480ea1d000035484f9deb + provider = provider.mso + name = acctest_mw3ej + template_name = acctest_7ryju + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_anp.test: + ID = acctest_okv80 + provider = provider.mso + display_name = acctest_okv80 + name = acctest_okv80 + schema_id = 621480ea1d000035484f9deb + template = acctest_7ryju + + Dependencies: + mso_schema.test +2022/02/22 11:51:33 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 11:51:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (destroy)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (clean up state)" references: [] +2022/02/22 11:51:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_anp.test +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (destroy)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 11:51:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 11:51:33 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 11:51:33 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 11:51:33 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 11:51:33 [DEBUG] mso_schema_template_anp.test: applying the planned Delete change +2022/02/22 11:51:33 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 11:51:33 [DEBUG] acctest_okv80: Beginning Destroy +2022/02/22 11:51:33 HTTP request PATCH mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:33 [DEBUG] Begin Injection +2022/02/22 11:51:33 [DEBUG] 621480e71b0000f66efd0632: Beginning Read +2022/02/22 11:51:33 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:33 HTTP request after injection PATCH mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:33 [DEBUG] Begin Injection +2022/02/22 11:51:33 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:33 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 06:21:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0001a2f00 0xc000491340} +2022/02/22 11:51:33 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:33 [DEBUG] : Read finished successfully +2022/02/22 11:51:33 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 06:21:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000ca8300 0xc000490dc0} +2022/02/22 11:51:33 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb?validate=false +2022/02/22 11:51:33 [DEBUG] acctest_okv80: Destroy finished successfully +2022/02/22 11:51:33 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 11:51:33 [DEBUG] 621480ea1d000035484f9deb: Beginning Destroy +2022/02/22 11:51:33 HTTP request DELETE mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:33 [DEBUG] Begin Injection +2022/02/22 11:51:33 HTTP request after injection DELETE mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:33 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 06:21:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0001a2400 0xc000491340} +2022/02/22 11:51:33 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/621480ea1d000035484f9deb +2022/02/22 11:51:33 [DEBUG] 621480ea1d000035484f9deb: Destroy finished successfully +2022/02/22 11:51:33 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:33 [DEBUG] New state was assigned lineage "e3d01a0b-b7b5-0d1f-2c1d-3b778e7717df" +2022/02/22 11:51:33 HTTP request GET mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:33 [DEBUG] Begin Injection +2022/02/22 11:51:33 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 +2022/02/22 11:51:34 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:34 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000364c40 86 [] false false map[] 0xc0001a2500 0xc000491340} +2022/02/22 11:51:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621480e71b0000f66efd0632 {"code":141,"message":"Resource Not Found: Policy 621480e71b0000f66efd0632 not found"} +2022/02/22 11:51:34 [DEBUG] Exit from do method +2022/02/22 11:51:34 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 11:51:34 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 11:51:34 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:51:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:51:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:51:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:34 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:51:34 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 11:51:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:34 [DEBUG] : Beginning Read +2022/02/22 11:51:34 HTTP request GET mso/api/v1/tenants +2022/02/22 11:51:34 [DEBUG] Begin Injection +2022/02/22 11:51:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:51:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:51:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:51:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:21:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000a2c00 3980 [] false false map[] 0xc0001a2300 0xc000491340} +2022/02/22 11:51:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:51:34 [DEBUG] Exit from do method +2022/02/22 11:51:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:51:34 [DEBUG] provider has no plugin.Client +2022/02/22 11:51:34 [DEBUG] New state was assigned lineage "f97eee1b-3f12-f93f-a807-134c661aa43a" +2022/02/22 11:51:34 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 11:51:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:51:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 11:51:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:51:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:51:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:51:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:51:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 11:51:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:51:34 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 11:59:09 [DEBUG] Test: Executing step 0 +2022/02/22 11:59:09 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:59:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:59:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:59:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:59:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:59:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:09 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:59:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 11:59:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 11:59:09 [DEBUG] Test: Executing step 1 +2022/02/22 11:59:09 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:59:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:59:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:59:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:59:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:59:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:09 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:59:09 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 11:59:09 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 11:59:09 [DEBUG] Test: Executing step 2 +2022/02/22 11:59:09 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:59:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:59:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:59:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:59:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:59:09 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:59:09 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:09 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:59:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:59:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:59:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:09 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:59:09 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 11:59:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:09 [DEBUG] : Beginning Read +2022/02/22 11:59:09 HTTP request GET mso/api/v1/tenants +2022/02/22 11:59:09 [DEBUG] Begin Injection +2022/02/22 11:59:09 HTTP request POST /login +2022/02/22 11:59:09 HTTP request after injection POST /login +2022/02/22 11:59:09 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 11:59:11 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 11:59:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:10 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTI1NTAsImlhdCI6MTY0NTUxMTM1MCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI0aG9LaUVBclNJNmdqanBrcnNQeVpHWVoiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.I7hmFIagGmf0GN1HykQVPv55AIFByQjwuFjaaHlgAiQCIoa-P8jJg6VqP9M7GdThRgQrc0AUd7vmI0T4k6HUsWknolqcauv2OquLZinilc04865ake2ORLXVI0tLWluviMAmZOO051FJV8n3ielPa4ihA7P4f43T8DMgi1lTwZ8aA3Zp__gm1KrVcjt8PLi4fI0lGdZ0ObW51KeCxTtvs_rG_htZtp87BdCNMvPFrubBp75NySsxab5dSO9JHZspL2v1-Y9WQDc7_cAtYVSmQgHd11CVlgdgsipBFYYy_iZEsOIq-11ubVF-Z6Yg6OPRXXdNGjAQ6yYtkKpKskh2IQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0002b0180 -1 [chunked] false false map[] 0xc000198500 0xc0000e82c0} +2022/02/22 11:59:11 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTI1NTAsImlhdCI6MTY0NTUxMTM1MCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI0aG9LaUVBclNJNmdqanBrcnNQeVpHWVoiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.I7hmFIagGmf0GN1HykQVPv55AIFByQjwuFjaaHlgAiQCIoa-P8jJg6VqP9M7GdThRgQrc0AUd7vmI0T4k6HUsWknolqcauv2OquLZinilc04865ake2ORLXVI0tLWluviMAmZOO051FJV8n3ielPa4ihA7P4f43T8DMgi1lTwZ8aA3Zp__gm1KrVcjt8PLi4fI0lGdZ0ObW51KeCxTtvs_rG_htZtp87BdCNMvPFrubBp75NySsxab5dSO9JHZspL2v1-Y9WQDc7_cAtYVSmQgHd11CVlgdgsipBFYYy_iZEsOIq-11ubVF-Z6Yg6OPRXXdNGjAQ6yYtkKpKskh2IQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTI1NTAsImlhdCI6MTY0NTUxMTM1MCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI0aG9LaUVBclNJNmdqanBrcnNQeVpHWVoiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.I7hmFIagGmf0GN1HykQVPv55AIFByQjwuFjaaHlgAiQCIoa-P8jJg6VqP9M7GdThRgQrc0AUd7vmI0T4k6HUsWknolqcauv2OquLZinilc04865ake2ORLXVI0tLWluviMAmZOO051FJV8n3ielPa4ihA7P4f43T8DMgi1lTwZ8aA3Zp__gm1KrVcjt8PLi4fI0lGdZ0ObW51KeCxTtvs_rG_htZtp87BdCNMvPFrubBp75NySsxab5dSO9JHZspL2v1-Y9WQDc7_cAtYVSmQgHd11CVlgdgsipBFYYy_iZEsOIq-11ubVF-Z6Yg6OPRXXdNGjAQ6yYtkKpKskh2IQ"} +2022/02/22 11:59:11 [DEBUG] Exit from do method +2022/02/22 11:59:11 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:59:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:59:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:59:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b1c0 3980 [] false false map[] 0xc000198400 0xc0000e82c0} +2022/02/22 11:59:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:59:11 [DEBUG] Exit from do method +2022/02/22 11:59:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:59:11 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:11 [DEBUG] New state was assigned lineage "9e724a8c-46bb-baba-b9a9-d2f8c7a50239" +2022/02/22 11:59:11 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 11:59:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:59:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:59:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:59:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:59:11 [DEBUG] Starting graph walk: walkPlan +2022/02/22 11:59:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:11 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 11:59:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:59:11 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:11 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_8n20m" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 11:59:11 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 11:59:11 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 11:59:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 11:59:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:59:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:59:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 11:59:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 11:59:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 11:59:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 11:59:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:11 [DEBUG] Starting graph walk: walkApply +2022/02/22 11:59:11 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 11:59:11 [DEBUG] : Beginning Create +2022/02/22 11:59:11 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 11:59:11 [DEBUG] Begin Injection +2022/02/22 11:59:11 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 11:59:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 11:59:11 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 11:59:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00028c140 160 [] false false map[] 0xc000704100 0xc0000e82c0} +2022/02/22 11:59:11 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621482b71b00004f6ffd0633","name":"acctest_8n20m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:59:11 [DEBUG] Exit from do method +2022/02/22 11:59:11 [DEBUG] 621482b71b00004f6ffd0633: Creation finished successfully +2022/02/22 11:59:11 [DEBUG] 621482b71b00004f6ffd0633: Beginning Read +2022/02/22 11:59:11 id: 621482b71b00004f6ffd0633 +2022/02/22 11:59:11 HTTP request GET mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:11 [DEBUG] Begin Injection +2022/02/22 11:59:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f08140 160 [] false false map[] 0xc000198000 0xc0000e82c0} +2022/02/22 11:59:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 {"id":"621482b71b00004f6ffd0633","name":"acctest_8n20m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:59:12 [DEBUG] Exit from do method +2022/02/22 11:59:12 providerList: [] +2022/02/22 11:59:12 [DEBUG] 621482b71b00004f6ffd0633: Read finished successfully +2022/02/22 11:59:12 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:12 [DEBUG] New state was assigned lineage "67346f82-74f4-7706-cafe-4ddaef17afd7" +2022/02/22 11:59:12 HTTP request GET mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:12 [DEBUG] Begin Injection +2022/02/22 11:59:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009d8900 160 [] false false map[] 0xc000d14300 0xc0000e82c0} +2022/02/22 11:59:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 {"id":"621482b71b00004f6ffd0633","name":"acctest_8n20m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:59:12 [DEBUG] Exit from do method +2022/02/22 11:59:12 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 11:59:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:59:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:59:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:59:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:59:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:12 [DEBUG] Starting graph walk: walkPlan +2022/02/22 11:59:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:59:12 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:12 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:59:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:59:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:59:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:59:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:59:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:12 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:59:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:12 [DEBUG] : Beginning Read +2022/02/22 11:59:12 HTTP request GET mso/api/v1/tenants +2022/02/22 11:59:12 [DEBUG] Begin Injection +2022/02/22 11:59:12 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:59:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:59:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:59:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000810600 3980 [] false false map[] 0xc000704400 0xc0000e82c0} +2022/02/22 11:59:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:59:12 [DEBUG] Exit from do method +2022/02/22 11:59:12 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:59:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:59:12 [DEBUG] 621482b71b00004f6ffd0633: Beginning Read +2022/02/22 11:59:12 id: 621482b71b00004f6ffd0633 +2022/02/22 11:59:12 HTTP request GET mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:12 [DEBUG] Begin Injection +2022/02/22 11:59:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009d91c0 160 [] false false map[] 0xc000198600 0xc0000e82c0} +2022/02/22 11:59:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 {"id":"621482b71b00004f6ffd0633","name":"acctest_8n20m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:59:13 [DEBUG] Exit from do method +2022/02/22 11:59:13 providerList: [] +2022/02/22 11:59:13 [DEBUG] 621482b71b00004f6ffd0633: Read finished successfully +2022/02/22 11:59:13 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:13 [DEBUG] New state was assigned lineage "b95ab04c-5957-d5fc-324f-e0e9d76ca305" +2022/02/22 11:59:13 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 11:59:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:59:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:59:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:13 [DEBUG] Starting graph walk: walkPlan +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:59:13 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:13 [DEBUG] Test: Executing step 3 +2022/02/22 11:59:13 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:13 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:59:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:59:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:59:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:13 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:59:13 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:13 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:59:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:59:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:59:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:13 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:13 [DEBUG] : Beginning Read +2022/02/22 11:59:13 HTTP request GET mso/api/v1/tenants +2022/02/22 11:59:13 [DEBUG] Begin Injection +2022/02/22 11:59:13 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:59:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:59:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:59:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a68040 3980 [] false false map[] 0xc000198300 0xc0000e82c0} +2022/02/22 11:59:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:59:13 [DEBUG] Exit from do method +2022/02/22 11:59:13 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:59:13 [DEBUG] 621482b71b00004f6ffd0633: Beginning Read +2022/02/22 11:59:13 id: 621482b71b00004f6ffd0633 +2022/02/22 11:59:13 HTTP request GET mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:13 [DEBUG] Begin Injection +2022/02/22 11:59:13 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058ad80 160 [] false false map[] 0xc000704b00 0xc0000e82c0} +2022/02/22 11:59:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 {"id":"621482b71b00004f6ffd0633","name":"acctest_8n20m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:59:13 [DEBUG] Exit from do method +2022/02/22 11:59:13 providerList: [] +2022/02/22 11:59:13 [DEBUG] 621482b71b00004f6ffd0633: Read finished successfully +2022/02/22 11:59:13 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:13 [DEBUG] New state was assigned lineage "0e97be72-b4b5-41a7-2a08-c5747b14cbf3" +2022/02/22 11:59:13 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 11:59:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:59:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:59:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:13 [DEBUG] Starting graph walk: walkPlan +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:59:13 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:13 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.141.3" + id: "621482b71b00004f6ffd0633" => "621482b71b00004f6ffd0633" + name: "acctest_8n20m" => "acctest_8n20m" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621482b71b00004f6ffd0633 + provider = provider.mso + description = + name = acctest_8n20m + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 11:59:13 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 11:59:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 11:59:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:59:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:59:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 11:59:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:13 [DEBUG] Starting graph walk: walkApply +2022/02/22 11:59:13 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 11:59:14 [DEBUG] 621482b71b00004f6ffd0633: Beginning Policy Update +2022/02/22 11:59:14 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg! +2022/02/22 11:59:14 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg! +2022/02/22 11:59:14 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg! +2022/02/22 11:59:14 [DEBUG] New state was assigned lineage "ade6dcc8-d6ad-58c9-b004-45128d130bd8" +2022/02/22 11:59:14 [WARN] Test: Executing destroy step +2022/02/22 11:59:14 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:14 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 11:59:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:14 [DEBUG] Starting graph walk: walkValidate +2022/02/22 11:59:14 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:14 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:59:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:14 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:14 [DEBUG] : Beginning Read +2022/02/22 11:59:14 HTTP request GET mso/api/v1/tenants +2022/02/22 11:59:14 [DEBUG] Begin Injection +2022/02/22 11:59:14 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:59:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:59:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:59:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a68280 3980 [] false false map[] 0xc000198300 0xc0000e82c0} +2022/02/22 11:59:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:59:14 [DEBUG] Exit from do method +2022/02/22 11:59:14 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 11:59:14 [DEBUG] 621482b71b00004f6ffd0633: Beginning Read +2022/02/22 11:59:14 id: 621482b71b00004f6ffd0633 +2022/02/22 11:59:14 HTTP request GET mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:14 [DEBUG] Begin Injection +2022/02/22 11:59:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002b1e00 160 [] false false map[] 0xc000a36700 0xc0000e82c0} +2022/02/22 11:59:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 {"id":"621482b71b00004f6ffd0633","name":"acctest_8n20m","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 11:59:14 [DEBUG] Exit from do method +2022/02/22 11:59:14 providerList: [] +2022/02/22 11:59:14 [DEBUG] 621482b71b00004f6ffd0633: Read finished successfully +2022/02/22 11:59:14 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:14 [DEBUG] New state was assigned lineage "50af3082-0ccf-af47-38e8-1e09781cd2a5" +2022/02/22 11:59:14 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 11:59:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 11:59:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 11:59:14 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 11:59:14 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "621482b71b00004f6ffd0633" => "" + name: "acctest_8n20m" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621482b71b00004f6ffd0633 + provider = provider.mso + description = + name = acctest_8n20m + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 11:59:14 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 11:59:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:14 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 11:59:14 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 11:59:14 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 11:59:14 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 11:59:14 [DEBUG] 621482b71b00004f6ffd0633: Beginning Read +2022/02/22 11:59:14 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:14 [DEBUG] Begin Injection +2022/02/22 11:59:14 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:15 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:15 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 06:29:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000198a00 0xc0000e82c0} +2022/02/22 11:59:15 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:15 [DEBUG] : Read finished successfully +2022/02/22 11:59:15 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:15 [DEBUG] New state was assigned lineage "133993e5-166a-0b10-0f0a-a0896dbc028d" +2022/02/22 11:59:15 HTTP request GET mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:15 [DEBUG] Begin Injection +2022/02/22 11:59:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 +2022/02/22 11:59:15 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:15 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000ce140 86 [] false false map[] 0xc000198000 0xc0000e82c0} +2022/02/22 11:59:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621482b71b00004f6ffd0633 {"code":141,"message":"Resource Not Found: Policy 621482b71b00004f6ffd0633 not found"} +2022/02/22 11:59:15 [DEBUG] Exit from do method +2022/02/22 11:59:15 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 11:59:15 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 11:59:15 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 11:59:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:59:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 11:59:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:15 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 11:59:15 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 11:59:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:15 [DEBUG] : Beginning Read +2022/02/22 11:59:15 HTTP request GET mso/api/v1/tenants +2022/02/22 11:59:15 [DEBUG] Begin Injection +2022/02/22 11:59:15 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 11:59:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:59:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 11:59:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:29:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009d8040 3980 [] false false map[] 0xc000b72200 0xc0000e82c0} +2022/02/22 11:59:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 11:59:15 [DEBUG] Exit from do method +2022/02/22 11:59:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 11:59:15 [DEBUG] provider has no plugin.Client +2022/02/22 11:59:15 [DEBUG] New state was assigned lineage "07e501a5-e099-5b2e-9e50-3d2448f64d4d" +2022/02/22 11:59:15 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 11:59:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:59:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 11:59:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 11:59:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 11:59:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 11:59:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 11:59:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 11:59:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 11:59:15 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 12:00:32 [DEBUG] Test: Executing step 0 +2022/02/22 12:00:32 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:00:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 12:00:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:32 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:32 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:32 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:00:32 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 12:00:32 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 12:00:32 [DEBUG] Test: Executing step 1 +2022/02/22 12:00:32 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:00:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 12:00:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:32 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:32 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:00:32 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "zhwli" is not expected here. +2022/02/22 12:00:32 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "zhwli" is not expected here. +2022/02/22 12:00:32 [DEBUG] Test: Executing step 2 +2022/02/22 12:00:32 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:32 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:00:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 12:00:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:32 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:32 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:00:32 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:32 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 12:00:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 12:00:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:00:32 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:32 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 12:00:32 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:32 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:00:32 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:32 [DEBUG] : Beginning Read +2022/02/22 12:00:32 HTTP request GET mso/api/v1/tenants +2022/02/22 12:00:32 [DEBUG] Begin Injection +2022/02/22 12:00:32 HTTP request POST /login +2022/02/22 12:00:32 HTTP request after injection POST /login +2022/02/22 12:00:32 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 12:00:34 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 12:00:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:34 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTI2MzQsImlhdCI6MTY0NTUxMTQzNCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJHZjBaWmp4Yzk9cUtBMUozc3FYUEl4SEciLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.c8-qDurhOYs0XX_AcVOGxn2jjVD8HNQM_7hHezQqTrOqmTucxP02YTHjJHzofvoqcTIBJMwEwYWI53U0sMmxudy825Y1Jyq3eqhatgxNqWr_FKjgFl0veU5Rogmh9KJT60zpxsQDpRR7jbEiaRbxr261wLVLOhbyvuTPkGTQqU4GLLiVn4ktODOi2jLWXwUVzQf-h0ZfzhQZ_Ccovn6gkx9W3PvR3szELV_fesQzoQ-lRP5zjEZcYilvGks_CeOIshoF0KbrMjBC2hcYChK5aq7JaybeR0v-qnHc73yscc8d4jOTgisDjEuYTN1fUJaX2GYdbmMgnJJ3NEzOjtRJGg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00051c200 -1 [chunked] false false map[] 0xc0008c4600 0xc00093c160} +2022/02/22 12:00:34 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTI2MzQsImlhdCI6MTY0NTUxMTQzNCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJHZjBaWmp4Yzk9cUtBMUozc3FYUEl4SEciLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.c8-qDurhOYs0XX_AcVOGxn2jjVD8HNQM_7hHezQqTrOqmTucxP02YTHjJHzofvoqcTIBJMwEwYWI53U0sMmxudy825Y1Jyq3eqhatgxNqWr_FKjgFl0veU5Rogmh9KJT60zpxsQDpRR7jbEiaRbxr261wLVLOhbyvuTPkGTQqU4GLLiVn4ktODOi2jLWXwUVzQf-h0ZfzhQZ_Ccovn6gkx9W3PvR3szELV_fesQzoQ-lRP5zjEZcYilvGks_CeOIshoF0KbrMjBC2hcYChK5aq7JaybeR0v-qnHc73yscc8d4jOTgisDjEuYTN1fUJaX2GYdbmMgnJJ3NEzOjtRJGg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTI2MzQsImlhdCI6MTY0NTUxMTQzNCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJHZjBaWmp4Yzk9cUtBMUozc3FYUEl4SEciLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.c8-qDurhOYs0XX_AcVOGxn2jjVD8HNQM_7hHezQqTrOqmTucxP02YTHjJHzofvoqcTIBJMwEwYWI53U0sMmxudy825Y1Jyq3eqhatgxNqWr_FKjgFl0veU5Rogmh9KJT60zpxsQDpRR7jbEiaRbxr261wLVLOhbyvuTPkGTQqU4GLLiVn4ktODOi2jLWXwUVzQf-h0ZfzhQZ_Ccovn6gkx9W3PvR3szELV_fesQzoQ-lRP5zjEZcYilvGks_CeOIshoF0KbrMjBC2hcYChK5aq7JaybeR0v-qnHc73yscc8d4jOTgisDjEuYTN1fUJaX2GYdbmMgnJJ3NEzOjtRJGg"} +2022/02/22 12:00:34 [DEBUG] Exit from do method +2022/02/22 12:00:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 12:00:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 12:00:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 12:00:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051c380 3980 [] false false map[] 0xc0008c4500 0xc00093c160} +2022/02/22 12:00:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 12:00:34 [DEBUG] Exit from do method +2022/02/22 12:00:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 12:00:34 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:34 [DEBUG] New state was assigned lineage "4dcc4ccf-428a-d2a7-a26e-f0839bc1c630" +2022/02/22 12:00:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 12:00:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:00:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:00:34 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:00:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:00:34 [DEBUG] Starting graph walk: walkPlan +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:34 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:34 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:34 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_wb3g2_invalid" + tenant_id: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_wb3g2" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 12:00:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 12:00:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 12:00:34 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:00:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 12:00:34 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 12:00:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:00:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:00:34 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:00:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:00:34 [DEBUG] Starting graph walk: walkApply +2022/02/22 12:00:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 12:00:34 [DEBUG] : Beginning Create +2022/02/22 12:00:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:34 [DEBUG] Begin Injection +2022/02/22 12:00:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:34 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b101c0 160 [] false false map[] 0xc000a8c700 0xc00093c160} +2022/02/22 12:00:34 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214830a1b00006f6ffd0634","name":"acctest_wb3g2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:00:34 [DEBUG] Exit from do method +2022/02/22 12:00:34 [DEBUG] 6214830a1b00006f6ffd0634: Creation finished successfully +2022/02/22 12:00:34 [DEBUG] 6214830a1b00006f6ffd0634: Beginning Read +2022/02/22 12:00:34 id: 6214830a1b00006f6ffd0634 +2022/02/22 12:00:34 HTTP request GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:34 [DEBUG] Begin Injection +2022/02/22 12:00:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b10380 160 [] false false map[] 0xc000a16100 0xc00093c160} +2022/02/22 12:00:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 {"id":"6214830a1b00006f6ffd0634","name":"acctest_wb3g2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:00:35 [DEBUG] Exit from do method +2022/02/22 12:00:35 providerList: [] +2022/02/22 12:00:35 [DEBUG] 6214830a1b00006f6ffd0634: Read finished successfully +2022/02/22 12:00:35 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 12:00:35 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:35 [DEBUG] Begin Injection +2022/02/22 12:00:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2262] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b9dc0 2262 [] false false map[] 0xc000a16700 0xc00093c160} +2022/02/22 12:00:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620cb3551b0000afe0fd05dc","name":"test1","policyType":"dhcp","policySubtype":"relay","desc":"dfgh","tenantId":"620cb3101d000024464f99bd","provider":[],"version":1},{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620cecb41b00008aecfd05df","name":"test3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":35},{"id":"620cf2871b0000c7edfd05e0","name":"test4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"11.03.3.2","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EXT_EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"620f3ea71b0000fa61fd05e1","name":"practice_repo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[],"version":1},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621392f81b0000573ffd0610","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214830a1b00006f6ffd0634","name":"acctest_wb3g2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 12:00:35 [DEBUG] Exit from do method +2022/02/22 12:00:35 [ERROR] : eval: *terraform.EvalReadData, err: DHCP Relay Policy with name: acctest_wb3g2_invalid not found +2022/02/22 12:00:35 [ERROR] : eval: *terraform.EvalSequence, err: DHCP Relay Policy with name: acctest_wb3g2_invalid not found +2022/02/22 12:00:35 [DEBUG] New state was assigned lineage "1cf2e3cf-c2ee-4877-5c13-468d675791cf" +2022/02/22 12:00:35 [DEBUG] Test: Executing step 3 +2022/02/22 12:00:35 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:35 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:00:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 12:00:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:35 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:00:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:35 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:00:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:35 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:00:35 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:35 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 12:00:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:00:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 12:00:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:00:35 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:00:35 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:00:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:00:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:35 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 12:00:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:35 [DEBUG] : Beginning Read +2022/02/22 12:00:35 HTTP request GET mso/api/v1/tenants +2022/02/22 12:00:35 [DEBUG] Begin Injection +2022/02/22 12:00:35 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 12:00:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 12:00:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 12:00:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cfa9c0 3980 [] false false map[] 0xc000a16200 0xc00093c160} +2022/02/22 12:00:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 12:00:35 [DEBUG] Exit from do method +2022/02/22 12:00:35 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 12:00:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:35 [DEBUG] 6214830a1b00006f6ffd0634: Beginning Read +2022/02/22 12:00:35 id: 6214830a1b00006f6ffd0634 +2022/02/22 12:00:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:35 [DEBUG] Begin Injection +2022/02/22 12:00:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a5a140 160 [] false false map[] 0xc0008c4700 0xc00093c160} +2022/02/22 12:00:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 {"id":"6214830a1b00006f6ffd0634","name":"acctest_wb3g2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:00:36 [DEBUG] Exit from do method +2022/02/22 12:00:36 providerList: [] +2022/02/22 12:00:36 [DEBUG] 6214830a1b00006f6ffd0634: Read finished successfully +2022/02/22 12:00:36 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:36 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 12:00:36 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:36 [DEBUG] Begin Injection +2022/02/22 12:00:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2262] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a5b100 2262 [] false false map[] 0xc0008c4a00 0xc00093c160} +2022/02/22 12:00:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620cb3551b0000afe0fd05dc","name":"test1","policyType":"dhcp","policySubtype":"relay","desc":"dfgh","tenantId":"620cb3101d000024464f99bd","provider":[],"version":1},{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620cecb41b00008aecfd05df","name":"test3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":35},{"id":"620cf2871b0000c7edfd05e0","name":"test4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"11.03.3.2","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EXT_EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"620f3ea71b0000fa61fd05e1","name":"practice_repo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[],"version":1},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621392f81b0000573ffd0610","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214830a1b00006f6ffd0634","name":"acctest_wb3g2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 12:00:36 [DEBUG] Exit from do method +2022/02/22 12:00:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:36 [DEBUG] Begin Injection +2022/02/22 12:00:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a5b280 160 [] false false map[] 0xc000a8c200 0xc00093c160} +2022/02/22 12:00:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 {"id":"6214830a1b00006f6ffd0634","name":"acctest_wb3g2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:00:36 [DEBUG] Exit from do method +2022/02/22 12:00:36 providerList: [] +2022/02/22 12:00:36 [DEBUG] 6214830a1b00006f6ffd0634: Import finished successfully +2022/02/22 12:00:36 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:36 [DEBUG] New state was assigned lineage "d5cfc535-b75b-887a-5d66-15995e6c9465" +2022/02/22 12:00:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 12:00:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 12:00:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:00:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:00:36 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:36 [DEBUG] Starting graph walk: walkPlan +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:36 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:36 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_wb3g2" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.154.146" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1" + id: "6214830a1b00006f6ffd0634" => "6214830a1b00006f6ffd0634" + name: "acctest_wb3g2" => "acctest_wb3g2" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 6214830a1b00006f6ffd0634 + provider = provider.mso + description = + name = acctest_wb3g2 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214830a1b00006f6ffd0634 + provider = provider.mso + description = + name = acctest_wb3g2 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 12:00:36 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 12:00:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 12:00:36 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 12:00:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:00:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:00:36 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:00:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 12:00:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:36 [DEBUG] Starting graph walk: walkApply +2022/02/22 12:00:36 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 12:00:36 [DEBUG] 6214830a1b00006f6ffd0634: Beginning Policy Update +2022/02/22 12:00:36 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:36 [DEBUG] Begin Injection +2022/02/22 12:00:36 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:37 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b10480 351 [] false false map[] 0xc000a8cb00 0xc00093c160} +2022/02/22 12:00:37 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 {"id":"6214830a1b00006f6ffd0634","name":"acctest_wb3g2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.154.146","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:00:37 [DEBUG] Exit from do method +2022/02/22 12:00:37 [DEBUG] Policy Update finished successfully: 6214830a1b00006f6ffd0634 +2022/02/22 12:00:37 [DEBUG] 6214830a1b00006f6ffd0634: Beginning Read +2022/02/22 12:00:37 id: 6214830a1b00006f6ffd0634 +2022/02/22 12:00:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:37 [DEBUG] Begin Injection +2022/02/22 12:00:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b10680 351 [] false false map[] 0xc000c16600 0xc00093c160} +2022/02/22 12:00:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 {"id":"6214830a1b00006f6ffd0634","name":"acctest_wb3g2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.154.146","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:00:37 [DEBUG] Exit from do method +2022/02/22 12:00:37 providerList: [map[dhcp_server_address:1.2.154.146 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 12:00:37 [DEBUG] 6214830a1b00006f6ffd0634: Read finished successfully +2022/02/22 12:00:37 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 12:00:37 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 12:00:37 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:37 [DEBUG] Begin Injection +2022/02/22 12:00:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:00:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2453] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003f8580 2453 [] false false map[] 0xc000c16f00 0xc00093c160} +2022/02/22 12:00:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620cb3551b0000afe0fd05dc","name":"test1","policyType":"dhcp","policySubtype":"relay","desc":"dfgh","tenantId":"620cb3101d000024464f99bd","provider":[],"version":1},{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620cecb41b00008aecfd05df","name":"test3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":35},{"id":"620cf2871b0000c7edfd05e0","name":"test4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"11.03.3.2","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EXT_EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"620f3ea71b0000fa61fd05e1","name":"practice_repo","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[],"version":1},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621392f81b0000573ffd0610","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214830a1b00006f6ffd0634","name":"acctest_wb3g2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.154.146","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 12:00:37 [DEBUG] Exit from do method +2022/02/22 12:00:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:37 [DEBUG] Begin Injection +2022/02/22 12:00:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003f8400 351 [] false false map[] 0xc000c17000 0xc00093c160} +2022/02/22 12:00:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 {"id":"6214830a1b00006f6ffd0634","name":"acctest_wb3g2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.154.146","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:00:38 [DEBUG] Exit from do method +2022/02/22 12:00:38 providerList: [map[dhcp_server_address:1.2.154.146 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 12:00:38 [DEBUG] 6214830a1b00006f6ffd0634: Import finished successfully +2022/02/22 12:00:38 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:38 [DEBUG] New state was assigned lineage "0db43530-ae4d-62bc-4142-c5f89cdbccb9" +2022/02/22 12:00:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 [DEBUG] Begin Injection +2022/02/22 12:00:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b10b80 351 [] false false map[] 0xc000396100 0xc00093c160} +2022/02/22 12:00:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 {"id":"6214830a1b00006f6ffd0634","name":"acctest_wb3g2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.154.146","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:00:38 [DEBUG] Exit from do method +2022/02/22 12:00:38 [WARN] Test: Executing destroy step +2022/02/22 12:00:38 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:00:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:38 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:00:38 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:38 [WARN] Not fixing up EachModes for data.mso_tenant.test because it has no config +2022/02/22 12:00:38 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 12:00:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 12:00:38 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 12:00:38 [DEBUG] Resource state not found for node "mso_tenant.test", instance mso_tenant.test +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:00:38 [WARN] Provider "mso" produced an invalid plan for mso_tenant.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .site_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead + - .user_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:38 [DEBUG] 6214830a1b00006f6ffd0634: Beginning Read +2022/02/22 12:00:38 id: 6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 [DEBUG] Begin Injection +2022/02/22 12:00:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000390700 351 [] false false map[] 0xc000e4a300 0xc00093c160} +2022/02/22 12:00:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 {"id":"6214830a1b00006f6ffd0634","name":"acctest_wb3g2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.154.146","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:00:38 [DEBUG] Exit from do method +2022/02/22 12:00:38 providerList: [map[dhcp_server_address:1.2.154.146 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 12:00:38 [DEBUG] 6214830a1b00006f6ffd0634: Read finished successfully +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:38 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:38 [DEBUG] New state was assigned lineage "3756d0ab-185f-073c-bc80-97cf7c249afd" +2022/02/22 12:00:38 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 12:00:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 12:00:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:38 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 12:00:38 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.154.146" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + id: "6214830a1b00006f6ffd0634" => "" + name: "acctest_wb3g2" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +mso_dhcp_relay_policy.test: + ID = 6214830a1b00006f6ffd0634 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.154.146 + dhcp_relay_policy_provider.0.epg = /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 + dhcp_relay_policy_provider.0.external_epg = + name = acctest_wb3g2 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 12:00:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 12:00:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test (prepare state) +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_tenant.test (prepare state)" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 12:00:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:38 DestroyEdgeTransformer: pruning unused resource node mso_tenant.test (prepare state) +2022/02/22 12:00:38 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 12:00:38 DestroyEdgeTransformer: pruning unused resource node data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 12:00:38 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 12:00:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 12:00:38 [DEBUG] 6214830a1b00006f6ffd0634: Beginning Read +2022/02/22 12:00:38 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 [DEBUG] Begin Injection +2022/02/22 12:00:38 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:39 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 06:30:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000e4a600 0xc00093c160} +2022/02/22 12:00:39 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:39 [DEBUG] : Read finished successfully +2022/02/22 12:00:39 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:39 [DEBUG] New state was assigned lineage "632a9ab6-f7ef-8cdb-f319-f5a3a1598582" +2022/02/22 12:00:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:39 [DEBUG] Begin Injection +2022/02/22 12:00:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 +2022/02/22 12:00:39 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:30:39 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cfa0c0 86 [] false false map[] 0xc0008c5400 0xc00093c160} +2022/02/22 12:00:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214830a1b00006f6ffd0634 {"code":141,"message":"Resource Not Found: Policy 6214830a1b00006f6ffd0634 not found"} +2022/02/22 12:00:39 [DEBUG] Exit from do method +2022/02/22 12:00:39 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 12:00:39 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 12:00:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 12:00:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 12:00:39 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:00:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:00:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 12:00:39 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:00:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:00:39 [DEBUG] provider has no plugin.Client +2022/02/22 12:00:39 [DEBUG] New state was assigned lineage "13ab4750-70e8-b853-4a0f-8bcbd6683529" +2022/02/22 12:00:39 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 12:00:39 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 12:24:53 [DEBUG] Test: Executing step 0 +2022/02/22 12:24:53 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:53 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:24:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 12:24:53 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:53 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:53 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:24:53 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 12:24:53 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 12:24:53 [DEBUG] Test: Executing step 1 +2022/02/22 12:24:53 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:53 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:24:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:24:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:53 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:53 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:24:53 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "fvuhh" is not expected here. +2022/02/22 12:24:53 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "fvuhh" is not expected here. +2022/02/22 12:24:53 [DEBUG] Test: Executing step 2 +2022/02/22 12:24:53 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:53 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:24:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:24:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:53 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:24:53 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:24:53 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:53 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 12:24:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 12:24:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:24:53 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:53 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 12:24:53 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:53 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:24:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:53 [DEBUG] : Beginning Read +2022/02/22 12:24:53 HTTP request GET mso/api/v1/tenants +2022/02/22 12:24:53 [DEBUG] Begin Injection +2022/02/22 12:24:53 HTTP request POST /login +2022/02/22 12:24:53 HTTP request after injection POST /login +2022/02/22 12:24:53 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 12:24:55 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 12:24:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:55 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTQwOTUsImlhdCI6MTY0NTUxMjg5NSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ2TnBMeXlOd3hYa3huYXdzcXNQa2ZtZDUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.b2cX0CKlGngRbypaMX6-7xlu2Hvgth1velDpQh7lRp6ILJxzGy6wqNJdtcl-zjkyZLXBvyiAbqHtkDOfdhQ9nY1QlehOXxW6hs2-krwPuciSwXBG5MJl6604dQ1ID-xhFkgOOhUKgJk3Uh3D84qEN6MwmzlhQhFnKCu5eHCzYQ4yFwOFxGbH2AfywKTbPxkmPMqqd20dE7aacW9lFyg4C0-wtzWvYahETr_4UF3RxPijuCpBD_hmiH-D3KXS3JKrtko5fGa3dfITmnPbflB7-Ax39r0VihlZRa_lX5k56InQUfN73u1iw9eJnpzt0d3I0tO3FUuMfsetdEP9kMTBEA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000884080 -1 [chunked] false false map[] 0xc000c2c200 0xc0000c20b0} +2022/02/22 12:24:55 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTQwOTUsImlhdCI6MTY0NTUxMjg5NSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ2TnBMeXlOd3hYa3huYXdzcXNQa2ZtZDUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.b2cX0CKlGngRbypaMX6-7xlu2Hvgth1velDpQh7lRp6ILJxzGy6wqNJdtcl-zjkyZLXBvyiAbqHtkDOfdhQ9nY1QlehOXxW6hs2-krwPuciSwXBG5MJl6604dQ1ID-xhFkgOOhUKgJk3Uh3D84qEN6MwmzlhQhFnKCu5eHCzYQ4yFwOFxGbH2AfywKTbPxkmPMqqd20dE7aacW9lFyg4C0-wtzWvYahETr_4UF3RxPijuCpBD_hmiH-D3KXS3JKrtko5fGa3dfITmnPbflB7-Ax39r0VihlZRa_lX5k56InQUfN73u1iw9eJnpzt0d3I0tO3FUuMfsetdEP9kMTBEA","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTQwOTUsImlhdCI6MTY0NTUxMjg5NSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ2TnBMeXlOd3hYa3huYXdzcXNQa2ZtZDUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.b2cX0CKlGngRbypaMX6-7xlu2Hvgth1velDpQh7lRp6ILJxzGy6wqNJdtcl-zjkyZLXBvyiAbqHtkDOfdhQ9nY1QlehOXxW6hs2-krwPuciSwXBG5MJl6604dQ1ID-xhFkgOOhUKgJk3Uh3D84qEN6MwmzlhQhFnKCu5eHCzYQ4yFwOFxGbH2AfywKTbPxkmPMqqd20dE7aacW9lFyg4C0-wtzWvYahETr_4UF3RxPijuCpBD_hmiH-D3KXS3JKrtko5fGa3dfITmnPbflB7-Ax39r0VihlZRa_lX5k56InQUfN73u1iw9eJnpzt0d3I0tO3FUuMfsetdEP9kMTBEA"} +2022/02/22 12:24:55 [DEBUG] Exit from do method +2022/02/22 12:24:55 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 12:24:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 12:24:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 12:24:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000690380 3980 [] false false map[] 0xc000c2c100 0xc0000c20b0} +2022/02/22 12:24:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 12:24:55 [DEBUG] Exit from do method +2022/02/22 12:24:55 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 12:24:55 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:55 [DEBUG] New state was assigned lineage "bec37773-123a-c87f-4de7-4e6ab9e1c11b" +2022/02/22 12:24:55 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 12:24:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:24:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:24:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:24:55 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:55 [DEBUG] Starting graph walk: walkPlan +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:55 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:55 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:55 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:55 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_pa26d_invalid" + tenant_id: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_pa26d" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 12:24:55 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 12:24:55 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 12:24:55 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:24:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:24:55 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 12:24:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:24:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:24:55 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:24:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 12:24:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:55 [DEBUG] Starting graph walk: walkApply +2022/02/22 12:24:55 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 12:24:55 [DEBUG] : Beginning Create +2022/02/22 12:24:55 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:55 [DEBUG] Begin Injection +2022/02/22 12:24:55 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:56 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008f9cc0 160 [] false false map[] 0xc000e20500 0xc0000c20b0} +2022/02/22 12:24:56 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621488bf1b0000cd70fd0637","name":"acctest_pa26d","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:24:56 [DEBUG] Exit from do method +2022/02/22 12:24:56 [DEBUG] 621488bf1b0000cd70fd0637: Creation finished successfully +2022/02/22 12:24:56 [DEBUG] 621488bf1b0000cd70fd0637: Beginning Read +2022/02/22 12:24:56 id: 621488bf1b0000cd70fd0637 +2022/02/22 12:24:56 HTTP request GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:56 [DEBUG] Begin Injection +2022/02/22 12:24:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000884040 160 [] false false map[] 0xc000dae000 0xc0000c20b0} +2022/02/22 12:24:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 {"id":"621488bf1b0000cd70fd0637","name":"acctest_pa26d","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:24:56 [DEBUG] Exit from do method +2022/02/22 12:24:56 DHCPRELAY POLICY: &{621488bf1b0000cd70fd0637 acctest_pa26d dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 12:24:56 providerList: [] +2022/02/22 12:24:56 [DEBUG] 621488bf1b0000cd70fd0637: Read finished successfully +2022/02/22 12:24:56 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 12:24:56 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:56 [DEBUG] Begin Injection +2022/02/22 12:24:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1761] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000884140 1761 [] false false map[] 0xc000dae600 0xc0000c20b0} +2022/02/22 12:24:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621487421b00008670fd0636","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621488bf1b0000cd70fd0637","name":"acctest_pa26d","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 12:24:56 [DEBUG] Exit from do method +2022/02/22 12:24:56 [ERROR] : eval: *terraform.EvalReadData, err: DHCP Relay Policy with name: acctest_pa26d_invalid not found +2022/02/22 12:24:56 [ERROR] : eval: *terraform.EvalSequence, err: DHCP Relay Policy with name: acctest_pa26d_invalid not found +2022/02/22 12:24:56 [DEBUG] New state was assigned lineage "dc1d7d5d-54af-6c2f-0dd8-7a9fc686045b" +2022/02/22 12:24:56 [DEBUG] Test: Executing step 3 +2022/02/22 12:24:56 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:24:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 12:24:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:56 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:56 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:24:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:24:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:56 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:24:56 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:56 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 12:24:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:24:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:24:56 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:24:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 12:24:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:24:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:56 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:24:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:56 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 12:24:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:56 [DEBUG] : Beginning Read +2022/02/22 12:24:56 HTTP request GET mso/api/v1/tenants +2022/02/22 12:24:56 [DEBUG] Begin Injection +2022/02/22 12:24:56 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 12:24:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 12:24:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 12:24:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000690540 3980 [] false false map[] 0xc000b12500 0xc0000c20b0} +2022/02/22 12:24:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 12:24:56 [DEBUG] Exit from do method +2022/02/22 12:24:56 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 12:24:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:56 [DEBUG] 621488bf1b0000cd70fd0637: Beginning Read +2022/02/22 12:24:56 id: 621488bf1b0000cd70fd0637 +2022/02/22 12:24:56 HTTP request GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:56 [DEBUG] Begin Injection +2022/02/22 12:24:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b180 160 [] false false map[] 0xc0001b8500 0xc0000c20b0} +2022/02/22 12:24:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 {"id":"621488bf1b0000cd70fd0637","name":"acctest_pa26d","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:24:57 [DEBUG] Exit from do method +2022/02/22 12:24:57 DHCPRELAY POLICY: &{621488bf1b0000cd70fd0637 acctest_pa26d dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 12:24:57 providerList: [] +2022/02/22 12:24:57 [DEBUG] 621488bf1b0000cd70fd0637: Read finished successfully +2022/02/22 12:24:57 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:57 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 12:24:57 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:57 [DEBUG] Begin Injection +2022/02/22 12:24:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1761] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000248080 1761 [] false false map[] 0xc000736400 0xc0000c20b0} +2022/02/22 12:24:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621487421b00008670fd0636","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621488bf1b0000cd70fd0637","name":"acctest_pa26d","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 12:24:57 [DEBUG] Exit from do method +2022/02/22 12:24:57 HTTP request GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:57 [DEBUG] Begin Injection +2022/02/22 12:24:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d2f40 160 [] false false map[] 0xc000b24000 0xc0000c20b0} +2022/02/22 12:24:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 {"id":"621488bf1b0000cd70fd0637","name":"acctest_pa26d","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:24:57 [DEBUG] Exit from do method +2022/02/22 12:24:57 DHCPRELAY POLICY: &{621488bf1b0000cd70fd0637 acctest_pa26d dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 12:24:57 providerList: [] +2022/02/22 12:24:57 [DEBUG] 621488bf1b0000cd70fd0637: Import finished successfully +2022/02/22 12:24:57 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:57 [DEBUG] New state was assigned lineage "c649fed5-e235-7d4b-0258-a4cdfdb94424" +2022/02/22 12:24:57 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 12:24:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:24:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:24:57 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:24:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:57 [DEBUG] Starting graph walk: walkPlan +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:57 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:57 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_pa26d" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.136.57" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1" + id: "621488bf1b0000cd70fd0637" => "621488bf1b0000cd70fd0637" + name: "acctest_pa26d" => "acctest_pa26d" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 621488bf1b0000cd70fd0637 + provider = provider.mso + description = + name = acctest_pa26d + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621488bf1b0000cd70fd0637 + provider = provider.mso + description = + name = acctest_pa26d + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 12:24:57 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 12:24:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 12:24:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:24:57 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:24:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:24:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 12:24:57 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 12:24:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:57 [DEBUG] Starting graph walk: walkApply +2022/02/22 12:24:57 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 12:24:57 [DEBUG] 621488bf1b0000cd70fd0637: Beginning Policy Update +2022/02/22 12:24:57 HTTP request PUT mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:57 [DEBUG] Begin Injection +2022/02/22 12:24:57 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:58 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[350] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b500 350 [] false false map[] 0xc000b12600 0xc0000c20b0} +2022/02/22 12:24:58 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 {"id":"621488bf1b0000cd70fd0637","name":"acctest_pa26d","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.136.57","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:24:58 [DEBUG] Exit from do method +2022/02/22 12:24:58 [DEBUG] Policy Update finished successfully: 621488bf1b0000cd70fd0637 +2022/02/22 12:24:58 [DEBUG] 621488bf1b0000cd70fd0637: Beginning Read +2022/02/22 12:24:58 id: 621488bf1b0000cd70fd0637 +2022/02/22 12:24:58 HTTP request GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:58 [DEBUG] Begin Injection +2022/02/22 12:24:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[350] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b640 350 [] false false map[] 0xc000b12800 0xc0000c20b0} +2022/02/22 12:24:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 {"id":"621488bf1b0000cd70fd0637","name":"acctest_pa26d","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.136.57","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:24:58 [DEBUG] Exit from do method +2022/02/22 12:24:58 DHCPRELAY POLICY: &{621488bf1b0000cd70fd0637 acctest_pa26d dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.136.57 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 12:24:58 providerList: [map[dhcp_server_address:1.2.136.57 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 12:24:58 [DEBUG] 621488bf1b0000cd70fd0637: Read finished successfully +2022/02/22 12:24:58 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 12:24:58 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 12:24:58 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:58 [DEBUG] Begin Injection +2022/02/22 12:24:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:24:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1951] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000218c80 1951 [] false false map[] 0xc000b13000 0xc0000c20b0} +2022/02/22 12:24:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621487421b00008670fd0636","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621488bf1b0000cd70fd0637","name":"acctest_pa26d","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.136.57","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 12:24:58 [DEBUG] Exit from do method +2022/02/22 12:24:58 HTTP request GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:58 [DEBUG] Begin Injection +2022/02/22 12:24:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[350] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000690980 350 [] false false map[] 0xc000a84100 0xc0000c20b0} +2022/02/22 12:24:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 {"id":"621488bf1b0000cd70fd0637","name":"acctest_pa26d","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.136.57","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:24:59 [DEBUG] Exit from do method +2022/02/22 12:24:59 DHCPRELAY POLICY: &{621488bf1b0000cd70fd0637 acctest_pa26d dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.136.57 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 12:24:59 providerList: [map[dhcp_server_address:1.2.136.57 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 12:24:59 [DEBUG] 621488bf1b0000cd70fd0637: Import finished successfully +2022/02/22 12:24:59 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:59 [DEBUG] New state was assigned lineage "81d49fb9-b768-1d46-da4d-0b848eda1765" +2022/02/22 12:24:59 HTTP request GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 [DEBUG] Begin Injection +2022/02/22 12:24:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[350] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000690080 350 [] false false map[] 0xc000a84200 0xc0000c20b0} +2022/02/22 12:24:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 {"id":"621488bf1b0000cd70fd0637","name":"acctest_pa26d","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.136.57","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:24:59 [DEBUG] Exit from do method +2022/02/22 12:24:59 [WARN] Test: Executing destroy step +2022/02/22 12:24:59 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:59 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:24:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:59 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:24:59 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:59 [WARN] Not fixing up EachModes for data.mso_tenant.test because it has no config +2022/02/22 12:24:59 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 12:24:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:24:59 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 12:24:59 [DEBUG] Resource state not found for node "mso_tenant.test", instance mso_tenant.test +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:24:59 [WARN] Provider "mso" produced an invalid plan for mso_tenant.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .site_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead + - .user_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:59 [DEBUG] 621488bf1b0000cd70fd0637: Beginning Read +2022/02/22 12:24:59 id: 621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 HTTP request GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 [DEBUG] Begin Injection +2022/02/22 12:24:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[350] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:54:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b580 350 [] false false map[] 0xc0004f4300 0xc0000c20b0} +2022/02/22 12:24:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 {"id":"621488bf1b0000cd70fd0637","name":"acctest_pa26d","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.136.57","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:24:59 [DEBUG] Exit from do method +2022/02/22 12:24:59 DHCPRELAY POLICY: &{621488bf1b0000cd70fd0637 acctest_pa26d dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.136.57 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 12:24:59 providerList: [map[dhcp_server_address:1.2.136.57 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 12:24:59 [DEBUG] 621488bf1b0000cd70fd0637: Read finished successfully +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:59 [DEBUG] provider has no plugin.Client +2022/02/22 12:24:59 [DEBUG] New state was assigned lineage "0f406990-994c-8f81-28d2-0722f32e73b6" +2022/02/22 12:24:59 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 12:24:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 12:24:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:59 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 12:24:59 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.136.57" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + id: "621488bf1b0000cd70fd0637" => "" + name: "acctest_pa26d" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +mso_dhcp_relay_policy.test: + ID = 621488bf1b0000cd70fd0637 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.136.57 + dhcp_relay_policy_provider.0.epg = /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 + dhcp_relay_policy_provider.0.external_epg = + name = acctest_pa26d + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 12:24:59 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 12:24:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_tenant.test (prepare state)" references: [] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:24:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 12:24:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:24:59 DestroyEdgeTransformer: pruning unused resource node mso_tenant.test (prepare state) +2022/02/22 12:24:59 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 12:24:59 DestroyEdgeTransformer: pruning unused resource node data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 12:24:59 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 12:24:59 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 12:24:59 [DEBUG] 621488bf1b0000cd70fd0637: Beginning Read +2022/02/22 12:24:59 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 [DEBUG] Begin Injection +2022/02/22 12:24:59 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:24:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:25:00 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:25:00 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 06:54:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0004f4800 0xc0000c20b0} +2022/02/22 12:25:00 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:25:00 [DEBUG] : Read finished successfully +2022/02/22 12:25:00 [DEBUG] provider has no plugin.Client +2022/02/22 12:25:00 [DEBUG] New state was assigned lineage "e25e52df-66fb-4f36-60b7-6d83766b72fe" +2022/02/22 12:25:00 HTTP request GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:25:00 [DEBUG] Begin Injection +2022/02/22 12:25:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:25:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:25:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 +2022/02/22 12:25:00 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 06:55:00 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000884180 86 [] false false map[] 0xc000a84000 0xc0000c20b0} +2022/02/22 12:25:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621488bf1b0000cd70fd0637 {"code":141,"message":"Resource Not Found: Policy 621488bf1b0000cd70fd0637 not found"} +2022/02/22 12:25:00 [DEBUG] Exit from do method +2022/02/22 12:25:00 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 12:25:00 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 12:25:00 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 12:25:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 12:25:00 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:25:00 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:25:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:25:00 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 12:25:00 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:25:00 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:25:00 [DEBUG] provider has no plugin.Client +2022/02/22 12:25:00 [DEBUG] New state was assigned lineage "9f87a248-1fd2-24a5-301a-b10a4f46ea06" +2022/02/22 12:25:00 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 12:25:00 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 12:53:33 [DEBUG] Test: Executing step 0 +2022/02/22 12:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 12:53:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 12:53:33 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:53:33 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:53:33 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 12:53:33 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:53:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:53:33 [WARN] : eval: *terraform.EvalValidateProvider, non-fatal err: Internal validation of the provider failed! This is always a bug +with the provider itself, and not a user issue. Please report +this bug: + +1 error occurred: + * data source mso_dhcp_relay_policy: dhcp_relay_policy_provider: One of optional, required, or computed must be set + +2022/02/22 12:53:33 [ERROR] : eval: *terraform.EvalSequence, err: Internal validation of the provider failed! This is always a bug +with the provider itself, and not a user issue. Please report +this bug: + +1 error occurred: + * data source mso_dhcp_relay_policy: dhcp_relay_policy_provider: One of optional, required, or computed must be set + +2022/02/22 12:53:33 [ERROR] : eval: *terraform.EvalOpFilter, err: Internal validation of the provider failed! This is always a bug +with the provider itself, and not a user issue. Please report +this bug: + +1 error occurred: + * data source mso_dhcp_relay_policy: dhcp_relay_policy_provider: One of optional, required, or computed must be set + +2022/02/22 12:53:33 [ERROR] : eval: *terraform.EvalSequence, err: Internal validation of the provider failed! This is always a bug +with the provider itself, and not a user issue. Please report +this bug: + +1 error occurred: + * data source mso_dhcp_relay_policy: dhcp_relay_policy_provider: One of optional, required, or computed must be set + +2022/02/22 12:53:33 [WARN] Skipping destroy test since there is no state. +2022/02/22 12:54:37 [DEBUG] Test: Executing step 0 +2022/02/22 12:54:37 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:54:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 12:54:37 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:37 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:54:37 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 12:54:37 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 12:54:37 [DEBUG] Test: Executing step 1 +2022/02/22 12:54:37 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:54:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 12:54:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:37 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:54:37 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "qvrqg" is not expected here. +2022/02/22 12:54:37 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "qvrqg" is not expected here. +2022/02/22 12:54:37 [DEBUG] Test: Executing step 2 +2022/02/22 12:54:37 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:54:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:54:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:37 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:54:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:54:37 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 12:54:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 12:54:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:54:37 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 12:54:37 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:37 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 12:54:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:37 [DEBUG] : Beginning Read +2022/02/22 12:54:37 HTTP request GET mso/api/v1/tenants +2022/02/22 12:54:37 [DEBUG] Begin Injection +2022/02/22 12:54:37 HTTP request POST /login +2022/02/22 12:54:37 HTTP request after injection POST /login +2022/02/22 12:54:37 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 12:54:38 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 12:54:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:38 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTU4NzgsImlhdCI6MTY0NTUxNDY3OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJSMG9COVJ0bmJ2T3JvalByYlRxeWFyMlIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.kEj1rV_Jh1q1f2g2ldY3Y4xv537O8hMilOH6E4sIG8M_9tWwxzNrexRxgoj3Ukvs8laB7KjIAOt_vHbfYuoC6r_eDrSbzkK7LDHT281G42i3StJDXqu5TwVR3ufsjgteeS7UM8EdyiCKYNk9gejTIApwC8E8aremh_BPpjBSAij5Y9yvyCKH4EG9Sxu6k9MleZjCvwmUML0AXoszC97k5dKsZfRZ9akVB_7Cuws0Z0dXBLDgRa7DelbgqiZ4zqdlr2Kq7WXYJCMxl8qFe6fSeknYnc69XzvUnq00ZV8VFvnNRodwlBD2jwmcguRrCIG5Avv7xNV3aU_TUKUp-rWgBQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00050e140 -1 [chunked] false false map[] 0xc00077a400 0xc000136420} +2022/02/22 12:54:38 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTU4NzgsImlhdCI6MTY0NTUxNDY3OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJSMG9COVJ0bmJ2T3JvalByYlRxeWFyMlIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.kEj1rV_Jh1q1f2g2ldY3Y4xv537O8hMilOH6E4sIG8M_9tWwxzNrexRxgoj3Ukvs8laB7KjIAOt_vHbfYuoC6r_eDrSbzkK7LDHT281G42i3StJDXqu5TwVR3ufsjgteeS7UM8EdyiCKYNk9gejTIApwC8E8aremh_BPpjBSAij5Y9yvyCKH4EG9Sxu6k9MleZjCvwmUML0AXoszC97k5dKsZfRZ9akVB_7Cuws0Z0dXBLDgRa7DelbgqiZ4zqdlr2Kq7WXYJCMxl8qFe6fSeknYnc69XzvUnq00ZV8VFvnNRodwlBD2jwmcguRrCIG5Avv7xNV3aU_TUKUp-rWgBQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"app-user\",\"ReadPriv\"],[\"admin\",\"WritePriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTU4NzgsImlhdCI6MTY0NTUxNDY3OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJSMG9COVJ0bmJ2T3JvalByYlRxeWFyMlIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.kEj1rV_Jh1q1f2g2ldY3Y4xv537O8hMilOH6E4sIG8M_9tWwxzNrexRxgoj3Ukvs8laB7KjIAOt_vHbfYuoC6r_eDrSbzkK7LDHT281G42i3StJDXqu5TwVR3ufsjgteeS7UM8EdyiCKYNk9gejTIApwC8E8aremh_BPpjBSAij5Y9yvyCKH4EG9Sxu6k9MleZjCvwmUML0AXoszC97k5dKsZfRZ9akVB_7Cuws0Z0dXBLDgRa7DelbgqiZ4zqdlr2Kq7WXYJCMxl8qFe6fSeknYnc69XzvUnq00ZV8VFvnNRodwlBD2jwmcguRrCIG5Avv7xNV3aU_TUKUp-rWgBQ"} +2022/02/22 12:54:38 [DEBUG] Exit from do method +2022/02/22 12:54:38 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 12:54:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 12:54:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 12:54:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000284040 3980 [] false false map[] 0xc00077a300 0xc000136420} +2022/02/22 12:54:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 12:54:39 [DEBUG] Exit from do method +2022/02/22 12:54:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 12:54:39 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:39 [DEBUG] New state was assigned lineage "44865795-0d04-12b2-4545-43235af3a84a" +2022/02/22 12:54:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 12:54:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:54:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:54:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:54:39 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:54:39 [DEBUG] Starting graph walk: walkPlan +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:39 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:39 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:39 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:39 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_u4psd_invalid" + tenant_id: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_u4psd" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 12:54:39 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 12:54:39 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 12:54:39 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:54:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 12:54:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 12:54:39 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 12:54:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:54:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:54:39 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 12:54:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:39 [DEBUG] Starting graph walk: walkApply +2022/02/22 12:54:39 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 12:54:39 [DEBUG] : Beginning Create +2022/02/22 12:54:39 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:39 [DEBUG] Begin Injection +2022/02/22 12:54:39 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:39 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bea840 160 [] false false map[] 0xc000832600 0xc000136420} +2022/02/22 12:54:39 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:54:39 [DEBUG] Exit from do method +2022/02/22 12:54:39 [DEBUG] 62148fb71b00009572fd0647: Creation finished successfully +2022/02/22 12:54:39 [DEBUG] 62148fb71b00009572fd0647: Beginning Read +2022/02/22 12:54:39 id: 62148fb71b00009572fd0647 +2022/02/22 12:54:39 HTTP request GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:39 [DEBUG] Begin Injection +2022/02/22 12:54:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050e140 160 [] false false map[] 0xc00027b100 0xc000136420} +2022/02/22 12:54:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 {"id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:54:39 [DEBUG] Exit from do method +2022/02/22 12:54:39 Cont: {"desc":"","id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:54:39 Policy: {62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 12:54:39 DHCPRELAY POLICY: &{62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 12:54:39 providerList: [] +2022/02/22 12:54:39 [DEBUG] 62148fb71b00009572fd0647: Read finished successfully +2022/02/22 12:54:39 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 12:54:39 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:39 [DEBUG] Begin Injection +2022/02/22 12:54:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1762] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000beaa00 1762 [] false false map[] 0xc00077a400 0xc000136420} +2022/02/22 12:54:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"62148e3d1b00003972fd0646","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 12:54:40 [DEBUG] Exit from do method +2022/02/22 12:54:40 [ERROR] : eval: *terraform.EvalReadData, err: DHCP Relay Policy with name: acctest_u4psd_invalid not found +2022/02/22 12:54:40 [ERROR] : eval: *terraform.EvalSequence, err: DHCP Relay Policy with name: acctest_u4psd_invalid not found +2022/02/22 12:54:40 [DEBUG] New state was assigned lineage "620896f0-ff54-1755-9189-311e11d91be7" +2022/02/22 12:54:40 [DEBUG] Test: Executing step 3 +2022/02/22 12:54:40 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:54:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:54:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:40 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:40 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:54:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:54:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:54:40 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 12:54:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:54:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 12:54:40 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:54:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:54:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:54:40 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:54:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 12:54:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:40 [DEBUG] : Beginning Read +2022/02/22 12:54:40 HTTP request GET mso/api/v1/tenants +2022/02/22 12:54:40 [DEBUG] Begin Injection +2022/02/22 12:54:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 12:54:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 12:54:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 12:54:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ac6e80 3980 [] false false map[] 0xc00077a500 0xc000136420} +2022/02/22 12:54:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 12:54:40 [DEBUG] Exit from do method +2022/02/22 12:54:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 12:54:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:40 [DEBUG] 62148fb71b00009572fd0647: Beginning Read +2022/02/22 12:54:40 id: 62148fb71b00009572fd0647 +2022/02/22 12:54:40 HTTP request GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:40 [DEBUG] Begin Injection +2022/02/22 12:54:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001de3c0 160 [] false false map[] 0xc00077aa00 0xc000136420} +2022/02/22 12:54:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 {"id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:54:41 [DEBUG] Exit from do method +2022/02/22 12:54:41 Cont: {"desc":"","id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:54:41 Policy: {62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 12:54:41 DHCPRELAY POLICY: &{62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 12:54:41 providerList: [] +2022/02/22 12:54:41 [DEBUG] 62148fb71b00009572fd0647: Read finished successfully +2022/02/22 12:54:41 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:41 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 12:54:41 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:41 [DEBUG] Begin Injection +2022/02/22 12:54:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1762] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a6040 1762 [] false false map[] 0xc00077b000 0xc000136420} +2022/02/22 12:54:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"62148e3d1b00003972fd0646","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 12:54:41 [DEBUG] Exit from do method +2022/02/22 12:54:41 HTTP request GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:41 [DEBUG] Begin Injection +2022/02/22 12:54:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001de7c0 160 [] false false map[] 0xc000392500 0xc000136420} +2022/02/22 12:54:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 {"id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:54:41 [DEBUG] Exit from do method +2022/02/22 12:54:41 Cont: {"desc":"","id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 12:54:41 Policy: {62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 12:54:41 DHCPRELAY POLICY: &{62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 12:54:41 providerList: [] +2022/02/22 12:54:41 [DEBUG] 62148fb71b00009572fd0647: Import finished successfully +2022/02/22 12:54:41 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:41 [DEBUG] New state was assigned lineage "7ad00c5f-8729-b4d1-a12d-588f6d212120" +2022/02/22 12:54:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 12:54:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:54:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:54:41 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:54:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 12:54:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:41 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:41 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_u4psd" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.228.132" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1" + id: "62148fb71b00009572fd0647" => "62148fb71b00009572fd0647" + name: "acctest_u4psd" => "acctest_u4psd" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 62148fb71b00009572fd0647 + provider = provider.mso + description = + name = acctest_u4psd + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 62148fb71b00009572fd0647 + provider = provider.mso + description = + name = acctest_u4psd + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 12:54:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 12:54:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:54:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:54:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:54:41 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:54:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 12:54:41 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 12:54:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:41 [DEBUG] Starting graph walk: walkApply +2022/02/22 12:54:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 12:54:41 [DEBUG] 62148fb71b00009572fd0647: Beginning Policy Update +2022/02/22 12:54:41 HTTP request PUT mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:41 [DEBUG] Begin Injection +2022/02/22 12:54:41 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:41 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a180 351 [] false false map[] 0xc000392f00 0xc000136420} +2022/02/22 12:54:41 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 {"id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.132","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:54:41 [DEBUG] Exit from do method +2022/02/22 12:54:41 [DEBUG] Policy Update finished successfully: 62148fb71b00009572fd0647 +2022/02/22 12:54:41 [DEBUG] 62148fb71b00009572fd0647: Beginning Read +2022/02/22 12:54:41 id: 62148fb71b00009572fd0647 +2022/02/22 12:54:41 HTTP request GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:41 [DEBUG] Begin Injection +2022/02/22 12:54:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001963c0 351 [] false false map[] 0xc000ae0a00 0xc000136420} +2022/02/22 12:54:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 {"id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.132","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:54:42 [DEBUG] Exit from do method +2022/02/22 12:54:42 Cont: {"desc":"","id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.132","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 12:54:42 Policy: {62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.132 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 12:54:42 DHCPRELAY POLICY: &{62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.132 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 12:54:42 providerList: [map[dhcp_server_address:1.2.228.132 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 12:54:42 [DEBUG] 62148fb71b00009572fd0647: Read finished successfully +2022/02/22 12:54:42 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 12:54:42 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 12:54:42 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:42 [DEBUG] Begin Injection +2022/02/22 12:54:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 12:54:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1953] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058de80 1953 [] false false map[] 0xc00077a700 0xc000136420} +2022/02/22 12:54:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"62148e3d1b00003972fd0646","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.132","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 12:54:42 [DEBUG] Exit from do method +2022/02/22 12:54:42 HTTP request GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:42 [DEBUG] Begin Injection +2022/02/22 12:54:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000196680 351 [] false false map[] 0xc00077a800 0xc000136420} +2022/02/22 12:54:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 {"id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.132","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:54:42 [DEBUG] Exit from do method +2022/02/22 12:54:42 Cont: {"desc":"","id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.132","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 12:54:42 Policy: {62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.132 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 12:54:42 DHCPRELAY POLICY: &{62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.132 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 12:54:42 providerList: [map[dhcp_server_address:1.2.228.132 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 12:54:42 [DEBUG] 62148fb71b00009572fd0647: Import finished successfully +2022/02/22 12:54:42 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:42 [DEBUG] New state was assigned lineage "4a023373-b9ff-ba3d-fc67-81f571ff961b" +2022/02/22 12:54:42 HTTP request GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:42 [DEBUG] Begin Injection +2022/02/22 12:54:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050e080 351 [] false false map[] 0xc00077a100 0xc000136420} +2022/02/22 12:54:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 {"id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.132","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:54:43 [DEBUG] Exit from do method +2022/02/22 12:54:43 Cont: {"desc":"","id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.132","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 12:54:43 Policy: {62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.132 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 12:54:43 [WARN] Test: Executing destroy step +2022/02/22 12:54:43 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:43 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 12:54:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:43 [DEBUG] Starting graph walk: walkValidate +2022/02/22 12:54:43 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:43 [WARN] Not fixing up EachModes for data.mso_tenant.test because it has no config +2022/02/22 12:54:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 12:54:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 12:54:43 [DEBUG] Resource state not found for node "mso_tenant.test", instance mso_tenant.test +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 12:54:43 [WARN] Provider "mso" produced an invalid plan for mso_tenant.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .site_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead + - .user_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:43 [DEBUG] 62148fb71b00009572fd0647: Beginning Read +2022/02/22 12:54:43 id: 62148fb71b00009572fd0647 +2022/02/22 12:54:43 HTTP request GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 [DEBUG] Begin Injection +2022/02/22 12:54:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c2a8c0 351 [] false false map[] 0xc0007fef00 0xc000136420} +2022/02/22 12:54:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 {"id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.132","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 12:54:43 [DEBUG] Exit from do method +2022/02/22 12:54:43 Cont: {"desc":"","id":"62148fb71b00009572fd0647","name":"acctest_u4psd","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.132","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 12:54:43 Policy: {62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.132 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 12:54:43 DHCPRELAY POLICY: &{62148fb71b00009572fd0647 acctest_u4psd dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.132 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 12:54:43 providerList: [map[dhcp_server_address:1.2.228.132 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 12:54:43 [DEBUG] 62148fb71b00009572fd0647: Read finished successfully +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:43 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:43 [DEBUG] New state was assigned lineage "7ee41f4f-8040-e97e-e616-a2b9df0a13e5" +2022/02/22 12:54:43 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 12:54:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 12:54:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:43 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 12:54:43 [WARN] Test: Step plan: DIFF: + +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.228.132" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + id: "62148fb71b00009572fd0647" => "" + name: "acctest_u4psd" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +mso_dhcp_relay_policy.test: + ID = 62148fb71b00009572fd0647 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.228.132 + dhcp_relay_policy_provider.0.epg = /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 + dhcp_relay_policy_provider.0.external_epg = + name = acctest_u4psd + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 12:54:43 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 12:54:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_tenant.test (prepare state)" references: [] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 12:54:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:43 DestroyEdgeTransformer: pruning unused resource node mso_tenant.test (prepare state) +2022/02/22 12:54:43 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 12:54:43 DestroyEdgeTransformer: pruning unused resource node data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 12:54:43 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 12:54:43 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 12:54:43 [DEBUG] 62148fb71b00009572fd0647: Beginning Read +2022/02/22 12:54:43 HTTP request DELETE mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 [DEBUG] Begin Injection +2022/02/22 12:54:43 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 07:24:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0007db000 0xc000136420} +2022/02/22 12:54:43 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 [DEBUG] : Read finished successfully +2022/02/22 12:54:43 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:43 [DEBUG] New state was assigned lineage "e33b49ae-c105-684b-5139-4a92d6ed5117" +2022/02/22 12:54:43 HTTP request GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 [DEBUG] Begin Injection +2022/02/22 12:54:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 +2022/02/22 12:54:44 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:24:43 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00050e280 86 [] false false map[] 0xc0007fe000 0xc000136420} +2022/02/22 12:54:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/62148fb71b00009572fd0647 {"code":141,"message":"Resource Not Found: Policy 62148fb71b00009572fd0647 not found"} +2022/02/22 12:54:44 [DEBUG] Exit from do method +2022/02/22 12:54:44 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 12:54:44 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 12:54:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 12:54:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 12:54:44 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 12:54:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 12:54:44 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 12:54:44 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 12:54:44 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 12:54:44 [DEBUG] provider has no plugin.Client +2022/02/22 12:54:44 [DEBUG] New state was assigned lineage "a612324f-4bd1-feb5-0a11-a351c2280f06" +2022/02/22 12:54:44 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 12:54:44 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 13:22:36 [DEBUG] Test: Executing step 0 +2022/02/22 13:22:36 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 13:22:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 13:22:36 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:36 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 13:22:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 13:22:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 13:22:36 [DEBUG] Test: Executing step 1 +2022/02/22 13:22:36 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 13:22:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 13:22:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:36 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 13:22:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "rkrui" is not expected here. +2022/02/22 13:22:36 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "rkrui" is not expected here. +2022/02/22 13:22:36 [DEBUG] Test: Executing step 2 +2022/02/22 13:22:36 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 13:22:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 13:22:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:36 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 13:22:36 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 13:22:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 13:22:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:36 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 13:22:36 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:36 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 13:22:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:36 [DEBUG] : Beginning Read +2022/02/22 13:22:36 HTTP request GET mso/api/v1/tenants +2022/02/22 13:22:36 [DEBUG] Begin Injection +2022/02/22 13:22:36 HTTP request POST /login +2022/02/22 13:22:36 HTTP request after injection POST /login +2022/02/22 13:22:36 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 13:22:39 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 13:22:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:38 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTc1NTgsImlhdCI6MTY0NTUxNjM1OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJuNFlBRlZYcFdxT3hZdkRpV3pVYTY2d1giLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.GN_1-LXsY4d2LgIe1nDSw_VyB2bEjoHnip41hPg2-xsXDShXkVioz2N3AZr3i-cIcx-RjRSYtbCAru8svpKZz3KDqeBdxNsZWzOGiefzR8Ek-GqEXMGw3Bex9d6OSSPCC65rWG0itWyKnn1xjIu2zkB8EOiR5gCIfBR1J0wg-ehFsgV-AK-UM_kFeybcE_HlTeVZQjd_9zNgd35sXrep6AjZzeCffy2ExCVK89osKqlicM4lF1lLUieqUIgL7--w3R_Jgtgs65N_8DDrhck--6jJ7lQz0gxK_25TUeIDHN3nkIKQpqYA-yufcTZ3D_Sv5FdHiX9gcuLLYEWaATjtLA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00004a240 -1 [chunked] false false map[] 0xc000788800 0xc0006080b0} +2022/02/22 13:22:39 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTc1NTgsImlhdCI6MTY0NTUxNjM1OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJuNFlBRlZYcFdxT3hZdkRpV3pVYTY2d1giLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.GN_1-LXsY4d2LgIe1nDSw_VyB2bEjoHnip41hPg2-xsXDShXkVioz2N3AZr3i-cIcx-RjRSYtbCAru8svpKZz3KDqeBdxNsZWzOGiefzR8Ek-GqEXMGw3Bex9d6OSSPCC65rWG0itWyKnn1xjIu2zkB8EOiR5gCIfBR1J0wg-ehFsgV-AK-UM_kFeybcE_HlTeVZQjd_9zNgd35sXrep6AjZzeCffy2ExCVK89osKqlicM4lF1lLUieqUIgL7--w3R_Jgtgs65N_8DDrhck--6jJ7lQz0gxK_25TUeIDHN3nkIKQpqYA-yufcTZ3D_Sv5FdHiX9gcuLLYEWaATjtLA","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MTc1NTgsImlhdCI6MTY0NTUxNjM1OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJuNFlBRlZYcFdxT3hZdkRpV3pVYTY2d1giLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.GN_1-LXsY4d2LgIe1nDSw_VyB2bEjoHnip41hPg2-xsXDShXkVioz2N3AZr3i-cIcx-RjRSYtbCAru8svpKZz3KDqeBdxNsZWzOGiefzR8Ek-GqEXMGw3Bex9d6OSSPCC65rWG0itWyKnn1xjIu2zkB8EOiR5gCIfBR1J0wg-ehFsgV-AK-UM_kFeybcE_HlTeVZQjd_9zNgd35sXrep6AjZzeCffy2ExCVK89osKqlicM4lF1lLUieqUIgL7--w3R_Jgtgs65N_8DDrhck--6jJ7lQz0gxK_25TUeIDHN3nkIKQpqYA-yufcTZ3D_Sv5FdHiX9gcuLLYEWaATjtLA"} +2022/02/22 13:22:39 [DEBUG] Exit from do method +2022/02/22 13:22:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 13:22:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 13:22:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 13:22:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000890280 3980 [] false false map[] 0xc000788700 0xc0006080b0} +2022/02/22 13:22:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 13:22:39 [DEBUG] Exit from do method +2022/02/22 13:22:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 13:22:39 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:39 [DEBUG] New state was assigned lineage "27cdc4dd-7c64-172a-ccca-8b80e98361ce" +2022/02/22 13:22:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 13:22:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 13:22:39 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:39 [DEBUG] Starting graph walk: walkPlan +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:39 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:39 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:39 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:39 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_yrc41_invalid" + tenant_id: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_yrc41" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 13:22:39 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 13:22:39 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 13:22:39 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 13:22:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 13:22:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:39 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 13:22:39 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 13:22:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 13:22:39 [DEBUG] Starting graph walk: walkApply +2022/02/22 13:22:39 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 13:22:39 [DEBUG] : Beginning Create +2022/02/22 13:22:39 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:39 [DEBUG] Begin Injection +2022/02/22 13:22:39 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:39 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000155780 160 [] false false map[] 0xc000788200 0xc0006080b0} +2022/02/22 13:22:39 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 13:22:39 [DEBUG] Exit from do method +2022/02/22 13:22:39 [DEBUG] 621496471b0000fa73fd064a: Creation finished successfully +2022/02/22 13:22:39 [DEBUG] 621496471b0000fa73fd064a: Beginning Read +2022/02/22 13:22:39 id: 621496471b0000fa73fd064a +2022/02/22 13:22:39 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:39 [DEBUG] Begin Injection +2022/02/22 13:22:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ac00 160 [] false false map[] 0xc00091e700 0xc0006080b0} +2022/02/22 13:22:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 13:22:40 [DEBUG] Exit from do method +2022/02/22 13:22:40 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 13:22:40 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 13:22:40 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 13:22:40 providerList: [] +2022/02/22 13:22:40 [DEBUG] 621496471b0000fa73fd064a: Read finished successfully +2022/02/22 13:22:40 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 13:22:40 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:40 [DEBUG] Begin Injection +2022/02/22 13:22:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1766] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000890b80 1766 [] false false map[] 0xc00091f100 0xc0006080b0} +2022/02/22 13:22:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 13:22:40 [DEBUG] Exit from do method +2022/02/22 13:22:40 [ERROR] : eval: *terraform.EvalReadData, err: DHCP Relay Policy with name: acctest_yrc41_invalid not found +2022/02/22 13:22:40 [ERROR] : eval: *terraform.EvalSequence, err: DHCP Relay Policy with name: acctest_yrc41_invalid not found +2022/02/22 13:22:40 [DEBUG] New state was assigned lineage "cb48cec3-ee34-ad31-fa89-98a5ba5d810a" +2022/02/22 13:22:40 [DEBUG] Test: Executing step 3 +2022/02/22 13:22:40 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 13:22:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 13:22:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:40 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 13:22:40 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 13:22:40 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 13:22:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 13:22:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:40 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 13:22:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 13:22:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:40 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 13:22:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:40 [DEBUG] : Beginning Read +2022/02/22 13:22:40 HTTP request GET mso/api/v1/tenants +2022/02/22 13:22:40 [DEBUG] Begin Injection +2022/02/22 13:22:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 13:22:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 13:22:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 13:22:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000154080 3980 [] false false map[] 0xc00091e100 0xc0006080b0} +2022/02/22 13:22:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 13:22:40 [DEBUG] Exit from do method +2022/02/22 13:22:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 13:22:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:40 [DEBUG] 621496471b0000fa73fd064a: Beginning Read +2022/02/22 13:22:40 id: 621496471b0000fa73fd064a +2022/02/22 13:22:40 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:40 [DEBUG] Begin Injection +2022/02/22 13:22:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000155b00 160 [] false false map[] 0xc000a92500 0xc0006080b0} +2022/02/22 13:22:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 13:22:41 [DEBUG] Exit from do method +2022/02/22 13:22:41 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 13:22:41 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 13:22:41 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 13:22:41 providerList: [] +2022/02/22 13:22:41 [DEBUG] 621496471b0000fa73fd064a: Read finished successfully +2022/02/22 13:22:41 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:41 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 13:22:41 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:41 [DEBUG] Begin Injection +2022/02/22 13:22:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1766] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ae80 1766 [] false false map[] 0xc000a92a00 0xc0006080b0} +2022/02/22 13:22:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 13:22:41 [DEBUG] Exit from do method +2022/02/22 13:22:41 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:41 [DEBUG] Begin Injection +2022/02/22 13:22:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a080 160 [] false false map[] 0xc0006e2000 0xc0006080b0} +2022/02/22 13:22:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 13:22:41 [DEBUG] Exit from do method +2022/02/22 13:22:41 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 13:22:41 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 13:22:41 DHCPRELAY policy in datasource: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 13:22:41 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 13:22:41 providerList: [] +2022/02/22 13:22:41 [DEBUG] 621496471b0000fa73fd064a: Import finished successfully +2022/02/22 13:22:41 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:41 [DEBUG] New state was assigned lineage "1e488516-7058-d70d-932a-45328e5d0b06" +2022/02/22 13:22:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 13:22:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 13:22:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:41 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:41 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:41 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_yrc41" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.228.156" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1" + id: "621496471b0000fa73fd064a" => "621496471b0000fa73fd064a" + name: "acctest_yrc41" => "acctest_yrc41" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 621496471b0000fa73fd064a + provider = provider.mso + description = + name = acctest_yrc41 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621496471b0000fa73fd064a + provider = provider.mso + description = + name = acctest_yrc41 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 13:22:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 13:22:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 13:22:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:41 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 13:22:41 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 13:22:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:41 [DEBUG] Starting graph walk: walkApply +2022/02/22 13:22:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 13:22:41 [DEBUG] 621496471b0000fa73fd064a: Beginning Policy Update +2022/02/22 13:22:41 HTTP request PUT mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:41 [DEBUG] Begin Injection +2022/02/22 13:22:41 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:41 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000315dc0 351 [] false false map[] 0xc000072500 0xc0006080b0} +2022/02/22 13:22:41 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 13:22:41 [DEBUG] Exit from do method +2022/02/22 13:22:41 [DEBUG] Policy Update finished successfully: 621496471b0000fa73fd064a +2022/02/22 13:22:41 [DEBUG] 621496471b0000fa73fd064a: Beginning Read +2022/02/22 13:22:41 id: 621496471b0000fa73fd064a +2022/02/22 13:22:41 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:41 [DEBUG] Begin Injection +2022/02/22 13:22:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001a1240 351 [] false false map[] 0xc000072700 0xc0006080b0} +2022/02/22 13:22:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 13:22:42 [DEBUG] Exit from do method +2022/02/22 13:22:42 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 13:22:42 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:42 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:42 providerList: [map[dhcp_server_address:1.2.228.156 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 13:22:42 [DEBUG] 621496471b0000fa73fd064a: Read finished successfully +2022/02/22 13:22:42 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 13:22:42 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 13:22:42 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:42 [DEBUG] Begin Injection +2022/02/22 13:22:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1957] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ac00 1957 [] false false map[] 0xc00091e600 0xc0006080b0} +2022/02/22 13:22:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 13:22:42 [DEBUG] Exit from do method +2022/02/22 13:22:42 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:42 [DEBUG] Begin Injection +2022/02/22 13:22:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000784040 351 [] false false map[] 0xc000a92b00 0xc0006080b0} +2022/02/22 13:22:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 13:22:42 [DEBUG] Exit from do method +2022/02/22 13:22:42 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 13:22:42 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:42 DHCPRELAY policy in datasource: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:42 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:42 providerList: [map[dhcp_server_address:1.2.228.156 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 13:22:42 [DEBUG] 621496471b0000fa73fd064a: Import finished successfully +2022/02/22 13:22:42 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:42 [DEBUG] New state was assigned lineage "1801576f-fd3d-0a1e-1b30-47629518f11f" +2022/02/22 13:22:42 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:42 [DEBUG] Begin Injection +2022/02/22 13:22:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a180 351 [] false false map[] 0xc000788200 0xc0006080b0} +2022/02/22 13:22:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 13:22:43 [DEBUG] Exit from do method +2022/02/22 13:22:43 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 13:22:43 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:43 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 13:22:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 13:22:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:43 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:43 [DEBUG] Starting graph walk: walkPlan +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:43 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 13:22:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 13:22:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 13:22:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:43 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:43 [DEBUG] : Beginning Read +2022/02/22 13:22:43 HTTP request GET mso/api/v1/tenants +2022/02/22 13:22:43 [DEBUG] Begin Injection +2022/02/22 13:22:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 13:22:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 13:22:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 13:22:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004daac0 3980 [] false false map[] 0xc00091e300 0xc0006080b0} +2022/02/22 13:22:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 13:22:43 [DEBUG] Exit from do method +2022/02/22 13:22:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:43 [DEBUG] 621496471b0000fa73fd064a: Beginning Read +2022/02/22 13:22:43 id: 621496471b0000fa73fd064a +2022/02/22 13:22:43 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:43 [DEBUG] Begin Injection +2022/02/22 13:22:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004dac00 351 [] false false map[] 0xc000788700 0xc0006080b0} +2022/02/22 13:22:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 13:22:43 [DEBUG] Exit from do method +2022/02/22 13:22:43 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 13:22:43 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:43 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:43 providerList: [map[dhcp_server_address:1.2.228.156 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 13:22:43 [DEBUG] 621496471b0000fa73fd064a: Read finished successfully +2022/02/22 13:22:43 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:43 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 13:22:43 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:43 [DEBUG] Begin Injection +2022/02/22 13:22:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1957] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004dbf00 1957 [] false false map[] 0xc000788900 0xc0006080b0} +2022/02/22 13:22:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 13:22:44 [DEBUG] Exit from do method +2022/02/22 13:22:44 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:44 [DEBUG] Begin Injection +2022/02/22 13:22:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000890000 351 [] false false map[] 0xc000a92700 0xc0006080b0} +2022/02/22 13:22:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 13:22:44 [DEBUG] Exit from do method +2022/02/22 13:22:44 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 13:22:44 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:44 DHCPRELAY policy in datasource: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:44 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:44 providerList: [map[dhcp_server_address:1.2.228.156 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 13:22:44 [DEBUG] 621496471b0000fa73fd064a: Import finished successfully +2022/02/22 13:22:44 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:44 [DEBUG] New state was assigned lineage "abb57f79-adbe-8e17-34e9-335bd18a30f1" +2022/02/22 13:22:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 13:22:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:44 [DEBUG] Starting graph walk: walkPlan +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:44 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:44 [DEBUG] Test: Executing step 4 +2022/02/22 13:22:44 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:44 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 13:22:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:44 [DEBUG] Starting graph walk: walkValidate +2022/02/22 13:22:44 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 13:22:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 13:22:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:44 [DEBUG] : Beginning Read +2022/02/22 13:22:44 HTTP request GET mso/api/v1/tenants +2022/02/22 13:22:44 [DEBUG] Begin Injection +2022/02/22 13:22:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 13:22:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 13:22:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 13:22:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00085c840 3980 [] false false map[] 0xc000072300 0xc0006080b0} +2022/02/22 13:22:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 13:22:44 [DEBUG] Exit from do method +2022/02/22 13:22:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 13:22:44 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 13:22:44 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 13:22:44 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 13:22:44 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 13:22:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:44 [DEBUG] 621496471b0000fa73fd064a: Beginning Read +2022/02/22 13:22:44 id: 621496471b0000fa73fd064a +2022/02/22 13:22:44 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:44 [DEBUG] Begin Injection +2022/02/22 13:22:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a780 351 [] false false map[] 0xc000072b00 0xc0006080b0} +2022/02/22 13:22:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 13:22:45 [DEBUG] Exit from do method +2022/02/22 13:22:45 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 13:22:45 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:45 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:45 providerList: [map[dhcp_server_address:1.2.228.156 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 13:22:45 [DEBUG] 621496471b0000fa73fd064a: Read finished successfully +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:45 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 13:22:45 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:45 [DEBUG] Begin Injection +2022/02/22 13:22:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1957] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000173440 1957 [] false false map[] 0xc000a92a00 0xc0006080b0} +2022/02/22 13:22:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 13:22:45 [DEBUG] Exit from do method +2022/02/22 13:22:45 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:45 [DEBUG] Begin Injection +2022/02/22 13:22:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b980 351 [] false false map[] 0xc000d8b500 0xc0006080b0} +2022/02/22 13:22:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 13:22:45 [DEBUG] Exit from do method +2022/02/22 13:22:45 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 13:22:45 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:45 DHCPRELAY policy in datasource: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:45 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:45 providerList: [map[dhcp_server_address:1.2.228.156 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 13:22:45 [DEBUG] 621496471b0000fa73fd064a: Import finished successfully +2022/02/22 13:22:45 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:45 [DEBUG] New state was assigned lineage "05b66955-94da-2130-384a-781f39c52af0" +2022/02/22 13:22:45 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 13:22:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:45 [DEBUG] Starting graph walk: walkPlan +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:45 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 13:22:45 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 13:22:45 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 13:22:45 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:45 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:45 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_yrc41" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.228.156" => "1.2.228.156" + dhcp_relay_policy_provider.0.epg: "/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "621496471b0000fa73fd064a" => "621496471b0000fa73fd064a" + name: "acctest_yrc41" => "acctest_yrc41" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_nakb8" + template_name: "" => "acctest_dkgsr" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_7obdx" + external_epg_name: "" => "acctest_7obdx" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_dkgsr" + vrf_name: "" => "acctest_7obdx" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_7obdx" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_7obdx" + schema_id: "" => "" + template: "" => "acctest_dkgsr" + vzany: "" => "" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 621496471b0000fa73fd064a + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.228.156 + dhcp_relay_policy_provider.0.epg = /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_yrc41 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 621496471b0000fa73fd064a + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.228.156 + dhcp_relay_policy_provider.0.epg = /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_yrc41 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 13:22:45 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 13:22:45 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 13:22:45 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 13:22:45 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 13:22:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test (prepare state)] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 13:22:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 13:22:45 [DEBUG] Starting graph walk: walkApply +2022/02/22 13:22:45 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 13:22:45 [DEBUG] Schema: Beginning Creation +2022/02/22 13:22:45 HTTP request POST mso/api/v1/schemas +2022/02/22 13:22:45 [DEBUG] Begin Injection +2022/02/22 13:22:45 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 13:22:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 13:22:46 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 13:22:46 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214964e1d0000d64c4f9e4b] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008918c0 400 [] false false map[] 0xc000a92400 0xc0006080b0} +2022/02/22 13:22:46 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214964e1d0000d64c4f9e4b","displayName":"acctest_nakb8","description":"","templates":[{"name":"acctest_dkgsr","displayName":"acctest_dkgsr","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 13:22:46 [DEBUG] Exit from do method +2022/02/22 13:22:46 [DEBUG] 6214964e1d0000d64c4f9e4b: Schema Creation finished successfully +2022/02/22 13:22:46 [DEBUG] 6214964e1d0000d64c4f9e4b: Beginning Read +2022/02/22 13:22:46 HTTP request GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:46 [DEBUG] Begin Injection +2022/02/22 13:22:46 HTTP request after injection GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000891a80 400 [] false false map[] 0xc000788f00 0xc0006080b0} +2022/02/22 13:22:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b {"id":"6214964e1d0000d64c4f9e4b","displayName":"acctest_nakb8","description":"","templates":[{"name":"acctest_dkgsr","displayName":"acctest_dkgsr","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 13:22:46 [DEBUG] Exit from do method +2022/02/22 13:22:46 [DEBUG] 6214964e1d0000d64c4f9e4b: Read finished successfully +2022/02/22 13:22:46 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 13:22:46 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 13:22:46 HTTP request PATCH mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:46 [DEBUG] Begin Injection +2022/02/22 13:22:46 HTTP request after injection PATCH mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:46 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 07:52:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00091e000 0xc0006080b0} +2022/02/22 13:22:46 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:46 [DEBUG] acctest_7obdx: Creation finished successfully +2022/02/22 13:22:46 [DEBUG] acctest_7obdx: Beginning Read +2022/02/22 13:22:46 HTTP request GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:46 [DEBUG] Begin Injection +2022/02/22 13:22:46 HTTP request after injection GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004da2c0 768 [] false false map[] 0xc000a92100 0xc0006080b0} +2022/02/22 13:22:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b {"id":"6214964e1d0000d64c4f9e4b","displayName":"acctest_nakb8","description":"","templates":[{"name":"acctest_dkgsr","displayName":"acctest_dkgsr","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 13:22:47 [DEBUG] Exit from do method +2022/02/22 13:22:47 currentvrfname acctest_7obdx +2022/02/22 13:22:47 found correct vrfname +2022/02/22 13:22:47 [DEBUG] acctest_7obdx: Read finished successfully +2022/02/22 13:22:47 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 13:22:47 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 13:22:47 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 13:22:47 HTTP request PATCH mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:47 [DEBUG] Begin Injection +2022/02/22 13:22:47 HTTP request after injection PATCH mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:47 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 07:52:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a92b00 0xc0006080b0} +2022/02/22 13:22:47 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:47 [DEBUG] : Beginning Read +2022/02/22 13:22:47 HTTP request GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:47 [DEBUG] Begin Injection +2022/02/22 13:22:47 HTTP request after injection GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001a0b40 1147 [] false false map[] 0xc000a92d00 0xc0006080b0} +2022/02/22 13:22:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b {"id":"6214964e1d0000d64c4f9e4b","displayName":"acctest_nakb8","description":"","templates":[{"name":"acctest_dkgsr","displayName":"acctest_dkgsr","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","extEpgType":"on-premise","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 13:22:47 [DEBUG] Exit from do method +2022/02/22 13:22:47 [DEBUG] /schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx: Read finished successfully +2022/02/22 13:22:47 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 13:22:47 [DEBUG] 621496471b0000fa73fd064a: Beginning Policy Update +2022/02/22 13:22:47 HTTP request PUT mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:47 [DEBUG] Begin Injection +2022/02/22 13:22:47 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:48 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a940 361 [] false false map[] 0xc000a93800 0xc0006080b0} +2022/02/22 13:22:48 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 13:22:48 [DEBUG] Exit from do method +2022/02/22 13:22:48 [DEBUG] Policy Update finished successfully: 621496471b0000fa73fd064a +2022/02/22 13:22:48 [DEBUG] 621496471b0000fa73fd064a: Beginning Read +2022/02/22 13:22:48 id: 621496471b0000fa73fd064a +2022/02/22 13:22:48 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:48 [DEBUG] Begin Injection +2022/02/22 13:22:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000890300 361 [] false false map[] 0xc000a93a00 0xc0006080b0} +2022/02/22 13:22:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 13:22:48 [DEBUG] Exit from do method +2022/02/22 13:22:48 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":3} +2022/02/22 13:22:48 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:48 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:48 providerList: [map[dhcp_server_address:1.2.228.156 epg: external_epg:/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 13:22:48 [DEBUG] 621496471b0000fa73fd064a: Read finished successfully +2022/02/22 13:22:48 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 13:22:48 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 13:22:48 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:48 [DEBUG] Begin Injection +2022/02/22 13:22:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1967] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000890040 1967 [] false false map[] 0xc00091e600 0xc0006080b0} +2022/02/22 13:22:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3}]} +2022/02/22 13:22:48 [DEBUG] Exit from do method +2022/02/22 13:22:48 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:48 [DEBUG] Begin Injection +2022/02/22 13:22:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000314a80 361 [] false false map[] 0xc00091e000 0xc0006080b0} +2022/02/22 13:22:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 13:22:49 [DEBUG] Exit from do method +2022/02/22 13:22:49 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":3} +2022/02/22 13:22:49 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:49 DHCPRELAY policy in datasource: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:49 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:49 providerList: [map[dhcp_server_address:1.2.228.156 epg: external_epg:/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 13:22:49 [DEBUG] 621496471b0000fa73fd064a: Import finished successfully +2022/02/22 13:22:49 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:49 [DEBUG] New state was assigned lineage "1e6f09fb-3f2b-b710-e82b-2823a613ef49" +2022/02/22 13:22:49 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:49 [DEBUG] Begin Injection +2022/02/22 13:22:49 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a080 361 [] false false map[] 0xc000072100 0xc0006080b0} +2022/02/22 13:22:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 13:22:49 [DEBUG] Exit from do method +2022/02/22 13:22:49 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":3} +2022/02/22 13:22:49 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:49 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 13:22:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 13:22:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:49 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 13:22:49 [DEBUG] Starting graph walk: walkPlan +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:49 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:49 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 13:22:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 13:22:49 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 13:22:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 13:22:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 13:22:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 13:22:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:49 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:49 [DEBUG] : Beginning Read +2022/02/22 13:22:49 HTTP request GET mso/api/v1/tenants +2022/02/22 13:22:49 [DEBUG] Begin Injection +2022/02/22 13:22:49 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 13:22:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 13:22:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 13:22:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00075bd40 3980 [] false false map[] 0xc000072200 0xc0006080b0} +2022/02/22 13:22:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 13:22:49 [DEBUG] Exit from do method +2022/02/22 13:22:49 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 13:22:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 13:22:49 [DEBUG] 6214964e1d0000d64c4f9e4b: Beginning Read +2022/02/22 13:22:49 HTTP request GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:49 [DEBUG] Begin Injection +2022/02/22 13:22:49 HTTP request after injection GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b8c0 1147 [] false false map[] 0xc000a92b00 0xc0006080b0} +2022/02/22 13:22:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b {"id":"6214964e1d0000d64c4f9e4b","displayName":"acctest_nakb8","description":"","templates":[{"name":"acctest_dkgsr","displayName":"acctest_dkgsr","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","extEpgType":"on-premise","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 13:22:50 [DEBUG] Exit from do method +2022/02/22 13:22:50 [DEBUG] 6214964e1d0000d64c4f9e4b: Read finished successfully +2022/02/22 13:22:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 13:22:50 [DEBUG] acctest_7obdx: Beginning Read +2022/02/22 13:22:50 HTTP request GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:50 [DEBUG] Begin Injection +2022/02/22 13:22:50 HTTP request after injection GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00078fac0 1147 [] false false map[] 0xc000072800 0xc0006080b0} +2022/02/22 13:22:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b {"id":"6214964e1d0000d64c4f9e4b","displayName":"acctest_nakb8","description":"","templates":[{"name":"acctest_dkgsr","displayName":"acctest_dkgsr","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","extEpgType":"on-premise","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 13:22:50 [DEBUG] Exit from do method +2022/02/22 13:22:50 currentvrfname acctest_7obdx +2022/02/22 13:22:50 found correct vrfname +2022/02/22 13:22:50 [DEBUG] acctest_7obdx: Read finished successfully +2022/02/22 13:22:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 13:22:50 [DEBUG] /schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx: Beginning Read +2022/02/22 13:22:50 HTTP request GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:50 [DEBUG] Begin Injection +2022/02/22 13:22:50 HTTP request after injection GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000784040 1147 [] false false map[] 0xc000072d00 0xc0006080b0} +2022/02/22 13:22:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b {"id":"6214964e1d0000d64c4f9e4b","displayName":"acctest_nakb8","description":"","templates":[{"name":"acctest_dkgsr","displayName":"acctest_dkgsr","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","extEpgType":"on-premise","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 13:22:50 [DEBUG] Exit from do method +2022/02/22 13:22:50 [DEBUG] /schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx: Read finished successfully +2022/02/22 13:22:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:50 [DEBUG] 621496471b0000fa73fd064a: Beginning Read +2022/02/22 13:22:50 id: 621496471b0000fa73fd064a +2022/02/22 13:22:50 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:50 [DEBUG] Begin Injection +2022/02/22 13:22:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000891700 361 [] false false map[] 0xc000072700 0xc0006080b0} +2022/02/22 13:22:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 13:22:51 [DEBUG] Exit from do method +2022/02/22 13:22:51 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":3} +2022/02/22 13:22:51 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:51 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:51 providerList: [map[dhcp_server_address:1.2.228.156 epg: external_epg:/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 13:22:51 [DEBUG] 621496471b0000fa73fd064a: Read finished successfully +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:51 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 13:22:51 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:51 [DEBUG] Begin Injection +2022/02/22 13:22:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 13:22:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1967] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008917c0 1967 [] false false map[] 0xc000a92400 0xc0006080b0} +2022/02/22 13:22:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3}]} +2022/02/22 13:22:51 [DEBUG] Exit from do method +2022/02/22 13:22:51 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:51 [DEBUG] Begin Injection +2022/02/22 13:22:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000785a00 361 [] false false map[] 0xc000072800 0xc0006080b0} +2022/02/22 13:22:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 13:22:51 [DEBUG] Exit from do method +2022/02/22 13:22:51 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":3} +2022/02/22 13:22:51 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:51 DHCPRELAY policy in datasource: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:51 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:51 providerList: [map[dhcp_server_address:1.2.228.156 epg: external_epg:/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 13:22:51 [DEBUG] 621496471b0000fa73fd064a: Import finished successfully +2022/02/22 13:22:51 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:51 [DEBUG] New state was assigned lineage "29ea58ac-3eab-f945-235f-5c5ab3e73a92" +2022/02/22 13:22:51 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 13:22:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 13:22:51 [DEBUG] Starting graph walk: walkPlan +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:51 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:51 [DEBUG] Test: Executing step 5 +2022/02/22 13:22:51 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:51 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 13:22:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 13:22:51 [DEBUG] Starting graph walk: walkValidate +2022/02/22 13:22:51 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:51 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 13:22:51 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 13:22:51 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 13:22:51 [WARN] Not fixing up EachModes for data.mso_tenant.test because it has no config +2022/02/22 13:22:51 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 13:22:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 13:22:51 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 13:22:51 [DEBUG] Resource state not found for node "mso_tenant.test", instance mso_tenant.test +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 13:22:51 [DEBUG] 6214964e1d0000d64c4f9e4b: Beginning Read +2022/02/22 13:22:51 HTTP request GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:51 [DEBUG] Begin Injection +2022/02/22 13:22:51 HTTP request after injection GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:51 [WARN] Provider "mso" produced an invalid plan for mso_tenant.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .site_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead + - .user_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead +2022/02/22 13:22:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:51 [DEBUG] 621496471b0000fa73fd064a: Beginning Read +2022/02/22 13:22:51 id: 621496471b0000fa73fd064a +2022/02/22 13:22:51 HTTP request GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:51 [DEBUG] Begin Injection +2022/02/22 13:22:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000314080 1147 [] false false map[] 0xc000a92b00 0xc0006080b0} +2022/02/22 13:22:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b {"id":"6214964e1d0000d64c4f9e4b","displayName":"acctest_nakb8","description":"","templates":[{"name":"acctest_dkgsr","displayName":"acctest_dkgsr","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","extEpgType":"on-premise","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 13:22:52 [DEBUG] Exit from do method +2022/02/22 13:22:52 [DEBUG] 6214964e1d0000d64c4f9e4b: Read finished successfully +2022/02/22 13:22:52 [DEBUG] acctest_7obdx: Beginning Read +2022/02/22 13:22:52 HTTP request GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:52 [DEBUG] Begin Injection +2022/02/22 13:22:52 HTTP request after injection GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00071a600 361 [] false false map[] 0xc000a93000 0xc0006080b0} +2022/02/22 13:22:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a {"id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 13:22:52 [DEBUG] Exit from do method +2022/02/22 13:22:52 Cont: {"desc":"","id":"621496471b0000fa73fd064a","name":"acctest_yrc41","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.228.156","epgRef":"","externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":3} +2022/02/22 13:22:52 Policy: {621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:52 DHCPRELAY POLICY: &{621496471b0000fa73fd064a acctest_yrc41 dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx 1.2.228.156 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 13:22:52 providerList: [map[dhcp_server_address:1.2.228.156 epg: external_epg:/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 13:22:52 [DEBUG] 621496471b0000fa73fd064a: Read finished successfully +2022/02/22 13:22:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000314080 1147 [] false false map[] 0xc000072200 0xc0006080b0} +2022/02/22 13:22:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b {"id":"6214964e1d0000d64c4f9e4b","displayName":"acctest_nakb8","description":"","templates":[{"name":"acctest_dkgsr","displayName":"acctest_dkgsr","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","extEpgType":"on-premise","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 13:22:52 [DEBUG] Exit from do method +2022/02/22 13:22:52 currentvrfname acctest_7obdx +2022/02/22 13:22:52 found correct vrfname +2022/02/22 13:22:52 [DEBUG] acctest_7obdx: Read finished successfully +2022/02/22 13:22:52 [DEBUG] /schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx: Beginning Read +2022/02/22 13:22:52 HTTP request GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:52 [DEBUG] Begin Injection +2022/02/22 13:22:52 HTTP request after injection GET mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004da040 1147 [] false false map[] 0xc000072700 0xc0006080b0} +2022/02/22 13:22:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b {"id":"6214964e1d0000d64c4f9e4b","displayName":"acctest_nakb8","description":"","templates":[{"name":"acctest_dkgsr","displayName":"acctest_dkgsr","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_7obdx","displayName":"acctest_7obdx","extEpgType":"on-premise","vrfRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/vrfs/acctest_7obdx","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 13:22:53 [DEBUG] Exit from do method +2022/02/22 13:22:53 [DEBUG] /schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx: Read finished successfully +2022/02/22 13:22:53 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:53 [DEBUG] New state was assigned lineage "30ffc977-3e5d-cdea-a90a-d7ea7e15dfd1" +2022/02/22 13:22:53 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 13:22:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:53 [DEBUG] Starting graph walk: walkPlan +2022/02/22 13:22:53 [DEBUG] Resource instance state not found for node "mso_tenant.test", instance mso_tenant.test +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 13:22:53 [WARN] Provider "mso" produced an invalid plan for mso_tenant.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .site_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead + - .user_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:53 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:53 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:53 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_yrc41" + tenant_id: "" => "" +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "4i8wb" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.228.156" => "" + dhcp_relay_policy_provider.0.epg: "" => "" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "621496471b0000fa73fd064a" => "" + name: "acctest_yrc41" => "acctest_yrc41" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" (forces new resource) +DESTROY: mso_schema.test + id: "6214964e1d0000d64c4f9e4b" => "" + name: "acctest_nakb8" => "" + template_name: "acctest_dkgsr" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_7obdx" => "" + external_epg_name: "acctest_7obdx" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214964e1d0000d64c4f9e4b" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_dkgsr" => "" + vrf_name: "acctest_7obdx" => "" + vrf_schema_id: "6214964e1d0000d64c4f9e4b" => "" + vrf_template_name: "acctest_dkgsr" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_7obdx" => "" + id: "acctest_7obdx" => "" + layer3_multicast: "false" => "" + name: "acctest_7obdx" => "" + schema_id: "6214964e1d0000d64c4f9e4b" => "" + template: "acctest_dkgsr" => "" + vzany: "false" => "" +CREATE: mso_tenant.test + description: "" => "" + display_name: "" => "acctest_crest" + id: "" => "" + name: "" => "acctest_crest" + site_associations: "" => "" + user_associations: "" => "" + + + +STATE: + +mso_dhcp_relay_policy.test: + ID = 621496471b0000fa73fd064a + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.228.156 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_yrc41 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214964e1d0000d64c4f9e4b + provider = provider.mso + name = acctest_nakb8 + template_name = acctest_dkgsr + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214964e1d0000d64c4f9e4b/templates/acctest_dkgsr/externalEpgs/acctest_7obdx + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_7obdx + external_epg_name = acctest_7obdx + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214964e1d0000d64c4f9e4b + selector_ip = + selector_name = + template_name = acctest_dkgsr + vrf_name = acctest_7obdx + vrf_schema_id = 6214964e1d0000d64c4f9e4b + vrf_template_name = acctest_dkgsr + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_7obdx + provider = provider.mso + display_name = acctest_7obdx + layer3_multicast = false + name = acctest_7obdx + schema_id = 6214964e1d0000d64c4f9e4b + template = acctest_dkgsr + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 13:22:53 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 13:22:53 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 13:22:53 [DEBUG] Resource state not found for node "mso_tenant.test", instance mso_tenant.test +2022/02/22 13:22:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_tenant.test (prepare state)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy) mso_dhcp_relay_policy.test (destroy)] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test (prepare state) mso_tenant.test mso_tenant.test] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 13:22:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 13:22:53 [DEBUG] Starting graph walk: walkApply +2022/02/22 13:22:53 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 13:22:53 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 13:22:53 [DEBUG] 621496471b0000fa73fd064a: Beginning Read +2022/02/22 13:22:53 HTTP request DELETE mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:53 [DEBUG] Begin Injection +2022/02/22 13:22:53 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:53 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 13:22:53 [WARN] Provider "mso" produced an invalid plan for mso_tenant.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .site_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead + - .user_associations: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead +2022/02/22 13:22:53 HTTP request PATCH mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:53 [DEBUG] Begin Injection +2022/02/22 13:22:53 HTTP request after injection PATCH mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:53 [DEBUG] mso_tenant.test: applying the planned Create change +2022/02/22 13:22:53 [DEBUG] setting computed for "site_associations" from ComputedKeys +2022/02/22 13:22:53 [DEBUG] setting computed for "user_associations" from ComputedKeys +2022/02/22 13:22:53 [DEBUG] Tenant: Beginning Creation +2022/02/22 13:22:53 check .... : [] +2022/02/22 13:22:53 HTTP request POST mso/api/v1/tenants +2022/02/22 13:22:53 [DEBUG] Begin Injection +2022/02/22 13:22:53 HTTP request after injection POST mso/api/v1/tenants +2022/02/22 13:22:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 13:22:53 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 07:52:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000072300 0xc000be0840} +2022/02/22 13:22:53 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:53 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 13:22:53 [DEBUG] acctest_7obdx: Beginning Destroy +2022/02/22 13:22:53 HTTP request PATCH mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:53 [DEBUG] Begin Injection +2022/02/22 13:22:53 HTTP request after injection PATCH mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:53 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 07:52:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000788400 0xc000608420} +2022/02/22 13:22:53 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/621496471b0000fa73fd064a +2022/02/22 13:22:53 [DEBUG] : Read finished successfully +2022/02/22 13:22:53 +HTTP Request: POST https://173.36.219.31/mso/api/v1/tenants +2022/02/22 13:22:53 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[122] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 07:52:53 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004db8c0 122 [] false false map[] 0xc000072800 0xc000be0840} +2022/02/22 13:22:53 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/tenants {"code":140,"message":"Duplicate Resource: DisplayName","info":{"DisplayName":["Tenant: 'acctest_crest' already exists"]}} +2022/02/22 13:22:53 [DEBUG] Exit from do method +2022/02/22 13:22:53 "Duplicate Resource: DisplayName"{"DisplayName":["Tenant: 'acctest_crest' already exists"]} +2022/02/22 13:22:53 [DEBUG] mso_tenant.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: DisplayName"{"DisplayName":["Tenant: 'acctest_crest' already exists"]} +2022/02/22 13:22:53 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: DisplayName"{"DisplayName":["Tenant: 'acctest_crest' already exists"]} +2022/02/22 13:22:53 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: DisplayName"{"DisplayName":["Tenant: 'acctest_crest' already exists"]} +2022/02/22 13:22:53 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 07:52:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a92d00 0xc000608420} +2022/02/22 13:22:53 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b?validate=false +2022/02/22 13:22:53 [DEBUG] acctest_7obdx: Destroy finished successfully +2022/02/22 13:22:53 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 13:22:53 [DEBUG] 6214964e1d0000d64c4f9e4b: Beginning Destroy +2022/02/22 13:22:53 HTTP request DELETE mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:53 [DEBUG] Begin Injection +2022/02/22 13:22:53 HTTP request after injection DELETE mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:54 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:54 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 07:52:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000a92a00 0xc000608420} +2022/02/22 13:22:54 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214964e1d0000d64c4f9e4b +2022/02/22 13:22:54 [DEBUG] 6214964e1d0000d64c4f9e4b: Destroy finished successfully +2022/02/22 13:22:54 [DEBUG] New state was assigned lineage "030d9a2a-5825-efb6-35f8-804f8f3aa116" +2022/02/22 13:22:54 [WARN] Test: Executing destroy step +2022/02/22 13:22:54 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:54 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 13:22:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 13:22:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:54 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:54 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 13:22:54 [DEBUG] Starting graph walk: walkValidate +2022/02/22 13:22:54 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:54 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 13:22:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 13:22:54 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:54 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 13:22:54 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:54 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:54 [DEBUG] New state was assigned lineage "5e978347-c6f0-31cb-3881-831e3dfda363" +2022/02/22 13:22:54 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 13:22:54 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 13:22:54 [WARN] Test: Step plan: DIFF: + + + +STATE: + + +2022/02/22 13:22:54 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 13:22:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 13:22:54 [DEBUG] ProviderTransformer: "mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:54 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "mso_tenant.test (prepare state)" references: [] +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:54 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 13:22:54 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:54 [DEBUG] New state was assigned lineage "856a9437-f968-56a8-f3b9-e9e0280fcf2e" +2022/02/22 13:22:54 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 13:22:54 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 13:22:54 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 13:22:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 13:22:54 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 13:22:54 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 13:22:54 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 13:22:54 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 13:22:54 [DEBUG] provider has no plugin.Client +2022/02/22 13:22:54 [DEBUG] New state was assigned lineage "72eccf47-3704-825a-49f6-54a4f95ec248" +2022/02/22 13:22:54 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 13:22:54 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 14:40:02 [DEBUG] Test: Executing step 0 +2022/02/22 14:40:02 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:02 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:40:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 14:40:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:02 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:02 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:02 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 14:40:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 14:40:02 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:02 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:40:02 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 14:40:02 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 14:40:02 [DEBUG] Test: Executing step 1 +2022/02/22 14:40:02 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:02 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:40:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:02 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:02 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:02 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:40:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "ldnjd" is not expected here. +2022/02/22 14:40:03 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "ldnjd" is not expected here. +2022/02/22 14:40:03 [DEBUG] Test: Executing step 2 +2022/02/22 14:40:03 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:40:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:03 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:03 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:03 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:40:03 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:03 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:40:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:40:03 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:03 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:03 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:40:03 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 14:40:03 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:03 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 14:40:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:03 [DEBUG] : Beginning Read +2022/02/22 14:40:03 HTTP request GET mso/api/v1/tenants +2022/02/22 14:40:03 [DEBUG] Begin Injection +2022/02/22 14:40:03 HTTP request POST /login +2022/02/22 14:40:03 HTTP request after injection POST /login +2022/02/22 14:40:03 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 14:40:04 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 14:40:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:04 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjIyMDQsImlhdCI6MTY0NTUyMTAwNCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI2V01hPTlWalpTWjNsUGpBZktNaXRjMVkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Xeec3GAMJgGGqadU75kSmZIh3T-bLRYGYRULI8MrhFrR3jwEA0CASSi_fgWb7nVlFEDqMHTqjFJ0T_cZk_cJR3QLVzeWw4OowAMzP3bibQVLsZCwkgvuuUltgBnnAHI-44dd3sf2Jq6SoZVIjIObxNJaWy1A_lYVWEQmAwA4qZh2zATY3F9vEc6yrQ9pSFsx5Qea0KqN8r5CLfSKtLAw_58RYed-8zsXYpay0aOxp_VqPA4B0YuqY-nevjSBnXB8qlN3vQmAIQPNn6bqKA2eM_LY1SL28heZ2R5fXgnwxqW54QTW00JFKfS8m3b6zpNdHCwgxVcVxf3cEA_mVTkMmg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000510a40 -1 [chunked] false false map[] 0xc000810500 0xc00068e0b0} +2022/02/22 14:40:04 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjIyMDQsImlhdCI6MTY0NTUyMTAwNCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI2V01hPTlWalpTWjNsUGpBZktNaXRjMVkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Xeec3GAMJgGGqadU75kSmZIh3T-bLRYGYRULI8MrhFrR3jwEA0CASSi_fgWb7nVlFEDqMHTqjFJ0T_cZk_cJR3QLVzeWw4OowAMzP3bibQVLsZCwkgvuuUltgBnnAHI-44dd3sf2Jq6SoZVIjIObxNJaWy1A_lYVWEQmAwA4qZh2zATY3F9vEc6yrQ9pSFsx5Qea0KqN8r5CLfSKtLAw_58RYed-8zsXYpay0aOxp_VqPA4B0YuqY-nevjSBnXB8qlN3vQmAIQPNn6bqKA2eM_LY1SL28heZ2R5fXgnwxqW54QTW00JFKfS8m3b6zpNdHCwgxVcVxf3cEA_mVTkMmg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjIyMDQsImlhdCI6MTY0NTUyMTAwNCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI2V01hPTlWalpTWjNsUGpBZktNaXRjMVkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Xeec3GAMJgGGqadU75kSmZIh3T-bLRYGYRULI8MrhFrR3jwEA0CASSi_fgWb7nVlFEDqMHTqjFJ0T_cZk_cJR3QLVzeWw4OowAMzP3bibQVLsZCwkgvuuUltgBnnAHI-44dd3sf2Jq6SoZVIjIObxNJaWy1A_lYVWEQmAwA4qZh2zATY3F9vEc6yrQ9pSFsx5Qea0KqN8r5CLfSKtLAw_58RYed-8zsXYpay0aOxp_VqPA4B0YuqY-nevjSBnXB8qlN3vQmAIQPNn6bqKA2eM_LY1SL28heZ2R5fXgnwxqW54QTW00JFKfS8m3b6zpNdHCwgxVcVxf3cEA_mVTkMmg"} +2022/02/22 14:40:04 [DEBUG] Exit from do method +2022/02/22 14:40:04 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:40:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001de080 3980 [] false false map[] 0xc000810400 0xc00068e0b0} +2022/02/22 14:40:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:40:05 [DEBUG] Exit from do method +2022/02/22 14:40:05 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:40:05 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:05 [DEBUG] New state was assigned lineage "22ebc6fb-70e0-b068-eeae-402534034ce6" +2022/02/22 14:40:05 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:40:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:05 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:05 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:05 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:05 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:05 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:05 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_op18l_invalid" + tenant_id: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_op18l" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 14:40:05 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:40:05 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 14:40:05 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 14:40:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:40:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:05 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:40:05 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 14:40:05 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 14:40:05 [DEBUG] Starting graph walk: walkApply +2022/02/22 14:40:05 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 14:40:05 [DEBUG] : Beginning Create +2022/02/22 14:40:05 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:05 [DEBUG] Begin Injection +2022/02/22 14:40:05 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:05 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000606240 160 [] false false map[] 0xc000810c00 0xc00068e0b0} +2022/02/22 14:40:05 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:40:05 [DEBUG] Exit from do method +2022/02/22 14:40:05 [DEBUG] 6214a86d1b0000a277fd064b: Creation finished successfully +2022/02/22 14:40:05 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Read +2022/02/22 14:40:05 id: 6214a86d1b0000a277fd064b +2022/02/22 14:40:05 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:05 [DEBUG] Begin Injection +2022/02/22 14:40:05 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000510c40 160 [] false false map[] 0xc000180200 0xc00068e0b0} +2022/02/22 14:40:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:40:06 [DEBUG] Exit from do method +2022/02/22 14:40:06 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:40:06 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:06 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:06 providerList: [] +2022/02/22 14:40:06 [DEBUG] 6214a86d1b0000a277fd064b: Read finished successfully +2022/02/22 14:40:06 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 14:40:06 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:06 [DEBUG] Begin Injection +2022/02/22 14:40:06 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1766] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000510800 1766 [] false false map[] 0xc00097a200 0xc00068e0b0} +2022/02/22 14:40:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 14:40:06 [DEBUG] Exit from do method +2022/02/22 14:40:06 [ERROR] : eval: *terraform.EvalReadData, err: DHCP Relay Policy with name: acctest_op18l_invalid not found +2022/02/22 14:40:06 [ERROR] : eval: *terraform.EvalSequence, err: DHCP Relay Policy with name: acctest_op18l_invalid not found +2022/02/22 14:40:06 [DEBUG] New state was assigned lineage "1d36ee2a-6b2b-2f42-bef2-63f6ee8f64ca" +2022/02/22 14:40:06 [DEBUG] Test: Executing step 3 +2022/02/22 14:40:06 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:06 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:40:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:06 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:06 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:06 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:40:06 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:06 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:40:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:40:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:06 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:06 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:06 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:40:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:06 [DEBUG] : Beginning Read +2022/02/22 14:40:06 HTTP request GET mso/api/v1/tenants +2022/02/22 14:40:06 [DEBUG] Begin Injection +2022/02/22 14:40:06 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:40:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000788080 3980 [] false false map[] 0xc00097ab00 0xc00068e0b0} +2022/02/22 14:40:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:40:06 [DEBUG] Exit from do method +2022/02/22 14:40:06 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:40:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:06 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Read +2022/02/22 14:40:06 id: 6214a86d1b0000a277fd064b +2022/02/22 14:40:06 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:06 [DEBUG] Begin Injection +2022/02/22 14:40:06 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000c88c0 160 [] false false map[] 0xc000ddc200 0xc00068e0b0} +2022/02/22 14:40:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:40:07 [DEBUG] Exit from do method +2022/02/22 14:40:07 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:40:07 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:07 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:07 providerList: [] +2022/02/22 14:40:07 [DEBUG] 6214a86d1b0000a277fd064b: Read finished successfully +2022/02/22 14:40:07 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:07 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 14:40:07 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:07 [DEBUG] Begin Injection +2022/02/22 14:40:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1766] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003964c0 1766 [] false false map[] 0xc000810300 0xc00068e0b0} +2022/02/22 14:40:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 14:40:07 [DEBUG] Exit from do method +2022/02/22 14:40:07 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:07 [DEBUG] Begin Injection +2022/02/22 14:40:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000396800 160 [] false false map[] 0xc00097af00 0xc00068e0b0} +2022/02/22 14:40:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:40:07 [DEBUG] Exit from do method +2022/02/22 14:40:07 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:40:07 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:07 DHCPRELAY policy in datasource: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:07 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:07 providerList: [] +2022/02/22 14:40:07 [DEBUG] 6214a86d1b0000a277fd064b: Import finished successfully +2022/02/22 14:40:07 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:07 [DEBUG] New state was assigned lineage "fc23bc1a-05a8-ce9f-2877-93f22250e814" +2022/02/22 14:40:07 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:40:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:07 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:07 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:07 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:07 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_op18l" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.218.208" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1" + id: "6214a86d1b0000a277fd064b" => "6214a86d1b0000a277fd064b" + name: "acctest_op18l" => "acctest_op18l" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 6214a86d1b0000a277fd064b + provider = provider.mso + description = + name = acctest_op18l + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214a86d1b0000a277fd064b + provider = provider.mso + description = + name = acctest_op18l + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 14:40:07 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:40:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:40:07 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:40:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:07 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:40:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 14:40:07 [DEBUG] Starting graph walk: walkApply +2022/02/22 14:40:07 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 14:40:07 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Policy Update +2022/02/22 14:40:07 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:07 [DEBUG] Begin Injection +2022/02/22 14:40:07 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:08 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b9e8c0 351 [] false false map[] 0xc000a8b200 0xc00068e0b0} +2022/02/22 14:40:08 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 14:40:08 [DEBUG] Exit from do method +2022/02/22 14:40:08 [DEBUG] Policy Update finished successfully: 6214a86d1b0000a277fd064b +2022/02/22 14:40:08 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Read +2022/02/22 14:40:08 id: 6214a86d1b0000a277fd064b +2022/02/22 14:40:08 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:08 [DEBUG] Begin Injection +2022/02/22 14:40:08 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b9e980 351 [] false false map[] 0xc000a8b400 0xc00068e0b0} +2022/02/22 14:40:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 14:40:08 [DEBUG] Exit from do method +2022/02/22 14:40:08 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 14:40:08 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:08 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:08 providerList: [map[dhcp_server_address:1.2.218.208 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 14:40:08 [DEBUG] 6214a86d1b0000a277fd064b: Read finished successfully +2022/02/22 14:40:08 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 14:40:08 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 14:40:08 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:08 [DEBUG] Begin Injection +2022/02/22 14:40:08 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1957] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a180 1957 [] false false map[] 0xc00097ab00 0xc00068e0b0} +2022/02/22 14:40:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 14:40:09 [DEBUG] Exit from do method +2022/02/22 14:40:09 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:09 [DEBUG] Begin Injection +2022/02/22 14:40:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004be00 351 [] false false map[] 0xc00097a100 0xc00068e0b0} +2022/02/22 14:40:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 14:40:09 [DEBUG] Exit from do method +2022/02/22 14:40:09 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 14:40:09 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:09 DHCPRELAY policy in datasource: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:09 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:09 providerList: [map[dhcp_server_address:1.2.218.208 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 14:40:09 [DEBUG] 6214a86d1b0000a277fd064b: Import finished successfully +2022/02/22 14:40:09 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:09 [DEBUG] New state was assigned lineage "7c9730b3-672c-2ba3-3668-2072e49eaf33" +2022/02/22 14:40:09 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:09 [DEBUG] Begin Injection +2022/02/22 14:40:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000511ac0 351 [] false false map[] 0xc000180200 0xc00068e0b0} +2022/02/22 14:40:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 14:40:09 [DEBUG] Exit from do method +2022/02/22 14:40:09 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 14:40:09 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:09 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:40:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:09 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:09 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:09 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:40:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:09 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:09 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:09 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:40:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:09 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:09 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:09 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:40:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:09 [DEBUG] : Beginning Read +2022/02/22 14:40:09 HTTP request GET mso/api/v1/tenants +2022/02/22 14:40:09 [DEBUG] Begin Injection +2022/02/22 14:40:09 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:40:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003962c0 3980 [] false false map[] 0xc000180500 0xc00068e0b0} +2022/02/22 14:40:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:40:10 [DEBUG] Exit from do method +2022/02/22 14:40:10 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:40:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:10 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Read +2022/02/22 14:40:10 id: 6214a86d1b0000a277fd064b +2022/02/22 14:40:10 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:10 [DEBUG] Begin Injection +2022/02/22 14:40:10 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d05080 351 [] false false map[] 0xc000c4ca00 0xc00068e0b0} +2022/02/22 14:40:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 14:40:10 [DEBUG] Exit from do method +2022/02/22 14:40:10 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 14:40:10 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:10 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:10 providerList: [map[dhcp_server_address:1.2.218.208 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 14:40:10 [DEBUG] 6214a86d1b0000a277fd064b: Read finished successfully +2022/02/22 14:40:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:10 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 14:40:10 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:10 [DEBUG] Begin Injection +2022/02/22 14:40:10 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1957] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002e3840 1957 [] false false map[] 0xc000c18200 0xc00068e0b0} +2022/02/22 14:40:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 14:40:11 [DEBUG] Exit from do method +2022/02/22 14:40:11 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:11 [DEBUG] Begin Injection +2022/02/22 14:40:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af2b00 351 [] false false map[] 0xc000078000 0xc00068e0b0} +2022/02/22 14:40:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 14:40:11 [DEBUG] Exit from do method +2022/02/22 14:40:11 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 14:40:11 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:11 DHCPRELAY policy in datasource: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:11 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:11 providerList: [map[dhcp_server_address:1.2.218.208 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 14:40:11 [DEBUG] 6214a86d1b0000a277fd064b: Import finished successfully +2022/02/22 14:40:11 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:11 [DEBUG] New state was assigned lineage "66807bc7-3b37-72bc-7b03-411c24606109" +2022/02/22 14:40:11 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:40:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:11 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:11 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:11 [DEBUG] Test: Executing step 4 +2022/02/22 14:40:11 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:11 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:40:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:11 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:40:11 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:11 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:40:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:11 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:40:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:11 [DEBUG] : Beginning Read +2022/02/22 14:40:11 HTTP request GET mso/api/v1/tenants +2022/02/22 14:40:11 [DEBUG] Begin Injection +2022/02/22 14:40:11 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:40:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000511800 3980 [] false false map[] 0xc000180600 0xc00068e0b0} +2022/02/22 14:40:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:40:12 [DEBUG] Exit from do method +2022/02/22 14:40:12 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:40:12 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 14:40:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 14:40:12 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 14:40:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 14:40:12 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 14:40:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 14:40:12 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 14:40:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:12 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Read +2022/02/22 14:40:12 id: 6214a86d1b0000a277fd064b +2022/02/22 14:40:12 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:12 [DEBUG] Begin Injection +2022/02/22 14:40:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007881c0 351 [] false false map[] 0xc000193200 0xc00068e0b0} +2022/02/22 14:40:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 14:40:12 [DEBUG] Exit from do method +2022/02/22 14:40:12 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 14:40:12 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:12 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:12 providerList: [map[dhcp_server_address:1.2.218.208 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 14:40:12 [DEBUG] 6214a86d1b0000a277fd064b: Read finished successfully +2022/02/22 14:40:12 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:12 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 14:40:12 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:12 [DEBUG] Begin Injection +2022/02/22 14:40:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1957] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000788200 1957 [] false false map[] 0xc000193500 0xc00068e0b0} +2022/02/22 14:40:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 14:40:12 [DEBUG] Exit from do method +2022/02/22 14:40:12 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:12 [DEBUG] Begin Injection +2022/02/22 14:40:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[351] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005110c0 351 [] false false map[] 0xc000192000 0xc00068e0b0} +2022/02/22 14:40:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 14:40:13 [DEBUG] Exit from do method +2022/02/22 14:40:13 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":2} +2022/02/22 14:40:13 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:13 DHCPRELAY policy in datasource: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:13 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{ /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:13 providerList: [map[dhcp_server_address:1.2.218.208 epg:/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 external_epg: tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 14:40:13 [DEBUG] 6214a86d1b0000a277fd064b: Import finished successfully +2022/02/22 14:40:13 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:13 [DEBUG] New state was assigned lineage "8e9b4702-ff1d-ed84-cd4e-65c8d25a9659" +2022/02/22 14:40:13 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:40:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:13 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:13 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 14:40:13 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 14:40:13 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 14:40:13 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:13 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:13 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_op18l" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.218.208" => "1.2.218.208" + dhcp_relay_policy_provider.0.epg: "/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214a86d1b0000a277fd064b" => "6214a86d1b0000a277fd064b" + name: "acctest_op18l" => "acctest_op18l" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_zd4bz" + template_name: "" => "acctest_w8u01" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_oxf0a" + external_epg_name: "" => "acctest_oxf0a" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_w8u01" + vrf_name: "" => "acctest_oxf0a" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_oxf0a" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_oxf0a" + schema_id: "" => "" + template: "" => "acctest_w8u01" + vzany: "" => "" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 6214a86d1b0000a277fd064b + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.218.208 + dhcp_relay_policy_provider.0.epg = /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_op18l + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214a86d1b0000a277fd064b + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.218.208 + dhcp_relay_policy_provider.0.epg = /schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1 + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_op18l + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 14:40:13 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:40:13 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 14:40:13 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 14:40:13 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 14:40:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 14:40:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:13 [DEBUG] Starting graph walk: walkApply +2022/02/22 14:40:13 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 14:40:13 [DEBUG] Schema: Beginning Creation +2022/02/22 14:40:13 HTTP request POST mso/api/v1/schemas +2022/02/22 14:40:13 [DEBUG] Begin Injection +2022/02/22 14:40:13 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 14:40:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 14:40:13 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 14:40:13 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214a8751d00007a4f4f9e53] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003964c0 400 [] false false map[] 0xc00067e500 0xc00068e0b0} +2022/02/22 14:40:13 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214a8751d00007a4f4f9e53","displayName":"acctest_zd4bz","description":"","templates":[{"name":"acctest_w8u01","displayName":"acctest_w8u01","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 14:40:13 [DEBUG] Exit from do method +2022/02/22 14:40:13 [DEBUG] 6214a8751d00007a4f4f9e53: Schema Creation finished successfully +2022/02/22 14:40:13 [DEBUG] 6214a8751d00007a4f4f9e53: Beginning Read +2022/02/22 14:40:13 HTTP request GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:13 [DEBUG] Begin Injection +2022/02/22 14:40:13 HTTP request after injection GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000eed400 400 [] false false map[] 0xc000180800 0xc00068e0b0} +2022/02/22 14:40:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 {"id":"6214a8751d00007a4f4f9e53","displayName":"acctest_zd4bz","description":"","templates":[{"name":"acctest_w8u01","displayName":"acctest_w8u01","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 14:40:14 [DEBUG] Exit from do method +2022/02/22 14:40:14 [DEBUG] 6214a8751d00007a4f4f9e53: Read finished successfully +2022/02/22 14:40:14 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 14:40:14 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 14:40:14 HTTP request PATCH mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:14 [DEBUG] Begin Injection +2022/02/22 14:40:14 HTTP request after injection PATCH mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:14 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:10:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000180c00 0xc00068e0b0} +2022/02/22 14:40:14 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:14 [DEBUG] acctest_oxf0a: Creation finished successfully +2022/02/22 14:40:14 [DEBUG] acctest_oxf0a: Beginning Read +2022/02/22 14:40:14 HTTP request GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:14 [DEBUG] Begin Injection +2022/02/22 14:40:14 HTTP request after injection GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000eec040 768 [] false false map[] 0xc000180e00 0xc00068e0b0} +2022/02/22 14:40:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 {"id":"6214a8751d00007a4f4f9e53","displayName":"acctest_zd4bz","description":"","templates":[{"name":"acctest_w8u01","displayName":"acctest_w8u01","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 14:40:14 [DEBUG] Exit from do method +2022/02/22 14:40:14 currentvrfname acctest_oxf0a +2022/02/22 14:40:14 found correct vrfname +2022/02/22 14:40:14 [DEBUG] acctest_oxf0a: Read finished successfully +2022/02/22 14:40:14 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 14:40:14 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 14:40:14 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 14:40:14 HTTP request PATCH mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:14 [DEBUG] Begin Injection +2022/02/22 14:40:14 HTTP request after injection PATCH mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:15 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:15 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:10:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00097a300 0xc00068e0b0} +2022/02/22 14:40:15 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:15 [DEBUG] : Beginning Read +2022/02/22 14:40:15 HTTP request GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:15 [DEBUG] Begin Injection +2022/02/22 14:40:15 HTTP request after injection GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003967c0 1147 [] false false map[] 0xc00097a500 0xc00068e0b0} +2022/02/22 14:40:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 {"id":"6214a8751d00007a4f4f9e53","displayName":"acctest_zd4bz","description":"","templates":[{"name":"acctest_w8u01","displayName":"acctest_w8u01","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","extEpgType":"on-premise","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:40:15 [DEBUG] Exit from do method +2022/02/22 14:40:15 [DEBUG] /schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a: Read finished successfully +2022/02/22 14:40:15 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 14:40:15 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Policy Update +2022/02/22 14:40:15 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:15 [DEBUG] Begin Injection +2022/02/22 14:40:15 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:15 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000510fc0 361 [] false false map[] 0xc00067ef00 0xc00068e0b0} +2022/02/22 14:40:15 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 14:40:15 [DEBUG] Exit from do method +2022/02/22 14:40:15 [DEBUG] Policy Update finished successfully: 6214a86d1b0000a277fd064b +2022/02/22 14:40:15 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Read +2022/02/22 14:40:15 id: 6214a86d1b0000a277fd064b +2022/02/22 14:40:15 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:15 [DEBUG] Begin Injection +2022/02/22 14:40:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000511100 361 [] false false map[] 0xc00097ac00 0xc00068e0b0} +2022/02/22 14:40:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 14:40:16 [DEBUG] Exit from do method +2022/02/22 14:40:16 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":3} +2022/02/22 14:40:16 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:16 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:16 providerList: [map[dhcp_server_address:1.2.218.208 epg: external_epg:/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 14:40:16 [DEBUG] 6214a86d1b0000a277fd064b: Read finished successfully +2022/02/22 14:40:16 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 14:40:16 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 14:40:16 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:16 [DEBUG] Begin Injection +2022/02/22 14:40:16 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1967] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000397080 1967 [] false false map[] 0xc00097a300 0xc00068e0b0} +2022/02/22 14:40:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3}]} +2022/02/22 14:40:16 [DEBUG] Exit from do method +2022/02/22 14:40:16 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:16 [DEBUG] Begin Injection +2022/02/22 14:40:16 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000510fc0 361 [] false false map[] 0xc00097a400 0xc00068e0b0} +2022/02/22 14:40:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 14:40:17 [DEBUG] Exit from do method +2022/02/22 14:40:17 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":3} +2022/02/22 14:40:17 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:17 DHCPRELAY policy in datasource: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:17 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:17 providerList: [map[dhcp_server_address:1.2.218.208 epg: external_epg:/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 14:40:17 [DEBUG] 6214a86d1b0000a277fd064b: Import finished successfully +2022/02/22 14:40:17 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:17 [DEBUG] New state was assigned lineage "317603df-357f-a167-2631-5d3b001bf8a1" +2022/02/22 14:40:17 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:17 [DEBUG] Begin Injection +2022/02/22 14:40:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000eec0c0 361 [] false false map[] 0xc0005b6000 0xc00068e0b0} +2022/02/22 14:40:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 14:40:17 [DEBUG] Exit from do method +2022/02/22 14:40:17 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":3} +2022/02/22 14:40:17 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:17 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:40:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 14:40:17 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:17 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:17 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:17 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:17 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:40:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 14:40:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:17 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:17 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:40:17 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:17 [DEBUG] : Beginning Read +2022/02/22 14:40:17 HTTP request GET mso/api/v1/tenants +2022/02/22 14:40:17 [DEBUG] Begin Injection +2022/02/22 14:40:17 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:40:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000c9b80 3980 [] false false map[] 0xc000180500 0xc00068e0b0} +2022/02/22 14:40:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:40:17 [DEBUG] Exit from do method +2022/02/22 14:40:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:40:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 14:40:17 [DEBUG] 6214a8751d00007a4f4f9e53: Beginning Read +2022/02/22 14:40:17 HTTP request GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:17 [DEBUG] Begin Injection +2022/02/22 14:40:17 HTTP request after injection GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d40040 1147 [] false false map[] 0xc00097a900 0xc00068e0b0} +2022/02/22 14:40:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 {"id":"6214a8751d00007a4f4f9e53","displayName":"acctest_zd4bz","description":"","templates":[{"name":"acctest_w8u01","displayName":"acctest_w8u01","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","extEpgType":"on-premise","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:40:18 [DEBUG] Exit from do method +2022/02/22 14:40:18 [DEBUG] 6214a8751d00007a4f4f9e53: Read finished successfully +2022/02/22 14:40:18 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 14:40:18 [DEBUG] acctest_oxf0a: Beginning Read +2022/02/22 14:40:18 HTTP request GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:18 [DEBUG] Begin Injection +2022/02/22 14:40:18 HTTP request after injection GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b9e080 1147 [] false false map[] 0xc000180400 0xc00068e0b0} +2022/02/22 14:40:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 {"id":"6214a8751d00007a4f4f9e53","displayName":"acctest_zd4bz","description":"","templates":[{"name":"acctest_w8u01","displayName":"acctest_w8u01","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","extEpgType":"on-premise","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:40:18 [DEBUG] Exit from do method +2022/02/22 14:40:18 currentvrfname acctest_oxf0a +2022/02/22 14:40:18 found correct vrfname +2022/02/22 14:40:18 [DEBUG] acctest_oxf0a: Read finished successfully +2022/02/22 14:40:18 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 14:40:18 [DEBUG] /schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a: Beginning Read +2022/02/22 14:40:18 HTTP request GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:18 [DEBUG] Begin Injection +2022/02/22 14:40:18 HTTP request after injection GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000396b40 1147 [] false false map[] 0xc000180700 0xc00068e0b0} +2022/02/22 14:40:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 {"id":"6214a8751d00007a4f4f9e53","displayName":"acctest_zd4bz","description":"","templates":[{"name":"acctest_w8u01","displayName":"acctest_w8u01","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","extEpgType":"on-premise","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:40:18 [DEBUG] Exit from do method +2022/02/22 14:40:18 [DEBUG] /schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a: Read finished successfully +2022/02/22 14:40:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:18 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Read +2022/02/22 14:40:18 id: 6214a86d1b0000a277fd064b +2022/02/22 14:40:18 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:18 [DEBUG] Begin Injection +2022/02/22 14:40:18 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005115c0 361 [] false false map[] 0xc000180e00 0xc00068e0b0} +2022/02/22 14:40:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 14:40:19 [DEBUG] Exit from do method +2022/02/22 14:40:19 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":3} +2022/02/22 14:40:19 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:19 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:19 providerList: [map[dhcp_server_address:1.2.218.208 epg: external_epg:/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 14:40:19 [DEBUG] 6214a86d1b0000a277fd064b: Read finished successfully +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:19 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 14:40:19 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:19 [DEBUG] Begin Injection +2022/02/22 14:40:19 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1967] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002e3140 1967 [] false false map[] 0xc000181400 0xc00068e0b0} +2022/02/22 14:40:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3}]} +2022/02/22 14:40:19 [DEBUG] Exit from do method +2022/02/22 14:40:19 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:19 [DEBUG] Begin Injection +2022/02/22 14:40:19 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002e20c0 361 [] false false map[] 0xc00067e200 0xc00068e0b0} +2022/02/22 14:40:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 14:40:19 [DEBUG] Exit from do method +2022/02/22 14:40:19 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":3} +2022/02/22 14:40:19 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:19 DHCPRELAY policy in datasource: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:19 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:19 providerList: [map[dhcp_server_address:1.2.218.208 epg: external_epg:/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 14:40:19 [DEBUG] 6214a86d1b0000a277fd064b: Import finished successfully +2022/02/22 14:40:19 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:19 [DEBUG] New state was assigned lineage "33196b96-89fc-fc97-767c-ca2b13cd7ce0" +2022/02/22 14:40:19 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:40:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 14:40:19 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:19 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:19 [DEBUG] Test: Executing step 5 +2022/02/22 14:40:19 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:19 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:40:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:19 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:40:19 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:19 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 14:40:19 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 14:40:19 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 14:40:19 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:40:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:19 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:40:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:19 [DEBUG] : Beginning Read +2022/02/22 14:40:19 HTTP request GET mso/api/v1/tenants +2022/02/22 14:40:19 [DEBUG] Begin Injection +2022/02/22 14:40:19 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:40:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000788bc0 3980 [] false false map[] 0xc0005b6a00 0xc00068e0b0} +2022/02/22 14:40:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:40:20 [DEBUG] Exit from do method +2022/02/22 14:40:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:40:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:20 [DEBUG] 6214a8751d00007a4f4f9e53: Beginning Read +2022/02/22 14:40:20 HTTP request GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:20 [DEBUG] Begin Injection +2022/02/22 14:40:20 HTTP request after injection GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:20 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Read +2022/02/22 14:40:20 id: 6214a86d1b0000a277fd064b +2022/02/22 14:40:20 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:20 [DEBUG] Begin Injection +2022/02/22 14:40:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002e3240 1147 [] false false map[] 0xc000180400 0xc00068e0b0} +2022/02/22 14:40:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 {"id":"6214a8751d00007a4f4f9e53","displayName":"acctest_zd4bz","description":"","templates":[{"name":"acctest_w8u01","displayName":"acctest_w8u01","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","extEpgType":"on-premise","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:40:20 [DEBUG] Exit from do method +2022/02/22 14:40:20 [DEBUG] 6214a8751d00007a4f4f9e53: Read finished successfully +2022/02/22 14:40:20 [DEBUG] acctest_oxf0a: Beginning Read +2022/02/22 14:40:20 HTTP request GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:20 [DEBUG] Begin Injection +2022/02/22 14:40:20 HTTP request after injection GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000510fc0 361 [] false false map[] 0xc00057c200 0xc00068e0b0} +2022/02/22 14:40:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 14:40:20 [DEBUG] Exit from do method +2022/02/22 14:40:20 Cont: {"desc":"","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","provider":[{"addr":"1.2.218.208","epgRef":"","externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"tenantId":"620cf5ad1d0000ab504f9a3d","version":3} +2022/02/22 14:40:20 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:20 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay 620cf5ad1d0000ab504f9a3d [{/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a 1.2.218.208 620cf5ad1d0000ab504f9a3d}]} +2022/02/22 14:40:20 providerList: [map[dhcp_server_address:1.2.218.208 epg: external_epg:/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a tenant_id:620cf5ad1d0000ab504f9a3d]] +2022/02/22 14:40:20 [DEBUG] 6214a86d1b0000a277fd064b: Read finished successfully +2022/02/22 14:40:20 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b9e040 1147 [] false false map[] 0xc00057c500 0xc00068e0b0} +2022/02/22 14:40:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 {"id":"6214a8751d00007a4f4f9e53","displayName":"acctest_zd4bz","description":"","templates":[{"name":"acctest_w8u01","displayName":"acctest_w8u01","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","extEpgType":"on-premise","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:40:21 [DEBUG] Exit from do method +2022/02/22 14:40:21 currentvrfname acctest_oxf0a +2022/02/22 14:40:21 found correct vrfname +2022/02/22 14:40:21 [DEBUG] acctest_oxf0a: Read finished successfully +2022/02/22 14:40:21 [DEBUG] /schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a: Beginning Read +2022/02/22 14:40:21 HTTP request GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:21 [DEBUG] Begin Injection +2022/02/22 14:40:21 HTTP request after injection GET mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000788700 1147 [] false false map[] 0xc000180400 0xc00068e0b0} +2022/02/22 14:40:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 {"id":"6214a8751d00007a4f4f9e53","displayName":"acctest_zd4bz","description":"","templates":[{"name":"acctest_w8u01","displayName":"acctest_w8u01","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_oxf0a","displayName":"acctest_oxf0a","extEpgType":"on-premise","vrfRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/vrfs/acctest_oxf0a","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:40:21 [DEBUG] Exit from do method +2022/02/22 14:40:21 [DEBUG] /schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a: Read finished successfully +2022/02/22 14:40:21 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:21 [DEBUG] New state was assigned lineage "96c940a5-67ef-190f-f981-53b7fdea0794" +2022/02/22 14:40:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:40:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (orphan) +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 14:40:21 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:21 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:21 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:21 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_op18l" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "hqkls" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.218.208" => "" + dhcp_relay_policy_provider.0.epg: "" => "" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214a86d1b0000a277fd064b" => "6214a86d1b0000a277fd064b" + name: "acctest_op18l" => "acctest_op18l" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214a8751d00007a4f4f9e53" => "" + name: "acctest_zd4bz" => "" + template_name: "acctest_w8u01" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_oxf0a" => "" + external_epg_name: "acctest_oxf0a" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214a8751d00007a4f4f9e53" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_w8u01" => "" + vrf_name: "acctest_oxf0a" => "" + vrf_schema_id: "6214a8751d00007a4f4f9e53" => "" + vrf_template_name: "acctest_w8u01" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_oxf0a" => "" + id: "acctest_oxf0a" => "" + layer3_multicast: "false" => "" + name: "acctest_oxf0a" => "" + schema_id: "6214a8751d00007a4f4f9e53" => "" + template: "acctest_w8u01" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214a86d1b0000a277fd064b + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.218.208 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_op18l + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214a8751d00007a4f4f9e53 + provider = provider.mso + name = acctest_zd4bz + template_name = acctest_w8u01 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214a8751d00007a4f4f9e53/templates/acctest_w8u01/externalEpgs/acctest_oxf0a + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_oxf0a + external_epg_name = acctest_oxf0a + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214a8751d00007a4f4f9e53 + selector_ip = + selector_name = + template_name = acctest_w8u01 + vrf_name = acctest_oxf0a + vrf_schema_id = 6214a8751d00007a4f4f9e53 + vrf_template_name = acctest_w8u01 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_oxf0a + provider = provider.mso + display_name = acctest_oxf0a + layer3_multicast = false + name = acctest_oxf0a + schema_id = 6214a8751d00007a4f4f9e53 + template = acctest_w8u01 + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 14:40:21 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:40:21 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 14:40:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 14:40:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 14:40:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:21 [DEBUG] Starting graph walk: walkApply +2022/02/22 14:40:21 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 14:40:21 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 14:40:21 HTTP request PATCH mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:21 [DEBUG] Begin Injection +2022/02/22 14:40:21 HTTP request after injection PATCH mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:21 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 14:40:21 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Policy Update +2022/02/22 14:40:21 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:21 [DEBUG] Begin Injection +2022/02/22 14:40:21 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:21 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000397400 165 [] false false map[] 0xc00057c500 0xc0003ee0b0} +2022/02/22 14:40:21 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"hqkls","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 14:40:21 [DEBUG] Exit from do method +2022/02/22 14:40:21 [DEBUG] Policy Update finished successfully: 6214a86d1b0000a277fd064b +2022/02/22 14:40:21 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Read +2022/02/22 14:40:21 id: 6214a86d1b0000a277fd064b +2022/02/22 14:40:21 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:21 [DEBUG] Begin Injection +2022/02/22 14:40:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:21 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:21 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:10:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000012200 0xc0006fc000} +2022/02/22 14:40:21 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:21 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 14:40:21 [DEBUG] acctest_oxf0a: Beginning Destroy +2022/02/22 14:40:21 HTTP request PATCH mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:21 [DEBUG] Begin Injection +2022/02/22 14:40:21 HTTP request after injection PATCH mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002e21c0 165 [] false false map[] 0xc00057c700 0xc0003ee0b0} +2022/02/22 14:40:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"hqkls","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 14:40:22 [DEBUG] Exit from do method +2022/02/22 14:40:22 Cont: {"desc":"hqkls","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 14:40:22 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay hqkls 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:22 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay hqkls 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:22 providerList: [] +2022/02/22 14:40:22 [DEBUG] 6214a86d1b0000a277fd064b: Read finished successfully +2022/02/22 14:40:22 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 14:40:22 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:22 [DEBUG] Begin Injection +2022/02/22 14:40:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:22 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:10:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000180900 0xc0006fc000} +2022/02/22 14:40:22 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53?validate=false +2022/02/22 14:40:22 [DEBUG] acctest_oxf0a: Destroy finished successfully +2022/02/22 14:40:22 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 14:40:22 [DEBUG] 6214a8751d00007a4f4f9e53: Beginning Destroy +2022/02/22 14:40:22 HTTP request DELETE mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:22 [DEBUG] Begin Injection +2022/02/22 14:40:22 HTTP request after injection DELETE mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:40:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1771] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af20c0 1771 [] false false map[] 0xc000012900 0xc0003ee0b0} +2022/02/22 14:40:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.23.36.52","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"},{"addr":"1.23.36.52","epgRef":"","externalEpgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/externalEpgs/EXT_EPG_1","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":4},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"621485ee1b00003870fd0635","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"sdaffg","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"3.3.3.3","epgRef":"","externalEpgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/externalEpgs/ACC_CREST","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"621492881b00003973fd0649","name":"ACC_CREST","policyType":"dhcp","policySubtype":"relay","desc":"aaaa","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg2","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"hqkls","tenantId":"620cf5ad1d0000ab504f9a3d","version":4}]} +2022/02/22 14:40:22 [DEBUG] Exit from do method +2022/02/22 14:40:22 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:22 [DEBUG] Begin Injection +2022/02/22 14:40:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:22 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:22 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:10:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0005b6900 0xc0006fc000} +2022/02/22 14:40:22 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214a8751d00007a4f4f9e53 +2022/02/22 14:40:22 [DEBUG] 6214a8751d00007a4f4f9e53: Destroy finished successfully +2022/02/22 14:40:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00100c180 165 [] false false map[] 0xc00097a000 0xc0003ee0b0} +2022/02/22 14:40:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"hqkls","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 14:40:22 [DEBUG] Exit from do method +2022/02/22 14:40:22 Cont: {"desc":"hqkls","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 14:40:22 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay hqkls 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:22 DHCPRELAY policy in datasource: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay hqkls 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:22 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay hqkls 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:22 providerList: [] +2022/02/22 14:40:22 [DEBUG] 6214a86d1b0000a277fd064b: Import finished successfully +2022/02/22 14:40:22 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:22 [DEBUG] New state was assigned lineage "156d2981-5e22-239f-3b19-174d7903f253" +2022/02/22 14:40:22 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:22 [DEBUG] Begin Injection +2022/02/22 14:40:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00100c3c0 165 [] false false map[] 0xc00057c000 0xc0003ee0b0} +2022/02/22 14:40:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"hqkls","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 14:40:23 [DEBUG] Exit from do method +2022/02/22 14:40:23 Cont: {"desc":"hqkls","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 14:40:23 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay hqkls 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:23 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:40:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:23 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:23 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:23 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:40:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:23 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:23 [DEBUG] : Beginning Read +2022/02/22 14:40:23 HTTP request GET mso/api/v1/tenants +2022/02/22 14:40:23 [DEBUG] Begin Injection +2022/02/22 14:40:23 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:40:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af3f80 3980 [] false false map[] 0xc00097ac00 0xc0003ee0b0} +2022/02/22 14:40:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:40:23 [DEBUG] Exit from do method +2022/02/22 14:40:23 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:23 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Read +2022/02/22 14:40:23 id: 6214a86d1b0000a277fd064b +2022/02/22 14:40:23 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:23 [DEBUG] Begin Injection +2022/02/22 14:40:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000396b00 165 [] false false map[] 0xc000d24300 0xc0003ee0b0} +2022/02/22 14:40:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"hqkls","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 14:40:23 [DEBUG] Exit from do method +2022/02/22 14:40:23 Cont: {"desc":"hqkls","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 14:40:23 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay hqkls 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:23 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay hqkls 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:23 providerList: [] +2022/02/22 14:40:23 [DEBUG] 6214a86d1b0000a277fd064b: Read finished successfully +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:23 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:23 [DEBUG] New state was assigned lineage "a9a00377-5117-4a5c-4086-38449526135e" +2022/02/22 14:40:23 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:40:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:23 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:23 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:23 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:23 [INFO] Got non-empty plan, as expected: + +DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_op18l" + tenant_id: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214a86d1b0000a277fd064b + provider = provider.mso + description = hqkls + name = acctest_op18l + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 14:40:23 [WARN] Test: Executing destroy step +2022/02/22 14:40:23 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:23 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:40:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:23 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:40:23 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:23 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:40:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:23 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:40:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:23 [DEBUG] : Beginning Read +2022/02/22 14:40:23 HTTP request GET mso/api/v1/tenants +2022/02/22 14:40:23 [DEBUG] Begin Injection +2022/02/22 14:40:23 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:40:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000af2180 3980 [] false false map[] 0xc00097ac00 0xc0003ee0b0} +2022/02/22 14:40:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:40:24 [DEBUG] Exit from do method +2022/02/22 14:40:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:24 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Read +2022/02/22 14:40:24 id: 6214a86d1b0000a277fd064b +2022/02/22 14:40:24 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:24 [DEBUG] Begin Injection +2022/02/22 14:40:24 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000396280 165 [] false false map[] 0xc0010b0700 0xc0003ee0b0} +2022/02/22 14:40:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policyType":"dhcp","policySubtype":"relay","desc":"hqkls","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 14:40:24 [DEBUG] Exit from do method +2022/02/22 14:40:24 Cont: {"desc":"hqkls","id":"6214a86d1b0000a277fd064b","name":"acctest_op18l","policySubtype":"relay","policyType":"dhcp","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 14:40:24 Policy: {6214a86d1b0000a277fd064b acctest_op18l dhcp relay hqkls 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:24 DHCPRELAY POLICY: &{6214a86d1b0000a277fd064b acctest_op18l dhcp relay hqkls 620cf5ad1d0000ab504f9a3d []} +2022/02/22 14:40:24 providerList: [] +2022/02/22 14:40:24 [DEBUG] 6214a86d1b0000a277fd064b: Read finished successfully +2022/02/22 14:40:24 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:24 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:24 [DEBUG] New state was assigned lineage "70da0fb9-a1da-fbee-4571-31edc5d4e928" +2022/02/22 14:40:24 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 14:40:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:40:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:24 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 14:40:24 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "hqkls" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214a86d1b0000a277fd064b" => "" + name: "acctest_op18l" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214a86d1b0000a277fd064b + provider = provider.mso + description = hqkls + name = acctest_op18l + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 14:40:24 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:40:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:40:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:40:24 DestroyEdgeTransformer: pruning unused resource node data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:40:24 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:40:24 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 14:40:24 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 14:40:24 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 14:40:24 [DEBUG] 6214a86d1b0000a277fd064b: Beginning Read +2022/02/22 14:40:24 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:24 [DEBUG] Begin Injection +2022/02/22 14:40:24 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:24 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:24 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:10:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00097a300 0xc0003ee0b0} +2022/02/22 14:40:24 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:24 [DEBUG] : Read finished successfully +2022/02/22 14:40:24 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:24 [DEBUG] New state was assigned lineage "c11ac8ba-8325-eccd-b117-c79b5334cb75" +2022/02/22 14:40:24 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:24 [DEBUG] Begin Injection +2022/02/22 14:40:24 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b +2022/02/22 14:40:25 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:24 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002e2280 86 [] false false map[] 0xc000180200 0xc0003ee0b0} +2022/02/22 14:40:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a86d1b0000a277fd064b {"code":141,"message":"Resource Not Found: Policy 6214a86d1b0000a277fd064b not found"} +2022/02/22 14:40:25 [DEBUG] Exit from do method +2022/02/22 14:40:25 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 14:40:25 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 14:40:25 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:40:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:40:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:25 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:40:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:25 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:25 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:40:25 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 14:40:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:25 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 14:40:25 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:40:25 [DEBUG] : Beginning Read +2022/02/22 14:40:25 HTTP request GET mso/api/v1/tenants +2022/02/22 14:40:25 [DEBUG] Begin Injection +2022/02/22 14:40:25 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:40:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:40:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:10:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b9e540 3980 [] false false map[] 0xc0010b0700 0xc0003ee0b0} +2022/02/22 14:40:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:40:25 [DEBUG] Exit from do method +2022/02/22 14:40:25 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:40:25 [DEBUG] provider has no plugin.Client +2022/02/22 14:40:25 [DEBUG] New state was assigned lineage "4c0c3c27-df4c-20b4-c7dc-6fc1c2b335a9" +2022/02/22 14:40:25 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 14:40:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:40:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:40:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:40:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:40:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:40:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:40:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:40:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:40:25 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 14:46:17 [DEBUG] Test: Executing step 0 +2022/02/22 14:46:17 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:46:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:46:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:46:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:46:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:17 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:46:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 14:46:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 14:46:17 [DEBUG] Test: Executing step 1 +2022/02/22 14:46:17 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:46:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:46:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:46:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:46:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:17 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:46:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 14:46:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 14:46:17 [DEBUG] Test: Executing step 2 +2022/02/22 14:46:17 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:46:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:46:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:46:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:46:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:17 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:46:17 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:17 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:46:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:46:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:46:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:17 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:46:17 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 14:46:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:17 [DEBUG] : Beginning Read +2022/02/22 14:46:17 HTTP request GET mso/api/v1/tenants +2022/02/22 14:46:17 [DEBUG] Begin Injection +2022/02/22 14:46:17 HTTP request POST /login +2022/02/22 14:46:17 HTTP request after injection POST /login +2022/02/22 14:46:17 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 14:46:19 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 14:46:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:19 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjI1NzksImlhdCI6MTY0NTUyMTM3OSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ1MFZxdUZ5b09YaXBDelJRTkFIUFlZVGwiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.niXujNI95aw2lmpe-5VkGLsnBUqzlNkCiZDFOB4d4N0H6D5QPq0uBOaepcPRz7kLZFQr1MA1Ob4jxcGHibPv5M21FIorNRsJf0QFelK9aDi3Ov1edhAIMBNDSp4fDy7dt1N-85IWrNhW8_flwngBARAzUv2pfr-qra7rvws2bcexfAzJi_WqIIZFl9JVjQAMLO80efiRdQkVzo_EBus7RkIYu44RVIxE7fdsU5_kThM45ZiwXpeGd4NjY4wwdFkzoylmh6fYJiasf-jaiTVzTQ3xHMikhFMthoYyDfc7Lu57SbuX0OWjgeNS8wX-GsDB26s7pQ0gIbH1NDB7AZkK6w; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000290140 -1 [chunked] false false map[] 0xc0007ce800 0xc0000b80b0} +2022/02/22 14:46:19 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjI1NzksImlhdCI6MTY0NTUyMTM3OSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ1MFZxdUZ5b09YaXBDelJRTkFIUFlZVGwiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.niXujNI95aw2lmpe-5VkGLsnBUqzlNkCiZDFOB4d4N0H6D5QPq0uBOaepcPRz7kLZFQr1MA1Ob4jxcGHibPv5M21FIorNRsJf0QFelK9aDi3Ov1edhAIMBNDSp4fDy7dt1N-85IWrNhW8_flwngBARAzUv2pfr-qra7rvws2bcexfAzJi_WqIIZFl9JVjQAMLO80efiRdQkVzo_EBus7RkIYu44RVIxE7fdsU5_kThM45ZiwXpeGd4NjY4wwdFkzoylmh6fYJiasf-jaiTVzTQ3xHMikhFMthoYyDfc7Lu57SbuX0OWjgeNS8wX-GsDB26s7pQ0gIbH1NDB7AZkK6w","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjI1NzksImlhdCI6MTY0NTUyMTM3OSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ1MFZxdUZ5b09YaXBDelJRTkFIUFlZVGwiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.niXujNI95aw2lmpe-5VkGLsnBUqzlNkCiZDFOB4d4N0H6D5QPq0uBOaepcPRz7kLZFQr1MA1Ob4jxcGHibPv5M21FIorNRsJf0QFelK9aDi3Ov1edhAIMBNDSp4fDy7dt1N-85IWrNhW8_flwngBARAzUv2pfr-qra7rvws2bcexfAzJi_WqIIZFl9JVjQAMLO80efiRdQkVzo_EBus7RkIYu44RVIxE7fdsU5_kThM45ZiwXpeGd4NjY4wwdFkzoylmh6fYJiasf-jaiTVzTQ3xHMikhFMthoYyDfc7Lu57SbuX0OWjgeNS8wX-GsDB26s7pQ0gIbH1NDB7AZkK6w"} +2022/02/22 14:46:19 [DEBUG] Exit from do method +2022/02/22 14:46:19 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:46:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:46:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:46:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e8280 3980 [] false false map[] 0xc0007ce700 0xc0000b80b0} +2022/02/22 14:46:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:46:19 [DEBUG] Exit from do method +2022/02/22 14:46:19 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:46:19 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:19 [DEBUG] New state was assigned lineage "e763d52c-0383-15a8-a6ec-5031067d9187" +2022/02/22 14:46:19 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:46:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:46:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:46:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:46:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:19 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:46:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:19 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 14:46:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:46:19 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:19 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_krsol" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 14:46:19 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:46:19 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 14:46:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:46:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:46:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:46:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:46:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:46:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 14:46:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:19 [DEBUG] Starting graph walk: walkApply +2022/02/22 14:46:19 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 14:46:19 [DEBUG] : Beginning Create +2022/02/22 14:46:19 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 14:46:19 [DEBUG] Begin Injection +2022/02/22 14:46:19 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 14:46:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:46:20 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:46:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b0080 160 [] false false map[] 0xc0000a4600 0xc0000b80b0} +2022/02/22 14:46:20 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214a9e41b0000db77fd064c","name":"acctest_krsol","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:46:20 [DEBUG] Exit from do method +2022/02/22 14:46:20 [DEBUG] 6214a9e41b0000db77fd064c: Creation finished successfully +2022/02/22 14:46:20 [DEBUG] 6214a9e41b0000db77fd064c: Beginning Read +2022/02/22 14:46:20 id: 6214a9e41b0000db77fd064c +2022/02/22 14:46:20 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:20 [DEBUG] Begin Injection +2022/02/22 14:46:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000290980 160 [] false false map[] 0xc000d5e000 0xc0000b80b0} +2022/02/22 14:46:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c {"id":"6214a9e41b0000db77fd064c","name":"acctest_krsol","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:46:20 [DEBUG] Exit from do method +2022/02/22 14:46:20 [DEBUG] 6214a9e41b0000db77fd064c: Read finished successfully +2022/02/22 14:46:20 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:20 [DEBUG] New state was assigned lineage "a9fc8cbd-b326-49a5-4a7b-7c2ef6fcf84a" +2022/02/22 14:46:20 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:20 [DEBUG] Begin Injection +2022/02/22 14:46:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000290040 160 [] false false map[] 0xc0000a4100 0xc0000b80b0} +2022/02/22 14:46:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c {"id":"6214a9e41b0000db77fd064c","name":"acctest_krsol","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:46:21 [DEBUG] Exit from do method +2022/02/22 14:46:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:46:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:46:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:21 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:46:21 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:21 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:46:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:46:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:21 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:21 [DEBUG] : Beginning Read +2022/02/22 14:46:21 HTTP request GET mso/api/v1/tenants +2022/02/22 14:46:21 [DEBUG] Begin Injection +2022/02/22 14:46:21 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:46:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:46:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:46:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000291780 3980 [] false false map[] 0xc0006a8d00 0xc0000b80b0} +2022/02/22 14:46:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:46:21 [DEBUG] Exit from do method +2022/02/22 14:46:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:46:21 [DEBUG] 6214a9e41b0000db77fd064c: Beginning Read +2022/02/22 14:46:21 id: 6214a9e41b0000db77fd064c +2022/02/22 14:46:21 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:21 [DEBUG] Begin Injection +2022/02/22 14:46:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000216ac0 160 [] false false map[] 0xc0006a9200 0xc0000b80b0} +2022/02/22 14:46:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c {"id":"6214a9e41b0000db77fd064c","name":"acctest_krsol","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:46:21 [DEBUG] Exit from do method +2022/02/22 14:46:21 [DEBUG] 6214a9e41b0000db77fd064c: Read finished successfully +2022/02/22 14:46:21 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:21 [DEBUG] New state was assigned lineage "ae01791d-aceb-634a-10ea-3b81232da1e9" +2022/02/22 14:46:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:46:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:46:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:21 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:46:21 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:21 [DEBUG] Test: Executing step 3 +2022/02/22 14:46:21 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:21 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:46:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:46:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:46:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:21 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:46:21 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:21 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:46:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:46:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:21 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:46:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:21 [DEBUG] : Beginning Read +2022/02/22 14:46:21 HTTP request GET mso/api/v1/tenants +2022/02/22 14:46:21 [DEBUG] Begin Injection +2022/02/22 14:46:21 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:46:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:46:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:46:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bec0 3980 [] false false map[] 0xc0000a4500 0xc0000b80b0} +2022/02/22 14:46:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:46:22 [DEBUG] Exit from do method +2022/02/22 14:46:22 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:46:22 [DEBUG] 6214a9e41b0000db77fd064c: Beginning Read +2022/02/22 14:46:22 id: 6214a9e41b0000db77fd064c +2022/02/22 14:46:22 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:22 [DEBUG] Begin Injection +2022/02/22 14:46:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b0540 160 [] false false map[] 0xc0008a8900 0xc0000b80b0} +2022/02/22 14:46:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c {"id":"6214a9e41b0000db77fd064c","name":"acctest_krsol","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:46:22 [DEBUG] Exit from do method +2022/02/22 14:46:22 [DEBUG] 6214a9e41b0000db77fd064c: Read finished successfully +2022/02/22 14:46:22 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:22 [DEBUG] New state was assigned lineage "36b80d66-506c-ff59-aaf3-1ad552b184f9" +2022/02/22 14:46:22 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:46:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:46:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:46:22 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:46:22 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:22 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.138.24" + id: "6214a9e41b0000db77fd064c" => "6214a9e41b0000db77fd064c" + name: "acctest_krsol" => "acctest_krsol" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214a9e41b0000db77fd064c + provider = provider.mso + description = + name = acctest_krsol + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 14:46:22 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:46:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:46:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:46:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:46:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:46:22 [DEBUG] Starting graph walk: walkApply +2022/02/22 14:46:22 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 14:46:22 [DEBUG] 6214a9e41b0000db77fd064c: Beginning Policy Update +2022/02/22 14:46:22 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg! +2022/02/22 14:46:22 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg! +2022/02/22 14:46:22 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg! +2022/02/22 14:46:22 [DEBUG] New state was assigned lineage "3b18fe13-c7ac-df70-dadc-297d8304e58a" +2022/02/22 14:46:22 [WARN] Test: Executing destroy step +2022/02/22 14:46:22 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:22 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:46:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:46:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:46:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:22 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:46:22 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:22 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:46:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:46:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:22 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:46:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:22 [DEBUG] : Beginning Read +2022/02/22 14:46:22 HTTP request GET mso/api/v1/tenants +2022/02/22 14:46:22 [DEBUG] Begin Injection +2022/02/22 14:46:22 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:46:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:46:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:46:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002900c0 3980 [] false false map[] 0xc0007cef00 0xc0000b80b0} +2022/02/22 14:46:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:46:23 [DEBUG] Exit from do method +2022/02/22 14:46:23 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:46:23 [DEBUG] 6214a9e41b0000db77fd064c: Beginning Read +2022/02/22 14:46:23 id: 6214a9e41b0000db77fd064c +2022/02/22 14:46:23 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:23 [DEBUG] Begin Injection +2022/02/22 14:46:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000291040 160 [] false false map[] 0xc0007ce600 0xc0000b80b0} +2022/02/22 14:46:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c {"id":"6214a9e41b0000db77fd064c","name":"acctest_krsol","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:46:23 [DEBUG] Exit from do method +2022/02/22 14:46:23 [DEBUG] 6214a9e41b0000db77fd064c: Read finished successfully +2022/02/22 14:46:23 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:23 [DEBUG] New state was assigned lineage "fa6461a8-a33c-6241-daa9-ae652985a494" +2022/02/22 14:46:23 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 14:46:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:46:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 14:46:23 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 14:46:23 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214a9e41b0000db77fd064c" => "" + name: "acctest_krsol" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214a9e41b0000db77fd064c + provider = provider.mso + description = + name = acctest_krsol + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 14:46:23 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:46:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:46:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:23 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:46:23 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 14:46:23 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 14:46:23 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 14:46:23 [DEBUG] 6214a9e41b0000db77fd064c: Beginning Read +2022/02/22 14:46:23 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:23 [DEBUG] Begin Injection +2022/02/22 14:46:23 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:23 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:16:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000cf8e00 0xc0000b80b0} +2022/02/22 14:46:23 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:23 [DEBUG] : Read finished successfully +2022/02/22 14:46:23 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:23 [DEBUG] New state was assigned lineage "111d6ca3-881b-39b3-93d1-c749afc28a51" +2022/02/22 14:46:23 HTTP request GET mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:23 [DEBUG] Begin Injection +2022/02/22 14:46:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c +2022/02/22 14:46:24 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:23 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a340 86 [] false false map[] 0xc0000a4100 0xc0000b80b0} +2022/02/22 14:46:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214a9e41b0000db77fd064c {"code":141,"message":"Resource Not Found: Policy 6214a9e41b0000db77fd064c not found"} +2022/02/22 14:46:24 [DEBUG] Exit from do method +2022/02/22 14:46:24 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 14:46:24 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 14:46:24 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:46:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:46:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:46:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:24 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:46:24 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 14:46:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:24 [DEBUG] : Beginning Read +2022/02/22 14:46:24 HTTP request GET mso/api/v1/tenants +2022/02/22 14:46:24 [DEBUG] Begin Injection +2022/02/22 14:46:24 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:46:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:46:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:46:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:16:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b680 3980 [] false false map[] 0xc000cf8d00 0xc0000b80b0} +2022/02/22 14:46:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:46:24 [DEBUG] Exit from do method +2022/02/22 14:46:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:46:24 [DEBUG] provider has no plugin.Client +2022/02/22 14:46:24 [DEBUG] New state was assigned lineage "528c2949-21d5-40b3-b4ed-c1105045a9f7" +2022/02/22 14:46:24 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 14:46:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:46:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:46:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:46:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:46:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:46:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:46:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:46:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:46:24 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 14:48:03 [DEBUG] Test: Executing step 0 +2022/02/22 14:48:03 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:48:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:48:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:48:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:03 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:48:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 14:48:03 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 14:48:03 [DEBUG] Test: Executing step 1 +2022/02/22 14:48:03 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:48:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:48:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:48:03 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:48:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 14:48:03 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 14:48:03 [DEBUG] Test: Executing step 2 +2022/02/22 14:48:03 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:48:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:48:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:48:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:03 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:48:03 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:03 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:48:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:48:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:48:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:03 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:48:03 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 14:48:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:03 [DEBUG] : Beginning Read +2022/02/22 14:48:03 HTTP request GET mso/api/v1/tenants +2022/02/22 14:48:03 [DEBUG] Begin Injection +2022/02/22 14:48:03 HTTP request POST /login +2022/02/22 14:48:03 HTTP request after injection POST /login +2022/02/22 14:48:03 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 14:48:06 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 14:48:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:05 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjI2ODUsImlhdCI6MTY0NTUyMTQ4NSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJpZm5VQXoydkxlY2d1WWZQPWh2bWdsTDQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.oJ8K7za_BsQq3UuAiZ3lSEkY5NlI7dSWaKVMzvuviJA0a89bcXdTL8oDBqStmBJK2L5r0HgKXFRbm1wl_ZWXfhBuLFMlwKNFNfsUuI70KycPcx47O7cNAKOoHfUepOdPlSz3E9KJZy70x4Gaq8nXZ5auW6fwnywitlkd8bjCMd1gQWxVB_bC0_Tg403-Fxwd3TV6Z8v87M8OIcyz1LU7z18ZCPzFZKkU5A4CJ86s1IAeb4ZoDuln38b0sRNKigqQjyyJwrMGf5Ftm3LgFyUE27wvCzD6TyVfZWkIWJA9aku41ISRwZK8XpY3HOYwV8H8t0Z3-YVHeyITy0hNqL6cfg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0000fe340 -1 [chunked] false false map[] 0xc00039c400 0xc0001362c0} +2022/02/22 14:48:06 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjI2ODUsImlhdCI6MTY0NTUyMTQ4NSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJpZm5VQXoydkxlY2d1WWZQPWh2bWdsTDQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.oJ8K7za_BsQq3UuAiZ3lSEkY5NlI7dSWaKVMzvuviJA0a89bcXdTL8oDBqStmBJK2L5r0HgKXFRbm1wl_ZWXfhBuLFMlwKNFNfsUuI70KycPcx47O7cNAKOoHfUepOdPlSz3E9KJZy70x4Gaq8nXZ5auW6fwnywitlkd8bjCMd1gQWxVB_bC0_Tg403-Fxwd3TV6Z8v87M8OIcyz1LU7z18ZCPzFZKkU5A4CJ86s1IAeb4ZoDuln38b0sRNKigqQjyyJwrMGf5Ftm3LgFyUE27wvCzD6TyVfZWkIWJA9aku41ISRwZK8XpY3HOYwV8H8t0Z3-YVHeyITy0hNqL6cfg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjI2ODUsImlhdCI6MTY0NTUyMTQ4NSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJpZm5VQXoydkxlY2d1WWZQPWh2bWdsTDQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.oJ8K7za_BsQq3UuAiZ3lSEkY5NlI7dSWaKVMzvuviJA0a89bcXdTL8oDBqStmBJK2L5r0HgKXFRbm1wl_ZWXfhBuLFMlwKNFNfsUuI70KycPcx47O7cNAKOoHfUepOdPlSz3E9KJZy70x4Gaq8nXZ5auW6fwnywitlkd8bjCMd1gQWxVB_bC0_Tg403-Fxwd3TV6Z8v87M8OIcyz1LU7z18ZCPzFZKkU5A4CJ86s1IAeb4ZoDuln38b0sRNKigqQjyyJwrMGf5Ftm3LgFyUE27wvCzD6TyVfZWkIWJA9aku41ISRwZK8XpY3HOYwV8H8t0Z3-YVHeyITy0hNqL6cfg"} +2022/02/22 14:48:06 [DEBUG] Exit from do method +2022/02/22 14:48:06 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:48:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:48:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:48:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000fe1c0 3980 [] false false map[] 0xc00039c300 0xc0001362c0} +2022/02/22 14:48:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:48:06 [DEBUG] Exit from do method +2022/02/22 14:48:06 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:48:06 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:06 [DEBUG] New state was assigned lineage "c0a5af1c-3dc2-1147-43e6-be09b796d109" +2022/02/22 14:48:06 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:48:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:48:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:48:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:48:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:48:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:06 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:48:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:06 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 14:48:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:48:06 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:06 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_bdnlj" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 14:48:06 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:48:06 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 14:48:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:48:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:48:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:48:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:48:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 14:48:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:48:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:48:06 [DEBUG] Starting graph walk: walkApply +2022/02/22 14:48:06 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 14:48:06 [DEBUG] : Beginning Create +2022/02/22 14:48:06 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 14:48:06 [DEBUG] Begin Injection +2022/02/22 14:48:06 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 14:48:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:48:06 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:48:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000397380 160 [] false false map[] 0xc000908700 0xc0001362c0} +2022/02/22 14:48:06 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214aa4e1b00000378fd064d","name":"acctest_bdnlj","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:48:06 [DEBUG] Exit from do method +2022/02/22 14:48:06 [DEBUG] 6214aa4e1b00000378fd064d: Creation finished successfully +2022/02/22 14:48:06 [DEBUG] 6214aa4e1b00000378fd064d: Beginning Read +2022/02/22 14:48:06 id: 6214aa4e1b00000378fd064d +2022/02/22 14:48:06 HTTP request GET mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:06 [DEBUG] Begin Injection +2022/02/22 14:48:06 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091980 160 [] false false map[] 0xc00039cc00 0xc0001362c0} +2022/02/22 14:48:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d {"id":"6214aa4e1b00000378fd064d","name":"acctest_bdnlj","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:48:07 [DEBUG] Exit from do method +2022/02/22 14:48:07 [DEBUG] 6214aa4e1b00000378fd064d: Read finished successfully +2022/02/22 14:48:07 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:07 [DEBUG] New state was assigned lineage "d6ecfc4d-cb39-d504-b9ba-56fdd859f47a" +2022/02/22 14:48:07 HTTP request GET mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:07 [DEBUG] Begin Injection +2022/02/22 14:48:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048a340 160 [] false false map[] 0xc00039cd00 0xc0001362c0} +2022/02/22 14:48:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d {"id":"6214aa4e1b00000378fd064d","name":"acctest_bdnlj","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:48:07 [DEBUG] Exit from do method +2022/02/22 14:48:07 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:48:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:48:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:48:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:48:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:48:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:07 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:48:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:48:07 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:07 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:48:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:48:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:48:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:48:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:48:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:07 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:48:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:07 [DEBUG] : Beginning Read +2022/02/22 14:48:07 HTTP request GET mso/api/v1/tenants +2022/02/22 14:48:07 [DEBUG] Begin Injection +2022/02/22 14:48:07 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:48:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:48:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:48:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000596840 3980 [] false false map[] 0xc00092a700 0xc0001362c0} +2022/02/22 14:48:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:48:07 [DEBUG] Exit from do method +2022/02/22 14:48:07 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:48:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:48:07 [DEBUG] 6214aa4e1b00000378fd064d: Beginning Read +2022/02/22 14:48:07 id: 6214aa4e1b00000378fd064d +2022/02/22 14:48:07 HTTP request GET mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:07 [DEBUG] Begin Injection +2022/02/22 14:48:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dc340 160 [] false false map[] 0xc00039c500 0xc0001362c0} +2022/02/22 14:48:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d {"id":"6214aa4e1b00000378fd064d","name":"acctest_bdnlj","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:48:08 [DEBUG] Exit from do method +2022/02/22 14:48:08 [DEBUG] 6214aa4e1b00000378fd064d: Read finished successfully +2022/02/22 14:48:08 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:08 [DEBUG] New state was assigned lineage "a75512ed-0c80-fa15-c1f6-be23529b8df5" +2022/02/22 14:48:08 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:48:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:08 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:48:08 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:08 [DEBUG] Test: Executing step 3 +2022/02/22 14:48:08 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:08 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:48:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:08 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:48:08 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 14:48:08 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 14:48:08 [DEBUG] Test: Executing step 4 +2022/02/22 14:48:08 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:08 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:48:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 14:48:08 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:48:08 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:08 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:48:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:08 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:08 [DEBUG] : Beginning Read +2022/02/22 14:48:08 HTTP request GET mso/api/v1/tenants +2022/02/22 14:48:08 [DEBUG] Begin Injection +2022/02/22 14:48:08 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:48:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:48:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:48:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000622140 3980 [] false false map[] 0xc00039cb00 0xc0001362c0} +2022/02/22 14:48:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:48:08 [DEBUG] Exit from do method +2022/02/22 14:48:08 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:48:08 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 14:48:08 [DEBUG] 6214aa4e1b00000378fd064d: Beginning Read +2022/02/22 14:48:08 id: 6214aa4e1b00000378fd064d +2022/02/22 14:48:08 HTTP request GET mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:08 [DEBUG] Begin Injection +2022/02/22 14:48:08 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:08 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 14:48:08 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 14:48:08 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 14:48:08 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 14:48:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ccf2c0 160 [] false false map[] 0xc0009aa300 0xc0001362c0} +2022/02/22 14:48:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d {"id":"6214aa4e1b00000378fd064d","name":"acctest_bdnlj","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:48:09 [DEBUG] Exit from do method +2022/02/22 14:48:09 [DEBUG] 6214aa4e1b00000378fd064d: Read finished successfully +2022/02/22 14:48:09 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:09 [DEBUG] New state was assigned lineage "f18a3345-bfa2-4fb8-049b-ad84aa917827" +2022/02/22 14:48:09 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:48:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:09 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:09 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:48:09 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 14:48:09 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 14:48:09 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 14:48:09 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:09 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.164.254" + id: "6214aa4e1b00000378fd064d" => "6214aa4e1b00000378fd064d" + name: "acctest_bdnlj" => "acctest_bdnlj" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_aifqd" + template_name: "" => "acctest_6909a" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_bmgmj" + external_epg_name: "" => "acctest_bmgmj" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_6909a" + vrf_name: "" => "acctest_bmgmj" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_bmgmj" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_bmgmj" + schema_id: "" => "" + template: "" => "acctest_6909a" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214aa4e1b00000378fd064d + provider = provider.mso + description = + name = acctest_bdnlj + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 14:48:09 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:48:09 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 14:48:09 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 14:48:09 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 14:48:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 14:48:09 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] +2022/02/22 14:48:09 [DEBUG] Starting graph walk: walkApply +2022/02/22 14:48:09 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 14:48:09 [DEBUG] Schema: Beginning Creation +2022/02/22 14:48:09 HTTP request POST mso/api/v1/schemas +2022/02/22 14:48:09 [DEBUG] Begin Injection +2022/02/22 14:48:09 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 14:48:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 14:48:09 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 14:48:09 [DEBUG] 6214aa4e1b00000378fd064d: Beginning Policy Update +2022/02/22 14:48:09 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg! +2022/02/22 14:48:09 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg! +2022/02/22 14:48:09 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg! +2022/02/22 14:48:09 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 14:48:09 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214aa511d0000bf4f4f9e59] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000758200 400 [] false false map[] 0xc0009aae00 0xc0001362c0} +2022/02/22 14:48:09 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214aa511d0000bf4f4f9e59","displayName":"acctest_aifqd","description":"","templates":[{"name":"acctest_6909a","displayName":"acctest_6909a","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 14:48:09 [DEBUG] Exit from do method +2022/02/22 14:48:09 [DEBUG] 6214aa511d0000bf4f4f9e59: Schema Creation finished successfully +2022/02/22 14:48:09 [DEBUG] 6214aa511d0000bf4f4f9e59: Beginning Read +2022/02/22 14:48:09 HTTP request GET mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:09 [DEBUG] Begin Injection +2022/02/22 14:48:09 HTTP request after injection GET mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000802140 400 [] false false map[] 0xc00039c100 0xc0001362c0} +2022/02/22 14:48:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 {"id":"6214aa511d0000bf4f4f9e59","displayName":"acctest_aifqd","description":"","templates":[{"name":"acctest_6909a","displayName":"acctest_6909a","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 14:48:10 [DEBUG] Exit from do method +2022/02/22 14:48:10 [DEBUG] 6214aa511d0000bf4f4f9e59: Read finished successfully +2022/02/22 14:48:10 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 14:48:10 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 14:48:10 HTTP request PATCH mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:10 [DEBUG] Begin Injection +2022/02/22 14:48:10 HTTP request after injection PATCH mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:10 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:10 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:18:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00039cb00 0xc0001362c0} +2022/02/22 14:48:10 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:10 [DEBUG] acctest_bmgmj: Creation finished successfully +2022/02/22 14:48:10 [DEBUG] acctest_bmgmj: Beginning Read +2022/02/22 14:48:10 HTTP request GET mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:10 [DEBUG] Begin Injection +2022/02/22 14:48:10 HTTP request after injection GET mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000596a00 768 [] false false map[] 0xc0002f0000 0xc0001362c0} +2022/02/22 14:48:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 {"id":"6214aa511d0000bf4f4f9e59","displayName":"acctest_aifqd","description":"","templates":[{"name":"acctest_6909a","displayName":"acctest_6909a","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bmgmj","displayName":"acctest_bmgmj","vrfRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/vrfs/acctest_bmgmj","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 14:48:10 [DEBUG] Exit from do method +2022/02/22 14:48:10 currentvrfname acctest_bmgmj +2022/02/22 14:48:10 found correct vrfname +2022/02/22 14:48:10 [DEBUG] acctest_bmgmj: Read finished successfully +2022/02/22 14:48:10 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 14:48:10 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 14:48:10 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 14:48:10 HTTP request PATCH mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:10 [DEBUG] Begin Injection +2022/02/22 14:48:10 HTTP request after injection PATCH mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:11 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:11 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:18:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0009aa300 0xc0001362c0} +2022/02/22 14:48:11 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:11 [DEBUG] : Beginning Read +2022/02/22 14:48:11 HTTP request GET mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:11 [DEBUG] Begin Injection +2022/02/22 14:48:11 HTTP request after injection GET mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cce040 1147 [] false false map[] 0xc00039cd00 0xc0001362c0} +2022/02/22 14:48:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 {"id":"6214aa511d0000bf4f4f9e59","displayName":"acctest_aifqd","description":"","templates":[{"name":"acctest_6909a","displayName":"acctest_6909a","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bmgmj","displayName":"acctest_bmgmj","vrfRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/vrfs/acctest_bmgmj","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_bmgmj","displayName":"acctest_bmgmj","extEpgType":"on-premise","vrfRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/vrfs/acctest_bmgmj","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/externalEpgs/acctest_bmgmj","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:48:11 [DEBUG] Exit from do method +2022/02/22 14:48:11 [DEBUG] /schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/externalEpgs/acctest_bmgmj: Read finished successfully +2022/02/22 14:48:11 [DEBUG] New state was assigned lineage "f3fae48b-e76a-a18f-3be6-bbfb351d2bdb" +2022/02/22 14:48:11 [WARN] Test: Executing destroy step +2022/02/22 14:48:11 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:11 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:48:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 14:48:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:11 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:11 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:48:11 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:11 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 14:48:11 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 14:48:11 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 14:48:11 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:48:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:48:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:48:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:48:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 14:48:11 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 14:48:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:11 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:48:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:11 [DEBUG] : Beginning Read +2022/02/22 14:48:11 HTTP request GET mso/api/v1/tenants +2022/02/22 14:48:11 [DEBUG] Begin Injection +2022/02/22 14:48:11 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:48:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:48:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:48:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000396b40 3980 [] false false map[] 0xc00039c400 0xc0001362c0} +2022/02/22 14:48:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:48:12 [DEBUG] Exit from do method +2022/02/22 14:48:12 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:48:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:48:12 [DEBUG] 6214aa511d0000bf4f4f9e59: Beginning Read +2022/02/22 14:48:12 HTTP request GET mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:12 [DEBUG] Begin Injection +2022/02/22 14:48:12 HTTP request after injection GET mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:12 [DEBUG] 6214aa4e1b00000378fd064d: Beginning Read +2022/02/22 14:48:12 id: 6214aa4e1b00000378fd064d +2022/02/22 14:48:12 HTTP request GET mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:12 [DEBUG] Begin Injection +2022/02/22 14:48:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090c00 1147 [] false false map[] 0xc0010d2200 0xc0001362c0} +2022/02/22 14:48:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 {"id":"6214aa511d0000bf4f4f9e59","displayName":"acctest_aifqd","description":"","templates":[{"name":"acctest_6909a","displayName":"acctest_6909a","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bmgmj","displayName":"acctest_bmgmj","vrfRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/vrfs/acctest_bmgmj","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_bmgmj","displayName":"acctest_bmgmj","extEpgType":"on-premise","vrfRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/vrfs/acctest_bmgmj","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/externalEpgs/acctest_bmgmj","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:48:12 [DEBUG] Exit from do method +2022/02/22 14:48:12 [DEBUG] 6214aa511d0000bf4f4f9e59: Read finished successfully +2022/02/22 14:48:12 [DEBUG] acctest_bmgmj: Beginning Read +2022/02/22 14:48:12 HTTP request GET mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:12 [DEBUG] Begin Injection +2022/02/22 14:48:12 HTTP request after injection GET mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000ff6c0 160 [] false false map[] 0xc000cd8400 0xc0001362c0} +2022/02/22 14:48:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d {"id":"6214aa4e1b00000378fd064d","name":"acctest_bdnlj","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:48:12 [DEBUG] Exit from do method +2022/02/22 14:48:12 [DEBUG] 6214aa4e1b00000378fd064d: Read finished successfully +2022/02/22 14:48:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ccf5c0 1147 [] false false map[] 0xc000cd8900 0xc0001362c0} +2022/02/22 14:48:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 {"id":"6214aa511d0000bf4f4f9e59","displayName":"acctest_aifqd","description":"","templates":[{"name":"acctest_6909a","displayName":"acctest_6909a","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bmgmj","displayName":"acctest_bmgmj","vrfRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/vrfs/acctest_bmgmj","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_bmgmj","displayName":"acctest_bmgmj","extEpgType":"on-premise","vrfRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/vrfs/acctest_bmgmj","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/externalEpgs/acctest_bmgmj","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:48:13 [DEBUG] Exit from do method +2022/02/22 14:48:13 currentvrfname acctest_bmgmj +2022/02/22 14:48:13 found correct vrfname +2022/02/22 14:48:13 [DEBUG] acctest_bmgmj: Read finished successfully +2022/02/22 14:48:13 [DEBUG] /schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/externalEpgs/acctest_bmgmj: Beginning Read +2022/02/22 14:48:13 HTTP request GET mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:13 [DEBUG] Begin Injection +2022/02/22 14:48:13 HTTP request after injection GET mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dc2c0 1147 [] false false map[] 0xc000cd9000 0xc0001362c0} +2022/02/22 14:48:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 {"id":"6214aa511d0000bf4f4f9e59","displayName":"acctest_aifqd","description":"","templates":[{"name":"acctest_6909a","displayName":"acctest_6909a","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_bmgmj","displayName":"acctest_bmgmj","vrfRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/vrfs/acctest_bmgmj","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_bmgmj","displayName":"acctest_bmgmj","extEpgType":"on-premise","vrfRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/vrfs/acctest_bmgmj","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/externalEpgs/acctest_bmgmj","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:48:13 [DEBUG] Exit from do method +2022/02/22 14:48:13 [DEBUG] /schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/externalEpgs/acctest_bmgmj: Read finished successfully +2022/02/22 14:48:13 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:13 [DEBUG] New state was assigned lineage "9ff40d8f-54c2-29c5-a0d4-0dc09c31149f" +2022/02/22 14:48:13 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 14:48:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 14:48:13 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 14:48:13 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214aa4e1b00000378fd064d" => "" + name: "acctest_bdnlj" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "6214aa511d0000bf4f4f9e59" => "" + name: "acctest_aifqd" => "" + template_name: "acctest_6909a" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_bmgmj" => "" + external_epg_name: "acctest_bmgmj" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/externalEpgs/acctest_bmgmj" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214aa511d0000bf4f4f9e59" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_6909a" => "" + vrf_name: "acctest_bmgmj" => "" + vrf_schema_id: "6214aa511d0000bf4f4f9e59" => "" + vrf_template_name: "acctest_6909a" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_bmgmj" => "" + id: "acctest_bmgmj" => "" + layer3_multicast: "false" => "" + name: "acctest_bmgmj" => "" + schema_id: "6214aa511d0000bf4f4f9e59" => "" + template: "acctest_6909a" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214aa4e1b00000378fd064d + provider = provider.mso + description = + name = acctest_bdnlj + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 6214aa511d0000bf4f4f9e59 + provider = provider.mso + name = acctest_aifqd + template_name = acctest_6909a + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214aa511d0000bf4f4f9e59/templates/acctest_6909a/externalEpgs/acctest_bmgmj + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_bmgmj + external_epg_name = acctest_bmgmj + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214aa511d0000bf4f4f9e59 + selector_ip = + selector_name = + template_name = acctest_6909a + vrf_name = acctest_bmgmj + vrf_schema_id = 6214aa511d0000bf4f4f9e59 + vrf_template_name = acctest_6909a + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_bmgmj + provider = provider.mso + display_name = acctest_bmgmj + layer3_multicast = false + name = acctest_bmgmj + schema_id = 6214aa511d0000bf4f4f9e59 + template = acctest_6909a + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 14:48:13 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:48:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:48:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 14:48:13 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 14:48:13 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:48:13 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 14:48:13 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 14:48:13 [DEBUG] 6214aa4e1b00000378fd064d: Beginning Read +2022/02/22 14:48:13 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:13 [DEBUG] Begin Injection +2022/02/22 14:48:13 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:13 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 14:48:13 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 14:48:13 HTTP request PATCH mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:13 [DEBUG] Begin Injection +2022/02/22 14:48:13 HTTP request after injection PATCH mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:13 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:18:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000dba300 0xc000cea000} +2022/02/22 14:48:13 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:13 [DEBUG] : Read finished successfully +2022/02/22 14:48:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:18:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00039c400 0xc000cea420} +2022/02/22 14:48:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:13 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 14:48:13 [DEBUG] acctest_bmgmj: Beginning Destroy +2022/02/22 14:48:13 HTTP request PATCH mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:13 [DEBUG] Begin Injection +2022/02/22 14:48:13 HTTP request after injection PATCH mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:14 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:18:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0010f0700 0xc000cea420} +2022/02/22 14:48:14 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59?validate=false +2022/02/22 14:48:14 [DEBUG] acctest_bmgmj: Destroy finished successfully +2022/02/22 14:48:14 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 14:48:14 [DEBUG] 6214aa511d0000bf4f4f9e59: Beginning Destroy +2022/02/22 14:48:14 HTTP request DELETE mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:14 [DEBUG] Begin Injection +2022/02/22 14:48:14 HTTP request after injection DELETE mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:14 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:18:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0010f0d00 0xc000cea420} +2022/02/22 14:48:14 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214aa511d0000bf4f4f9e59 +2022/02/22 14:48:14 [DEBUG] 6214aa511d0000bf4f4f9e59: Destroy finished successfully +2022/02/22 14:48:14 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:14 [DEBUG] New state was assigned lineage "bee26888-a3ad-2cc1-c83f-91c9c27987f5" +2022/02/22 14:48:14 HTTP request GET mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:14 [DEBUG] Begin Injection +2022/02/22 14:48:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d +2022/02/22 14:48:14 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:14 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cce040 86 [] false false map[] 0xc000cd8200 0xc000cea420} +2022/02/22 14:48:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214aa4e1b00000378fd064d {"code":141,"message":"Resource Not Found: Policy 6214aa4e1b00000378fd064d not found"} +2022/02/22 14:48:14 [DEBUG] Exit from do method +2022/02/22 14:48:14 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 14:48:14 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 14:48:14 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:48:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:48:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:48:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:14 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:48:14 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 14:48:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:14 [DEBUG] : Beginning Read +2022/02/22 14:48:14 HTTP request GET mso/api/v1/tenants +2022/02/22 14:48:14 [DEBUG] Begin Injection +2022/02/22 14:48:14 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:48:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:48:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:48:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:18:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000622ec0 3980 [] false false map[] 0xc000576200 0xc000cea420} +2022/02/22 14:48:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:48:15 [DEBUG] Exit from do method +2022/02/22 14:48:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:48:15 [DEBUG] provider has no plugin.Client +2022/02/22 14:48:15 [DEBUG] New state was assigned lineage "f09afce5-6c31-c3df-1096-12a37e6a3616" +2022/02/22 14:48:15 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 14:48:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:48:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:48:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 14:48:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:48:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:48:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:48:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:48:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:48:15 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 14:52:56 [DEBUG] Test: Executing step 0 +2022/02/22 14:52:56 [DEBUG] provider has no plugin.Client +2022/02/22 14:52:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:52:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:52:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:52:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:52:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:52:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:52:56 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:52:56 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 14:52:56 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 14:52:56 [DEBUG] Test: Executing step 1 +2022/02/22 14:52:56 [DEBUG] provider has no plugin.Client +2022/02/22 14:52:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:52:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:52:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:52:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:52:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:52:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:52:56 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:52:56 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 14:52:56 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 14:52:56 [DEBUG] Test: Executing step 2 +2022/02/22 14:52:56 [DEBUG] provider has no plugin.Client +2022/02/22 14:52:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:52:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:52:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:52:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:52:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:52:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:52:56 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:52:56 [DEBUG] provider has no plugin.Client +2022/02/22 14:52:56 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:52:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:52:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:52:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:52:56 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:52:56 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 14:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:52:56 [DEBUG] : Beginning Read +2022/02/22 14:52:56 HTTP request GET mso/api/v1/tenants +2022/02/22 14:52:56 [DEBUG] Begin Injection +2022/02/22 14:52:56 HTTP request POST /login +2022/02/22 14:52:56 HTTP request after injection POST /login +2022/02/22 14:52:56 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 14:52:58 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 14:52:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:22:58 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjI5NzgsImlhdCI6MTY0NTUyMTc3OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJCVnJVMXJIRzM0eEZQdk5OTDU1PW9jdFMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.hXjVcoIei3EvKFI9kCqz2UsdtyMCaPdXxYnHLT2ETAw6C8150X82DskEcqqQqDtcwe9FpM8bx8wTvqUoVLrHcvJHcnsddWRdnTJ39aDktD5IhHEwDkmKWUcNJIUKDEmUz6hqVDysAnjb56x1EdLkOK-NR91OG8bINqp_l74k6BQnMfFhwQwEA5MwlfqfU6LmBfzqycssYpCcWwJE7OYMd_BulmQ-iRW4viTdxHM-llctXL381vRHz0txNysqS2Y12QqARqqP-3fpgbig1N94ubJWd3qsZqFVUI5rqvOfdUKj32BKCCdrc9PxEEQWHkorS82a168uc3-iFF2LYQPnQA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0002423c0 -1 [chunked] false false map[] 0xc00097a200 0xc0001362c0} +2022/02/22 14:52:58 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjI5NzgsImlhdCI6MTY0NTUyMTc3OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJCVnJVMXJIRzM0eEZQdk5OTDU1PW9jdFMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.hXjVcoIei3EvKFI9kCqz2UsdtyMCaPdXxYnHLT2ETAw6C8150X82DskEcqqQqDtcwe9FpM8bx8wTvqUoVLrHcvJHcnsddWRdnTJ39aDktD5IhHEwDkmKWUcNJIUKDEmUz6hqVDysAnjb56x1EdLkOK-NR91OG8bINqp_l74k6BQnMfFhwQwEA5MwlfqfU6LmBfzqycssYpCcWwJE7OYMd_BulmQ-iRW4viTdxHM-llctXL381vRHz0txNysqS2Y12QqARqqP-3fpgbig1N94ubJWd3qsZqFVUI5rqvOfdUKj32BKCCdrc9PxEEQWHkorS82a168uc3-iFF2LYQPnQA","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"app-user\",\"ReadPriv\"],[\"admin\",\"WritePriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjI5NzgsImlhdCI6MTY0NTUyMTc3OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJCVnJVMXJIRzM0eEZQdk5OTDU1PW9jdFMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.hXjVcoIei3EvKFI9kCqz2UsdtyMCaPdXxYnHLT2ETAw6C8150X82DskEcqqQqDtcwe9FpM8bx8wTvqUoVLrHcvJHcnsddWRdnTJ39aDktD5IhHEwDkmKWUcNJIUKDEmUz6hqVDysAnjb56x1EdLkOK-NR91OG8bINqp_l74k6BQnMfFhwQwEA5MwlfqfU6LmBfzqycssYpCcWwJE7OYMd_BulmQ-iRW4viTdxHM-llctXL381vRHz0txNysqS2Y12QqARqqP-3fpgbig1N94ubJWd3qsZqFVUI5rqvOfdUKj32BKCCdrc9PxEEQWHkorS82a168uc3-iFF2LYQPnQA"} +2022/02/22 14:52:58 [DEBUG] Exit from do method +2022/02/22 14:52:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:52:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:52:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:52:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:22:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091580 3980 [] false false map[] 0xc00097a100 0xc0001362c0} +2022/02/22 14:52:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:52:59 [DEBUG] Exit from do method +2022/02/22 14:52:59 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:52:59 [DEBUG] provider has no plugin.Client +2022/02/22 14:52:59 [DEBUG] New state was assigned lineage "c2bae596-0f33-fa8a-39a4-b6a88a64b7ba" +2022/02/22 14:52:59 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:52:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:52:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:52:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:52:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:52:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:52:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:52:59 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:52:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:52:59 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 14:52:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:52:59 [DEBUG] provider has no plugin.Client +2022/02/22 14:52:59 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_c08me" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 14:52:59 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:52:59 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 14:52:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:52:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:52:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:52:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:52:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:52:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:52:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 14:52:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:52:59 [DEBUG] Starting graph walk: walkApply +2022/02/22 14:52:59 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 14:52:59 [DEBUG] : Beginning Create +2022/02/22 14:52:59 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 14:52:59 [DEBUG] Begin Injection +2022/02/22 14:52:59 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 14:52:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:52:59 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 14:52:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:22:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000584600 160 [] false false map[] 0xc00097a900 0xc0001362c0} +2022/02/22 14:52:59 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214ab731b00004278fd064e","name":"acctest_c08me","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:52:59 [DEBUG] Exit from do method +2022/02/22 14:52:59 [DEBUG] 6214ab731b00004278fd064e: Creation finished successfully +2022/02/22 14:52:59 [DEBUG] 6214ab731b00004278fd064e: Beginning Read +2022/02/22 14:52:59 id: 6214ab731b00004278fd064e +2022/02/22 14:52:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:52:59 [DEBUG] Begin Injection +2022/02/22 14:52:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:52:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:52:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:52:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:22:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bcc0 160 [] false false map[] 0xc000852200 0xc0001362c0} +2022/02/22 14:52:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e {"id":"6214ab731b00004278fd064e","name":"acctest_c08me","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:52:59 [DEBUG] Exit from do method +2022/02/22 14:52:59 [DEBUG] 6214ab731b00004278fd064e: Read finished successfully +2022/02/22 14:52:59 [DEBUG] provider has no plugin.Client +2022/02/22 14:52:59 [DEBUG] New state was assigned lineage "96f76922-4054-dc3d-fe5b-182809cd354d" +2022/02/22 14:52:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:52:59 [DEBUG] Begin Injection +2022/02/22 14:52:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:52:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:22:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090980 160 [] false false map[] 0xc000398700 0xc0001362c0} +2022/02/22 14:53:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e {"id":"6214ab731b00004278fd064e","name":"acctest_c08me","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:53:00 [DEBUG] Exit from do method +2022/02/22 14:53:00 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:53:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:53:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:53:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:53:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:53:00 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:53:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:53:00 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:00 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:53:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:53:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:53:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:53:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:53:00 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:53:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:00 [DEBUG] : Beginning Read +2022/02/22 14:53:00 HTTP request GET mso/api/v1/tenants +2022/02/22 14:53:00 [DEBUG] Begin Injection +2022/02/22 14:53:00 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:53:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:53:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:53:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000584880 3980 [] false false map[] 0xc00097ae00 0xc0001362c0} +2022/02/22 14:53:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:53:00 [DEBUG] Exit from do method +2022/02/22 14:53:00 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:53:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:53:00 [DEBUG] 6214ab731b00004278fd064e: Beginning Read +2022/02/22 14:53:00 id: 6214ab731b00004278fd064e +2022/02/22 14:53:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:00 [DEBUG] Begin Injection +2022/02/22 14:53:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00088c040 160 [] false false map[] 0xc00097a700 0xc0001362c0} +2022/02/22 14:53:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e {"id":"6214ab731b00004278fd064e","name":"acctest_c08me","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:53:01 [DEBUG] Exit from do method +2022/02/22 14:53:01 [DEBUG] 6214ab731b00004278fd064e: Read finished successfully +2022/02/22 14:53:01 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:01 [DEBUG] New state was assigned lineage "52b00e3a-ed3e-a55d-e013-e732c22e9b3a" +2022/02/22 14:53:01 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:53:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:01 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:53:01 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:01 [DEBUG] Test: Executing step 3 +2022/02/22 14:53:01 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:53:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:01 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:53:01 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 14:53:01 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 14:53:01 [DEBUG] Test: Executing step 4 +2022/02/22 14:53:01 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:53:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:01 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:53:01 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:01 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:53:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:01 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:01 [DEBUG] : Beginning Read +2022/02/22 14:53:01 HTTP request GET mso/api/v1/tenants +2022/02/22 14:53:01 [DEBUG] Begin Injection +2022/02/22 14:53:01 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:53:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:53:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:53:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b2ba40 3980 [] false false map[] 0xc000398700 0xc0001362c0} +2022/02/22 14:53:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:53:01 [DEBUG] Exit from do method +2022/02/22 14:53:01 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:53:01 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:53:01 [DEBUG] 6214ab731b00004278fd064e: Beginning Read +2022/02/22 14:53:01 id: 6214ab731b00004278fd064e +2022/02/22 14:53:01 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:01 [DEBUG] Begin Injection +2022/02/22 14:53:01 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:01 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 14:53:01 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 14:53:01 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 14:53:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00088dd80 160 [] false false map[] 0xc000398b00 0xc0001362c0} +2022/02/22 14:53:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e {"id":"6214ab731b00004278fd064e","name":"acctest_c08me","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:53:01 [DEBUG] Exit from do method +2022/02/22 14:53:01 [DEBUG] 6214ab731b00004278fd064e: Read finished successfully +2022/02/22 14:53:01 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:01 [DEBUG] New state was assigned lineage "af1d5449-4bb3-37f9-8cce-0f83890e0861" +2022/02/22 14:53:01 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 14:53:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:01 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 14:53:01 [DEBUG] Starting graph walk: walkPlan +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:53:02 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 14:53:02 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 14:53:02 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 14:53:02 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 14:53:02 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:02 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.26.83" + id: "6214ab731b00004278fd064e" => "6214ab731b00004278fd064e" + name: "acctest_c08me" => "acctest_c08me" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_rx7rs" + template_name: "" => "acctest_q26uh" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_pk9ak" + external_epg_name: "" => "acctest_pk9ak" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_q26uh" + vrf_name: "" => "acctest_pk9ak" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_pk9ak" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_pk9ak" + schema_id: "" => "" + template: "" => "acctest_q26uh" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214ab731b00004278fd064e + provider = provider.mso + description = + name = acctest_c08me + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 14:53:02 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:53:02 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 14:53:02 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 14:53:02 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 14:53:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/22 14:53:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:53:02 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:53:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:53:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:53:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:53:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 14:53:02 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:53:02 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:53:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 14:53:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:02 [DEBUG] Starting graph walk: walkApply +2022/02/22 14:53:02 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 14:53:02 [DEBUG] Schema: Beginning Creation +2022/02/22 14:53:02 HTTP request POST mso/api/v1/schemas +2022/02/22 14:53:02 [DEBUG] Begin Injection +2022/02/22 14:53:02 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 14:53:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 14:53:02 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 14:53:02 [DEBUG] 6214ab731b00004278fd064e: Beginning Policy Update +2022/02/22 14:53:02 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg. +2022/02/22 14:53:02 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg. +2022/02/22 14:53:02 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg. +2022/02/22 14:53:02 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 14:53:02 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214ab761d0000e94f4f9e61] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dcc80 400 [] false false map[] 0xc000976400 0xc0001362c0} +2022/02/22 14:53:02 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214ab761d0000e94f4f9e61","displayName":"acctest_rx7rs","description":"","templates":[{"name":"acctest_q26uh","displayName":"acctest_q26uh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 14:53:02 [DEBUG] Exit from do method +2022/02/22 14:53:02 [DEBUG] 6214ab761d0000e94f4f9e61: Schema Creation finished successfully +2022/02/22 14:53:02 [DEBUG] 6214ab761d0000e94f4f9e61: Beginning Read +2022/02/22 14:53:02 HTTP request GET mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:02 [DEBUG] Begin Injection +2022/02/22 14:53:02 HTTP request after injection GET mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dd140 400 [] false false map[] 0xc000398100 0xc0001362c0} +2022/02/22 14:53:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 {"id":"6214ab761d0000e94f4f9e61","displayName":"acctest_rx7rs","description":"","templates":[{"name":"acctest_q26uh","displayName":"acctest_q26uh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 14:53:03 [DEBUG] Exit from do method +2022/02/22 14:53:03 [DEBUG] 6214ab761d0000e94f4f9e61: Read finished successfully +2022/02/22 14:53:03 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 14:53:03 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 14:53:03 HTTP request PATCH mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:03 [DEBUG] Begin Injection +2022/02/22 14:53:03 HTTP request after injection PATCH mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:03 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:03 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:23:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00097b000 0xc0001362c0} +2022/02/22 14:53:03 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:03 [DEBUG] acctest_pk9ak: Creation finished successfully +2022/02/22 14:53:03 [DEBUG] acctest_pk9ak: Beginning Read +2022/02/22 14:53:03 HTTP request GET mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:03 [DEBUG] Begin Injection +2022/02/22 14:53:03 HTTP request after injection GET mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000906c0 768 [] false false map[] 0xc000976000 0xc0001362c0} +2022/02/22 14:53:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 {"id":"6214ab761d0000e94f4f9e61","displayName":"acctest_rx7rs","description":"","templates":[{"name":"acctest_q26uh","displayName":"acctest_q26uh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pk9ak","displayName":"acctest_pk9ak","vrfRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/vrfs/acctest_pk9ak","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 14:53:03 [DEBUG] Exit from do method +2022/02/22 14:53:03 currentvrfname acctest_pk9ak +2022/02/22 14:53:03 found correct vrfname +2022/02/22 14:53:03 [DEBUG] acctest_pk9ak: Read finished successfully +2022/02/22 14:53:03 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 14:53:03 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 14:53:03 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 14:53:03 HTTP request PATCH mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:03 [DEBUG] Begin Injection +2022/02/22 14:53:03 HTTP request after injection PATCH mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:04 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:23:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000976a00 0xc0001362c0} +2022/02/22 14:53:04 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:04 [DEBUG] : Beginning Read +2022/02/22 14:53:04 HTTP request GET mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:04 [DEBUG] Begin Injection +2022/02/22 14:53:04 HTTP request after injection GET mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000906c0 1147 [] false false map[] 0xc000398100 0xc0001362c0} +2022/02/22 14:53:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 {"id":"6214ab761d0000e94f4f9e61","displayName":"acctest_rx7rs","description":"","templates":[{"name":"acctest_q26uh","displayName":"acctest_q26uh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pk9ak","displayName":"acctest_pk9ak","vrfRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/vrfs/acctest_pk9ak","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pk9ak","displayName":"acctest_pk9ak","extEpgType":"on-premise","vrfRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/vrfs/acctest_pk9ak","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/externalEpgs/acctest_pk9ak","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:53:04 [DEBUG] Exit from do method +2022/02/22 14:53:04 [DEBUG] /schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/externalEpgs/acctest_pk9ak: Read finished successfully +2022/02/22 14:53:04 [DEBUG] New state was assigned lineage "fb83ccbf-ccf5-e199-dc26-4a75a56b8452" +2022/02/22 14:53:04 [WARN] Test: Executing destroy step +2022/02/22 14:53:04 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:04 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 14:53:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 14:53:04 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:53:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 14:53:04 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:04 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:04 [DEBUG] Starting graph walk: walkValidate +2022/02/22 14:53:04 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 14:53:04 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 14:53:04 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:04 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 14:53:04 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:53:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 14:53:04 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 14:53:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 14:53:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:53:04 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 14:53:04 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:04 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:04 [DEBUG] : Beginning Read +2022/02/22 14:53:04 HTTP request GET mso/api/v1/tenants +2022/02/22 14:53:04 [DEBUG] Begin Injection +2022/02/22 14:53:04 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:53:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:53:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:53:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090f40 3980 [] false false map[] 0xc000398500 0xc0001362c0} +2022/02/22 14:53:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:53:04 [DEBUG] Exit from do method +2022/02/22 14:53:04 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:53:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 14:53:04 [DEBUG] 6214ab761d0000e94f4f9e61: Beginning Read +2022/02/22 14:53:04 HTTP request GET mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:04 [DEBUG] Begin Injection +2022/02/22 14:53:04 HTTP request after injection GET mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:04 [DEBUG] 6214ab731b00004278fd064e: Beginning Read +2022/02/22 14:53:04 id: 6214ab731b00004278fd064e +2022/02/22 14:53:04 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:04 [DEBUG] Begin Injection +2022/02/22 14:53:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000242dc0 1147 [] false false map[] 0xc00112a500 0xc0001362c0} +2022/02/22 14:53:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 {"id":"6214ab761d0000e94f4f9e61","displayName":"acctest_rx7rs","description":"","templates":[{"name":"acctest_q26uh","displayName":"acctest_q26uh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pk9ak","displayName":"acctest_pk9ak","vrfRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/vrfs/acctest_pk9ak","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pk9ak","displayName":"acctest_pk9ak","extEpgType":"on-premise","vrfRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/vrfs/acctest_pk9ak","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/externalEpgs/acctest_pk9ak","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:53:05 [DEBUG] Exit from do method +2022/02/22 14:53:05 [DEBUG] 6214ab761d0000e94f4f9e61: Read finished successfully +2022/02/22 14:53:05 [DEBUG] acctest_pk9ak: Beginning Read +2022/02/22 14:53:05 HTTP request GET mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:05 [DEBUG] Begin Injection +2022/02/22 14:53:05 HTTP request after injection GET mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000584c40 160 [] false false map[] 0xc000852600 0xc0001362c0} +2022/02/22 14:53:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e {"id":"6214ab731b00004278fd064e","name":"acctest_c08me","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 14:53:05 [DEBUG] Exit from do method +2022/02/22 14:53:05 [DEBUG] 6214ab731b00004278fd064e: Read finished successfully +2022/02/22 14:53:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000781680 1147 [] false false map[] 0xc00112ac00 0xc0001362c0} +2022/02/22 14:53:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 {"id":"6214ab761d0000e94f4f9e61","displayName":"acctest_rx7rs","description":"","templates":[{"name":"acctest_q26uh","displayName":"acctest_q26uh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pk9ak","displayName":"acctest_pk9ak","vrfRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/vrfs/acctest_pk9ak","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pk9ak","displayName":"acctest_pk9ak","extEpgType":"on-premise","vrfRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/vrfs/acctest_pk9ak","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/externalEpgs/acctest_pk9ak","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:53:05 [DEBUG] Exit from do method +2022/02/22 14:53:05 currentvrfname acctest_pk9ak +2022/02/22 14:53:05 found correct vrfname +2022/02/22 14:53:05 [DEBUG] acctest_pk9ak: Read finished successfully +2022/02/22 14:53:05 [DEBUG] /schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/externalEpgs/acctest_pk9ak: Beginning Read +2022/02/22 14:53:05 HTTP request GET mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:05 [DEBUG] Begin Injection +2022/02/22 14:53:05 HTTP request after injection GET mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00088c0c0 1147 [] false false map[] 0xc000d58800 0xc0001362c0} +2022/02/22 14:53:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 {"id":"6214ab761d0000e94f4f9e61","displayName":"acctest_rx7rs","description":"","templates":[{"name":"acctest_q26uh","displayName":"acctest_q26uh","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pk9ak","displayName":"acctest_pk9ak","vrfRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/vrfs/acctest_pk9ak","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pk9ak","displayName":"acctest_pk9ak","extEpgType":"on-premise","vrfRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/vrfs/acctest_pk9ak","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/externalEpgs/acctest_pk9ak","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 14:53:06 [DEBUG] Exit from do method +2022/02/22 14:53:06 [DEBUG] /schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/externalEpgs/acctest_pk9ak: Read finished successfully +2022/02/22 14:53:06 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:06 [DEBUG] New state was assigned lineage "3d754cc8-7435-7da9-b767-f0fa1f88ae76" +2022/02/22 14:53:06 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 14:53:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 14:53:06 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214ab731b00004278fd064e" => "" + name: "acctest_c08me" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "6214ab761d0000e94f4f9e61" => "" + name: "acctest_rx7rs" => "" + template_name: "acctest_q26uh" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_pk9ak" => "" + external_epg_name: "acctest_pk9ak" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/externalEpgs/acctest_pk9ak" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214ab761d0000e94f4f9e61" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_q26uh" => "" + vrf_name: "acctest_pk9ak" => "" + vrf_schema_id: "6214ab761d0000e94f4f9e61" => "" + vrf_template_name: "acctest_q26uh" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_pk9ak" => "" + id: "acctest_pk9ak" => "" + layer3_multicast: "false" => "" + name: "acctest_pk9ak" => "" + schema_id: "6214ab761d0000e94f4f9e61" => "" + template: "acctest_q26uh" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214ab731b00004278fd064e + provider = provider.mso + description = + name = acctest_c08me + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 6214ab761d0000e94f4f9e61 + provider = provider.mso + name = acctest_rx7rs + template_name = acctest_q26uh + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214ab761d0000e94f4f9e61/templates/acctest_q26uh/externalEpgs/acctest_pk9ak + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_pk9ak + external_epg_name = acctest_pk9ak + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214ab761d0000e94f4f9e61 + selector_ip = + selector_name = + template_name = acctest_q26uh + vrf_name = acctest_pk9ak + vrf_schema_id = 6214ab761d0000e94f4f9e61 + vrf_template_name = acctest_q26uh + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_pk9ak + provider = provider.mso + display_name = acctest_pk9ak + layer3_multicast = false + name = acctest_pk9ak + schema_id = 6214ab761d0000e94f4f9e61 + template = acctest_q26uh + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 14:53:06 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 14:53:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 14:53:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:06 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 14:53:06 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 14:53:06 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 14:53:06 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 14:53:06 [DEBUG] 6214ab731b00004278fd064e: Beginning Read +2022/02/22 14:53:06 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:06 [DEBUG] Begin Injection +2022/02/22 14:53:06 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:06 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 14:53:06 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 14:53:06 HTTP request PATCH mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:06 [DEBUG] Begin Injection +2022/02/22 14:53:06 HTTP request after injection PATCH mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:06 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:23:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001164200 0xc000222000} +2022/02/22 14:53:06 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:06 [DEBUG] : Read finished successfully +2022/02/22 14:53:06 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:23:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000852000 0xc0006a2000} +2022/02/22 14:53:06 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:06 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 14:53:06 [DEBUG] acctest_pk9ak: Beginning Destroy +2022/02/22 14:53:06 HTTP request PATCH mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:06 [DEBUG] Begin Injection +2022/02/22 14:53:06 HTTP request after injection PATCH mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:07 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:23:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d58200 0xc0006a2000} +2022/02/22 14:53:07 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61?validate=false +2022/02/22 14:53:07 [DEBUG] acctest_pk9ak: Destroy finished successfully +2022/02/22 14:53:07 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 14:53:07 [DEBUG] 6214ab761d0000e94f4f9e61: Beginning Destroy +2022/02/22 14:53:07 HTTP request DELETE mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:07 [DEBUG] Begin Injection +2022/02/22 14:53:07 HTTP request after injection DELETE mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:07 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:23:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001164800 0xc0006a2000} +2022/02/22 14:53:07 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214ab761d0000e94f4f9e61 +2022/02/22 14:53:07 [DEBUG] 6214ab761d0000e94f4f9e61: Destroy finished successfully +2022/02/22 14:53:07 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:07 [DEBUG] New state was assigned lineage "df8a1b1a-d6c7-39b7-e636-dd5386913184" +2022/02/22 14:53:07 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:07 [DEBUG] Begin Injection +2022/02/22 14:53:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e +2022/02/22 14:53:07 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:07 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000242040 86 [] false false map[] 0xc001164900 0xc0006a2000} +2022/02/22 14:53:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ab731b00004278fd064e {"code":141,"message":"Resource Not Found: Policy 6214ab731b00004278fd064e not found"} +2022/02/22 14:53:07 [DEBUG] Exit from do method +2022/02/22 14:53:07 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 14:53:07 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 14:53:07 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 14:53:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:53:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 14:53:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:07 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 14:53:08 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 14:53:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:08 [DEBUG] : Beginning Read +2022/02/22 14:53:08 HTTP request GET mso/api/v1/tenants +2022/02/22 14:53:08 [DEBUG] Begin Injection +2022/02/22 14:53:08 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 14:53:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:53:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 14:53:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:23:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a600 3980 [] false false map[] 0xc001165800 0xc0006a2000} +2022/02/22 14:53:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 14:53:08 [DEBUG] Exit from do method +2022/02/22 14:53:08 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 14:53:08 [DEBUG] provider has no plugin.Client +2022/02/22 14:53:08 [DEBUG] New state was assigned lineage "0e33c74f-324e-fbc1-3c04-45f30d63f101" +2022/02/22 14:53:08 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 14:53:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 14:53:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 14:53:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 14:53:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 14:53:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 14:53:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 14:53:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 14:53:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 14:53:08 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:01:31 [DEBUG] Test: Executing step 0 +2022/02/22 15:01:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:01:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:01:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:01:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:31 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:01:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:01:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:01:31 [DEBUG] Test: Executing step 1 +2022/02/22 15:01:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:01:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:01:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:01:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:31 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:01:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:01:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:01:31 [DEBUG] Test: Executing step 2 +2022/02/22 15:01:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:01:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:01:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:01:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:31 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:01:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:31 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:01:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:01:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:01:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:31 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:01:31 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:01:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:31 [DEBUG] : Beginning Read +2022/02/22 15:01:31 HTTP request GET mso/api/v1/tenants +2022/02/22 15:01:31 [DEBUG] Begin Injection +2022/02/22 15:01:31 HTTP request POST /login +2022/02/22 15:01:31 HTTP request after injection POST /login +2022/02/22 15:01:31 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:01:33 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:01:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:33 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjM0OTMsImlhdCI6MTY0NTUyMjI5MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJhYUt5NUx6RmFSVXNIc2xsdzVyWTQ0MjMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.ccir_CsoFLE-E8z0Y9IDcVwojgQDR2IMuihLsT-ks-y5r5xPW2OXEP3V-P_zuwbMfnDhBcN5dNHybCf1RpagOA02wcSUI6JMt5dEk1Q5XHC8tIPbaXdktOZ1ESR1tJ58YywjZ-lLdnilMtCdelKliZG8lHj3StOHrPxOVWajWsdqAf4j8iCrD71uaBGJwrcWropMti4l_iB9vp2FgLC5iVsvoXU6heEy4J5d9ipQomFjXRBDYpXId15gAdx-NUBXHOOZnD2nX4Vo5g4SkbEvhMzUYUZe4945m3L4dpRfmJanLwAiuhWKio9LX0mFx8rWYpRKDwHaP-lttVEK2glu6A; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00051cc00 -1 [chunked] false false map[] 0xc0009b4400 0xc00044bc30} +2022/02/22 15:01:33 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjM0OTMsImlhdCI6MTY0NTUyMjI5MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJhYUt5NUx6RmFSVXNIc2xsdzVyWTQ0MjMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.ccir_CsoFLE-E8z0Y9IDcVwojgQDR2IMuihLsT-ks-y5r5xPW2OXEP3V-P_zuwbMfnDhBcN5dNHybCf1RpagOA02wcSUI6JMt5dEk1Q5XHC8tIPbaXdktOZ1ESR1tJ58YywjZ-lLdnilMtCdelKliZG8lHj3StOHrPxOVWajWsdqAf4j8iCrD71uaBGJwrcWropMti4l_iB9vp2FgLC5iVsvoXU6heEy4J5d9ipQomFjXRBDYpXId15gAdx-NUBXHOOZnD2nX4Vo5g4SkbEvhMzUYUZe4945m3L4dpRfmJanLwAiuhWKio9LX0mFx8rWYpRKDwHaP-lttVEK2glu6A","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjM0OTMsImlhdCI6MTY0NTUyMjI5MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJhYUt5NUx6RmFSVXNIc2xsdzVyWTQ0MjMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.ccir_CsoFLE-E8z0Y9IDcVwojgQDR2IMuihLsT-ks-y5r5xPW2OXEP3V-P_zuwbMfnDhBcN5dNHybCf1RpagOA02wcSUI6JMt5dEk1Q5XHC8tIPbaXdktOZ1ESR1tJ58YywjZ-lLdnilMtCdelKliZG8lHj3StOHrPxOVWajWsdqAf4j8iCrD71uaBGJwrcWropMti4l_iB9vp2FgLC5iVsvoXU6heEy4J5d9ipQomFjXRBDYpXId15gAdx-NUBXHOOZnD2nX4Vo5g4SkbEvhMzUYUZe4945m3L4dpRfmJanLwAiuhWKio9LX0mFx8rWYpRKDwHaP-lttVEK2glu6A"} +2022/02/22 15:01:33 [DEBUG] Exit from do method +2022/02/22 15:01:33 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:01:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:01:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:01:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a86080 3980 [] false false map[] 0xc0009b4300 0xc00044bc30} +2022/02/22 15:01:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:01:34 [DEBUG] Exit from do method +2022/02/22 15:01:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:01:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:34 [DEBUG] New state was assigned lineage "14754293-ca4b-c45d-6233-ea604b19d5bb" +2022/02/22 15:01:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:01:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:01:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:01:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:01:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:01:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:34 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:01:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:01:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:01:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:34 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_9b348" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:01:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:01:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:01:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:01:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:01:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:01:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:01:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:01:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:01:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:01:34 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:01:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:01:34 [DEBUG] : Beginning Create +2022/02/22 15:01:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:01:34 [DEBUG] Begin Injection +2022/02/22 15:01:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:01:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:01:34 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:01:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051ce40 160 [] false false map[] 0xc00017e700 0xc00044bc30} +2022/02/22 15:01:34 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214ad761b00009a78fd0650","name":"acctest_9b348","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:01:34 [DEBUG] Exit from do method +2022/02/22 15:01:34 [DEBUG] 6214ad761b00009a78fd0650: Creation finished successfully +2022/02/22 15:01:34 [DEBUG] 6214ad761b00009a78fd0650: Beginning Read +2022/02/22 15:01:34 id: 6214ad761b00009a78fd0650 +2022/02/22 15:01:34 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:34 [DEBUG] Begin Injection +2022/02/22 15:01:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006492c0 160 [] false false map[] 0xc0007be200 0xc00044bc30} +2022/02/22 15:01:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 {"id":"6214ad761b00009a78fd0650","name":"acctest_9b348","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:01:34 [DEBUG] Exit from do method +2022/02/22 15:01:34 [DEBUG] 6214ad761b00009a78fd0650: Read finished successfully +2022/02/22 15:01:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:34 [DEBUG] New state was assigned lineage "690b47f1-289a-4f88-6d0d-6a4d7ae8caaf" +2022/02/22 15:01:34 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:34 [DEBUG] Begin Injection +2022/02/22 15:01:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051c040 160 [] false false map[] 0xc00017ea00 0xc00044bc30} +2022/02/22 15:01:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 {"id":"6214ad761b00009a78fd0650","name":"acctest_9b348","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:01:35 [DEBUG] Exit from do method +2022/02/22 15:01:35 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:01:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:01:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:01:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:01:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:01:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:35 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:01:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:01:35 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:35 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:01:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:01:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:01:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:01:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:01:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:35 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:01:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:35 [DEBUG] : Beginning Read +2022/02/22 15:01:35 HTTP request GET mso/api/v1/tenants +2022/02/22 15:01:35 [DEBUG] Begin Injection +2022/02/22 15:01:35 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:01:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:01:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:01:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a180 3980 [] false false map[] 0xc00017e300 0xc00044bc30} +2022/02/22 15:01:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:01:35 [DEBUG] Exit from do method +2022/02/22 15:01:35 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:01:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:01:35 [DEBUG] 6214ad761b00009a78fd0650: Beginning Read +2022/02/22 15:01:35 id: 6214ad761b00009a78fd0650 +2022/02/22 15:01:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:35 [DEBUG] Begin Injection +2022/02/22 15:01:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000649640 160 [] false false map[] 0xc000786100 0xc00044bc30} +2022/02/22 15:01:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 {"id":"6214ad761b00009a78fd0650","name":"acctest_9b348","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:01:36 [DEBUG] Exit from do method +2022/02/22 15:01:36 [DEBUG] 6214ad761b00009a78fd0650: Read finished successfully +2022/02/22 15:01:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:36 [DEBUG] New state was assigned lineage "8fad0ce8-3d77-862a-b16e-a2be1ac41091" +2022/02/22 15:01:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:01:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:36 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:01:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:36 [DEBUG] Test: Executing step 3 +2022/02/22 15:01:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:01:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:01:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:01:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:01:36 [DEBUG] Test: Executing step 4 +2022/02/22 15:01:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:01:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:01:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:01:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:36 [DEBUG] : Beginning Read +2022/02/22 15:01:36 HTTP request GET mso/api/v1/tenants +2022/02/22 15:01:36 [DEBUG] Begin Injection +2022/02/22 15:01:36 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:01:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:01:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:01:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a863c0 3980 [] false false map[] 0xc000e52b00 0xc00044bc30} +2022/02/22 15:01:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:01:36 [DEBUG] Exit from do method +2022/02/22 15:01:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:01:36 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:01:36 [DEBUG] 6214ad761b00009a78fd0650: Beginning Read +2022/02/22 15:01:36 id: 6214ad761b00009a78fd0650 +2022/02/22 15:01:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:36 [DEBUG] Begin Injection +2022/02/22 15:01:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:36 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:01:36 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:01:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:01:36 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:01:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051d640 160 [] false false map[] 0xc00017e600 0xc00044bc30} +2022/02/22 15:01:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 {"id":"6214ad761b00009a78fd0650","name":"acctest_9b348","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:01:37 [DEBUG] Exit from do method +2022/02/22 15:01:37 [DEBUG] 6214ad761b00009a78fd0650: Read finished successfully +2022/02/22 15:01:37 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:37 [DEBUG] New state was assigned lineage "3853fe2b-20c0-8038-4bf4-ede6536fb0c0" +2022/02/22 15:01:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:01:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:37 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:01:37 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:01:37 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:01:37 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:01:37 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:01:37 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:37 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.148.27" + id: "6214ad761b00009a78fd0650" => "6214ad761b00009a78fd0650" + name: "acctest_9b348" => "acctest_9b348" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_yx3jw" + template_name: "" => "acctest_dovmc" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_v1yb4" + external_epg_name: "" => "acctest_v1yb4" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_dovmc" + vrf_name: "" => "acctest_v1yb4" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_v1yb4" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_v1yb4" + schema_id: "" => "" + template: "" => "acctest_dovmc" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214ad761b00009a78fd0650 + provider = provider.mso + description = + name = acctest_9b348 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:01:37 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:01:37 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:01:37 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:01:37 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:01:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 15:01:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 15:01:37 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:01:37 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 15:01:37 [DEBUG] Schema: Beginning Creation +2022/02/22 15:01:37 HTTP request POST mso/api/v1/schemas +2022/02/22 15:01:37 [DEBUG] Begin Injection +2022/02/22 15:01:37 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 15:01:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:01:37 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:01:37 [DEBUG] 6214ad761b00009a78fd0650: Beginning Policy Update +2022/02/22 15:01:37 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg. +2022/02/22 15:01:37 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg. +2022/02/22 15:01:37 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg. +2022/02/22 15:01:37 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:01:37 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214ad791d00005a504f9e67] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f76040 400 [] false false map[] 0xc000ca4900 0xc00044bc30} +2022/02/22 15:01:37 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214ad791d00005a504f9e67","displayName":"acctest_yx3jw","description":"","templates":[{"name":"acctest_dovmc","displayName":"acctest_dovmc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:01:37 [DEBUG] Exit from do method +2022/02/22 15:01:37 [DEBUG] 6214ad791d00005a504f9e67: Schema Creation finished successfully +2022/02/22 15:01:37 [DEBUG] 6214ad791d00005a504f9e67: Beginning Read +2022/02/22 15:01:37 HTTP request GET mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:37 [DEBUG] Begin Injection +2022/02/22 15:01:37 HTTP request after injection GET mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051c880 400 [] false false map[] 0xc00027a000 0xc00044bc30} +2022/02/22 15:01:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 {"id":"6214ad791d00005a504f9e67","displayName":"acctest_yx3jw","description":"","templates":[{"name":"acctest_dovmc","displayName":"acctest_dovmc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:01:37 [DEBUG] Exit from do method +2022/02/22 15:01:37 [DEBUG] 6214ad791d00005a504f9e67: Read finished successfully +2022/02/22 15:01:37 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 15:01:37 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 15:01:37 HTTP request PATCH mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:37 [DEBUG] Begin Injection +2022/02/22 15:01:37 HTTP request after injection PATCH mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:38 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:31:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00027a700 0xc00044bc30} +2022/02/22 15:01:38 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:38 [DEBUG] acctest_v1yb4: Creation finished successfully +2022/02/22 15:01:38 [DEBUG] acctest_v1yb4: Beginning Read +2022/02/22 15:01:38 HTTP request GET mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:38 [DEBUG] Begin Injection +2022/02/22 15:01:38 HTTP request after injection GET mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a86700 768 [] false false map[] 0xc00017e000 0xc00044bc30} +2022/02/22 15:01:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 {"id":"6214ad791d00005a504f9e67","displayName":"acctest_yx3jw","description":"","templates":[{"name":"acctest_dovmc","displayName":"acctest_dovmc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_v1yb4","displayName":"acctest_v1yb4","vrfRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/vrfs/acctest_v1yb4","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 15:01:38 [DEBUG] Exit from do method +2022/02/22 15:01:38 currentvrfname acctest_v1yb4 +2022/02/22 15:01:38 found correct vrfname +2022/02/22 15:01:38 [DEBUG] acctest_v1yb4: Read finished successfully +2022/02/22 15:01:38 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:01:38 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 15:01:38 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 15:01:38 HTTP request PATCH mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:38 [DEBUG] Begin Injection +2022/02/22 15:01:38 HTTP request after injection PATCH mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:39 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:31:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017e600 0xc00044bc30} +2022/02/22 15:01:39 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:39 [DEBUG] : Beginning Read +2022/02/22 15:01:39 HTTP request GET mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:39 [DEBUG] Begin Injection +2022/02/22 15:01:39 HTTP request after injection GET mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a14140 1147 [] false false map[] 0xc00017e800 0xc00044bc30} +2022/02/22 15:01:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 {"id":"6214ad791d00005a504f9e67","displayName":"acctest_yx3jw","description":"","templates":[{"name":"acctest_dovmc","displayName":"acctest_dovmc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_v1yb4","displayName":"acctest_v1yb4","vrfRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/vrfs/acctest_v1yb4","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_v1yb4","displayName":"acctest_v1yb4","extEpgType":"on-premise","vrfRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/vrfs/acctest_v1yb4","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/externalEpgs/acctest_v1yb4","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:01:39 [DEBUG] Exit from do method +2022/02/22 15:01:39 [DEBUG] /schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/externalEpgs/acctest_v1yb4: Read finished successfully +2022/02/22 15:01:39 [DEBUG] New state was assigned lineage "b95a10e5-889d-be4a-bb1b-6ab70afea051" +2022/02/22 15:01:39 [WARN] Test: Executing destroy step +2022/02/22 15:01:39 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:01:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 15:01:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:01:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:01:39 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:01:39 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:39 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 15:01:39 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 15:01:39 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 15:01:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:01:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:01:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:01:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:01:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:01:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:01:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:01:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:39 [DEBUG] : Beginning Read +2022/02/22 15:01:39 HTTP request GET mso/api/v1/tenants +2022/02/22 15:01:39 [DEBUG] Begin Injection +2022/02/22 15:01:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:01:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:01:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:01:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a86080 3980 [] false false map[] 0xc0005d4200 0xc00044bc30} +2022/02/22 15:01:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:01:39 [DEBUG] Exit from do method +2022/02/22 15:01:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:01:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:01:39 [DEBUG] 6214ad791d00005a504f9e67: Beginning Read +2022/02/22 15:01:39 HTTP request GET mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:39 [DEBUG] Begin Injection +2022/02/22 15:01:39 HTTP request after injection GET mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:39 [DEBUG] 6214ad761b00009a78fd0650: Beginning Read +2022/02/22 15:01:39 id: 6214ad761b00009a78fd0650 +2022/02/22 15:01:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:39 [DEBUG] Begin Injection +2022/02/22 15:01:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000649600 1147 [] false false map[] 0xc00017e700 0xc00044bc30} +2022/02/22 15:01:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 {"id":"6214ad791d00005a504f9e67","displayName":"acctest_yx3jw","description":"","templates":[{"name":"acctest_dovmc","displayName":"acctest_dovmc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_v1yb4","displayName":"acctest_v1yb4","vrfRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/vrfs/acctest_v1yb4","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_v1yb4","displayName":"acctest_v1yb4","extEpgType":"on-premise","vrfRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/vrfs/acctest_v1yb4","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/externalEpgs/acctest_v1yb4","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:01:40 [DEBUG] Exit from do method +2022/02/22 15:01:40 [DEBUG] 6214ad791d00005a504f9e67: Read finished successfully +2022/02/22 15:01:40 [DEBUG] acctest_v1yb4: Beginning Read +2022/02/22 15:01:40 HTTP request GET mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:40 [DEBUG] Begin Injection +2022/02/22 15:01:40 HTTP request after injection GET mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006b4040 160 [] false false map[] 0xc000786400 0xc00044bc30} +2022/02/22 15:01:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 {"id":"6214ad761b00009a78fd0650","name":"acctest_9b348","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:01:40 [DEBUG] Exit from do method +2022/02/22 15:01:40 [DEBUG] 6214ad761b00009a78fd0650: Read finished successfully +2022/02/22 15:01:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d8a100 1147 [] false false map[] 0xc00017ec00 0xc00044bc30} +2022/02/22 15:01:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 {"id":"6214ad791d00005a504f9e67","displayName":"acctest_yx3jw","description":"","templates":[{"name":"acctest_dovmc","displayName":"acctest_dovmc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_v1yb4","displayName":"acctest_v1yb4","vrfRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/vrfs/acctest_v1yb4","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_v1yb4","displayName":"acctest_v1yb4","extEpgType":"on-premise","vrfRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/vrfs/acctest_v1yb4","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/externalEpgs/acctest_v1yb4","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:01:41 [DEBUG] Exit from do method +2022/02/22 15:01:41 currentvrfname acctest_v1yb4 +2022/02/22 15:01:41 found correct vrfname +2022/02/22 15:01:41 [DEBUG] acctest_v1yb4: Read finished successfully +2022/02/22 15:01:41 [DEBUG] /schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/externalEpgs/acctest_v1yb4: Beginning Read +2022/02/22 15:01:41 HTTP request GET mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:41 [DEBUG] Begin Injection +2022/02/22 15:01:41 HTTP request after injection GET mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a86ac0 1147 [] false false map[] 0xc00017e400 0xc00044bc30} +2022/02/22 15:01:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 {"id":"6214ad791d00005a504f9e67","displayName":"acctest_yx3jw","description":"","templates":[{"name":"acctest_dovmc","displayName":"acctest_dovmc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_v1yb4","displayName":"acctest_v1yb4","vrfRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/vrfs/acctest_v1yb4","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_v1yb4","displayName":"acctest_v1yb4","extEpgType":"on-premise","vrfRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/vrfs/acctest_v1yb4","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/externalEpgs/acctest_v1yb4","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:01:41 [DEBUG] Exit from do method +2022/02/22 15:01:41 [DEBUG] /schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/externalEpgs/acctest_v1yb4: Read finished successfully +2022/02/22 15:01:41 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:41 [DEBUG] New state was assigned lineage "c7bd8c47-efcd-d15b-1375-8b222d67055c" +2022/02/22 15:01:41 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:01:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:41 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:01:41 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214ad761b00009a78fd0650" => "" + name: "acctest_9b348" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "6214ad791d00005a504f9e67" => "" + name: "acctest_yx3jw" => "" + template_name: "acctest_dovmc" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_v1yb4" => "" + external_epg_name: "acctest_v1yb4" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/externalEpgs/acctest_v1yb4" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214ad791d00005a504f9e67" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_dovmc" => "" + vrf_name: "acctest_v1yb4" => "" + vrf_schema_id: "6214ad791d00005a504f9e67" => "" + vrf_template_name: "acctest_dovmc" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_v1yb4" => "" + id: "acctest_v1yb4" => "" + layer3_multicast: "false" => "" + name: "acctest_v1yb4" => "" + schema_id: "6214ad791d00005a504f9e67" => "" + template: "acctest_dovmc" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214ad761b00009a78fd0650 + provider = provider.mso + description = + name = acctest_9b348 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 6214ad791d00005a504f9e67 + provider = provider.mso + name = acctest_yx3jw + template_name = acctest_dovmc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214ad791d00005a504f9e67/templates/acctest_dovmc/externalEpgs/acctest_v1yb4 + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_v1yb4 + external_epg_name = acctest_v1yb4 + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214ad791d00005a504f9e67 + selector_ip = + selector_name = + template_name = acctest_dovmc + vrf_name = acctest_v1yb4 + vrf_schema_id = 6214ad791d00005a504f9e67 + vrf_template_name = acctest_dovmc + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_v1yb4 + provider = provider.mso + display_name = acctest_v1yb4 + layer3_multicast = false + name = acctest_v1yb4 + schema_id = 6214ad791d00005a504f9e67 + template = acctest_dovmc + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 15:01:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:01:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 15:01:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:01:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:01:41 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:01:41 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:01:41 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:01:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:01:41 [DEBUG] 6214ad761b00009a78fd0650: Beginning Read +2022/02/22 15:01:41 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:41 [DEBUG] Begin Injection +2022/02/22 15:01:41 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:41 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 15:01:41 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 15:01:41 HTTP request PATCH mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:41 [DEBUG] Begin Injection +2022/02/22 15:01:41 HTTP request after injection PATCH mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:42 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:31:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000787b00 0xc00044bce0} +2022/02/22 15:01:42 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:31:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017e300 0xc0001362c0} +2022/02/22 15:01:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:42 [DEBUG] : Read finished successfully +2022/02/22 15:01:42 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 15:01:42 [DEBUG] acctest_v1yb4: Beginning Destroy +2022/02/22 15:01:42 HTTP request PATCH mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:42 [DEBUG] Begin Injection +2022/02/22 15:01:42 HTTP request after injection PATCH mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:31:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0010bc400 0xc0001362c0} +2022/02/22 15:01:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67?validate=false +2022/02/22 15:01:42 [DEBUG] acctest_v1yb4: Destroy finished successfully +2022/02/22 15:01:42 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 15:01:42 [DEBUG] 6214ad791d00005a504f9e67: Beginning Destroy +2022/02/22 15:01:42 HTTP request DELETE mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:42 [DEBUG] Begin Injection +2022/02/22 15:01:42 HTTP request after injection DELETE mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:42 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:31:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0010bc500 0xc0001362c0} +2022/02/22 15:01:42 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214ad791d00005a504f9e67 +2022/02/22 15:01:42 [DEBUG] 6214ad791d00005a504f9e67: Destroy finished successfully +2022/02/22 15:01:42 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:42 [DEBUG] New state was assigned lineage "51f91734-e7af-7ee7-3853-d043cb53c3ba" +2022/02/22 15:01:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:42 [DEBUG] Begin Injection +2022/02/22 15:01:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 +2022/02/22 15:01:43 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:43 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051d180 86 [] false false map[] 0xc000a8c200 0xc0001362c0} +2022/02/22 15:01:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ad761b00009a78fd0650 {"code":141,"message":"Resource Not Found: Policy 6214ad761b00009a78fd0650 not found"} +2022/02/22 15:01:43 [DEBUG] Exit from do method +2022/02/22 15:01:43 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:01:43 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:01:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:01:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:01:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:01:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:01:43 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:01:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:43 [DEBUG] : Beginning Read +2022/02/22 15:01:43 HTTP request GET mso/api/v1/tenants +2022/02/22 15:01:43 [DEBUG] Begin Injection +2022/02/22 15:01:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:01:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:01:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:01:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:31:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a861c0 3980 [] false false map[] 0xc00017e000 0xc0001362c0} +2022/02/22 15:01:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:01:43 [DEBUG] Exit from do method +2022/02/22 15:01:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:01:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:01:43 [DEBUG] New state was assigned lineage "e6043ef6-c06e-89ec-ed33-909cbfb0711f" +2022/02/22 15:01:43 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:01:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:01:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:01:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:01:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:01:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:01:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:01:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:01:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:01:43 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:08:43 [DEBUG] Test: Executing step 0 +2022/02/22 15:08:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:43 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:08:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:43 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:08:43 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:08:43 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:08:43 [DEBUG] Test: Executing step 1 +2022/02/22 15:08:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:43 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:08:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:43 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:08:43 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:08:43 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:08:43 [DEBUG] Test: Executing step 2 +2022/02/22 15:08:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:43 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:08:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:43 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:08:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:08:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:08:43 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:43 [DEBUG] : Beginning Read +2022/02/22 15:08:43 HTTP request GET mso/api/v1/tenants +2022/02/22 15:08:43 [DEBUG] Begin Injection +2022/02/22 15:08:43 HTTP request POST /login +2022/02/22 15:08:43 HTTP request after injection POST /login +2022/02/22 15:08:43 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:08:45 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:08:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:45 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjM5MjUsImlhdCI6MTY0NTUyMjcyNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI9VlZQVm0zNGNlN29IdjhkPVpTMVdpOTIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.SozSMIdyVsEruKpn2x8z5_g3xZ-BlTlPKgon6pyRb2KmbhvNHKQUf8C5-V8V0pMysmozJ-lLh0NKG3SEg78v7GxD1QddpUzRoqhWbJa56wx5pm3TFGp_7sJU8RETvYg8npVfKf2mdfjKfSYGEu804tJlevRD8aUxeQ_JWZ5IdxpWxAHg3MmARm0e8f3prIHAQfkqpbjTVx8TFOUXkoWGcx_oedw4rxWfTyamL9hUYPXK6AQH4bje_H8oCe5W9YZ9ZEeRpvPMXL567u0FsXkKlFgTXUirFiaYY_u7a0iYGGzmJGc8CFFowKoLo38r3oUUtDa3Rz1a9AjQ5nLZu278gA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0006440c0 -1 [chunked] false false map[] 0xc000070400 0xc0003760b0} +2022/02/22 15:08:45 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjM5MjUsImlhdCI6MTY0NTUyMjcyNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI9VlZQVm0zNGNlN29IdjhkPVpTMVdpOTIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.SozSMIdyVsEruKpn2x8z5_g3xZ-BlTlPKgon6pyRb2KmbhvNHKQUf8C5-V8V0pMysmozJ-lLh0NKG3SEg78v7GxD1QddpUzRoqhWbJa56wx5pm3TFGp_7sJU8RETvYg8npVfKf2mdfjKfSYGEu804tJlevRD8aUxeQ_JWZ5IdxpWxAHg3MmARm0e8f3prIHAQfkqpbjTVx8TFOUXkoWGcx_oedw4rxWfTyamL9hUYPXK6AQH4bje_H8oCe5W9YZ9ZEeRpvPMXL567u0FsXkKlFgTXUirFiaYY_u7a0iYGGzmJGc8CFFowKoLo38r3oUUtDa3Rz1a9AjQ5nLZu278gA","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"app-user\",\"ReadPriv\"],[\"admin\",\"WritePriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjM5MjUsImlhdCI6MTY0NTUyMjcyNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI9VlZQVm0zNGNlN29IdjhkPVpTMVdpOTIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.SozSMIdyVsEruKpn2x8z5_g3xZ-BlTlPKgon6pyRb2KmbhvNHKQUf8C5-V8V0pMysmozJ-lLh0NKG3SEg78v7GxD1QddpUzRoqhWbJa56wx5pm3TFGp_7sJU8RETvYg8npVfKf2mdfjKfSYGEu804tJlevRD8aUxeQ_JWZ5IdxpWxAHg3MmARm0e8f3prIHAQfkqpbjTVx8TFOUXkoWGcx_oedw4rxWfTyamL9hUYPXK6AQH4bje_H8oCe5W9YZ9ZEeRpvPMXL567u0FsXkKlFgTXUirFiaYY_u7a0iYGGzmJGc8CFFowKoLo38r3oUUtDa3Rz1a9AjQ5nLZu278gA"} +2022/02/22 15:08:45 [DEBUG] Exit from do method +2022/02/22 15:08:45 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:08:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:08:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:08:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000644280 3980 [] false false map[] 0xc000070300 0xc0003760b0} +2022/02/22 15:08:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:08:46 [DEBUG] Exit from do method +2022/02/22 15:08:46 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:08:46 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:46 [DEBUG] New state was assigned lineage "7df97b07-dd5d-eca3-d81b-3ec6a274269f" +2022/02/22 15:08:46 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:08:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:08:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:08:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:08:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:08:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:46 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:08:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:46 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:08:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:08:46 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:46 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_0mqgq" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:08:46 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:08:46 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:08:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 15:08:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:08:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:08:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:08:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:08:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:08:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:08:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:46 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:08:46 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:08:46 [DEBUG] : Beginning Create +2022/02/22 15:08:46 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:08:46 [DEBUG] Begin Injection +2022/02/22 15:08:46 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:08:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:08:46 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:08:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002017c0 160 [] false false map[] 0xc000070a00 0xc0003760b0} +2022/02/22 15:08:46 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214af261b00001279fd0651","name":"acctest_0mqgq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:08:46 [DEBUG] Exit from do method +2022/02/22 15:08:46 [DEBUG] 6214af261b00001279fd0651: Creation finished successfully +2022/02/22 15:08:46 [DEBUG] 6214af261b00001279fd0651: Beginning Read +2022/02/22 15:08:46 id: 6214af261b00001279fd0651 +2022/02/22 15:08:46 HTTP request GET mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:46 [DEBUG] Begin Injection +2022/02/22 15:08:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000201980 160 [] false false map[] 0xc000070c00 0xc0003760b0} +2022/02/22 15:08:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 {"id":"6214af261b00001279fd0651","name":"acctest_0mqgq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:08:46 [DEBUG] Exit from do method +2022/02/22 15:08:46 [DEBUG] 6214af261b00001279fd0651: Read finished successfully +2022/02/22 15:08:46 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:46 [DEBUG] New state was assigned lineage "ef611975-c943-2692-be33-832ca635d4cd" +2022/02/22 15:08:46 HTTP request GET mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:46 [DEBUG] Begin Injection +2022/02/22 15:08:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000644080 160 [] false false map[] 0xc0006dc600 0xc0003760b0} +2022/02/22 15:08:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 {"id":"6214af261b00001279fd0651","name":"acctest_0mqgq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:08:47 [DEBUG] Exit from do method +2022/02/22 15:08:47 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:08:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:08:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:08:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:47 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:08:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:47 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:08:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:08:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:08:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:47 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:47 [DEBUG] : Beginning Read +2022/02/22 15:08:47 HTTP request GET mso/api/v1/tenants +2022/02/22 15:08:47 [DEBUG] Begin Injection +2022/02/22 15:08:47 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:08:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:08:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:08:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000442f00 3980 [] false false map[] 0xc0006dc600 0xc0003760b0} +2022/02/22 15:08:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:08:47 [DEBUG] Exit from do method +2022/02/22 15:08:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:08:47 [DEBUG] 6214af261b00001279fd0651: Beginning Read +2022/02/22 15:08:47 id: 6214af261b00001279fd0651 +2022/02/22 15:08:47 HTTP request GET mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:47 [DEBUG] Begin Injection +2022/02/22 15:08:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00096f300 160 [] false false map[] 0xc000844300 0xc0003760b0} +2022/02/22 15:08:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 {"id":"6214af261b00001279fd0651","name":"acctest_0mqgq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:08:47 [DEBUG] Exit from do method +2022/02/22 15:08:47 [DEBUG] 6214af261b00001279fd0651: Read finished successfully +2022/02/22 15:08:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:47 [DEBUG] New state was assigned lineage "ce23118a-2f28-1544-b616-d4fb7e4ed78f" +2022/02/22 15:08:47 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:08:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:08:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:08:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:47 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:08:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:47 [DEBUG] Test: Executing step 3 +2022/02/22 15:08:48 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:48 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:08:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:48 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:08:48 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:08:48 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:08:48 [DEBUG] Test: Executing step 4 +2022/02/22 15:08:48 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:48 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:08:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema.test mso_schema_template_anp.test mso_schema.test] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_anp_epg.test] +2022/02/22 15:08:48 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:08:48 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:48 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:08:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_anp.test] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_anp_epg.test] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:08:48 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:48 [DEBUG] : Beginning Read +2022/02/22 15:08:48 HTTP request GET mso/api/v1/tenants +2022/02/22 15:08:48 [DEBUG] Begin Injection +2022/02/22 15:08:48 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:08:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:08:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:08:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000201900 3980 [] false false map[] 0xc00065ac00 0xc0003760b0} +2022/02/22 15:08:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:08:48 [DEBUG] Exit from do method +2022/02/22 15:08:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:08:48 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:08:48 [DEBUG] Resource state not found for node "mso_schema_template_anp.test", instance mso_schema_template_anp.test +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [] +2022/02/22 15:08:48 [DEBUG] Resource state not found for node "mso_schema_template_anp_epg.test", instance mso_schema_template_anp_epg.test +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [] +2022/02/22 15:08:48 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_anp_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .proxy_arp: planned value cty.False does not match config value cty.NullVal(cty.Bool) + - .intersite_multicast_source: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:08:48 [DEBUG] 6214af261b00001279fd0651: Beginning Read +2022/02/22 15:08:48 id: 6214af261b00001279fd0651 +2022/02/22 15:08:48 HTTP request GET mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:48 [DEBUG] Begin Injection +2022/02/22 15:08:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000644a80 160 [] false false map[] 0xc000071200 0xc0003760b0} +2022/02/22 15:08:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 {"id":"6214af261b00001279fd0651","name":"acctest_0mqgq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:08:48 [DEBUG] Exit from do method +2022/02/22 15:08:48 [DEBUG] 6214af261b00001279fd0651: Read finished successfully +2022/02/22 15:08:48 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:48 [DEBUG] New state was assigned lineage "0936798f-5c3b-5259-6047-3110f9389ebb" +2022/02/22 15:08:48 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:08:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema.test mso_schema_template_anp.test mso_schema.test] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_anp_epg.test] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:48 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:48 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:08:48 [DEBUG] Resource instance state not found for node "mso_schema_template_anp.test", instance mso_schema_template_anp.test +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [] +2022/02/22 15:08:48 [DEBUG] Resource instance state not found for node "mso_schema_template_anp_epg.test", instance mso_schema_template_anp_epg.test +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [] +2022/02/22 15:08:48 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_anp_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .proxy_arp: planned value cty.False does not match config value cty.NullVal(cty.Bool) + - .intersite_multicast_source: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:08:48 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:48 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.235.90" + dhcp_relay_policy_provider.0.epg: "" => "" + id: "6214af261b00001279fd0651" => "6214af261b00001279fd0651" + name: "acctest_0mqgq" => "acctest_0mqgq" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_o23ya" + template_name: "" => "acctest_3r76r" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_anp.test + display_name: "" => "acctest_fp7ke" + id: "" => "" + name: "" => "acctest_fp7ke" + schema_id: "" => "" + template: "" => "acctest_3r76r" +CREATE: mso_schema_template_anp_epg.test + anp_name: "" => "acctest_fp7ke" + bd_schema_id: "" => "" + bd_template_name: "" => "" + display_name: "" => "" + id: "" => "" + intersite_multicast_source: "" => "false" + intra_epg: "" => "" + name: "" => "acctest_fp7ke" + preferred_group: "" => "" + proxy_arp: "" => "false" + schema_id: "" => "" + template_name: "" => "acctest_3r76r" + useg_epg: "" => "" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214af261b00001279fd0651 + provider = provider.mso + description = + name = acctest_0mqgq + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:08:48 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:08:48 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:08:48 [DEBUG] Resource state not found for node "mso_schema_template_anp.test", instance mso_schema_template_anp.test +2022/02/22 15:08:48 [DEBUG] Resource state not found for node "mso_schema_template_anp_epg.test", instance mso_schema_template_anp_epg.test +2022/02/22 15:08:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema_template_anp.test mso_schema_template_anp.test mso_schema_template_anp.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_anp_epg.test mso_schema_template_anp_epg.test mso_schema_template_anp_epg.test (prepare state)] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (prepare state)" references: [] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test (prepare state)" references: [] +2022/02/22 15:08:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:08:48 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:08:48 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 15:08:48 [DEBUG] Schema: Beginning Creation +2022/02/22 15:08:48 HTTP request POST mso/api/v1/schemas +2022/02/22 15:08:48 [DEBUG] Begin Injection +2022/02/22 15:08:48 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 15:08:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:08:49 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:08:49 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214af281d0000ad504f9e6d] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000442240 400 [] false false map[] 0xc000070900 0xc0003760b0} +2022/02/22 15:08:49 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214af281d0000ad504f9e6d","displayName":"acctest_o23ya","description":"","templates":[{"name":"acctest_3r76r","displayName":"acctest_3r76r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:08:49 [DEBUG] Exit from do method +2022/02/22 15:08:49 [DEBUG] 6214af281d0000ad504f9e6d: Schema Creation finished successfully +2022/02/22 15:08:49 [DEBUG] 6214af281d0000ad504f9e6d: Beginning Read +2022/02/22 15:08:49 HTTP request GET mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:49 [DEBUG] Begin Injection +2022/02/22 15:08:49 HTTP request after injection GET mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000442400 400 [] false false map[] 0xc000d4c000 0xc0003760b0} +2022/02/22 15:08:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d {"id":"6214af281d0000ad504f9e6d","displayName":"acctest_o23ya","description":"","templates":[{"name":"acctest_3r76r","displayName":"acctest_3r76r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:08:49 [DEBUG] Exit from do method +2022/02/22 15:08:49 [DEBUG] 6214af281d0000ad504f9e6d: Read finished successfully +2022/02/22 15:08:49 [DEBUG] mso_schema_template_anp.test: applying the planned Create change +2022/02/22 15:08:49 [DEBUG] Schema Template Anp: Beginning Creation +2022/02/22 15:08:49 HTTP request PATCH mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:49 [DEBUG] Begin Injection +2022/02/22 15:08:49 HTTP request after injection PATCH mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:38:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0006dc300 0xc0003760b0} +2022/02/22 15:08:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:50 [DEBUG] acctest_fp7ke: Creation finished successfully +2022/02/22 15:08:50 [DEBUG] : Beginning Read +2022/02/22 15:08:50 HTTP request GET mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:50 [DEBUG] Begin Injection +2022/02/22 15:08:50 HTTP request after injection GET mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[552] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a500 552 [] false false map[] 0xc000cc8000 0xc0003760b0} +2022/02/22 15:08:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d {"id":"6214af281d0000ad504f9e6d","displayName":"acctest_o23ya","description":"","templates":[{"name":"acctest_3r76r","displayName":"acctest_3r76r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[{"name":"acctest_fp7ke","displayName":"acctest_fp7ke","anpRef":"/schemas/6214af281d0000ad504f9e6d/templates/acctest_3r76r/anps/acctest_fp7ke","epgs":[]}],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 15:08:50 [DEBUG] Exit from do method +2022/02/22 15:08:50 currentanpname acctest_fp7ke +2022/02/22 15:08:50 found correct anpname +2022/02/22 15:08:50 [DEBUG] acctest_fp7ke: Read finished successfully +2022/02/22 15:08:50 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_anp_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .proxy_arp: planned value cty.False does not match config value cty.NullVal(cty.Bool) + - .intersite_multicast_source: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:08:50 [DEBUG] mso_schema_template_anp_epg.test: applying the planned Create change +2022/02/22 15:08:50 [DEBUG] Template Anp Epg: Beginning Creation +2022/02/22 15:08:50 HTTP request PATCH mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:50 [DEBUG] Begin Injection +2022/02/22 15:08:50 HTTP request after injection PATCH mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:50 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[133] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:50 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc00004a500 133 [] false false map[] 0xc000070400 0xc0003760b0} +2022/02/22 15:08:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false {"code":400,"message":"Bad Request: incomplete ref: /6214af281d0000ad504f9e6d/acctest_3r76r. If non-empty, must provide policy name"} +2022/02/22 15:08:50 [DEBUG] Exit from do method +2022/02/22 15:08:50 [DEBUG] mso_schema_template_anp_epg.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: incomplete ref: /6214af281d0000ad504f9e6d/acctest_3r76r. If non-empty, must provide policy name"{} +2022/02/22 15:08:50 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: incomplete ref: /6214af281d0000ad504f9e6d/acctest_3r76r. If non-empty, must provide policy name"{} +2022/02/22 15:08:50 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: incomplete ref: /6214af281d0000ad504f9e6d/acctest_3r76r. If non-empty, must provide policy name"{} +2022/02/22 15:08:50 [DEBUG] New state was assigned lineage "053520e4-438d-36d4-7e74-b1da9521f4d2" +2022/02/22 15:08:50 [WARN] Test: Executing destroy step +2022/02/22 15:08:50 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:50 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:08:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:08:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:08:50 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:08:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:08:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:08:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:08:50 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:08:50 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:08:50 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:50 [WARN] Not fixing up EachModes for mso_schema_template_anp.test because it has no config +2022/02/22 15:08:50 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 15:08:50 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:08:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:08:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:08:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:08:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:08:50 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:08:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:08:50 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:08:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:08:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:50 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:08:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:50 [DEBUG] : Beginning Read +2022/02/22 15:08:50 HTTP request GET mso/api/v1/tenants +2022/02/22 15:08:50 [DEBUG] Begin Injection +2022/02/22 15:08:50 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:08:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:08:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:08:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00096e280 3980 [] false false map[] 0xc000d4c800 0xc0003760b0} +2022/02/22 15:08:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:08:51 [DEBUG] Exit from do method +2022/02/22 15:08:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:08:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:08:51 [DEBUG] 6214af281d0000ad504f9e6d: Beginning Read +2022/02/22 15:08:51 HTTP request GET mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:51 [DEBUG] Begin Injection +2022/02/22 15:08:51 HTTP request after injection GET mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:51 [DEBUG] 6214af261b00001279fd0651: Beginning Read +2022/02/22 15:08:51 id: 6214af261b00001279fd0651 +2022/02/22 15:08:51 HTTP request GET mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:51 [DEBUG] Begin Injection +2022/02/22 15:08:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[552] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00096f940 552 [] false false map[] 0xc000070300 0xc0003760b0} +2022/02/22 15:08:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d {"id":"6214af281d0000ad504f9e6d","displayName":"acctest_o23ya","description":"","templates":[{"name":"acctest_3r76r","displayName":"acctest_3r76r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[{"name":"acctest_fp7ke","displayName":"acctest_fp7ke","anpRef":"/schemas/6214af281d0000ad504f9e6d/templates/acctest_3r76r/anps/acctest_fp7ke","epgs":[]}],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 15:08:51 [DEBUG] Exit from do method +2022/02/22 15:08:51 [DEBUG] 6214af281d0000ad504f9e6d: Read finished successfully +2022/02/22 15:08:51 [DEBUG] acctest_fp7ke: Beginning Read +2022/02/22 15:08:51 HTTP request GET mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:51 [DEBUG] Begin Injection +2022/02/22 15:08:51 HTTP request after injection GET mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000644080 160 [] false false map[] 0xc000d4cc00 0xc0003760b0} +2022/02/22 15:08:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 {"id":"6214af261b00001279fd0651","name":"acctest_0mqgq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:08:52 [DEBUG] Exit from do method +2022/02/22 15:08:52 [DEBUG] 6214af261b00001279fd0651: Read finished successfully +2022/02/22 15:08:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[552] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006447c0 552 [] false false map[] 0xc0006dc700 0xc0003760b0} +2022/02/22 15:08:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d {"id":"6214af281d0000ad504f9e6d","displayName":"acctest_o23ya","description":"","templates":[{"name":"acctest_3r76r","displayName":"acctest_3r76r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[{"name":"acctest_fp7ke","displayName":"acctest_fp7ke","anpRef":"/schemas/6214af281d0000ad504f9e6d/templates/acctest_3r76r/anps/acctest_fp7ke","epgs":[]}],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 15:08:52 [DEBUG] Exit from do method +2022/02/22 15:08:52 currentanpname acctest_fp7ke +2022/02/22 15:08:52 found correct anpname +2022/02/22 15:08:52 [DEBUG] acctest_fp7ke: Read finished successfully +2022/02/22 15:08:52 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:52 [DEBUG] New state was assigned lineage "c878d957-2fb0-208c-f1b3-67165f2bafc7" +2022/02/22 15:08:52 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:08:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_anp.test +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_anp.test (destroy) +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (destroy)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:08:52 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:08:52 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214af261b00001279fd0651" => "" + name: "acctest_0mqgq" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "6214af281d0000ad504f9e6d" => "" + name: "acctest_o23ya" => "" + template_name: "acctest_3r76r" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_anp.test + display_name: "acctest_fp7ke" => "" + id: "acctest_fp7ke" => "" + name: "acctest_fp7ke" => "" + schema_id: "6214af281d0000ad504f9e6d" => "" + template: "acctest_3r76r" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214af261b00001279fd0651 + provider = provider.mso + description = + name = acctest_0mqgq + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 6214af281d0000ad504f9e6d + provider = provider.mso + name = acctest_o23ya + template_name = acctest_3r76r + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_anp.test: + ID = acctest_fp7ke + provider = provider.mso + display_name = acctest_fp7ke + name = acctest_fp7ke + schema_id = 6214af281d0000ad504f9e6d + template = acctest_3r76r + + Dependencies: + mso_schema.test +2022/02/22 15:08:52 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:08:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_anp.test (destroy) +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (destroy)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (clean up state)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:08:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_anp.test (destroy) +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (destroy)" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:08:52 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:08:52 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:08:52 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:08:52 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:08:52 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:08:52 [DEBUG] mso_schema_template_anp.test: applying the planned Delete change +2022/02/22 15:08:52 [DEBUG] 6214af261b00001279fd0651: Beginning Read +2022/02/22 15:08:52 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:52 [DEBUG] Begin Injection +2022/02/22 15:08:52 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:52 [DEBUG] acctest_fp7ke: Beginning Destroy +2022/02/22 15:08:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:52 HTTP request PATCH mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:52 [DEBUG] Begin Injection +2022/02/22 15:08:52 HTTP request after injection PATCH mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:52 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:38:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000778700 0xc0003760b0} +2022/02/22 15:08:52 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:52 [DEBUG] : Read finished successfully +2022/02/22 15:08:52 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:38:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0006dc700 0xc000376160} +2022/02/22 15:08:52 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d?validate=false +2022/02/22 15:08:52 [DEBUG] acctest_fp7ke: Destroy finished successfully +2022/02/22 15:08:52 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 15:08:52 [DEBUG] 6214af281d0000ad504f9e6d: Beginning Destroy +2022/02/22 15:08:52 HTTP request DELETE mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:52 [DEBUG] Begin Injection +2022/02/22 15:08:52 HTTP request after injection DELETE mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:53 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:38:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d4ca00 0xc0003760b0} +2022/02/22 15:08:53 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214af281d0000ad504f9e6d +2022/02/22 15:08:53 [DEBUG] 6214af281d0000ad504f9e6d: Destroy finished successfully +2022/02/22 15:08:53 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:53 [DEBUG] New state was assigned lineage "8245cfd1-2e58-621a-28cc-33b7533d08ad" +2022/02/22 15:08:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:53 [DEBUG] Begin Injection +2022/02/22 15:08:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 +2022/02/22 15:08:53 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:53 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019f300 86 [] false false map[] 0xc000778200 0xc0003760b0} +2022/02/22 15:08:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214af261b00001279fd0651 {"code":141,"message":"Resource Not Found: Policy 6214af261b00001279fd0651 not found"} +2022/02/22 15:08:53 [DEBUG] Exit from do method +2022/02/22 15:08:53 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:08:53 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:08:53 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:08:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:08:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:08:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:53 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:08:53 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:08:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:53 [DEBUG] : Beginning Read +2022/02/22 15:08:53 HTTP request GET mso/api/v1/tenants +2022/02/22 15:08:53 [DEBUG] Begin Injection +2022/02/22 15:08:53 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:08:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:08:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:08:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:38:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000200300 3980 [] false false map[] 0xc000778300 0xc0003760b0} +2022/02/22 15:08:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:08:53 [DEBUG] Exit from do method +2022/02/22 15:08:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:08:53 [DEBUG] provider has no plugin.Client +2022/02/22 15:08:53 [DEBUG] New state was assigned lineage "0afaf761-fcc1-5a62-9ccc-2b0e1b105117" +2022/02/22 15:08:53 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:08:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:08:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:08:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:08:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:08:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:08:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:08:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:08:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:08:53 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:15:17 [DEBUG] Test: Executing step 0 +2022/02/22 15:15:17 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:15:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:15:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:17 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:15:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:15:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:15:17 [DEBUG] Test: Executing step 1 +2022/02/22 15:15:17 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:15:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:17 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:15:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:15:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:15:17 [DEBUG] Test: Executing step 2 +2022/02/22 15:15:17 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:15:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:17 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:15:17 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:17 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:15:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:15:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:15:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:17 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:15:17 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:15:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:17 [DEBUG] : Beginning Read +2022/02/22 15:15:17 HTTP request GET mso/api/v1/tenants +2022/02/22 15:15:17 [DEBUG] Begin Injection +2022/02/22 15:15:17 HTTP request POST /login +2022/02/22 15:15:17 HTTP request after injection POST /login +2022/02/22 15:15:17 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:15:19 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:15:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:19 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQzMTksImlhdCI6MTY0NTUyMzExOSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiIzRzVqekhxWTlsa3lZRHM4bTJNY1hocFIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.eAHmwkO8g-o95_b8tcZoY-EQUGPwLUT3M8HikXkSyq68kbzHqE_ShLj6AxCYT4MvgfodLPsOCUIcd1bOP0JcnmvFDu6kzYiUPDsuUA2SSn2woD7dEiEbD4NzlASl3eJOqN-S-3kEd5v9Mf8Gdkidm4TUtJxaBQx5jd9gx_lM7Chrbqjay8DIrF0lkWIK3RclW-qaOElci2rq0UZS0LSVZHuPvWFKh90ZwGeHJPwr1h7lEcCyTdGNI8aBF3Awg1_umAHbWuJiYiUaJ7SZniKR4-uVQFyMGwo3ZppCTtfypIl0sQQwCuvKqBu-DuqdpH6O0lhZvYVL90Bi7sCXiQ_CbQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00004a580 -1 [chunked] false false map[] 0xc00074c500 0xc00074a210} +2022/02/22 15:15:19 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQzMTksImlhdCI6MTY0NTUyMzExOSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiIzRzVqekhxWTlsa3lZRHM4bTJNY1hocFIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.eAHmwkO8g-o95_b8tcZoY-EQUGPwLUT3M8HikXkSyq68kbzHqE_ShLj6AxCYT4MvgfodLPsOCUIcd1bOP0JcnmvFDu6kzYiUPDsuUA2SSn2woD7dEiEbD4NzlASl3eJOqN-S-3kEd5v9Mf8Gdkidm4TUtJxaBQx5jd9gx_lM7Chrbqjay8DIrF0lkWIK3RclW-qaOElci2rq0UZS0LSVZHuPvWFKh90ZwGeHJPwr1h7lEcCyTdGNI8aBF3Awg1_umAHbWuJiYiUaJ7SZniKR4-uVQFyMGwo3ZppCTtfypIl0sQQwCuvKqBu-DuqdpH6O0lhZvYVL90Bi7sCXiQ_CbQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQzMTksImlhdCI6MTY0NTUyMzExOSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiIzRzVqekhxWTlsa3lZRHM4bTJNY1hocFIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.eAHmwkO8g-o95_b8tcZoY-EQUGPwLUT3M8HikXkSyq68kbzHqE_ShLj6AxCYT4MvgfodLPsOCUIcd1bOP0JcnmvFDu6kzYiUPDsuUA2SSn2woD7dEiEbD4NzlASl3eJOqN-S-3kEd5v9Mf8Gdkidm4TUtJxaBQx5jd9gx_lM7Chrbqjay8DIrF0lkWIK3RclW-qaOElci2rq0UZS0LSVZHuPvWFKh90ZwGeHJPwr1h7lEcCyTdGNI8aBF3Awg1_umAHbWuJiYiUaJ7SZniKR4-uVQFyMGwo3ZppCTtfypIl0sQQwCuvKqBu-DuqdpH6O0lhZvYVL90Bi7sCXiQ_CbQ"} +2022/02/22 15:15:19 [DEBUG] Exit from do method +2022/02/22 15:15:19 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:15:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:15:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:15:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b40040 3980 [] false false map[] 0xc00074c400 0xc00074a210} +2022/02/22 15:15:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:15:19 [DEBUG] Exit from do method +2022/02/22 15:15:19 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:15:19 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:19 [DEBUG] New state was assigned lineage "7c9b4c50-a149-65b9-6c23-c313cfd9bbff" +2022/02/22 15:15:19 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:15:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:15:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:15:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:19 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:15:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:19 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:15:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:15:19 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:19 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_t0pav" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:15:19 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:15:19 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:15:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:15:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:15:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:15:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:15:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:15:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:15:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:19 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:15:19 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:15:19 [DEBUG] : Beginning Create +2022/02/22 15:15:19 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:15:19 [DEBUG] Begin Injection +2022/02/22 15:15:19 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:15:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:15:20 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:15:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b86080 160 [] false false map[] 0xc000076c00 0xc00074a210} +2022/02/22 15:15:20 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b0b01b00004c79fd0652","name":"acctest_t0pav","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:15:20 [DEBUG] Exit from do method +2022/02/22 15:15:20 [DEBUG] 6214b0b01b00004c79fd0652: Creation finished successfully +2022/02/22 15:15:20 [DEBUG] 6214b0b01b00004c79fd0652: Beginning Read +2022/02/22 15:15:20 id: 6214b0b01b00004c79fd0652 +2022/02/22 15:15:20 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:20 [DEBUG] Begin Injection +2022/02/22 15:15:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019ea40 160 [] false false map[] 0xc000076e00 0xc00074a210} +2022/02/22 15:15:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 {"id":"6214b0b01b00004c79fd0652","name":"acctest_t0pav","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:15:20 [DEBUG] Exit from do method +2022/02/22 15:15:20 [DEBUG] 6214b0b01b00004c79fd0652: Read finished successfully +2022/02/22 15:15:20 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:20 [DEBUG] New state was assigned lineage "2ff5664b-5c04-aa93-c0a5-f981da78ce78" +2022/02/22 15:15:20 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:20 [DEBUG] Begin Injection +2022/02/22 15:15:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005a9280 160 [] false false map[] 0xc000076100 0xc00074a210} +2022/02/22 15:15:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 {"id":"6214b0b01b00004c79fd0652","name":"acctest_t0pav","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:15:21 [DEBUG] Exit from do method +2022/02/22 15:15:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:15:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:15:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:21 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:15:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:21 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:15:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:15:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:21 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:21 [DEBUG] : Beginning Read +2022/02/22 15:15:21 HTTP request GET mso/api/v1/tenants +2022/02/22 15:15:21 [DEBUG] Begin Injection +2022/02/22 15:15:21 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:15:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:15:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:15:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087e140 3980 [] false false map[] 0xc00071c600 0xc00074a210} +2022/02/22 15:15:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:15:21 [DEBUG] Exit from do method +2022/02/22 15:15:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:15:21 [DEBUG] 6214b0b01b00004c79fd0652: Beginning Read +2022/02/22 15:15:21 id: 6214b0b01b00004c79fd0652 +2022/02/22 15:15:21 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:21 [DEBUG] Begin Injection +2022/02/22 15:15:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005a8540 160 [] false false map[] 0xc000076600 0xc00074a210} +2022/02/22 15:15:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 {"id":"6214b0b01b00004c79fd0652","name":"acctest_t0pav","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:15:21 [DEBUG] Exit from do method +2022/02/22 15:15:21 [DEBUG] 6214b0b01b00004c79fd0652: Read finished successfully +2022/02/22 15:15:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:21 [DEBUG] New state was assigned lineage "9a8e2a3c-faa5-8c8a-e10a-7b12e3fb7600" +2022/02/22 15:15:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:15:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:15:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:15:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:21 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:15:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:21 [DEBUG] Test: Executing step 3 +2022/02/22 15:15:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:21 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:15:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:21 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:15:21 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:15:21 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:15:21 [DEBUG] Test: Executing step 4 +2022/02/22 15:15:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:21 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:15:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:15:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:21 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:15:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:21 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:15:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:15:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:21 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:15:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:21 [DEBUG] : Beginning Read +2022/02/22 15:15:21 HTTP request GET mso/api/v1/tenants +2022/02/22 15:15:21 [DEBUG] Begin Injection +2022/02/22 15:15:21 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:15:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:15:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:15:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005a9180 3980 [] false false map[] 0xc0009c2200 0xc00074a210} +2022/02/22 15:15:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:15:22 [DEBUG] Exit from do method +2022/02/22 15:15:22 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:15:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:15:22 [DEBUG] 6214b0b01b00004c79fd0652: Beginning Read +2022/02/22 15:15:22 id: 6214b0b01b00004c79fd0652 +2022/02/22 15:15:22 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:22 [DEBUG] Begin Injection +2022/02/22 15:15:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a0380 160 [] false false map[] 0xc000b50200 0xc00074a210} +2022/02/22 15:15:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 {"id":"6214b0b01b00004c79fd0652","name":"acctest_t0pav","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:15:22 [DEBUG] Exit from do method +2022/02/22 15:15:22 [DEBUG] 6214b0b01b00004c79fd0652: Read finished successfully +2022/02/22 15:15:22 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:22 [DEBUG] New state was assigned lineage "39dd18f8-a623-3d2f-dcd8-fa00fc05bf2e" +2022/02/22 15:15:22 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:15:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:15:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:15:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:22 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:15:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:15:22 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:22 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.57.15" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214b0b01b00004c79fd0652" => "6214b0b01b00004c79fd0652" + name: "acctest_t0pav" => "acctest_t0pav" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b0b01b00004c79fd0652 + provider = provider.mso + description = + name = acctest_t0pav + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:15:22 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:15:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:15:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:15:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:15:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:15:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:15:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:15:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:15:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:22 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:15:22 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:15:22 [DEBUG] 6214b0b01b00004c79fd0652: Beginning Policy Update +2022/02/22 15:15:22 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:22 [DEBUG] Begin Injection +2022/02/22 15:15:22 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:23 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e380 355 [] false false map[] 0xc0009c2700 0xc00074a210} +2022/02/22 15:15:23 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 {"id":"6214b0b01b00004c79fd0652","name":"acctest_t0pav","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.57.15","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:15:23 [DEBUG] Exit from do method +2022/02/22 15:15:23 [DEBUG] Policy Update finished successfully: 6214b0b01b00004c79fd0652 +2022/02/22 15:15:23 [DEBUG] 6214b0b01b00004c79fd0652: Beginning Read +2022/02/22 15:15:23 id: 6214b0b01b00004c79fd0652 +2022/02/22 15:15:23 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:23 [DEBUG] Begin Injection +2022/02/22 15:15:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a00c0 355 [] false false map[] 0xc0001d2000 0xc00074a210} +2022/02/22 15:15:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 {"id":"6214b0b01b00004c79fd0652","name":"acctest_t0pav","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.57.15","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:15:23 [DEBUG] Exit from do method +2022/02/22 15:15:23 [DEBUG] 6214b0b01b00004c79fd0652: Read finished successfully +2022/02/22 15:15:23 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 15:15:23 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:23 [DEBUG] New state was assigned lineage "2ea2cbe7-08d9-0811-1007-a34066da454a" +2022/02/22 15:15:23 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:23 [DEBUG] Begin Injection +2022/02/22 15:15:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b40380 355 [] false false map[] 0xc000076300 0xc00074a210} +2022/02/22 15:15:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 {"id":"6214b0b01b00004c79fd0652","name":"acctest_t0pav","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.57.15","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:15:23 [DEBUG] Exit from do method +2022/02/22 15:15:23 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:15:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:15:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:15:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:23 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:15:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:15:23 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:23 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:15:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:15:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:15:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:23 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:15:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:23 [DEBUG] : Beginning Read +2022/02/22 15:15:23 HTTP request GET mso/api/v1/tenants +2022/02/22 15:15:23 [DEBUG] Begin Injection +2022/02/22 15:15:23 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:15:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:15:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:15:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b14380 3980 [] false false map[] 0xc000076300 0xc00074a210} +2022/02/22 15:15:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:15:24 [DEBUG] Exit from do method +2022/02/22 15:15:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:15:24 [DEBUG] 6214b0b01b00004c79fd0652: Beginning Read +2022/02/22 15:15:24 id: 6214b0b01b00004c79fd0652 +2022/02/22 15:15:24 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:24 [DEBUG] Begin Injection +2022/02/22 15:15:24 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b40040 355 [] false false map[] 0xc000077100 0xc00074a210} +2022/02/22 15:15:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 {"id":"6214b0b01b00004c79fd0652","name":"acctest_t0pav","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.57.15","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:15:24 [DEBUG] Exit from do method +2022/02/22 15:15:24 [DEBUG] 6214b0b01b00004c79fd0652: Read finished successfully +2022/02/22 15:15:24 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:24 [DEBUG] New state was assigned lineage "424f826c-a6e9-fc4c-2766-efd50846df58" +2022/02/22 15:15:24 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:24 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:15:24 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:24 [DEBUG] Test: Executing step 5 +2022/02/22 15:15:24 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:24 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:24 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:15:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Reference to undeclared resource: A managed resource "mso_schema_template_anp_epg" "test" has not been declared in the root module. +2022/02/22 15:15:24 [ERROR] : eval: *terraform.EvalSequence, err: Reference to undeclared resource: A managed resource "mso_schema_template_anp_epg" "test" has not been declared in the root module. +2022/02/22 15:15:24 [WARN] Test: Executing destroy step +2022/02/22 15:15:24 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:24 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:15:24 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:24 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:15:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:15:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:15:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:24 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:15:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:24 [DEBUG] : Beginning Read +2022/02/22 15:15:24 HTTP request GET mso/api/v1/tenants +2022/02/22 15:15:24 [DEBUG] Begin Injection +2022/02/22 15:15:24 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:15:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:15:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:15:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a0080 3980 [] false false map[] 0xc0009c2f00 0xc00074a210} +2022/02/22 15:15:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:15:25 [DEBUG] Exit from do method +2022/02/22 15:15:25 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:15:25 [DEBUG] 6214b0b01b00004c79fd0652: Beginning Read +2022/02/22 15:15:25 id: 6214b0b01b00004c79fd0652 +2022/02/22 15:15:25 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:25 [DEBUG] Begin Injection +2022/02/22 15:15:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b14040 355 [] false false map[] 0xc0009c2500 0xc00074a210} +2022/02/22 15:15:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 {"id":"6214b0b01b00004c79fd0652","name":"acctest_t0pav","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.57.15","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:15:25 [DEBUG] Exit from do method +2022/02/22 15:15:25 [DEBUG] 6214b0b01b00004c79fd0652: Read finished successfully +2022/02/22 15:15:25 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:25 [DEBUG] New state was assigned lineage "267f7a7d-3225-fb90-4075-3cf695c89979" +2022/02/22 15:15:25 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:15:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:15:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:15:25 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:15:25 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.57.15" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214b0b01b00004c79fd0652" => "" + name: "acctest_t0pav" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b0b01b00004c79fd0652 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.57.15 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_t0pav + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:15:25 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:15:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:15:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:15:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:25 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:15:25 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:15:25 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:15:25 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:15:25 [DEBUG] 6214b0b01b00004c79fd0652: Beginning Read +2022/02/22 15:15:25 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:25 [DEBUG] Begin Injection +2022/02/22 15:15:25 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:25 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:45:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0009c3a00 0xc00074a210} +2022/02/22 15:15:25 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:25 [DEBUG] : Read finished successfully +2022/02/22 15:15:25 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:25 [DEBUG] New state was assigned lineage "1959e1ad-35cd-a2ad-3812-dd212826bc07" +2022/02/22 15:15:25 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:25 [DEBUG] Begin Injection +2022/02/22 15:15:25 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 +2022/02/22 15:15:26 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:26 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b146c0 86 [] false false map[] 0xc0009c2000 0xc00074a210} +2022/02/22 15:15:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b0b01b00004c79fd0652 {"code":141,"message":"Resource Not Found: Policy 6214b0b01b00004c79fd0652 not found"} +2022/02/22 15:15:26 [DEBUG] Exit from do method +2022/02/22 15:15:26 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:15:26 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:15:26 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:15:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:15:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:15:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:26 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:15:26 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:15:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:26 [DEBUG] : Beginning Read +2022/02/22 15:15:26 HTTP request GET mso/api/v1/tenants +2022/02/22 15:15:26 [DEBUG] Begin Injection +2022/02/22 15:15:26 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:15:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:15:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:15:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:45:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a380 3980 [] false false map[] 0xc000f64200 0xc00074a210} +2022/02/22 15:15:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:15:26 [DEBUG] Exit from do method +2022/02/22 15:15:26 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:15:26 [DEBUG] provider has no plugin.Client +2022/02/22 15:15:26 [DEBUG] New state was assigned lineage "d112a0fd-4c29-2afa-145f-6d0fd3355856" +2022/02/22 15:15:26 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:15:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:15:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:15:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:15:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:15:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:15:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:15:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:15:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:15:26 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:17:03 [DEBUG] Test: Executing step 0 +2022/02/22 15:17:03 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:17:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:17:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:17:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:03 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:17:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:17:03 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:17:03 [DEBUG] Test: Executing step 1 +2022/02/22 15:17:03 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:17:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:03 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:17:03 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:17:03 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:17:03 [DEBUG] Test: Executing step 2 +2022/02/22 15:17:03 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:17:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:03 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:17:04 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:04 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:17:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:17:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:17:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:04 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:17:04 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:17:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:04 [DEBUG] : Beginning Read +2022/02/22 15:17:04 HTTP request GET mso/api/v1/tenants +2022/02/22 15:17:04 [DEBUG] Begin Injection +2022/02/22 15:17:04 HTTP request POST /login +2022/02/22 15:17:04 HTTP request after injection POST /login +2022/02/22 15:17:04 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:17:05 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:17:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:05 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ0MjUsImlhdCI6MTY0NTUyMzIyNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ5YlJHa0tHTEJFZ3JlbGJIVHVKY1Npa20iLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.L8-orcmf2K6Z668UInGg7hiNyNsWABTWt1yeJyCdefBxGpM8-DZucxsr6vTTo97uVZHY1ouD8Yq6QMJyNBAgAMJuBszQXtKD3jbvRP0AIC5rJBvhIHpgMcGFGL7q8oMo4ujnCOEYVbHUdnaszMRRYOeoRFeA9OLqNV1_nCiN_Vo1c20AGJ8Wwa4RftY6LbRqPYJBpYA598B9XhMRYwL-GUHP7CasdflXPpGtq8NeAmgPPJkLJm11W5YDrhypDJCgdTpEZZfcb56CDAAs8PD19TitMhNBYIPzIpguMs1l7_qOPOxC-mZqYrHVfs8j5R286VVGWU1ZkgM9bpYdDXUYXw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0005bc3c0 -1 [chunked] false false map[] 0xc0004a7b00 0xc0005000b0} +2022/02/22 15:17:05 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ0MjUsImlhdCI6MTY0NTUyMzIyNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ5YlJHa0tHTEJFZ3JlbGJIVHVKY1Npa20iLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.L8-orcmf2K6Z668UInGg7hiNyNsWABTWt1yeJyCdefBxGpM8-DZucxsr6vTTo97uVZHY1ouD8Yq6QMJyNBAgAMJuBszQXtKD3jbvRP0AIC5rJBvhIHpgMcGFGL7q8oMo4ujnCOEYVbHUdnaszMRRYOeoRFeA9OLqNV1_nCiN_Vo1c20AGJ8Wwa4RftY6LbRqPYJBpYA598B9XhMRYwL-GUHP7CasdflXPpGtq8NeAmgPPJkLJm11W5YDrhypDJCgdTpEZZfcb56CDAAs8PD19TitMhNBYIPzIpguMs1l7_qOPOxC-mZqYrHVfs8j5R286VVGWU1ZkgM9bpYdDXUYXw","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ0MjUsImlhdCI6MTY0NTUyMzIyNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ5YlJHa0tHTEJFZ3JlbGJIVHVKY1Npa20iLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.L8-orcmf2K6Z668UInGg7hiNyNsWABTWt1yeJyCdefBxGpM8-DZucxsr6vTTo97uVZHY1ouD8Yq6QMJyNBAgAMJuBszQXtKD3jbvRP0AIC5rJBvhIHpgMcGFGL7q8oMo4ujnCOEYVbHUdnaszMRRYOeoRFeA9OLqNV1_nCiN_Vo1c20AGJ8Wwa4RftY6LbRqPYJBpYA598B9XhMRYwL-GUHP7CasdflXPpGtq8NeAmgPPJkLJm11W5YDrhypDJCgdTpEZZfcb56CDAAs8PD19TitMhNBYIPzIpguMs1l7_qOPOxC-mZqYrHVfs8j5R286VVGWU1ZkgM9bpYdDXUYXw"} +2022/02/22 15:17:05 [DEBUG] Exit from do method +2022/02/22 15:17:05 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:17:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:31 [DEBUG] Test: Executing step 0 +2022/02/22 15:17:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:17:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:17:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:31 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:17:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:17:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:17:31 [DEBUG] Test: Executing step 1 +2022/02/22 15:17:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:17:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:31 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:17:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:17:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:17:31 [DEBUG] Test: Executing step 2 +2022/02/22 15:17:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:17:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:31 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:17:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:31 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:17:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:17:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:17:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:31 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:17:31 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:17:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:31 [DEBUG] : Beginning Read +2022/02/22 15:17:31 HTTP request GET mso/api/v1/tenants +2022/02/22 15:17:31 [DEBUG] Begin Injection +2022/02/22 15:17:31 HTTP request POST /login +2022/02/22 15:17:31 HTTP request after injection POST /login +2022/02/22 15:17:31 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:17:33 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:17:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:33 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ0NTMsImlhdCI6MTY0NTUyMzI1MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJQUzR0SnJMT3V4M2o3NmdqU201bnJWaGoiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.euKNQ-xJsZczPHjNyfYNwLxCAB9D80kzUkY4AZj9a-iOdH6rvLTPQ9smoG0p9AQfGgW_2GnC-LAgtucVkS5f_OU6cqadcrbxgulK3QFxG8i7ueiz3R7UJnrtA0MMzUzsZi0ykur92G9TCGrV2o5otSKVwm9efNuKdfgzkNdwNN1gBBsEaiGpkcmxDpFOjZdAY9nrXXzhTsegiKZPZU9HoWxV9t1mKvJj6TxluyprXnONK5olNNIKCCXYk-fKAZHzxVjDVPOThH1kvROttP9fggHNAKfWUFnwPwM9FJ8m7v6KidPqWv2zKu_oyg_07vPCOnCrMao9b5THtxXdIf_sYw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000908240 -1 [chunked] false false map[] 0xc000482900 0xc0001362c0} +2022/02/22 15:17:33 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ0NTMsImlhdCI6MTY0NTUyMzI1MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJQUzR0SnJMT3V4M2o3NmdqU201bnJWaGoiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.euKNQ-xJsZczPHjNyfYNwLxCAB9D80kzUkY4AZj9a-iOdH6rvLTPQ9smoG0p9AQfGgW_2GnC-LAgtucVkS5f_OU6cqadcrbxgulK3QFxG8i7ueiz3R7UJnrtA0MMzUzsZi0ykur92G9TCGrV2o5otSKVwm9efNuKdfgzkNdwNN1gBBsEaiGpkcmxDpFOjZdAY9nrXXzhTsegiKZPZU9HoWxV9t1mKvJj6TxluyprXnONK5olNNIKCCXYk-fKAZHzxVjDVPOThH1kvROttP9fggHNAKfWUFnwPwM9FJ8m7v6KidPqWv2zKu_oyg_07vPCOnCrMao9b5THtxXdIf_sYw","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ0NTMsImlhdCI6MTY0NTUyMzI1MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJQUzR0SnJMT3V4M2o3NmdqU201bnJWaGoiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.euKNQ-xJsZczPHjNyfYNwLxCAB9D80kzUkY4AZj9a-iOdH6rvLTPQ9smoG0p9AQfGgW_2GnC-LAgtucVkS5f_OU6cqadcrbxgulK3QFxG8i7ueiz3R7UJnrtA0MMzUzsZi0ykur92G9TCGrV2o5otSKVwm9efNuKdfgzkNdwNN1gBBsEaiGpkcmxDpFOjZdAY9nrXXzhTsegiKZPZU9HoWxV9t1mKvJj6TxluyprXnONK5olNNIKCCXYk-fKAZHzxVjDVPOThH1kvROttP9fggHNAKfWUFnwPwM9FJ8m7v6KidPqWv2zKu_oyg_07vPCOnCrMao9b5THtxXdIf_sYw"} +2022/02/22 15:17:33 [DEBUG] Exit from do method +2022/02/22 15:17:33 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:17:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000390100 3980 [] false false map[] 0xc000482800 0xc0001362c0} +2022/02/22 15:17:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:17:34 [DEBUG] Exit from do method +2022/02/22 15:17:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:17:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:34 [DEBUG] New state was assigned lineage "d2420346-03ab-06a0-6b5b-155adb8bc8c1" +2022/02/22 15:17:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:17:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:17:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:17:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:34 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:17:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:17:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:17:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:34 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_jpdy9" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:17:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:17:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:17:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:17:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:17:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:17:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:17:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:17:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:17:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:17:34 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:17:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:17:34 [DEBUG] : Beginning Create +2022/02/22 15:17:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:17:34 [DEBUG] Begin Injection +2022/02/22 15:17:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:17:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:17:34 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:17:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000513100 160 [] false false map[] 0xc000394e00 0xc0001362c0} +2022/02/22 15:17:34 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b1361b00004a79fd0653","name":"acctest_jpdy9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:17:34 [DEBUG] Exit from do method +2022/02/22 15:17:34 [DEBUG] 6214b1361b00004a79fd0653: Creation finished successfully +2022/02/22 15:17:34 [DEBUG] 6214b1361b00004a79fd0653: Beginning Read +2022/02/22 15:17:34 id: 6214b1361b00004a79fd0653 +2022/02/22 15:17:34 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:34 [DEBUG] Begin Injection +2022/02/22 15:17:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000513240 160 [] false false map[] 0xc0005ac000 0xc0001362c0} +2022/02/22 15:17:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 {"id":"6214b1361b00004a79fd0653","name":"acctest_jpdy9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:17:34 [DEBUG] Exit from do method +2022/02/22 15:17:34 [DEBUG] 6214b1361b00004a79fd0653: Read finished successfully +2022/02/22 15:17:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:34 [DEBUG] New state was assigned lineage "d52c2762-012f-294d-b4d1-ef877fc804aa" +2022/02/22 15:17:34 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:34 [DEBUG] Begin Injection +2022/02/22 15:17:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000678f40 160 [] false false map[] 0xc0005ac100 0xc0001362c0} +2022/02/22 15:17:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 {"id":"6214b1361b00004a79fd0653","name":"acctest_jpdy9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:17:35 [DEBUG] Exit from do method +2022/02/22 15:17:35 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:17:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:17:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:35 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:17:35 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:35 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:17:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:17:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:35 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:35 [DEBUG] : Beginning Read +2022/02/22 15:17:35 HTTP request GET mso/api/v1/tenants +2022/02/22 15:17:35 [DEBUG] Begin Injection +2022/02/22 15:17:35 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:17:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000678180 3980 [] false false map[] 0xc000394500 0xc0001362c0} +2022/02/22 15:17:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:17:35 [DEBUG] Exit from do method +2022/02/22 15:17:35 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:17:35 [DEBUG] 6214b1361b00004a79fd0653: Beginning Read +2022/02/22 15:17:35 id: 6214b1361b00004a79fd0653 +2022/02/22 15:17:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:35 [DEBUG] Begin Injection +2022/02/22 15:17:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ddd40 160 [] false false map[] 0xc000482500 0xc0001362c0} +2022/02/22 15:17:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 {"id":"6214b1361b00004a79fd0653","name":"acctest_jpdy9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:17:35 [DEBUG] Exit from do method +2022/02/22 15:17:35 [DEBUG] 6214b1361b00004a79fd0653: Read finished successfully +2022/02/22 15:17:35 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:35 [DEBUG] New state was assigned lineage "ffa5d7e3-f027-3f5f-4595-07f6f31cf106" +2022/02/22 15:17:35 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:17:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:17:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:35 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:17:35 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:35 [DEBUG] Test: Executing step 3 +2022/02/22 15:17:35 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:35 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:17:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:35 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:17:35 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:17:35 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:17:35 [DEBUG] Test: Executing step 4 +2022/02/22 15:17:35 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:35 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:17:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:35 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:17:35 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:35 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:17:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:17:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:35 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:17:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:35 [DEBUG] : Beginning Read +2022/02/22 15:17:35 HTTP request GET mso/api/v1/tenants +2022/02/22 15:17:35 [DEBUG] Begin Injection +2022/02/22 15:17:35 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:17:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009083c0 3980 [] false false map[] 0xc0008a6f00 0xc0001362c0} +2022/02/22 15:17:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:17:36 [DEBUG] Exit from do method +2022/02/22 15:17:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:17:36 [DEBUG] 6214b1361b00004a79fd0653: Beginning Read +2022/02/22 15:17:36 id: 6214b1361b00004a79fd0653 +2022/02/22 15:17:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:36 [DEBUG] Begin Injection +2022/02/22 15:17:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000390940 160 [] false false map[] 0xc000482600 0xc0001362c0} +2022/02/22 15:17:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 {"id":"6214b1361b00004a79fd0653","name":"acctest_jpdy9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:17:36 [DEBUG] Exit from do method +2022/02/22 15:17:36 [DEBUG] 6214b1361b00004a79fd0653: Read finished successfully +2022/02/22 15:17:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:36 [DEBUG] New state was assigned lineage "92de79c0-02aa-acb5-e9bb-8a697a1583a8" +2022/02/22 15:17:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:36 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:17:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:36 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.134.201" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214b1361b00004a79fd0653" => "6214b1361b00004a79fd0653" + name: "acctest_jpdy9" => "acctest_jpdy9" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b1361b00004a79fd0653 + provider = provider.mso + description = + name = acctest_jpdy9 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:17:36 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:17:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:17:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:17:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:17:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:17:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:17:36 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:17:36 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:17:36 [DEBUG] 6214b1361b00004a79fd0653: Beginning Policy Update +2022/02/22 15:17:36 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:36 [DEBUG] Begin Injection +2022/02/22 15:17:36 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:37 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dc280 357 [] false false map[] 0xc0008a7d00 0xc0001362c0} +2022/02/22 15:17:37 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 {"id":"6214b1361b00004a79fd0653","name":"acctest_jpdy9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.134.201","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:17:37 [DEBUG] Exit from do method +2022/02/22 15:17:37 [DEBUG] Policy Update finished successfully: 6214b1361b00004a79fd0653 +2022/02/22 15:17:37 [DEBUG] 6214b1361b00004a79fd0653: Beginning Read +2022/02/22 15:17:37 id: 6214b1361b00004a79fd0653 +2022/02/22 15:17:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:37 [DEBUG] Begin Injection +2022/02/22 15:17:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c3c200 357 [] false false map[] 0xc0008a6100 0xc0001362c0} +2022/02/22 15:17:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 {"id":"6214b1361b00004a79fd0653","name":"acctest_jpdy9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.134.201","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:17:37 [DEBUG] Exit from do method +2022/02/22 15:17:37 [DEBUG] 6214b1361b00004a79fd0653: Read finished successfully +2022/02/22 15:17:37 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 15:17:37 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:37 [DEBUG] New state was assigned lineage "ec9f0c49-16fd-89f8-e328-b873f3a44012" +2022/02/22 15:17:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:37 [DEBUG] Begin Injection +2022/02/22 15:17:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dc7c0 357 [] false false map[] 0xc000482100 0xc0001362c0} +2022/02/22 15:17:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 {"id":"6214b1361b00004a79fd0653","name":"acctest_jpdy9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.134.201","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:17:37 [DEBUG] Exit from do method +2022/02/22 15:17:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:17:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:17:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:17:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:37 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:17:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:17:37 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:17:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:17:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:17:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:17:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:37 [DEBUG] : Beginning Read +2022/02/22 15:17:37 HTTP request GET mso/api/v1/tenants +2022/02/22 15:17:37 [DEBUG] Begin Injection +2022/02/22 15:17:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:17:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000e2780 3980 [] false false map[] 0xc0008a6600 0xc0001362c0} +2022/02/22 15:17:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:17:37 [DEBUG] Exit from do method +2022/02/22 15:17:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:17:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:17:37 [DEBUG] 6214b1361b00004a79fd0653: Beginning Read +2022/02/22 15:17:37 id: 6214b1361b00004a79fd0653 +2022/02/22 15:17:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:37 [DEBUG] Begin Injection +2022/02/22 15:17:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b5ca00 357 [] false false map[] 0xc0008a6c00 0xc0001362c0} +2022/02/22 15:17:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 {"id":"6214b1361b00004a79fd0653","name":"acctest_jpdy9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.134.201","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:17:38 [DEBUG] Exit from do method +2022/02/22 15:17:38 [DEBUG] 6214b1361b00004a79fd0653: Read finished successfully +2022/02/22 15:17:38 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:38 [DEBUG] New state was assigned lineage "9ba4bb57-7024-7191-b9fd-d97c7dae4dae" +2022/02/22 15:17:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:17:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:17:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:38 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:17:38 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:38 [DEBUG] Test: Executing step 5 +2022/02/22 15:17:38 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:17:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 15:17:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:38 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:17:38 [ERROR] : eval: *terraform.EvalValidateResource, err: Reference to undeclared resource: A managed resource "mso_schema_template_anp_epg" "test" has not been declared in the root module. +2022/02/22 15:17:38 [ERROR] : eval: *terraform.EvalSequence, err: Reference to undeclared resource: A managed resource "mso_schema_template_anp_epg" "test" has not been declared in the root module. +2022/02/22 15:17:38 [WARN] Test: Executing destroy step +2022/02/22 15:17:38 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:17:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:17:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:38 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:17:38 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:38 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:17:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:17:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:17:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:38 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:38 [DEBUG] : Beginning Read +2022/02/22 15:17:38 HTTP request GET mso/api/v1/tenants +2022/02/22 15:17:38 [DEBUG] Begin Injection +2022/02/22 15:17:38 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:17:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000390580 3980 [] false false map[] 0xc0008a7500 0xc0001362c0} +2022/02/22 15:17:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:17:38 [DEBUG] Exit from do method +2022/02/22 15:17:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:17:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:17:38 [DEBUG] 6214b1361b00004a79fd0653: Beginning Read +2022/02/22 15:17:38 id: 6214b1361b00004a79fd0653 +2022/02/22 15:17:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:38 [DEBUG] Begin Injection +2022/02/22 15:17:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c3d980 357 [] false false map[] 0xc000a14600 0xc0001362c0} +2022/02/22 15:17:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 {"id":"6214b1361b00004a79fd0653","name":"acctest_jpdy9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.134.201","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:17:39 [DEBUG] Exit from do method +2022/02/22 15:17:39 [DEBUG] 6214b1361b00004a79fd0653: Read finished successfully +2022/02/22 15:17:39 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:39 [DEBUG] New state was assigned lineage "f5265c8d-d048-08f7-80ae-f9c1ed6cd7be" +2022/02/22 15:17:39 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:17:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:17:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:39 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:17:39 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.134.201" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214b1361b00004a79fd0653" => "" + name: "acctest_jpdy9" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b1361b00004a79fd0653 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.134.201 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_jpdy9 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:17:39 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:17:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:39 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:17:39 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:17:39 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:17:39 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:17:39 [DEBUG] 6214b1361b00004a79fd0653: Beginning Read +2022/02/22 15:17:39 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:39 [DEBUG] Begin Injection +2022/02/22 15:17:39 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:39 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:47:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000a15c00 0xc0001362c0} +2022/02/22 15:17:39 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:39 [DEBUG] : Read finished successfully +2022/02/22 15:17:39 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:39 [DEBUG] New state was assigned lineage "c179206c-731c-28a9-c070-7c6bb4e35ce2" +2022/02/22 15:17:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:39 [DEBUG] Begin Injection +2022/02/22 15:17:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 +2022/02/22 15:17:39 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:39 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c3c180 86 [] false false map[] 0xc000a14100 0xc0001362c0} +2022/02/22 15:17:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1361b00004a79fd0653 {"code":141,"message":"Resource Not Found: Policy 6214b1361b00004a79fd0653 not found"} +2022/02/22 15:17:39 [DEBUG] Exit from do method +2022/02/22 15:17:39 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:17:39 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:17:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:17:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:17:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:17:39 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:17:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:39 [DEBUG] : Beginning Read +2022/02/22 15:17:39 HTTP request GET mso/api/v1/tenants +2022/02/22 15:17:39 [DEBUG] Begin Injection +2022/02/22 15:17:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:17:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:17:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:47:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000e20c0 3980 [] false false map[] 0xc000a15100 0xc0001362c0} +2022/02/22 15:17:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:17:40 [DEBUG] Exit from do method +2022/02/22 15:17:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:17:40 [DEBUG] provider has no plugin.Client +2022/02/22 15:17:40 [DEBUG] New state was assigned lineage "1aa906c5-4ad7-149d-36a9-1a17dead1a98" +2022/02/22 15:17:40 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:17:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:17:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:17:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:17:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:17:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:17:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:17:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:17:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:17:40 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:19:47 [DEBUG] Test: Executing step 0 +2022/02/22 15:19:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:47 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:47 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:19:47 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:19:47 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:19:47 [DEBUG] Test: Executing step 1 +2022/02/22 15:19:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:47 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:19:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:47 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:19:47 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:19:47 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:19:47 [DEBUG] Test: Executing step 2 +2022/02/22 15:19:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:47 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:19:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:47 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:19:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:47 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:19:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:19:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:47 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:19:47 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:19:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:47 [DEBUG] : Beginning Read +2022/02/22 15:19:47 HTTP request GET mso/api/v1/tenants +2022/02/22 15:19:47 [DEBUG] Begin Injection +2022/02/22 15:19:47 HTTP request POST /login +2022/02/22 15:19:47 HTTP request after injection POST /login +2022/02/22 15:19:47 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:19:49 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:19:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:49 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ1ODksImlhdCI6MTY0NTUyMzM4OSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJCMHJJak83aUo1cGpVaFNpN3Q5THR6eWsiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Z-njXJn3ztSkny5j1vyXPQAq-rsV9KT3-zqHq8RxbTGaFzMgPdhmz-ujsFPG1E42gLLTHhJYfLuyPvqAq5ARGHw7K1PKX3-ZMk-KxCWLmtbxWXSBwpSoXndKPN4NjMYUAkzj17Ku-QCB4QYCttKYmfhkecykIbhD0OsPBWTRCT7khCrsl7eWcSQJl7hXzYJILNoyQF8xx2dP9E9tGdVVgXkSEUCyvr_sH5LyF6yNAEcpaZNni8-llwCrDvwC9ya5fgvelZ3qfp-lYbWwOLzNaOY-HygtcoQzV5j26A9VG3JXvK1K_KEYsBop8JXlg3ltnx7Slsvg0yn4ojGDlKR4gQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000090940 -1 [chunked] false false map[] 0xc000a4e300 0xc0008a0000} +2022/02/22 15:19:49 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ1ODksImlhdCI6MTY0NTUyMzM4OSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJCMHJJak83aUo1cGpVaFNpN3Q5THR6eWsiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Z-njXJn3ztSkny5j1vyXPQAq-rsV9KT3-zqHq8RxbTGaFzMgPdhmz-ujsFPG1E42gLLTHhJYfLuyPvqAq5ARGHw7K1PKX3-ZMk-KxCWLmtbxWXSBwpSoXndKPN4NjMYUAkzj17Ku-QCB4QYCttKYmfhkecykIbhD0OsPBWTRCT7khCrsl7eWcSQJl7hXzYJILNoyQF8xx2dP9E9tGdVVgXkSEUCyvr_sH5LyF6yNAEcpaZNni8-llwCrDvwC9ya5fgvelZ3qfp-lYbWwOLzNaOY-HygtcoQzV5j26A9VG3JXvK1K_KEYsBop8JXlg3ltnx7Slsvg0yn4ojGDlKR4gQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ1ODksImlhdCI6MTY0NTUyMzM4OSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJCMHJJak83aUo1cGpVaFNpN3Q5THR6eWsiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Z-njXJn3ztSkny5j1vyXPQAq-rsV9KT3-zqHq8RxbTGaFzMgPdhmz-ujsFPG1E42gLLTHhJYfLuyPvqAq5ARGHw7K1PKX3-ZMk-KxCWLmtbxWXSBwpSoXndKPN4NjMYUAkzj17Ku-QCB4QYCttKYmfhkecykIbhD0OsPBWTRCT7khCrsl7eWcSQJl7hXzYJILNoyQF8xx2dP9E9tGdVVgXkSEUCyvr_sH5LyF6yNAEcpaZNni8-llwCrDvwC9ya5fgvelZ3qfp-lYbWwOLzNaOY-HygtcoQzV5j26A9VG3JXvK1K_KEYsBop8JXlg3ltnx7Slsvg0yn4ojGDlKR4gQ"} +2022/02/22 15:19:49 [DEBUG] Exit from do method +2022/02/22 15:19:49 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:19:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:19:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:19:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bf00 3980 [] false false map[] 0xc000a4e200 0xc0008a0000} +2022/02/22 15:19:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:19:49 [DEBUG] Exit from do method +2022/02/22 15:19:49 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:19:49 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:49 [DEBUG] New state was assigned lineage "b4d38a21-5e8c-1f59-cbf1-543f5040b041" +2022/02/22 15:19:49 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:19:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:19:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:49 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:49 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:49 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:49 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_w2asc" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:19:49 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:19:49 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:19:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 15:19:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:19:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:19:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:19:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:19:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:19:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:49 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:19:49 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:19:49 [DEBUG] : Beginning Create +2022/02/22 15:19:49 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:19:49 [DEBUG] Begin Injection +2022/02/22 15:19:49 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:19:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:19:50 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:19:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048a600 160 [] false false map[] 0xc0005d8c00 0xc0008a0000} +2022/02/22 15:19:50 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:19:50 [DEBUG] Exit from do method +2022/02/22 15:19:50 [DEBUG] 6214b1bd1b00007779fd0654: Creation finished successfully +2022/02/22 15:19:50 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Read +2022/02/22 15:19:50 id: 6214b1bd1b00007779fd0654 +2022/02/22 15:19:50 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:50 [DEBUG] Begin Injection +2022/02/22 15:19:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ee100 160 [] false false map[] 0xc000510100 0xc0008a0000} +2022/02/22 15:19:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:19:50 [DEBUG] Exit from do method +2022/02/22 15:19:50 [DEBUG] 6214b1bd1b00007779fd0654: Read finished successfully +2022/02/22 15:19:50 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:50 [DEBUG] New state was assigned lineage "5bf8c3f5-ac2d-ceb3-88fc-399ed1579d7e" +2022/02/22 15:19:50 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:50 [DEBUG] Begin Injection +2022/02/22 15:19:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000500080 160 [] false false map[] 0xc000ae4000 0xc0008a0000} +2022/02/22 15:19:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:19:50 [DEBUG] Exit from do method +2022/02/22 15:19:50 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:19:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:19:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:50 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:19:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:50 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:50 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:19:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:19:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:19:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:19:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:50 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:19:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:50 [DEBUG] : Beginning Read +2022/02/22 15:19:50 HTTP request GET mso/api/v1/tenants +2022/02/22 15:19:50 [DEBUG] Begin Injection +2022/02/22 15:19:50 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:19:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:19:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:19:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae20c0 3980 [] false false map[] 0xc000a9a200 0xc0008a0000} +2022/02/22 15:19:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:19:51 [DEBUG] Exit from do method +2022/02/22 15:19:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:51 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Read +2022/02/22 15:19:51 id: 6214b1bd1b00007779fd0654 +2022/02/22 15:19:51 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:51 [DEBUG] Begin Injection +2022/02/22 15:19:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae2d80 160 [] false false map[] 0xc0005d8400 0xc0008a0000} +2022/02/22 15:19:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:19:51 [DEBUG] Exit from do method +2022/02/22 15:19:51 [DEBUG] 6214b1bd1b00007779fd0654: Read finished successfully +2022/02/22 15:19:51 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:51 [DEBUG] New state was assigned lineage "6ca116a2-2aa0-db01-0012-2b1999b82d9f" +2022/02/22 15:19:51 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:19:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:19:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:51 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:51 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:51 [DEBUG] Test: Executing step 3 +2022/02/22 15:19:51 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:51 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:19:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:19:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:51 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:19:51 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:19:51 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:19:51 [DEBUG] Test: Executing step 4 +2022/02/22 15:19:51 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:51 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:19:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:19:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:51 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:19:51 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:51 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:19:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:19:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:19:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:51 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:19:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:51 [DEBUG] : Beginning Read +2022/02/22 15:19:51 HTTP request GET mso/api/v1/tenants +2022/02/22 15:19:51 [DEBUG] Begin Injection +2022/02/22 15:19:51 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:19:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:19:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:19:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ee780 3980 [] false false map[] 0xc0005d8300 0xc0008a0000} +2022/02/22 15:19:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:19:52 [DEBUG] Exit from do method +2022/02/22 15:19:52 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:19:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:52 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Read +2022/02/22 15:19:52 id: 6214b1bd1b00007779fd0654 +2022/02/22 15:19:52 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:52 [DEBUG] Begin Injection +2022/02/22 15:19:52 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090040 160 [] false false map[] 0xc000a4ea00 0xc0008a0000} +2022/02/22 15:19:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:19:52 [DEBUG] Exit from do method +2022/02/22 15:19:52 [DEBUG] 6214b1bd1b00007779fd0654: Read finished successfully +2022/02/22 15:19:52 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:52 [DEBUG] New state was assigned lineage "78c6b682-f7e8-ab2c-e7e2-4c921c9b00b3" +2022/02/22 15:19:52 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:19:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:19:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:52 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:19:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:52 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:52 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.103.44" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214b1bd1b00007779fd0654" => "6214b1bd1b00007779fd0654" + name: "acctest_w2asc" => "acctest_w2asc" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b1bd1b00007779fd0654 + provider = provider.mso + description = + name = acctest_w2asc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:19:52 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:19:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:19:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:19:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:19:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:19:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:19:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:19:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:19:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:52 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:19:52 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:19:52 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Policy Update +2022/02/22 15:19:52 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:52 [DEBUG] Begin Injection +2022/02/22 15:19:52 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:52 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000729880 356 [] false false map[] 0xc000de0d00 0xc0008a0000} +2022/02/22 15:19:53 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.103.44","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:19:53 [DEBUG] Exit from do method +2022/02/22 15:19:53 [DEBUG] Policy Update finished successfully: 6214b1bd1b00007779fd0654 +2022/02/22 15:19:53 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Read +2022/02/22 15:19:53 id: 6214b1bd1b00007779fd0654 +2022/02/22 15:19:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:53 [DEBUG] Begin Injection +2022/02/22 15:19:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007299c0 356 [] false false map[] 0xc000de0f00 0xc0008a0000} +2022/02/22 15:19:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.103.44","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:19:53 [DEBUG] Exit from do method +2022/02/22 15:19:53 [DEBUG] 6214b1bd1b00007779fd0654: Read finished successfully +2022/02/22 15:19:53 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 15:19:53 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:53 [DEBUG] New state was assigned lineage "b6643806-9278-8236-f99f-d33725514c29" +2022/02/22 15:19:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:53 [DEBUG] Begin Injection +2022/02/22 15:19:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f6f5c0 356 [] false false map[] 0xc000510100 0xc0008a0000} +2022/02/22 15:19:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.103.44","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:19:53 [DEBUG] Exit from do method +2022/02/22 15:19:53 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:19:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:19:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:53 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:19:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:53 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:53 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:19:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:19:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:19:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:19:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:53 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:19:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:53 [DEBUG] : Beginning Read +2022/02/22 15:19:53 HTTP request GET mso/api/v1/tenants +2022/02/22 15:19:53 [DEBUG] Begin Injection +2022/02/22 15:19:53 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:19:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:19:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:19:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048a040 3980 [] false false map[] 0xc000a4ed00 0xc0008a0000} +2022/02/22 15:19:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:19:54 [DEBUG] Exit from do method +2022/02/22 15:19:54 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:54 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Read +2022/02/22 15:19:54 id: 6214b1bd1b00007779fd0654 +2022/02/22 15:19:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:54 [DEBUG] Begin Injection +2022/02/22 15:19:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae20c0 356 [] false false map[] 0xc0005d8000 0xc0008a0000} +2022/02/22 15:19:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.103.44","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:19:54 [DEBUG] Exit from do method +2022/02/22 15:19:54 [DEBUG] 6214b1bd1b00007779fd0654: Read finished successfully +2022/02/22 15:19:54 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:54 [DEBUG] New state was assigned lineage "8e050f7f-989b-c35b-33c3-9e3f14847052" +2022/02/22 15:19:54 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:19:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:19:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:54 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:54 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:54 [DEBUG] Test: Executing step 5 +2022/02/22 15:19:54 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:54 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:19:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 15:19:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:54 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:19:54 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:19:54 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:54 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:19:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 15:19:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:19:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:19:54 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:19:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:19:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:19:54 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:54 [DEBUG] : Beginning Read +2022/02/22 15:19:54 HTTP request GET mso/api/v1/tenants +2022/02/22 15:19:54 [DEBUG] Begin Injection +2022/02/22 15:19:54 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:19:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:19:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:19:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae3300 3980 [] false false map[] 0xc000511200 0xc0008a0000} +2022/02/22 15:19:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:19:54 [DEBUG] Exit from do method +2022/02/22 15:19:54 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:19:54 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:19:54 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:19:54 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:19:54 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:19:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:54 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Read +2022/02/22 15:19:54 id: 6214b1bd1b00007779fd0654 +2022/02/22 15:19:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:54 [DEBUG] Begin Injection +2022/02/22 15:19:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d4e480 356 [] false false map[] 0xc000510600 0xc0008a0000} +2022/02/22 15:19:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.103.44","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:19:55 [DEBUG] Exit from do method +2022/02/22 15:19:55 [DEBUG] 6214b1bd1b00007779fd0654: Read finished successfully +2022/02/22 15:19:55 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:55 [DEBUG] New state was assigned lineage "3b8e6242-46e1-8395-1b18-2db7d9a15bfd" +2022/02/22 15:19:55 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:19:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:55 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:55 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:19:55 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:19:55 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:19:55 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:55 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:55 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.103.44" => "1.2.103.44" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214b1bd1b00007779fd0654" => "6214b1bd1b00007779fd0654" + name: "acctest_w2asc" => "acctest_w2asc" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_6vi6e" + template_name: "" => "acctest_zw278" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_s92uf" + external_epg_name: "" => "acctest_s92uf" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_zw278" + vrf_name: "" => "acctest_s92uf" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_s92uf" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_s92uf" + schema_id: "" => "" + template: "" => "acctest_zw278" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b1bd1b00007779fd0654 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.103.44 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_w2asc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:19:55 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:19:55 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:19:55 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:19:55 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:19:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test (prepare state)] +2022/02/22 15:19:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:55 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:19:55 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 15:19:55 [DEBUG] Schema: Beginning Creation +2022/02/22 15:19:55 HTTP request POST mso/api/v1/schemas +2022/02/22 15:19:55 [DEBUG] Begin Injection +2022/02/22 15:19:55 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 15:19:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:19:55 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:19:55 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214b1c31d000018514f9e71] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000909c0 400 [] false false map[] 0xc000de0600 0xc0008a0000} +2022/02/22 15:19:55 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:19:55 [DEBUG] Exit from do method +2022/02/22 15:19:55 [DEBUG] 6214b1c31d000018514f9e71: Schema Creation finished successfully +2022/02/22 15:19:55 [DEBUG] 6214b1c31d000018514f9e71: Beginning Read +2022/02/22 15:19:55 HTTP request GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:55 [DEBUG] Begin Injection +2022/02/22 15:19:55 HTTP request after injection GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae1100 400 [] false false map[] 0xc0005aa400 0xc0008a0000} +2022/02/22 15:19:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:19:56 [DEBUG] Exit from do method +2022/02/22 15:19:56 [DEBUG] 6214b1c31d000018514f9e71: Read finished successfully +2022/02/22 15:19:56 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 15:19:56 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 15:19:56 HTTP request PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:19:56 [DEBUG] Begin Injection +2022/02/22 15:19:56 HTTP request after injection PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:19:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:19:56 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:19:56 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:49:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000de0d00 0xc0008a0000} +2022/02/22 15:19:56 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:19:56 [DEBUG] acctest_s92uf: Creation finished successfully +2022/02/22 15:19:56 [DEBUG] acctest_s92uf: Beginning Read +2022/02/22 15:19:56 HTTP request GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:56 [DEBUG] Begin Injection +2022/02/22 15:19:56 HTTP request after injection GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090880 768 [] false false map[] 0xc000de0100 0xc0008a0000} +2022/02/22 15:19:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 15:19:56 [DEBUG] Exit from do method +2022/02/22 15:19:56 currentvrfname acctest_s92uf +2022/02/22 15:19:56 found correct vrfname +2022/02/22 15:19:56 [DEBUG] acctest_s92uf: Read finished successfully +2022/02/22 15:19:56 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:19:56 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 15:19:56 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 15:19:56 HTTP request PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:19:56 [DEBUG] Begin Injection +2022/02/22 15:19:56 HTTP request after injection PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:19:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:19:57 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:19:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:49:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000de0900 0xc0008a0000} +2022/02/22 15:19:57 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:19:57 [DEBUG] : Beginning Read +2022/02/22 15:19:57 HTTP request GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:57 [DEBUG] Begin Injection +2022/02/22 15:19:57 HTTP request after injection GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae20c0 1147 [] false false map[] 0xc000de0100 0xc0008a0000} +2022/02/22 15:19:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","extEpgType":"on-premise","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:19:57 [DEBUG] Exit from do method +2022/02/22 15:19:57 [DEBUG] /schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf: Read finished successfully +2022/02/22 15:19:57 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:19:57 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Policy Update +2022/02/22 15:19:57 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:57 [DEBUG] Begin Injection +2022/02/22 15:19:57 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:57 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae0040 360 [] false false map[] 0xc000de0800 0xc0008a0000} +2022/02/22 15:19:57 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.103.44","epgRef":"","externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:19:57 [DEBUG] Exit from do method +2022/02/22 15:19:57 [DEBUG] Policy Update finished successfully: 6214b1bd1b00007779fd0654 +2022/02/22 15:19:57 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Read +2022/02/22 15:19:57 id: 6214b1bd1b00007779fd0654 +2022/02/22 15:19:57 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:57 [DEBUG] Begin Injection +2022/02/22 15:19:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae0180 360 [] false false map[] 0xc000de0100 0xc0008a0000} +2022/02/22 15:19:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.103.44","epgRef":"","externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:19:58 [DEBUG] Exit from do method +2022/02/22 15:19:58 [DEBUG] 6214b1bd1b00007779fd0654: Read finished successfully +2022/02/22 15:19:58 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 15:19:58 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:58 [DEBUG] New state was assigned lineage "ab5c8b39-aa0e-e16f-d4d7-eccde6ed5144" +2022/02/22 15:19:58 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:58 [DEBUG] Begin Injection +2022/02/22 15:19:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae20c0 360 [] false false map[] 0xc0005aa000 0xc0008a0000} +2022/02/22 15:19:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.103.44","epgRef":"","externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:19:58 [DEBUG] Exit from do method +2022/02/22 15:19:58 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:19:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 15:19:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:58 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:58 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:19:58 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:58 [DEBUG] provider has no plugin.Client +2022/02/22 15:19:58 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:19:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:19:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:19:58 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:19:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:19:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:19:58 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:19:58 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:19:58 [DEBUG] : Beginning Read +2022/02/22 15:19:58 HTTP request GET mso/api/v1/tenants +2022/02/22 15:19:58 [DEBUG] Begin Injection +2022/02/22 15:19:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:19:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:19:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:19:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ee040 3980 [] false false map[] 0xc000de0500 0xc0008a0000} +2022/02/22 15:19:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:19:58 [DEBUG] Exit from do method +2022/02/22 15:19:58 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:19:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:19:58 [DEBUG] 6214b1c31d000018514f9e71: Beginning Read +2022/02/22 15:19:58 HTTP request GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:58 [DEBUG] Begin Injection +2022/02/22 15:19:58 HTTP request after injection GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae2480 1147 [] false false map[] 0xc000510800 0xc0008a0000} +2022/02/22 15:19:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","extEpgType":"on-premise","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:19:59 [DEBUG] Exit from do method +2022/02/22 15:19:59 [DEBUG] 6214b1c31d000018514f9e71: Read finished successfully +2022/02/22 15:19:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:19:59 [DEBUG] acctest_s92uf: Beginning Read +2022/02/22 15:19:59 HTTP request GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:59 [DEBUG] Begin Injection +2022/02/22 15:19:59 HTTP request after injection GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ef680 1147 [] false false map[] 0xc000de0d00 0xc0008a0000} +2022/02/22 15:19:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","extEpgType":"on-premise","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:19:59 [DEBUG] Exit from do method +2022/02/22 15:19:59 currentvrfname acctest_s92uf +2022/02/22 15:19:59 found correct vrfname +2022/02/22 15:19:59 [DEBUG] acctest_s92uf: Read finished successfully +2022/02/22 15:19:59 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:19:59 [DEBUG] /schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf: Beginning Read +2022/02/22 15:19:59 HTTP request GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:59 [DEBUG] Begin Injection +2022/02/22 15:19:59 HTTP request after injection GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:19:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ee040 1147 [] false false map[] 0xc0005aa500 0xc0008a0000} +2022/02/22 15:19:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","extEpgType":"on-premise","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:19:59 [DEBUG] Exit from do method +2022/02/22 15:19:59 [DEBUG] /schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf: Read finished successfully +2022/02/22 15:19:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:19:59 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Read +2022/02/22 15:19:59 id: 6214b1bd1b00007779fd0654 +2022/02/22 15:19:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:59 [DEBUG] Begin Injection +2022/02/22 15:19:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:19:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:49:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae2dc0 360 [] false false map[] 0xc0005aa700 0xc0008a0000} +2022/02/22 15:20:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.103.44","epgRef":"","externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:20:00 [DEBUG] Exit from do method +2022/02/22 15:20:00 [DEBUG] 6214b1bd1b00007779fd0654: Read finished successfully +2022/02/22 15:20:00 [DEBUG] provider has no plugin.Client +2022/02/22 15:20:00 [DEBUG] New state was assigned lineage "2b683dac-4ab8-623c-236d-cecf5736c80f" +2022/02/22 15:20:00 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:20:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:20:00 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:20:00 [DEBUG] provider has no plugin.Client +2022/02/22 15:20:00 [DEBUG] Test: Executing step 6 +2022/02/22 15:20:00 [DEBUG] provider has no plugin.Client +2022/02/22 15:20:00 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:20:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema_template_anp.test mso_schema.test mso_schema.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_anp_epg.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:00 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:20:00 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 15:20:00 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 15:20:00 [DEBUG] provider has no plugin.Client +2022/02/22 15:20:00 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:20:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_anp_epg.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema_template_anp.test mso_schema.test mso_schema.test] +2022/02/22 15:20:00 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:00 [DEBUG] : Beginning Read +2022/02/22 15:20:00 HTTP request GET mso/api/v1/tenants +2022/02/22 15:20:00 [DEBUG] Begin Injection +2022/02/22 15:20:00 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:20:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:20:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:20:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d4e4c0 3980 [] false false map[] 0xc000510300 0xc0008a0000} +2022/02/22 15:20:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:20:00 [DEBUG] Exit from do method +2022/02/22 15:20:00 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:20:00 [DEBUG] 6214b1c31d000018514f9e71: Beginning Read +2022/02/22 15:20:00 HTTP request GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:00 [DEBUG] Begin Injection +2022/02/22 15:20:00 HTTP request after injection GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc2140 1147 [] false false map[] 0xc000510700 0xc0008a0000} +2022/02/22 15:20:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","extEpgType":"on-premise","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:20:00 [DEBUG] Exit from do method +2022/02/22 15:20:00 [DEBUG] 6214b1c31d000018514f9e71: Read finished successfully +2022/02/22 15:20:00 [DEBUG] Resource state not found for node "mso_schema_template_anp.test", instance mso_schema_template_anp.test +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [] +2022/02/22 15:20:00 [DEBUG] acctest_s92uf: Beginning Read +2022/02/22 15:20:00 HTTP request GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:00 [DEBUG] Begin Injection +2022/02/22 15:20:00 HTTP request after injection GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:00 [DEBUG] Resource state not found for node "mso_schema_template_anp_epg.test", instance mso_schema_template_anp_epg.test +2022/02/22 15:20:00 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [] +2022/02/22 15:20:00 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_anp_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .intersite_multicast_source: planned value cty.False does not match config value cty.NullVal(cty.Bool) + - .proxy_arp: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:20:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:20:01 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Read +2022/02/22 15:20:01 id: 6214b1bd1b00007779fd0654 +2022/02/22 15:20:01 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:01 [DEBUG] Begin Injection +2022/02/22 15:20:01 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f6e180 1147 [] false false map[] 0xc000c50300 0xc0008a0000} +2022/02/22 15:20:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","extEpgType":"on-premise","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:20:01 [DEBUG] Exit from do method +2022/02/22 15:20:01 currentvrfname acctest_s92uf +2022/02/22 15:20:01 found correct vrfname +2022/02/22 15:20:01 [DEBUG] acctest_s92uf: Read finished successfully +2022/02/22 15:20:01 [DEBUG] /schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf: Beginning Read +2022/02/22 15:20:01 HTTP request GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:01 [DEBUG] Begin Injection +2022/02/22 15:20:01 HTTP request after injection GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae1140 360 [] false false map[] 0xc0005aa300 0xc0008a0000} +2022/02/22 15:20:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.103.44","epgRef":"","externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:20:01 [DEBUG] Exit from do method +2022/02/22 15:20:01 [DEBUG] 6214b1bd1b00007779fd0654: Read finished successfully +2022/02/22 15:20:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ee200 1147 [] false false map[] 0xc000de0700 0xc0008a0000} +2022/02/22 15:20:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","extEpgType":"on-premise","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:20:02 [DEBUG] Exit from do method +2022/02/22 15:20:02 [DEBUG] /schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf: Read finished successfully +2022/02/22 15:20:02 [DEBUG] provider has no plugin.Client +2022/02/22 15:20:02 [DEBUG] New state was assigned lineage "bd13b2fb-0193-4427-798b-25a0ea4549f3" +2022/02/22 15:20:02 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:20:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (orphan) +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema_template_anp.test mso_schema.test mso_schema.test] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_anp_epg.test] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:02 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:20:02 [DEBUG] Resource instance state not found for node "mso_schema_template_anp.test", instance mso_schema_template_anp.test +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [] +2022/02/22 15:20:02 [DEBUG] Resource instance state not found for node "mso_schema_template_anp_epg.test", instance mso_schema_template_anp_epg.test +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [] +2022/02/22 15:20:02 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_anp_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .intersite_multicast_source: planned value cty.False does not match config value cty.NullVal(cty.Bool) + - .proxy_arp: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:20:02 [DEBUG] provider has no plugin.Client +2022/02/22 15:20:02 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "test description" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.103.44" => "1.2.103.44" + dhcp_relay_policy_provider.0.epg: "" => "" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214b1bd1b00007779fd0654" => "6214b1bd1b00007779fd0654" + name: "acctest_w2asc" => "acctest_w2asc" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_anp.test + display_name: "" => "acctest_s92uf" + id: "" => "" + name: "" => "acctest_s92uf" + schema_id: "" => "6214b1c31d000018514f9e71" + template: "" => "acctest_zw278" +CREATE: mso_schema_template_anp_epg.test + anp_name: "" => "acctest_s92uf" + bd_schema_id: "" => "" + bd_template_name: "" => "" + display_name: "" => "" + id: "" => "" + intersite_multicast_source: "" => "false" + intra_epg: "" => "" + name: "" => "acctest_s92uf" + preferred_group: "" => "" + proxy_arp: "" => "false" + schema_id: "" => "6214b1c31d000018514f9e71" + template_name: "" => "acctest_zw278" + useg_epg: "" => "" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_s92uf" => "" + external_epg_name: "acctest_s92uf" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214b1c31d000018514f9e71" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_zw278" => "" + vrf_name: "acctest_s92uf" => "" + vrf_schema_id: "6214b1c31d000018514f9e71" => "" + vrf_template_name: "acctest_zw278" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_s92uf" => "" + id: "acctest_s92uf" => "" + layer3_multicast: "false" => "" + name: "acctest_s92uf" => "" + schema_id: "6214b1c31d000018514f9e71" => "" + template: "acctest_zw278" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b1bd1b00007779fd0654 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.103.44 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_w2asc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214b1c31d000018514f9e71 + provider = provider.mso + name = acctest_6vi6e + template_name = acctest_zw278 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_s92uf + external_epg_name = acctest_s92uf + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214b1c31d000018514f9e71 + selector_ip = + selector_name = + template_name = acctest_zw278 + vrf_name = acctest_s92uf + vrf_schema_id = 6214b1c31d000018514f9e71 + vrf_template_name = acctest_zw278 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_s92uf + provider = provider.mso + display_name = acctest_s92uf + layer3_multicast = false + name = acctest_s92uf + schema_id = 6214b1c31d000018514f9e71 + template = acctest_zw278 + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 15:20:02 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:20:02 [DEBUG] Resource state not found for node "mso_schema_template_anp_epg.test", instance mso_schema_template_anp_epg.test +2022/02/22 15:20:02 [DEBUG] Resource state not found for node "mso_schema_template_anp.test", instance mso_schema_template_anp.test +2022/02/22 15:20:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (destroy) +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_anp_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (prepare state)" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state)] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_anp_epg.test (prepare state) mso_schema_template_anp_epg.test mso_schema_template_anp_epg.test] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test (prepare state)" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_anp_epg.test" references: [mso_schema.test (prepare state) mso_schema.test (prepare state) mso_schema_template_anp.test (prepare state) mso_schema_template_anp.test mso_schema_template_anp.test] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:20:02 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:20:02 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:20:02 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 15:20:02 [DEBUG] mso_schema_template_anp.test: applying the planned Create change +2022/02/22 15:20:02 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 15:20:02 HTTP request PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 [DEBUG] Begin Injection +2022/02/22 15:20:02 HTTP request after injection PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 [DEBUG] Schema Template Anp: Beginning Creation +2022/02/22 15:20:02 HTTP request PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 [DEBUG] Begin Injection +2022/02/22 15:20:02 HTTP request after injection PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:50:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a66a00 0xc0000bc160} +2022/02/22 15:20:02 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 [DEBUG] acctest_s92uf: Creation finished successfully +2022/02/22 15:20:02 [DEBUG] : Beginning Read +2022/02/22 15:20:02 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 HTTP request GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:02 [DEBUG] Begin Injection +2022/02/22 15:20:02 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:50:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c50600 0xc0008a0000} +2022/02/22 15:20:02 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 HTTP request after injection GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:02 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 15:20:02 [DEBUG] acctest_s92uf: Beginning Destroy +2022/02/22 15:20:02 HTTP request PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 [DEBUG] Begin Injection +2022/02/22 15:20:02 HTTP request after injection PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1299] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc2100 1299 [] false false map[] 0xc000de0700 0xc0000bc160} +2022/02/22 15:20:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","anpRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/anps/acctest_s92uf","epgs":[]}],"vrfs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","extEpgType":"on-premise","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":5}],"_updateVersion":0} +2022/02/22 15:20:02 [DEBUG] Exit from do method +2022/02/22 15:20:02 currentanpname acctest_s92uf +2022/02/22 15:20:02 found correct anpname +2022/02/22 15:20:02 [DEBUG] acctest_s92uf: Read finished successfully +2022/02/22 15:20:02 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_anp_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .intersite_multicast_source: planned value cty.False does not match config value cty.NullVal(cty.Bool) + - .proxy_arp: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:20:02 [DEBUG] mso_schema_template_anp_epg.test: applying the planned Create change +2022/02/22 15:20:02 [DEBUG] Template Anp Epg: Beginning Creation +2022/02/22 15:20:02 HTTP request PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 [DEBUG] Begin Injection +2022/02/22 15:20:02 HTTP request after injection PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:50:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a67100 0xc0008a0630} +2022/02/22 15:20:02 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:02 [DEBUG] acctest_s92uf: Destroy finished successfully +2022/02/22 15:20:03 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:03 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[133] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:03 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc0005ee800 133 [] false false map[] 0xc0002fe500 0xc0000bc160} +2022/02/22 15:20:03 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false {"code":400,"message":"Bad Request: incomplete ref: /6214b1c31d000018514f9e71/acctest_zw278. If non-empty, must provide policy name"} +2022/02/22 15:20:03 [DEBUG] Exit from do method +2022/02/22 15:20:03 [DEBUG] mso_schema_template_anp_epg.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: incomplete ref: /6214b1c31d000018514f9e71/acctest_zw278. If non-empty, must provide policy name"{} +2022/02/22 15:20:03 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: incomplete ref: /6214b1c31d000018514f9e71/acctest_zw278. If non-empty, must provide policy name"{} +2022/02/22 15:20:03 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: incomplete ref: /6214b1c31d000018514f9e71/acctest_zw278. If non-empty, must provide policy name"{} +2022/02/22 15:20:03 [DEBUG] New state was assigned lineage "e72c76dc-f969-b090-c700-628f99e9fefa" +2022/02/22 15:20:03 [WARN] Test: Executing destroy step +2022/02/22 15:20:03 [DEBUG] provider has no plugin.Client +2022/02/22 15:20:03 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:20:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_anp.test +2022/02/22 15:20:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:20:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:20:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:03 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:20:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:20:03 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:20:03 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:20:03 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 15:20:03 [WARN] Not fixing up EachModes for mso_schema_template_anp.test because it has no config +2022/02/22 15:20:03 [DEBUG] provider has no plugin.Client +2022/02/22 15:20:03 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:20:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:20:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:20:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:20:03 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:20:03 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:20:03 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:20:03 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:20:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:20:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:03 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:20:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:03 [DEBUG] : Beginning Read +2022/02/22 15:20:03 HTTP request GET mso/api/v1/tenants +2022/02/22 15:20:03 [DEBUG] Begin Injection +2022/02/22 15:20:03 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:20:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:20:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:20:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048b240 3980 [] false false map[] 0xc000510800 0xc0000bc160} +2022/02/22 15:20:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:20:03 [DEBUG] Exit from do method +2022/02/22 15:20:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:20:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:20:03 [DEBUG] 6214b1c31d000018514f9e71: Beginning Read +2022/02/22 15:20:03 HTTP request GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:03 [DEBUG] Begin Injection +2022/02/22 15:20:03 HTTP request after injection GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:03 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Read +2022/02/22 15:20:03 id: 6214b1bd1b00007779fd0654 +2022/02/22 15:20:03 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:03 [DEBUG] Begin Injection +2022/02/22 15:20:03 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d4f1c0 360 [] false false map[] 0xc000cec600 0xc0008a0630} +2022/02/22 15:20:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[931] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ae39c0 931 [] false false map[] 0xc000510b00 0xc0000bc160} +2022/02/22 15:20:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"id":"6214b1bd1b00007779fd0654","name":"acctest_w2asc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.103.44","epgRef":"","externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:20:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","anpRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/anps/acctest_s92uf","epgs":[]}],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","extEpgType":"on-premise","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/22 15:20:04 [DEBUG] Exit from do method +2022/02/22 15:20:04 [DEBUG] Exit from do method +2022/02/22 15:20:04 [DEBUG] 6214b1c31d000018514f9e71: Read finished successfully +2022/02/22 15:20:04 [DEBUG] 6214b1bd1b00007779fd0654: Read finished successfully +2022/02/22 15:20:04 [DEBUG] acctest_s92uf: Beginning Read +2022/02/22 15:20:04 HTTP request GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:04 [DEBUG] Begin Injection +2022/02/22 15:20:04 HTTP request after injection GET mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[931] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a80180 931 [] false false map[] 0xc001008400 0xc0000bc160} +2022/02/22 15:20:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 {"id":"6214b1c31d000018514f9e71","displayName":"acctest_6vi6e","description":"","templates":[{"name":"acctest_zw278","displayName":"acctest_zw278","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","anpRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/anps/acctest_s92uf","epgs":[]}],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_s92uf","displayName":"acctest_s92uf","extEpgType":"on-premise","vrfRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/vrfs/acctest_s92uf","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":6}],"_updateVersion":0} +2022/02/22 15:20:04 [DEBUG] Exit from do method +2022/02/22 15:20:04 currentanpname acctest_s92uf +2022/02/22 15:20:04 found correct anpname +2022/02/22 15:20:04 [DEBUG] acctest_s92uf: Read finished successfully +2022/02/22 15:20:04 [DEBUG] provider has no plugin.Client +2022/02/22 15:20:04 [DEBUG] New state was assigned lineage "671f9db6-efa6-31e2-a8de-46488c5422d9" +2022/02/22 15:20:04 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:20:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (destroy)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:04 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:20:04 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.103.44" => "" + dhcp_relay_policy_provider.0.epg: "" => "" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214b1bd1b00007779fd0654" => "" + name: "acctest_w2asc" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "6214b1c31d000018514f9e71" => "" + name: "acctest_6vi6e" => "" + template_name: "acctest_zw278" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_anp.test + display_name: "acctest_s92uf" => "" + id: "acctest_s92uf" => "" + name: "acctest_s92uf" => "" + schema_id: "6214b1c31d000018514f9e71" => "" + template: "acctest_zw278" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b1bd1b00007779fd0654 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.103.44 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214b1c31d000018514f9e71/templates/acctest_zw278/externalEpgs/acctest_s92uf + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_w2asc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214b1c31d000018514f9e71 + provider = provider.mso + name = acctest_6vi6e + template_name = acctest_zw278 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_anp.test: + ID = acctest_s92uf + provider = provider.mso + display_name = acctest_s92uf + name = acctest_s92uf + schema_id = 6214b1c31d000018514f9e71 + template = acctest_zw278 + + Dependencies: + mso_schema.test +2022/02/22 15:20:04 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:20:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (destroy)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (clean up state)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 15:20:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_anp.test (destroy) +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema_template_anp.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_schema_template_anp.test (destroy)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:20:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:04 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:20:04 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:20:04 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:20:04 [DEBUG] mso_schema_template_anp.test: applying the planned Delete change +2022/02/22 15:20:04 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:20:04 [DEBUG] acctest_s92uf: Beginning Destroy +2022/02/22 15:20:04 HTTP request PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:04 [DEBUG] Begin Injection +2022/02/22 15:20:04 HTTP request after injection PATCH mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:04 [DEBUG] 6214b1bd1b00007779fd0654: Beginning Read +2022/02/22 15:20:04 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:04 [DEBUG] Begin Injection +2022/02/22 15:20:04 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:04 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:50:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000b1a600 0xc0008a0630} +2022/02/22 15:20:04 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:04 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:04 [DEBUG] : Read finished successfully +2022/02/22 15:20:04 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:50:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000de0800 0xc0000bc160} +2022/02/22 15:20:04 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71?validate=false +2022/02/22 15:20:04 [DEBUG] acctest_s92uf: Destroy finished successfully +2022/02/22 15:20:04 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 15:20:04 [DEBUG] 6214b1c31d000018514f9e71: Beginning Destroy +2022/02/22 15:20:04 HTTP request DELETE mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:04 [DEBUG] Begin Injection +2022/02/22 15:20:04 HTTP request after injection DELETE mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:05 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:50:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000510c00 0xc0000bc160} +2022/02/22 15:20:05 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214b1c31d000018514f9e71 +2022/02/22 15:20:05 [DEBUG] 6214b1c31d000018514f9e71: Destroy finished successfully +2022/02/22 15:20:05 [DEBUG] provider has no plugin.Client +2022/02/22 15:20:05 [DEBUG] New state was assigned lineage "8627a6f2-d829-fa1e-890f-23cb34814eb7" +2022/02/22 15:20:05 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:05 [DEBUG] Begin Injection +2022/02/22 15:20:05 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 +2022/02/22 15:20:05 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:05 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a81e80 86 [] false false map[] 0xc000510e00 0xc0000bc160} +2022/02/22 15:20:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b1bd1b00007779fd0654 {"code":141,"message":"Resource Not Found: Policy 6214b1bd1b00007779fd0654 not found"} +2022/02/22 15:20:05 [DEBUG] Exit from do method +2022/02/22 15:20:05 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:20:05 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:20:05 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:20:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:20:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:20:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:05 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:20:05 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:20:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:05 [DEBUG] : Beginning Read +2022/02/22 15:20:05 HTTP request GET mso/api/v1/tenants +2022/02/22 15:20:05 [DEBUG] Begin Injection +2022/02/22 15:20:05 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:20:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:20:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:20:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:50:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d4ec00 3980 [] false false map[] 0xc000de0600 0xc0000bc160} +2022/02/22 15:20:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:20:05 [DEBUG] Exit from do method +2022/02/22 15:20:05 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:20:05 [DEBUG] provider has no plugin.Client +2022/02/22 15:20:05 [DEBUG] New state was assigned lineage "fa242744-3c4a-19a2-055b-0b2a10b01e4a" +2022/02/22 15:20:05 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:20:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:20:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:20:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:20:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:20:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:20:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:20:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:20:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:20:05 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:23:16 [DEBUG] Test: Executing step 0 +2022/02/22 15:23:16 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:23:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:16 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:23:16 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:23:16 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:23:16 [DEBUG] Test: Executing step 1 +2022/02/22 15:23:16 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:23:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:16 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:23:16 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:23:16 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:23:16 [DEBUG] Test: Executing step 2 +2022/02/22 15:23:16 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:23:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:16 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:23:16 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:16 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:23:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:16 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:16 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:23:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:16 [DEBUG] : Beginning Read +2022/02/22 15:23:16 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:16 [DEBUG] Begin Injection +2022/02/22 15:23:16 HTTP request POST /login +2022/02/22 15:23:16 HTTP request after injection POST /login +2022/02/22 15:23:16 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:23:18 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:23:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:18 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ3OTgsImlhdCI6MTY0NTUyMzU5OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiIwdjBiRHBLelUyRW0wUmd5blFJSXlEQVciLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.VA7xWkUeHW6VfeuOg_3ckCJy_vsAW2IVpphA8c2SCKYNI2khk3leCagAzwb00f6VnpEg-Md9Uc13gyLDwnb10IPpwiqUSRV5K68Sj0Shu1sLHSYOK0VxXi_b_9nNbKrRM_2yLlq3Y0sGpqJkfmmjcVPMxOtT17FvZ7kf1B1YI3sutQ8RRATPJ7HDpPVTqdn-8vkAUBLUOruFdEQZpPjVWuz_dwEOf2Hrlr95cT1IphI2-fM4aBYG-Lxal3kC0JvWMU9G8XU8qiNWrRTNBFTn8va8dFQX3WSK5ltqNtSv7AZAv4R2RyQLI-llQmN62AC72_4hd7SKL4IYJ6EU8vf2Jg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0005d82c0 -1 [chunked] false false map[] 0xc000902800 0xc00013e2c0} +2022/02/22 15:23:18 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ3OTgsImlhdCI6MTY0NTUyMzU5OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiIwdjBiRHBLelUyRW0wUmd5blFJSXlEQVciLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.VA7xWkUeHW6VfeuOg_3ckCJy_vsAW2IVpphA8c2SCKYNI2khk3leCagAzwb00f6VnpEg-Md9Uc13gyLDwnb10IPpwiqUSRV5K68Sj0Shu1sLHSYOK0VxXi_b_9nNbKrRM_2yLlq3Y0sGpqJkfmmjcVPMxOtT17FvZ7kf1B1YI3sutQ8RRATPJ7HDpPVTqdn-8vkAUBLUOruFdEQZpPjVWuz_dwEOf2Hrlr95cT1IphI2-fM4aBYG-Lxal3kC0JvWMU9G8XU8qiNWrRTNBFTn8va8dFQX3WSK5ltqNtSv7AZAv4R2RyQLI-llQmN62AC72_4hd7SKL4IYJ6EU8vf2Jg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ3OTgsImlhdCI6MTY0NTUyMzU5OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiIwdjBiRHBLelUyRW0wUmd5blFJSXlEQVciLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.VA7xWkUeHW6VfeuOg_3ckCJy_vsAW2IVpphA8c2SCKYNI2khk3leCagAzwb00f6VnpEg-Md9Uc13gyLDwnb10IPpwiqUSRV5K68Sj0Shu1sLHSYOK0VxXi_b_9nNbKrRM_2yLlq3Y0sGpqJkfmmjcVPMxOtT17FvZ7kf1B1YI3sutQ8RRATPJ7HDpPVTqdn-8vkAUBLUOruFdEQZpPjVWuz_dwEOf2Hrlr95cT1IphI2-fM4aBYG-Lxal3kC0JvWMU9G8XU8qiNWrRTNBFTn8va8dFQX3WSK5ltqNtSv7AZAv4R2RyQLI-llQmN62AC72_4hd7SKL4IYJ6EU8vf2Jg"} +2022/02/22 15:23:18 [DEBUG] Exit from do method +2022/02/22 15:23:18 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000098340 3980 [] false false map[] 0xc000902700 0xc00013e2c0} +2022/02/22 15:23:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:18 [DEBUG] Exit from do method +2022/02/22 15:23:18 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:18 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:18 [DEBUG] New state was assigned lineage "f0ba8cc2-2f40-dd15-6014-63016613d509" +2022/02/22 15:23:18 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:18 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:18 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:23:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:18 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:18 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_evg2y" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:23:18 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:23:18 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:23:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 15:23:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:23:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:23:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:23:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:23:18 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:23:18 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:23:18 [DEBUG] : Beginning Create +2022/02/22 15:23:18 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:23:18 [DEBUG] Begin Injection +2022/02/22 15:23:18 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:23:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:23:19 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:23:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000098500 160 [] false false map[] 0xc0009b8800 0xc00013e2c0} +2022/02/22 15:23:19 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:19 [DEBUG] Exit from do method +2022/02/22 15:23:19 [DEBUG] 6214b28f1b0000bf79fd0655: Creation finished successfully +2022/02/22 15:23:19 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:19 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:19 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:19 [DEBUG] Begin Injection +2022/02/22 15:23:19 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bce900 160 [] false false map[] 0xc00009e100 0xc00013e2c0} +2022/02/22 15:23:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:19 [DEBUG] Exit from do method +2022/02/22 15:23:19 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:19 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:19 [DEBUG] New state was assigned lineage "ec38cb34-f5c9-3ef6-a835-a122ab34eb35" +2022/02/22 15:23:19 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:19 [DEBUG] Begin Injection +2022/02/22 15:23:19 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000990c0 160 [] false false map[] 0xc000334000 0xc00013e2c0} +2022/02/22 15:23:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:20 [DEBUG] Exit from do method +2022/02/22 15:23:20 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:20 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:20 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:20 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:20 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:20 [DEBUG] : Beginning Read +2022/02/22 15:23:20 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:20 [DEBUG] Begin Injection +2022/02/22 15:23:20 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004be00 3980 [] false false map[] 0xc00099a500 0xc00013e2c0} +2022/02/22 15:23:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:20 [DEBUG] Exit from do method +2022/02/22 15:23:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:20 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:20 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:20 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:20 [DEBUG] Begin Injection +2022/02/22 15:23:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d8640 160 [] false false map[] 0xc000902100 0xc00013e2c0} +2022/02/22 15:23:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:20 [DEBUG] Exit from do method +2022/02/22 15:23:20 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:20 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:20 [DEBUG] New state was assigned lineage "0667347e-7544-a815-cfb7-c1e0fa2b37a3" +2022/02/22 15:23:20 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:20 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:20 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:20 [DEBUG] Test: Executing step 3 +2022/02/22 15:23:20 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:20 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:23:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:20 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:23:20 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:23:20 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:23:20 [DEBUG] Test: Executing step 4 +2022/02/22 15:23:20 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:20 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:23:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:20 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:23:20 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:20 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:20 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:20 [DEBUG] : Beginning Read +2022/02/22 15:23:20 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:20 [DEBUG] Begin Injection +2022/02/22 15:23:20 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000098280 3980 [] false false map[] 0xc000ef6200 0xc00013e2c0} +2022/02/22 15:23:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:21 [DEBUG] Exit from do method +2022/02/22 15:23:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:21 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:21 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 [DEBUG] Begin Injection +2022/02/22 15:23:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000504e40 160 [] false false map[] 0xc000974600 0xc00013e2c0} +2022/02/22 15:23:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:21 [DEBUG] Exit from do method +2022/02/22 15:23:21 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:21 [DEBUG] New state was assigned lineage "43d82901-eab4-50c8-4067-19e3894f4b28" +2022/02/22 15:23:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:21 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:21 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.151.110" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214b28f1b0000bf79fd0655" => "6214b28f1b0000bf79fd0655" + name: "acctest_evg2y" => "acctest_evg2y" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b28f1b0000bf79fd0655 + provider = provider.mso + description = + name = acctest_evg2y + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:23:21 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:23:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:23:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:23:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:23:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:23:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:23:21 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:23:21 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:23:21 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Policy Update +2022/02/22 15:23:21 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 [DEBUG] Begin Injection +2022/02/22 15:23:21 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e44c0 357 [] false false map[] 0xc000975200 0xc00013e2c0} +2022/02/22 15:23:21 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:23:21 [DEBUG] Exit from do method +2022/02/22 15:23:21 [DEBUG] Policy Update finished successfully: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:21 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 [DEBUG] Begin Injection +2022/02/22 15:23:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e4940 357 [] false false map[] 0xc000ff4000 0xc00013e2c0} +2022/02/22 15:23:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:23:22 [DEBUG] Exit from do method +2022/02/22 15:23:22 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:22 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 15:23:22 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:22 [DEBUG] New state was assigned lineage "011ca451-000f-98eb-a601-d1e35ba5b48a" +2022/02/22 15:23:22 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:22 [DEBUG] Begin Injection +2022/02/22 15:23:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e4040 357 [] false false map[] 0xc00009e200 0xc00013e2c0} +2022/02/22 15:23:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:23:22 [DEBUG] Exit from do method +2022/02/22 15:23:22 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:22 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:22 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:22 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:22 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:22 [DEBUG] : Beginning Read +2022/02/22 15:23:22 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:22 [DEBUG] Begin Injection +2022/02/22 15:23:22 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049c400 3980 [] false false map[] 0xc000190100 0xc00013e2c0} +2022/02/22 15:23:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:22 [DEBUG] Exit from do method +2022/02/22 15:23:22 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:22 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:22 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:22 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:22 [DEBUG] Begin Injection +2022/02/22 15:23:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e55c0 357 [] false false map[] 0xc00009ea00 0xc00013e2c0} +2022/02/22 15:23:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:23:23 [DEBUG] Exit from do method +2022/02/22 15:23:23 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:23 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:23 [DEBUG] New state was assigned lineage "7b0699d4-9ed8-1a8d-3ce9-6dfc270998e5" +2022/02/22 15:23:23 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:23:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:23 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:23 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:23 [DEBUG] Test: Executing step 5 +2022/02/22 15:23:23 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:23 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:23:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 15:23:23 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:23:23 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:23:23 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:23 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:23 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:23:23 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:23 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:23 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:23 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:23 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:23 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:23 [DEBUG] : Beginning Read +2022/02/22 15:23:23 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:23 [DEBUG] Begin Injection +2022/02/22 15:23:23 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d8080 3980 [] false false map[] 0xc000190700 0xc00013e2c0} +2022/02/22 15:23:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:23 [DEBUG] Exit from do method +2022/02/22 15:23:23 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:23 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:23:23 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:23:23 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:23:23 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:23:23 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:23 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:23 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:23 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:23 [DEBUG] Begin Injection +2022/02/22 15:23:23 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e4100 357 [] false false map[] 0xc000724600 0xc00013e2c0} +2022/02/22 15:23:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:23:24 [DEBUG] Exit from do method +2022/02/22 15:23:24 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:24 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:24 [DEBUG] New state was assigned lineage "8820b1e6-7030-ea21-4d8d-eafac37f4668" +2022/02/22 15:23:24 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:23:24 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:24 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:23:24 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:23:24 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:23:24 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:24 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:24 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.151.110" => "1.2.151.110" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214b28f1b0000bf79fd0655" => "6214b28f1b0000bf79fd0655" + name: "acctest_evg2y" => "acctest_evg2y" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_zwfil" + template_name: "" => "acctest_ofuyf" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_8okab" + external_epg_name: "" => "acctest_8okab" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_ofuyf" + vrf_name: "" => "acctest_8okab" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_8okab" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_8okab" + schema_id: "" => "" + template: "" => "acctest_ofuyf" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b28f1b0000bf79fd0655 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.151.110 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_evg2y + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:23:24 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:23:24 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:23:24 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:23:24 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:23:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 15:23:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:24 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:23:24 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 15:23:24 [DEBUG] Schema: Beginning Creation +2022/02/22 15:23:24 HTTP request POST mso/api/v1/schemas +2022/02/22 15:23:24 [DEBUG] Begin Injection +2022/02/22 15:23:24 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 15:23:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:23:24 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:23:24 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214b2941d000031514f9e79] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e40c0 400 [] false false map[] 0xc00009e500 0xc00013e2c0} +2022/02/22 15:23:24 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214b2941d000031514f9e79","displayName":"acctest_zwfil","description":"","templates":[{"name":"acctest_ofuyf","displayName":"acctest_ofuyf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:23:24 [DEBUG] Exit from do method +2022/02/22 15:23:24 [DEBUG] 6214b2941d000031514f9e79: Schema Creation finished successfully +2022/02/22 15:23:24 [DEBUG] 6214b2941d000031514f9e79: Beginning Read +2022/02/22 15:23:24 HTTP request GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:24 [DEBUG] Begin Injection +2022/02/22 15:23:24 HTTP request after injection GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004321c0 400 [] false false map[] 0xc000724100 0xc00013e2c0} +2022/02/22 15:23:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 {"id":"6214b2941d000031514f9e79","displayName":"acctest_zwfil","description":"","templates":[{"name":"acctest_ofuyf","displayName":"acctest_ofuyf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:23:24 [DEBUG] Exit from do method +2022/02/22 15:23:24 [DEBUG] 6214b2941d000031514f9e79: Read finished successfully +2022/02/22 15:23:24 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 15:23:24 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 15:23:24 HTTP request PATCH mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:24 [DEBUG] Begin Injection +2022/02/22 15:23:24 HTTP request after injection PATCH mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:25 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:53:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000974600 0xc00013e2c0} +2022/02/22 15:23:25 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:25 [DEBUG] acctest_8okab: Creation finished successfully +2022/02/22 15:23:25 [DEBUG] acctest_8okab: Beginning Read +2022/02/22 15:23:25 HTTP request GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:25 [DEBUG] Begin Injection +2022/02/22 15:23:25 HTTP request after injection GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005050c0 768 [] false false map[] 0xc000724200 0xc00013e2c0} +2022/02/22 15:23:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 {"id":"6214b2941d000031514f9e79","displayName":"acctest_zwfil","description":"","templates":[{"name":"acctest_ofuyf","displayName":"acctest_ofuyf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_8okab","displayName":"acctest_8okab","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 15:23:25 [DEBUG] Exit from do method +2022/02/22 15:23:25 currentvrfname acctest_8okab +2022/02/22 15:23:25 found correct vrfname +2022/02/22 15:23:25 [DEBUG] acctest_8okab: Read finished successfully +2022/02/22 15:23:25 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:23:25 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 15:23:25 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 15:23:25 HTTP request PATCH mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:25 [DEBUG] Begin Injection +2022/02/22 15:23:25 HTTP request after injection PATCH mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:25 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:25 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:53:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000974600 0xc00013e2c0} +2022/02/22 15:23:25 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:25 [DEBUG] : Beginning Read +2022/02/22 15:23:25 HTTP request GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:25 [DEBUG] Begin Injection +2022/02/22 15:23:25 HTTP request after injection GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e4140 1147 [] false false map[] 0xc000190000 0xc00013e2c0} +2022/02/22 15:23:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 {"id":"6214b2941d000031514f9e79","displayName":"acctest_zwfil","description":"","templates":[{"name":"acctest_ofuyf","displayName":"acctest_ofuyf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_8okab","displayName":"acctest_8okab","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_8okab","displayName":"acctest_8okab","extEpgType":"on-premise","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:23:26 [DEBUG] Exit from do method +2022/02/22 15:23:26 [DEBUG] /schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab: Read finished successfully +2022/02/22 15:23:26 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:23:26 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Policy Update +2022/02/22 15:23:26 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:26 [DEBUG] Begin Injection +2022/02/22 15:23:26 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:26 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004320c0 361 [] false false map[] 0xc00009f100 0xc00013e2c0} +2022/02/22 15:23:26 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"","externalEpgRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:23:26 [DEBUG] Exit from do method +2022/02/22 15:23:26 [DEBUG] Policy Update finished successfully: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:26 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:26 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:26 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:26 [DEBUG] Begin Injection +2022/02/22 15:23:26 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e4500 361 [] false false map[] 0xc000724100 0xc00013e2c0} +2022/02/22 15:23:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"","externalEpgRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:23:27 [DEBUG] Exit from do method +2022/02/22 15:23:27 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:27 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 15:23:27 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:27 [DEBUG] New state was assigned lineage "8a99146d-c231-2497-cc00-1aaf7af7bccb" +2022/02/22 15:23:27 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:27 [DEBUG] Begin Injection +2022/02/22 15:23:27 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004321c0 361 [] false false map[] 0xc00009e100 0xc00013e2c0} +2022/02/22 15:23:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"","externalEpgRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:23:27 [DEBUG] Exit from do method +2022/02/22 15:23:27 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 15:23:27 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 15:23:27 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:27 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:27 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:23:27 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:27 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:27 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:27 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:27 [DEBUG] : Beginning Read +2022/02/22 15:23:27 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:27 [DEBUG] Begin Injection +2022/02/22 15:23:27 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098d9c0 3980 [] false false map[] 0xc00009e700 0xc00013e2c0} +2022/02/22 15:23:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:27 [DEBUG] Exit from do method +2022/02/22 15:23:27 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:27 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:23:27 [DEBUG] 6214b2941d000031514f9e79: Beginning Read +2022/02/22 15:23:27 HTTP request GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:27 [DEBUG] Begin Injection +2022/02/22 15:23:27 HTTP request after injection GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bce140 1147 [] false false map[] 0xc00009f400 0xc00013e2c0} +2022/02/22 15:23:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 {"id":"6214b2941d000031514f9e79","displayName":"acctest_zwfil","description":"","templates":[{"name":"acctest_ofuyf","displayName":"acctest_ofuyf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_8okab","displayName":"acctest_8okab","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_8okab","displayName":"acctest_8okab","extEpgType":"on-premise","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:23:28 [DEBUG] Exit from do method +2022/02/22 15:23:28 [DEBUG] 6214b2941d000031514f9e79: Read finished successfully +2022/02/22 15:23:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:23:28 [DEBUG] acctest_8okab: Beginning Read +2022/02/22 15:23:28 HTTP request GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:28 [DEBUG] Begin Injection +2022/02/22 15:23:28 HTTP request after injection GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049c2c0 1147 [] false false map[] 0xc00009f900 0xc00013e2c0} +2022/02/22 15:23:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 {"id":"6214b2941d000031514f9e79","displayName":"acctest_zwfil","description":"","templates":[{"name":"acctest_ofuyf","displayName":"acctest_ofuyf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_8okab","displayName":"acctest_8okab","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_8okab","displayName":"acctest_8okab","extEpgType":"on-premise","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:23:28 [DEBUG] Exit from do method +2022/02/22 15:23:28 currentvrfname acctest_8okab +2022/02/22 15:23:28 found correct vrfname +2022/02/22 15:23:28 [DEBUG] acctest_8okab: Read finished successfully +2022/02/22 15:23:28 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:23:28 [DEBUG] /schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab: Beginning Read +2022/02/22 15:23:28 HTTP request GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:28 [DEBUG] Begin Injection +2022/02/22 15:23:28 HTTP request after injection GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049c140 1147 [] false false map[] 0xc00030c300 0xc00013e2c0} +2022/02/22 15:23:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 {"id":"6214b2941d000031514f9e79","displayName":"acctest_zwfil","description":"","templates":[{"name":"acctest_ofuyf","displayName":"acctest_ofuyf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_8okab","displayName":"acctest_8okab","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_8okab","displayName":"acctest_8okab","extEpgType":"on-premise","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:23:28 [DEBUG] Exit from do method +2022/02/22 15:23:28 [DEBUG] /schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab: Read finished successfully +2022/02/22 15:23:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:28 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:28 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:28 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:28 [DEBUG] Begin Injection +2022/02/22 15:23:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d24140 361 [] false false map[] 0xc000974600 0xc00013e2c0} +2022/02/22 15:23:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"","externalEpgRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:23:29 [DEBUG] Exit from do method +2022/02/22 15:23:29 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:29 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:29 [DEBUG] New state was assigned lineage "b60a4076-e78a-a159-9f28-1d61dfacbf67" +2022/02/22 15:23:29 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:29 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:29 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:29 [DEBUG] Test: Executing step 6 +2022/02/22 15:23:29 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:29 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:23:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:23:29 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:23:29 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 15:23:29 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 15:23:29 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 15:23:29 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:29 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:23:29 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:29 [DEBUG] : Beginning Read +2022/02/22 15:23:29 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:29 [DEBUG] Begin Injection +2022/02/22 15:23:29 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bce100 3980 [] false false map[] 0xc000724e00 0xc00013e2c0} +2022/02/22 15:23:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:29 [DEBUG] Exit from do method +2022/02/22 15:23:29 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:29 [DEBUG] 6214b2941d000031514f9e79: Beginning Read +2022/02/22 15:23:29 HTTP request GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:29 [DEBUG] Begin Injection +2022/02/22 15:23:29 HTTP request after injection GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:29 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:29 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:29 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:29 [DEBUG] Begin Injection +2022/02/22 15:23:29 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e920c0 1147 [] false false map[] 0xc000900600 0xc00013e2c0} +2022/02/22 15:23:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 {"id":"6214b2941d000031514f9e79","displayName":"acctest_zwfil","description":"","templates":[{"name":"acctest_ofuyf","displayName":"acctest_ofuyf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_8okab","displayName":"acctest_8okab","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_8okab","displayName":"acctest_8okab","extEpgType":"on-premise","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:23:30 [DEBUG] Exit from do method +2022/02/22 15:23:30 [DEBUG] 6214b2941d000031514f9e79: Read finished successfully +2022/02/22 15:23:30 [DEBUG] acctest_8okab: Beginning Read +2022/02/22 15:23:30 HTTP request GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:30 [DEBUG] Begin Injection +2022/02/22 15:23:30 HTTP request after injection GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049c180 361 [] false false map[] 0xc00009e500 0xc00013e2c0} +2022/02/22 15:23:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"","externalEpgRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:23:30 [DEBUG] Exit from do method +2022/02/22 15:23:30 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bce040 1147 [] false false map[] 0xc00009e800 0xc00013e2c0} +2022/02/22 15:23:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 {"id":"6214b2941d000031514f9e79","displayName":"acctest_zwfil","description":"","templates":[{"name":"acctest_ofuyf","displayName":"acctest_ofuyf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_8okab","displayName":"acctest_8okab","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_8okab","displayName":"acctest_8okab","extEpgType":"on-premise","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:23:30 [DEBUG] Exit from do method +2022/02/22 15:23:30 currentvrfname acctest_8okab +2022/02/22 15:23:30 found correct vrfname +2022/02/22 15:23:30 [DEBUG] acctest_8okab: Read finished successfully +2022/02/22 15:23:30 [DEBUG] /schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab: Beginning Read +2022/02/22 15:23:30 HTTP request GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:30 [DEBUG] Begin Injection +2022/02/22 15:23:30 HTTP request after injection GET mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049c140 1147 [] false false map[] 0xc00009ed00 0xc00013e2c0} +2022/02/22 15:23:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 {"id":"6214b2941d000031514f9e79","displayName":"acctest_zwfil","description":"","templates":[{"name":"acctest_ofuyf","displayName":"acctest_ofuyf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_8okab","displayName":"acctest_8okab","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_8okab","displayName":"acctest_8okab","extEpgType":"on-premise","vrfRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/vrfs/acctest_8okab","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:23:31 [DEBUG] Exit from do method +2022/02/22 15:23:31 [DEBUG] /schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab: Read finished successfully +2022/02/22 15:23:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:31 [DEBUG] New state was assigned lineage "2e5ec7a7-a5e2-9e53-d1f8-2b4445072158" +2022/02/22 15:23:31 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:31 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:31 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "test description" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.151.110" => "1.2.151.110" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214b28f1b0000bf79fd0655" => "6214b28f1b0000bf79fd0655" + name: "acctest_evg2y" => "acctest_evg2y" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214b2941d000031514f9e79" => "" + name: "acctest_zwfil" => "" + template_name: "acctest_ofuyf" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_8okab" => "" + external_epg_name: "acctest_8okab" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214b2941d000031514f9e79" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_ofuyf" => "" + vrf_name: "acctest_8okab" => "" + vrf_schema_id: "6214b2941d000031514f9e79" => "" + vrf_template_name: "acctest_ofuyf" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_8okab" => "" + id: "acctest_8okab" => "" + layer3_multicast: "false" => "" + name: "acctest_8okab" => "" + schema_id: "6214b2941d000031514f9e79" => "" + template: "acctest_ofuyf" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b28f1b0000bf79fd0655 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.151.110 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_evg2y + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214b2941d000031514f9e79 + provider = provider.mso + name = acctest_zwfil + template_name = acctest_ofuyf + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214b2941d000031514f9e79/templates/acctest_ofuyf/externalEpgs/acctest_8okab + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_8okab + external_epg_name = acctest_8okab + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214b2941d000031514f9e79 + selector_ip = + selector_name = + template_name = acctest_ofuyf + vrf_name = acctest_8okab + vrf_schema_id = 6214b2941d000031514f9e79 + vrf_template_name = acctest_ofuyf + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_8okab + provider = provider.mso + display_name = acctest_8okab + layer3_multicast = false + name = acctest_8okab + schema_id = 6214b2941d000031514f9e79 + template = acctest_ofuyf + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 15:23:31 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:23:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:23:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:31 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:23:31 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 15:23:31 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 15:23:31 HTTP request PATCH mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:31 [DEBUG] Begin Injection +2022/02/22 15:23:31 HTTP request after injection PATCH mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:31 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:23:31 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Policy Update +2022/02/22 15:23:31 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:31 [DEBUG] Begin Injection +2022/02/22 15:23:31 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:31 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bce100 373 [] false false map[] 0xc00009ec00 0xc0005d6420} +2022/02/22 15:23:31 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:23:31 [DEBUG] Exit from do method +2022/02/22 15:23:31 [DEBUG] Policy Update finished successfully: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:31 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:31 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:31 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:31 [DEBUG] Begin Injection +2022/02/22 15:23:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:31 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:53:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00009e400 0xc0003d3e40} +2022/02/22 15:23:31 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:31 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 15:23:31 [DEBUG] acctest_8okab: Beginning Destroy +2022/02/22 15:23:31 HTTP request PATCH mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:31 [DEBUG] Begin Injection +2022/02/22 15:23:31 HTTP request after injection PATCH mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bce2c0 373 [] false false map[] 0xc00009ee00 0xc0005d6420} +2022/02/22 15:23:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:23:31 [DEBUG] Exit from do method +2022/02/22 15:23:31 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:31 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 15:23:31 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:53:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000975b00 0xc0003d3e40} +2022/02/22 15:23:31 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79?validate=false +2022/02/22 15:23:31 [DEBUG] acctest_8okab: Destroy finished successfully +2022/02/22 15:23:31 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 15:23:31 [DEBUG] 6214b2941d000031514f9e79: Beginning Destroy +2022/02/22 15:23:31 HTTP request DELETE mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:31 [DEBUG] Begin Injection +2022/02/22 15:23:31 HTTP request after injection DELETE mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:32 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:32 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:53:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00009f500 0xc0003d3e40} +2022/02/22 15:23:32 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214b2941d000031514f9e79 +2022/02/22 15:23:32 [DEBUG] 6214b2941d000031514f9e79: Destroy finished successfully +2022/02/22 15:23:32 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:32 [DEBUG] New state was assigned lineage "ecaee0a4-9b9a-af9e-724a-fa669600facd" +2022/02/22 15:23:32 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:32 [DEBUG] Begin Injection +2022/02/22 15:23:32 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e4c00 373 [] false false map[] 0xc000974000 0xc0003d3e40} +2022/02/22 15:23:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:23:32 [DEBUG] Exit from do method +2022/02/22 15:23:32 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:32 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:32 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:32 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:32 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:32 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:32 [DEBUG] : Beginning Read +2022/02/22 15:23:32 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:32 [DEBUG] Begin Injection +2022/02/22 15:23:32 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049cac0 3980 [] false false map[] 0xc000724300 0xc0003d3e40} +2022/02/22 15:23:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:32 [DEBUG] Exit from do method +2022/02/22 15:23:32 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:32 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:32 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:32 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:32 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:32 [DEBUG] Begin Injection +2022/02/22 15:23:32 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b98a80 373 [] false false map[] 0xc000900a00 0xc0003d3e40} +2022/02/22 15:23:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:23:33 [DEBUG] Exit from do method +2022/02/22 15:23:33 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:33 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:33 [DEBUG] New state was assigned lineage "ea708157-5c77-ef15-762d-0dfa85e18db6" +2022/02/22 15:23:33 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:33 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:33 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:33 [DEBUG] Test: Executing step 7 +2022/02/22 15:23:33 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (import id \"6214b28f1b0000bf79fd0655\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/22 15:23:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (import id \"6214b28f1b0000bf79fd0655\")" references: [] +2022/02/22 15:23:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:33 [DEBUG] Starting graph walk: walkImport +2022/02/22 15:23:33 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Import +2022/02/22 15:23:33 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:33 [DEBUG] Begin Injection +2022/02/22 15:23:33 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bce980 373 [] false false map[] 0xc000ac0e00 0xc0003d3e40} +2022/02/22 15:23:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:23:33 [DEBUG] Exit from do method +2022/02/22 15:23:33 [DEBUG] 6214b28f1b0000bf79fd0655: Import finished successfully +2022/02/22 15:23:33 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:33 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:33 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:33 [DEBUG] Begin Injection +2022/02/22 15:23:33 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bce180 373 [] false false map[] 0xc000724300 0xc0003d3e40} +2022/02/22 15:23:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:23:34 [DEBUG] Exit from do method +2022/02/22 15:23:34 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:34 [DEBUG] New state was assigned lineage "b77f8eaa-b0ab-5e19-650e-5c5be16c1570" +2022/02/22 15:23:34 [DEBUG] Test: Executing step 8 +2022/02/22 15:23:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:34 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:23:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:34 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:23:34 [ERROR] : eval: *terraform.EvalValidateResource, err: 2 problems: + +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +- Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:23:34 [ERROR] : eval: *terraform.EvalSequence, err: 2 problems: + +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +- Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:23:34 [DEBUG] Test: Executing step 9 +2022/02/22 15:23:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:34 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:23:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:34 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:23:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:34 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:34 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:34 [DEBUG] : Beginning Read +2022/02/22 15:23:34 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:34 [DEBUG] Begin Injection +2022/02/22 15:23:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d8080 3980 [] false false map[] 0xc000725c00 0xc0003d3e40} +2022/02/22 15:23:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:34 [DEBUG] Exit from do method +2022/02/22 15:23:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:34 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:34 id: 6214b28f1b0000bf79fd0655 +2022/02/22 15:23:34 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:34 [DEBUG] Begin Injection +2022/02/22 15:23:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049c9c0 373 [] false false map[] 0xc0001ae200 0xc0003d3e40} +2022/02/22 15:23:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 {"id":"6214b28f1b0000bf79fd0655","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.151.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:23:34 [DEBUG] Exit from do method +2022/02/22 15:23:34 [DEBUG] 6214b28f1b0000bf79fd0655: Read finished successfully +2022/02/22 15:23:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:34 [DEBUG] New state was assigned lineage "5cdb01fd-2776-e080-5c67-c0245f1f5541" +2022/02/22 15:23:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:34 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:34 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "test description" => "" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.151.110" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214b28f1b0000bf79fd0655" => "" + name: "acctest_evg2y" => "acctest_gzi4f" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b28f1b0000bf79fd0655 + provider = provider.mso + description = test description + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.151.110 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_evg2y + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:23:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:23:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:23:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:34 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:23:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:23:34 [DEBUG] 6214b28f1b0000bf79fd0655: Beginning Read +2022/02/22 15:23:34 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:34 [DEBUG] Begin Injection +2022/02/22 15:23:34 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:35 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:35 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:53:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000724200 0xc0003d3e40} +2022/02/22 15:23:35 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b28f1b0000bf79fd0655 +2022/02/22 15:23:35 [DEBUG] : Read finished successfully +2022/02/22 15:23:35 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:23:35 [DEBUG] : Beginning Create +2022/02/22 15:23:35 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:23:35 [DEBUG] Begin Injection +2022/02/22 15:23:35 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:23:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:23:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:23:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d89c0 160 [] false false map[] 0xc0007a6700 0xc0003d3e40} +2022/02/22 15:23:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b29f1b0000b079fd0656","name":"acctest_gzi4f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:35 [DEBUG] Exit from do method +2022/02/22 15:23:35 [DEBUG] 6214b29f1b0000b079fd0656: Creation finished successfully +2022/02/22 15:23:35 [DEBUG] 6214b29f1b0000b079fd0656: Beginning Read +2022/02/22 15:23:35 id: 6214b29f1b0000b079fd0656 +2022/02/22 15:23:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:35 [DEBUG] Begin Injection +2022/02/22 15:23:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d8a80 160 [] false false map[] 0xc0001ae500 0xc0003d3e40} +2022/02/22 15:23:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 {"id":"6214b29f1b0000b079fd0656","name":"acctest_gzi4f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:35 [DEBUG] Exit from do method +2022/02/22 15:23:35 [DEBUG] 6214b29f1b0000b079fd0656: Read finished successfully +2022/02/22 15:23:35 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:35 [DEBUG] New state was assigned lineage "4e69e709-f77a-c61d-9a81-76c6c5d8c7b0" +2022/02/22 15:23:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:35 [DEBUG] Begin Injection +2022/02/22 15:23:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b980c0 160 [] false false map[] 0xc000724300 0xc0003d3e40} +2022/02/22 15:23:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 {"id":"6214b29f1b0000b079fd0656","name":"acctest_gzi4f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:36 [DEBUG] Exit from do method +2022/02/22 15:23:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:36 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:36 [DEBUG] : Beginning Read +2022/02/22 15:23:36 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:36 [DEBUG] Begin Injection +2022/02/22 15:23:36 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004320c0 3980 [] false false map[] 0xc00009ea00 0xc0003d3e40} +2022/02/22 15:23:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:36 [DEBUG] Exit from do method +2022/02/22 15:23:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:36 [DEBUG] 6214b29f1b0000b079fd0656: Beginning Read +2022/02/22 15:23:36 id: 6214b29f1b0000b079fd0656 +2022/02/22 15:23:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:36 [DEBUG] Begin Injection +2022/02/22 15:23:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bce200 160 [] false false map[] 0xc000724300 0xc0003d3e40} +2022/02/22 15:23:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 {"id":"6214b29f1b0000b079fd0656","name":"acctest_gzi4f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:37 [DEBUG] Exit from do method +2022/02/22 15:23:37 [DEBUG] 6214b29f1b0000b079fd0656: Read finished successfully +2022/02/22 15:23:37 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:37 [DEBUG] New state was assigned lineage "abf63829-ac27-ca65-4d79-5747edeefd02" +2022/02/22 15:23:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:37 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:37 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:37 [DEBUG] Test: Executing step 10 +2022/02/22 15:23:37 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:23:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:23:37 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:37 [DEBUG] : Beginning Read +2022/02/22 15:23:37 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:37 [DEBUG] Begin Injection +2022/02/22 15:23:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e93180 3980 [] false false map[] 0xc001092c00 0xc0003d3e40} +2022/02/22 15:23:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:37 [DEBUG] Exit from do method +2022/02/22 15:23:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:37 [DEBUG] 6214b29f1b0000b079fd0656: Beginning Read +2022/02/22 15:23:37 id: 6214b29f1b0000b079fd0656 +2022/02/22 15:23:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:37 [DEBUG] Begin Injection +2022/02/22 15:23:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bce0c0 160 [] false false map[] 0xc000ba4200 0xc0003d3e40} +2022/02/22 15:23:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 {"id":"6214b29f1b0000b079fd0656","name":"acctest_gzi4f","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:37 [DEBUG] Exit from do method +2022/02/22 15:23:37 [DEBUG] 6214b29f1b0000b079fd0656: Read finished successfully +2022/02/22 15:23:37 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:37 [DEBUG] New state was assigned lineage "200024a4-8076-f31e-28f6-f20eb0ccf70f" +2022/02/22 15:23:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:37 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:37 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:37 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "6214b29f1b0000b079fd0656" => "" + name: "acctest_gzi4f" => "acctest_evg2y" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b29f1b0000b079fd0656 + provider = provider.mso + description = + name = acctest_gzi4f + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:23:37 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:23:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:23:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:23:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:37 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:23:37 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:23:37 [DEBUG] 6214b29f1b0000b079fd0656: Beginning Read +2022/02/22 15:23:37 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:37 [DEBUG] Begin Injection +2022/02/22 15:23:37 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:38 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:53:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000884700 0xc0003d3e40} +2022/02/22 15:23:38 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b29f1b0000b079fd0656 +2022/02/22 15:23:38 [DEBUG] : Read finished successfully +2022/02/22 15:23:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:23:38 [DEBUG] : Beginning Create +2022/02/22 15:23:38 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:23:38 [DEBUG] Begin Injection +2022/02/22 15:23:38 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:23:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:23:38 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:23:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e4500 160 [] false false map[] 0xc00009ea00 0xc0003d3e40} +2022/02/22 15:23:38 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b2a21b0000b079fd0657","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:38 [DEBUG] Exit from do method +2022/02/22 15:23:38 [DEBUG] 6214b2a21b0000b079fd0657: Creation finished successfully +2022/02/22 15:23:38 [DEBUG] 6214b2a21b0000b079fd0657: Beginning Read +2022/02/22 15:23:38 id: 6214b2a21b0000b079fd0657 +2022/02/22 15:23:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:38 [DEBUG] Begin Injection +2022/02/22 15:23:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d8380 160 [] false false map[] 0xc0004b6000 0xc0003d3e40} +2022/02/22 15:23:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 {"id":"6214b2a21b0000b079fd0657","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:38 [DEBUG] Exit from do method +2022/02/22 15:23:38 [DEBUG] 6214b2a21b0000b079fd0657: Read finished successfully +2022/02/22 15:23:38 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:38 [DEBUG] New state was assigned lineage "5806459a-2482-79d5-01f7-eee5a9e48e52" +2022/02/22 15:23:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:38 [DEBUG] Begin Injection +2022/02/22 15:23:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e4180 160 [] false false map[] 0xc000ba4200 0xc0003d3e40} +2022/02/22 15:23:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 {"id":"6214b2a21b0000b079fd0657","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:39 [DEBUG] Exit from do method +2022/02/22 15:23:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:39 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:39 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:39 [DEBUG] : Beginning Read +2022/02/22 15:23:39 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:39 [DEBUG] Begin Injection +2022/02/22 15:23:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098c1c0 3980 [] false false map[] 0xc0007ee200 0xc0003d3e40} +2022/02/22 15:23:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:39 [DEBUG] Exit from do method +2022/02/22 15:23:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:39 [DEBUG] 6214b2a21b0000b079fd0657: Beginning Read +2022/02/22 15:23:39 id: 6214b2a21b0000b079fd0657 +2022/02/22 15:23:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:39 [DEBUG] Begin Injection +2022/02/22 15:23:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e5600 160 [] false false map[] 0xc00009e500 0xc0003d3e40} +2022/02/22 15:23:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 {"id":"6214b2a21b0000b079fd0657","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:39 [DEBUG] Exit from do method +2022/02/22 15:23:39 [DEBUG] 6214b2a21b0000b079fd0657: Read finished successfully +2022/02/22 15:23:39 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:39 [DEBUG] New state was assigned lineage "95142ca0-ad48-932b-f58f-2a34a0940824" +2022/02/22 15:23:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:23:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:39 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:23:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:40 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:40 [WARN] Test: Executing destroy step +2022/02/22 15:23:40 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:23:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:23:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:23:40 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:23:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:23:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:40 [DEBUG] : Beginning Read +2022/02/22 15:23:40 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:40 [DEBUG] Begin Injection +2022/02/22 15:23:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005d8ac0 3980 [] false false map[] 0xc00094eb00 0xc0003d3e40} +2022/02/22 15:23:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:40 [DEBUG] Exit from do method +2022/02/22 15:23:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:23:40 [DEBUG] 6214b2a21b0000b079fd0657: Beginning Read +2022/02/22 15:23:40 id: 6214b2a21b0000b079fd0657 +2022/02/22 15:23:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:40 [DEBUG] Begin Injection +2022/02/22 15:23:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00098c1c0 160 [] false false map[] 0xc00094ef00 0xc0003d3e40} +2022/02/22 15:23:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 {"id":"6214b2a21b0000b079fd0657","name":"acctest_evg2y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:23:40 [DEBUG] Exit from do method +2022/02/22 15:23:40 [DEBUG] 6214b2a21b0000b079fd0657: Read finished successfully +2022/02/22 15:23:40 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:40 [DEBUG] New state was assigned lineage "263e9f23-60bb-e956-456e-502707a63c83" +2022/02/22 15:23:41 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:23:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:23:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:41 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:23:41 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214b2a21b0000b079fd0657" => "" + name: "acctest_evg2y" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b2a21b0000b079fd0657 + provider = provider.mso + description = + name = acctest_evg2y + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:23:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:23:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:23:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:41 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:23:41 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:23:41 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:23:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:23:41 [DEBUG] 6214b2a21b0000b079fd0657: Beginning Read +2022/02/22 15:23:41 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:41 [DEBUG] Begin Injection +2022/02/22 15:23:41 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:41 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:53:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d04500 0xc0003d3e40} +2022/02/22 15:23:41 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:41 [DEBUG] : Read finished successfully +2022/02/22 15:23:41 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:41 [DEBUG] New state was assigned lineage "055e16ee-6863-53f7-4613-5e88a3283d7e" +2022/02/22 15:23:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:41 [DEBUG] Begin Injection +2022/02/22 15:23:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 +2022/02/22 15:23:41 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:41 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b98140 86 [] false false map[] 0xc001126000 0xc0003d3e40} +2022/02/22 15:23:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2a21b0000b079fd0657 {"code":141,"message":"Resource Not Found: Policy 6214b2a21b0000b079fd0657 not found"} +2022/02/22 15:23:41 [DEBUG] Exit from do method +2022/02/22 15:23:41 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:23:41 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:23:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:23:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:23:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:23:41 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:23:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:41 [DEBUG] : Beginning Read +2022/02/22 15:23:41 HTTP request GET mso/api/v1/tenants +2022/02/22 15:23:41 [DEBUG] Begin Injection +2022/02/22 15:23:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:23:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:23:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:53:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049c2c0 3980 [] false false map[] 0xc0009a8200 0xc0003d3e40} +2022/02/22 15:23:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:23:42 [DEBUG] Exit from do method +2022/02/22 15:23:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:23:42 [DEBUG] provider has no plugin.Client +2022/02/22 15:23:42 [DEBUG] New state was assigned lineage "de847099-d12b-1750-3f1e-976a84dfcc8b" +2022/02/22 15:23:42 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:23:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:23:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:23:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:23:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:23:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:23:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:23:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:23:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:23:42 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:24:31 [DEBUG] Test: Executing step 0 +2022/02/22 15:24:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:24:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:24:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:24:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:24:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:24:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:31 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:24:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:24:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:24:31 [DEBUG] Test: Executing step 1 +2022/02/22 15:24:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:24:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:24:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:24:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:24:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:24:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:31 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:24:31 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:24:31 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:24:31 [DEBUG] Test: Executing step 2 +2022/02/22 15:24:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:24:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:24:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:24:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:24:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:24:31 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:24:31 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:31 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:24:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:24:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:24:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:31 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:24:31 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:24:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:31 [DEBUG] : Beginning Read +2022/02/22 15:24:31 HTTP request GET mso/api/v1/tenants +2022/02/22 15:24:31 [DEBUG] Begin Injection +2022/02/22 15:24:31 HTTP request POST /login +2022/02/22 15:24:31 HTTP request after injection POST /login +2022/02/22 15:24:31 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:24:33 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:24:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:33 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ4NzMsImlhdCI6MTY0NTUyMzY3MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ5UlVDTmJIbU04OUZmS1ZUVzhFT3JRd1kiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.ny4c5VQog-E159uGtek4IFCLFFFwDNWVv8xUQuvDF8Mj6IjpnsrWumdbWChP6gn2COpy6KxqLvVM8gTWXukR2Xmp7MSExHzI2a4rhMsigqzQpha7aSRigu4IVPZKA89oSXruDq8UmEIbMhmd1zTgdnif1b47BsXONuvrwDjqiHDJc7QnT3rZsl3EDMSVdgXpstiPg9cMAJYGdmPjXoC7Hudk_I1Cd6DiBQKPre9gjKGqLZ-qtm51H9fWwJLLyp9bc68GcIR58nphpn_W5oe7NZq9kxvddwInAQARsJ1dPR9GIWyj0mkHqZpqsWsWhqZXwGp1LbSwdrtmqUrISIYIYg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0007a2180 -1 [chunked] false false map[] 0xc000564f00 0xc000932000} +2022/02/22 15:24:33 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ4NzMsImlhdCI6MTY0NTUyMzY3MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ5UlVDTmJIbU04OUZmS1ZUVzhFT3JRd1kiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.ny4c5VQog-E159uGtek4IFCLFFFwDNWVv8xUQuvDF8Mj6IjpnsrWumdbWChP6gn2COpy6KxqLvVM8gTWXukR2Xmp7MSExHzI2a4rhMsigqzQpha7aSRigu4IVPZKA89oSXruDq8UmEIbMhmd1zTgdnif1b47BsXONuvrwDjqiHDJc7QnT3rZsl3EDMSVdgXpstiPg9cMAJYGdmPjXoC7Hudk_I1Cd6DiBQKPre9gjKGqLZ-qtm51H9fWwJLLyp9bc68GcIR58nphpn_W5oe7NZq9kxvddwInAQARsJ1dPR9GIWyj0mkHqZpqsWsWhqZXwGp1LbSwdrtmqUrISIYIYg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ4NzMsImlhdCI6MTY0NTUyMzY3MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ5UlVDTmJIbU04OUZmS1ZUVzhFT3JRd1kiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.ny4c5VQog-E159uGtek4IFCLFFFwDNWVv8xUQuvDF8Mj6IjpnsrWumdbWChP6gn2COpy6KxqLvVM8gTWXukR2Xmp7MSExHzI2a4rhMsigqzQpha7aSRigu4IVPZKA89oSXruDq8UmEIbMhmd1zTgdnif1b47BsXONuvrwDjqiHDJc7QnT3rZsl3EDMSVdgXpstiPg9cMAJYGdmPjXoC7Hudk_I1Cd6DiBQKPre9gjKGqLZ-qtm51H9fWwJLLyp9bc68GcIR58nphpn_W5oe7NZq9kxvddwInAQARsJ1dPR9GIWyj0mkHqZpqsWsWhqZXwGp1LbSwdrtmqUrISIYIYg"} +2022/02/22 15:24:33 [DEBUG] Exit from do method +2022/02/22 15:24:33 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:24:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:24:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:24:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007a2480 3980 [] false false map[] 0xc000564e00 0xc000932000} +2022/02/22 15:24:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:24:33 [DEBUG] Exit from do method +2022/02/22 15:24:33 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:24:33 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:33 [DEBUG] New state was assigned lineage "25c7e28e-b473-65db-a94d-941238c365ee" +2022/02/22 15:24:33 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:24:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:24:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:24:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:24:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:24:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:33 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:24:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:33 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:24:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:24:33 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:33 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_afzk2" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:24:33 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:24:33 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:24:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:24:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:24:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:24:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:24:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:24:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:24:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:24:33 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:24:33 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:24:33 [DEBUG] : Beginning Create +2022/02/22 15:24:33 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:24:33 [DEBUG] Begin Injection +2022/02/22 15:24:33 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:24:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:24:33 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:24:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007a2240 160 [] false false map[] 0xc0008b8100 0xc000932000} +2022/02/22 15:24:33 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b2d91b0000d479fd0658","name":"acctest_afzk2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:24:33 [DEBUG] Exit from do method +2022/02/22 15:24:33 [DEBUG] 6214b2d91b0000d479fd0658: Creation finished successfully +2022/02/22 15:24:33 [DEBUG] 6214b2d91b0000d479fd0658: Beginning Read +2022/02/22 15:24:33 id: 6214b2d91b0000d479fd0658 +2022/02/22 15:24:33 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:33 [DEBUG] Begin Injection +2022/02/22 15:24:33 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000398380 160 [] false false map[] 0xc000876000 0xc000932000} +2022/02/22 15:24:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 {"id":"6214b2d91b0000d479fd0658","name":"acctest_afzk2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:24:34 [DEBUG] Exit from do method +2022/02/22 15:24:34 [DEBUG] 6214b2d91b0000d479fd0658: Read finished successfully +2022/02/22 15:24:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:34 [DEBUG] New state was assigned lineage "9f543f27-a176-7ae4-c5e2-2ff4ada18f06" +2022/02/22 15:24:34 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:34 [DEBUG] Begin Injection +2022/02/22 15:24:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a9c040 160 [] false false map[] 0xc0001a6000 0xc000932000} +2022/02/22 15:24:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 {"id":"6214b2d91b0000d479fd0658","name":"acctest_afzk2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:24:34 [DEBUG] Exit from do method +2022/02/22 15:24:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:24:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:24:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:24:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:24:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:24:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:34 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:24:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:24:34 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:34 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:24:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:24:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:24:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:24:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:24:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:34 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:24:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:34 [DEBUG] : Beginning Read +2022/02/22 15:24:34 HTTP request GET mso/api/v1/tenants +2022/02/22 15:24:34 [DEBUG] Begin Injection +2022/02/22 15:24:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:24:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:24:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:24:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e20c0 3980 [] false false map[] 0xc000944300 0xc000932000} +2022/02/22 15:24:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:24:35 [DEBUG] Exit from do method +2022/02/22 15:24:35 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:24:35 [DEBUG] 6214b2d91b0000d479fd0658: Beginning Read +2022/02/22 15:24:35 id: 6214b2d91b0000d479fd0658 +2022/02/22 15:24:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:35 [DEBUG] Begin Injection +2022/02/22 15:24:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090bc0 160 [] false false map[] 0xc00039c900 0xc000932000} +2022/02/22 15:24:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 {"id":"6214b2d91b0000d479fd0658","name":"acctest_afzk2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:24:35 [DEBUG] Exit from do method +2022/02/22 15:24:35 [DEBUG] 6214b2d91b0000d479fd0658: Read finished successfully +2022/02/22 15:24:35 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:35 [DEBUG] New state was assigned lineage "f5cec5cb-d62c-dd15-c164-815c012ad535" +2022/02/22 15:24:35 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:24:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:24:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:24:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:35 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:24:35 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:35 [DEBUG] Test: Executing step 3 +2022/02/22 15:24:35 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:35 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:24:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:24:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:24:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:35 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:24:35 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:35 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:24:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:24:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:24:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:35 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:24:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:35 [DEBUG] : Beginning Read +2022/02/22 15:24:35 HTTP request GET mso/api/v1/tenants +2022/02/22 15:24:35 [DEBUG] Begin Injection +2022/02/22 15:24:35 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:24:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:24:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:24:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b1e040 3980 [] false false map[] 0xc00039d100 0xc000932000} +2022/02/22 15:24:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:24:36 [DEBUG] Exit from do method +2022/02/22 15:24:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:24:36 [DEBUG] 6214b2d91b0000d479fd0658: Beginning Read +2022/02/22 15:24:36 id: 6214b2d91b0000d479fd0658 +2022/02/22 15:24:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:36 [DEBUG] Begin Injection +2022/02/22 15:24:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b1f900 160 [] false false map[] 0xc000944400 0xc000932000} +2022/02/22 15:24:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 {"id":"6214b2d91b0000d479fd0658","name":"acctest_afzk2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:24:36 [DEBUG] Exit from do method +2022/02/22 15:24:36 [DEBUG] 6214b2d91b0000d479fd0658: Read finished successfully +2022/02/22 15:24:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:36 [DEBUG] New state was assigned lineage "149da07c-d0b8-5629-e845-1739aa82c3b1" +2022/02/22 15:24:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:24:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:24:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:24:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:36 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:24:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:36 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.176.145" + id: "6214b2d91b0000d479fd0658" => "6214b2d91b0000d479fd0658" + name: "acctest_afzk2" => "acctest_afzk2" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b2d91b0000d479fd0658 + provider = provider.mso + description = + name = acctest_afzk2 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:24:36 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:24:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:24:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:24:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:24:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:36 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:24:36 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:24:36 [DEBUG] 6214b2d91b0000d479fd0658: Beginning Policy Update +2022/02/22 15:24:36 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg. +2022/02/22 15:24:36 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg. +2022/02/22 15:24:36 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg. +2022/02/22 15:24:36 [DEBUG] New state was assigned lineage "198d7893-acce-d5fe-7a09-0131f4a3adca" +2022/02/22 15:24:36 [WARN] Test: Executing destroy step +2022/02/22 15:24:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:24:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:24:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:24:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:24:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:24:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:24:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:24:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:36 [DEBUG] : Beginning Read +2022/02/22 15:24:36 HTTP request GET mso/api/v1/tenants +2022/02/22 15:24:36 [DEBUG] Begin Injection +2022/02/22 15:24:36 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:24:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:24:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:24:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b1e440 3980 [] false false map[] 0xc00039c600 0xc000932000} +2022/02/22 15:24:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:24:36 [DEBUG] Exit from do method +2022/02/22 15:24:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:24:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:24:36 [DEBUG] 6214b2d91b0000d479fd0658: Beginning Read +2022/02/22 15:24:36 id: 6214b2d91b0000d479fd0658 +2022/02/22 15:24:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:36 [DEBUG] Begin Injection +2022/02/22 15:24:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b1e580 160 [] false false map[] 0xc000944800 0xc000932000} +2022/02/22 15:24:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 {"id":"6214b2d91b0000d479fd0658","name":"acctest_afzk2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:24:37 [DEBUG] Exit from do method +2022/02/22 15:24:37 [DEBUG] 6214b2d91b0000d479fd0658: Read finished successfully +2022/02/22 15:24:37 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:37 [DEBUG] New state was assigned lineage "22ec59b7-6ff1-1669-83a5-afbc92b86f44" +2022/02/22 15:24:37 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:24:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:24:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:37 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:24:37 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214b2d91b0000d479fd0658" => "" + name: "acctest_afzk2" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b2d91b0000d479fd0658 + provider = provider.mso + description = + name = acctest_afzk2 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:24:37 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:24:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:24:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:37 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:24:37 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:24:37 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:24:37 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:24:37 [DEBUG] 6214b2d91b0000d479fd0658: Beginning Read +2022/02/22 15:24:37 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:37 [DEBUG] Begin Injection +2022/02/22 15:24:37 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:37 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:54:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000944500 0xc000932000} +2022/02/22 15:24:37 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:37 [DEBUG] : Read finished successfully +2022/02/22 15:24:37 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:37 [DEBUG] New state was assigned lineage "de87f86d-ae6f-5b30-2922-b4245295e304" +2022/02/22 15:24:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:37 [DEBUG] Begin Injection +2022/02/22 15:24:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 +2022/02/22 15:24:37 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:37 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bc4040 86 [] false false map[] 0xc000592000 0xc000932000} +2022/02/22 15:24:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b2d91b0000d479fd0658 {"code":141,"message":"Resource Not Found: Policy 6214b2d91b0000d479fd0658 not found"} +2022/02/22 15:24:37 [DEBUG] Exit from do method +2022/02/22 15:24:37 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:24:37 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:24:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:24:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:24:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:24:37 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:24:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:37 [DEBUG] : Beginning Read +2022/02/22 15:24:37 HTTP request GET mso/api/v1/tenants +2022/02/22 15:24:37 [DEBUG] Begin Injection +2022/02/22 15:24:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:24:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:24:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:24:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:54:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e31c0 3980 [] false false map[] 0xc00039cd00 0xc000932000} +2022/02/22 15:24:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:24:38 [DEBUG] Exit from do method +2022/02/22 15:24:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:24:38 [DEBUG] provider has no plugin.Client +2022/02/22 15:24:38 [DEBUG] New state was assigned lineage "e97200d2-00e5-7957-6f13-cc311d4a0d3f" +2022/02/22 15:24:38 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:24:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:24:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:24:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:24:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:24:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:24:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:24:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:24:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:24:38 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:25:36 [DEBUG] Test: Executing step 0 +2022/02/22 15:25:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:25:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:25:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:25:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:25:36 [DEBUG] Test: Executing step 1 +2022/02/22 15:25:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:25:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:25:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:25:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:25:36 [DEBUG] Test: Executing step 2 +2022/02/22 15:25:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:25:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:25:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:25:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:25:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:25:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:25:36 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:25:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:36 [DEBUG] : Beginning Read +2022/02/22 15:25:36 HTTP request GET mso/api/v1/tenants +2022/02/22 15:25:36 [DEBUG] Begin Injection +2022/02/22 15:25:36 HTTP request POST /login +2022/02/22 15:25:36 HTTP request after injection POST /login +2022/02/22 15:25:36 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:25:38 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:25:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:38 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ5MzgsImlhdCI6MTY0NTUyMzczOCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJmQmJXYWVvVjNxVHR3b3VOaUtJZ0xVSFMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.mraWBo4YkFqe7mUhMHF4pR-cAJxW1pCosbZitjSCX3fShmYPFiqvn6uVvU-cuuBeq3_ahXHfKTXITnUBxmgQyaJn1FT0adijMpBgphP7vqofR_vTQYHE7jv_W9CYCVA3VKhbpkBZjWSOdkksjorGbPiJnHo6GkTQnsXEBeX5UtikYHz9AeOJkzcbh3XcqV4frQ7AwZKzGgMvof4taT844xnMHTI0b_DTdluqKDzeothxgYGqva9qZQVvvHVzOKdTUCAeuseTiIpcV8ChO_gfD88g5L9ecW0e6Ikt_hzdasT1O6ywK-NRCRZmcJFj_dxgCjrfu7rKv3pgep6DDLhd2A; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00099cb80 -1 [chunked] false false map[] 0xc000140f00 0xc000393550} +2022/02/22 15:25:38 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ5MzgsImlhdCI6MTY0NTUyMzczOCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJmQmJXYWVvVjNxVHR3b3VOaUtJZ0xVSFMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.mraWBo4YkFqe7mUhMHF4pR-cAJxW1pCosbZitjSCX3fShmYPFiqvn6uVvU-cuuBeq3_ahXHfKTXITnUBxmgQyaJn1FT0adijMpBgphP7vqofR_vTQYHE7jv_W9CYCVA3VKhbpkBZjWSOdkksjorGbPiJnHo6GkTQnsXEBeX5UtikYHz9AeOJkzcbh3XcqV4frQ7AwZKzGgMvof4taT844xnMHTI0b_DTdluqKDzeothxgYGqva9qZQVvvHVzOKdTUCAeuseTiIpcV8ChO_gfD88g5L9ecW0e6Ikt_hzdasT1O6ywK-NRCRZmcJFj_dxgCjrfu7rKv3pgep6DDLhd2A","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjQ5MzgsImlhdCI6MTY0NTUyMzczOCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJmQmJXYWVvVjNxVHR3b3VOaUtJZ0xVSFMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.mraWBo4YkFqe7mUhMHF4pR-cAJxW1pCosbZitjSCX3fShmYPFiqvn6uVvU-cuuBeq3_ahXHfKTXITnUBxmgQyaJn1FT0adijMpBgphP7vqofR_vTQYHE7jv_W9CYCVA3VKhbpkBZjWSOdkksjorGbPiJnHo6GkTQnsXEBeX5UtikYHz9AeOJkzcbh3XcqV4frQ7AwZKzGgMvof4taT844xnMHTI0b_DTdluqKDzeothxgYGqva9qZQVvvHVzOKdTUCAeuseTiIpcV8ChO_gfD88g5L9ecW0e6Ikt_hzdasT1O6ywK-NRCRZmcJFj_dxgCjrfu7rKv3pgep6DDLhd2A"} +2022/02/22 15:25:38 [DEBUG] Exit from do method +2022/02/22 15:25:38 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:25:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000244440 3980 [] false false map[] 0xc000140e00 0xc000393550} +2022/02/22 15:25:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:25:38 [DEBUG] Exit from do method +2022/02/22 15:25:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:25:38 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:38 [DEBUG] New state was assigned lineage "29ffef98-0ba5-e62e-f682-0a30c18fb025" +2022/02/22 15:25:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:38 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:38 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:25:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:38 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:38 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_61n67" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:25:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:25:38 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:25:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:25:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:25:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:25:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:25:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:25:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:38 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:25:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:25:38 [DEBUG] : Beginning Create +2022/02/22 15:25:38 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:25:38 [DEBUG] Begin Injection +2022/02/22 15:25:38 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:25:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:25:39 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:25:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000244e00 160 [] false false map[] 0xc000140c00 0xc000393550} +2022/02/22 15:25:39 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:25:39 [DEBUG] Exit from do method +2022/02/22 15:25:39 [DEBUG] 6214b31b1b0000de79fd0659: Creation finished successfully +2022/02/22 15:25:39 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:39 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:39 [DEBUG] Begin Injection +2022/02/22 15:25:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019f680 160 [] false false map[] 0xc000988200 0xc000393550} +2022/02/22 15:25:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:25:39 [DEBUG] Exit from do method +2022/02/22 15:25:39 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:39 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:39 [DEBUG] New state was assigned lineage "bcb3a029-aac5-e2fc-cf22-e34cb17eee1c" +2022/02/22 15:25:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:39 [DEBUG] Begin Injection +2022/02/22 15:25:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00099c040 160 [] false false map[] 0xc00080c100 0xc000393550} +2022/02/22 15:25:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:25:40 [DEBUG] Exit from do method +2022/02/22 15:25:40 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:40 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:40 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:25:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:40 [DEBUG] : Beginning Read +2022/02/22 15:25:40 HTTP request GET mso/api/v1/tenants +2022/02/22 15:25:40 [DEBUG] Begin Injection +2022/02/22 15:25:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:25:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048d340 3980 [] false false map[] 0xc000140300 0xc000393550} +2022/02/22 15:25:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:25:40 [DEBUG] Exit from do method +2022/02/22 15:25:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:40 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:40 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:40 [DEBUG] Begin Injection +2022/02/22 15:25:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00099c040 160 [] false false map[] 0xc000988900 0xc000393550} +2022/02/22 15:25:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:25:40 [DEBUG] Exit from do method +2022/02/22 15:25:40 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:40 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:40 [DEBUG] New state was assigned lineage "53b17c04-cc52-1f10-cf1a-fcde67085a72" +2022/02/22 15:25:40 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:40 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:40 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:40 [DEBUG] Test: Executing step 3 +2022/02/22 15:25:41 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:25:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:25:41 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:25:41 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:25:41 [DEBUG] Test: Executing step 4 +2022/02/22 15:25:41 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:25:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:25:41 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:25:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:41 [DEBUG] : Beginning Read +2022/02/22 15:25:41 HTTP request GET mso/api/v1/tenants +2022/02/22 15:25:41 [DEBUG] Begin Injection +2022/02/22 15:25:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:25:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008507c0 3980 [] false false map[] 0xc000988200 0xc000393550} +2022/02/22 15:25:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:25:41 [DEBUG] Exit from do method +2022/02/22 15:25:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:41 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:41 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:41 [DEBUG] Begin Injection +2022/02/22 15:25:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c000 160 [] false false map[] 0xc000140700 0xc000393550} +2022/02/22 15:25:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:25:41 [DEBUG] Exit from do method +2022/02/22 15:25:41 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:41 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:41 [DEBUG] New state was assigned lineage "fac8c5e4-d501-54a6-78c2-2debe5227bc6" +2022/02/22 15:25:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:41 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:41 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.61.81" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214b31b1b0000de79fd0659" => "6214b31b1b0000de79fd0659" + name: "acctest_61n67" => "acctest_61n67" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b31b1b0000de79fd0659 + provider = provider.mso + description = + name = acctest_61n67 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:25:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:25:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:25:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:25:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:25:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:41 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:25:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:25:41 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Policy Update +2022/02/22 15:25:41 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:41 [DEBUG] Begin Injection +2022/02/22 15:25:41 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:42 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c2d6c0 355 [] false false map[] 0xc000140c00 0xc000393550} +2022/02/22 15:25:42 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:25:42 [DEBUG] Exit from do method +2022/02/22 15:25:42 [DEBUG] Policy Update finished successfully: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:42 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:42 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:42 [DEBUG] Begin Injection +2022/02/22 15:25:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c2c100 355 [] false false map[] 0xc0009e6000 0xc000393550} +2022/02/22 15:25:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:25:42 [DEBUG] Exit from do method +2022/02/22 15:25:42 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:42 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 15:25:42 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:42 [DEBUG] New state was assigned lineage "e345566c-055f-9184-eb90-2a688c7663be" +2022/02/22 15:25:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:42 [DEBUG] Begin Injection +2022/02/22 15:25:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000244180 355 [] false false map[] 0xc000140300 0xc000393550} +2022/02/22 15:25:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:25:43 [DEBUG] Exit from do method +2022/02/22 15:25:43 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:43 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:25:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:43 [DEBUG] : Beginning Read +2022/02/22 15:25:43 HTTP request GET mso/api/v1/tenants +2022/02/22 15:25:43 [DEBUG] Begin Injection +2022/02/22 15:25:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:25:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008522c0 3980 [] false false map[] 0xc000140200 0xc000393550} +2022/02/22 15:25:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:25:43 [DEBUG] Exit from do method +2022/02/22 15:25:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:43 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:43 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:43 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:43 [DEBUG] Begin Injection +2022/02/22 15:25:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000244180 355 [] false false map[] 0xc0009e6600 0xc000393550} +2022/02/22 15:25:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:25:43 [DEBUG] Exit from do method +2022/02/22 15:25:43 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:43 [DEBUG] New state was assigned lineage "49200f9a-706a-93ae-7111-73959a850d28" +2022/02/22 15:25:43 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:43 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:43 [DEBUG] Test: Executing step 5 +2022/02/22 15:25:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:43 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:25:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 15:25:43 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:25:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:25:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:25:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:43 [DEBUG] : Beginning Read +2022/02/22 15:25:43 HTTP request GET mso/api/v1/tenants +2022/02/22 15:25:43 [DEBUG] Begin Injection +2022/02/22 15:25:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:25:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010d6040 3980 [] false false map[] 0xc000a5a100 0xc000393550} +2022/02/22 15:25:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:25:44 [DEBUG] Exit from do method +2022/02/22 15:25:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:25:44 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:25:44 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:25:44 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:25:44 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:44 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:44 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:44 [DEBUG] Begin Injection +2022/02/22 15:25:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00099dd00 355 [] false false map[] 0xc000989900 0xc000393550} +2022/02/22 15:25:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:25:44 [DEBUG] Exit from do method +2022/02/22 15:25:44 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:44 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:44 [DEBUG] New state was assigned lineage "5ff3342d-1738-0a30-f47b-086c08075d2f" +2022/02/22 15:25:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:25:44 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:44 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:25:44 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:25:44 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:25:44 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:44 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:44 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.61.81" => "1.2.61.81" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214b31b1b0000de79fd0659" => "6214b31b1b0000de79fd0659" + name: "acctest_61n67" => "acctest_61n67" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_tdri4" + template_name: "" => "acctest_cdtsq" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_f17u0" + external_epg_name: "" => "acctest_f17u0" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_cdtsq" + vrf_name: "" => "acctest_f17u0" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_f17u0" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_f17u0" + schema_id: "" => "" + template: "" => "acctest_cdtsq" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b31b1b0000de79fd0659 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.61.81 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_61n67 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:25:44 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:25:44 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:25:44 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:25:44 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:25:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test (prepare state)] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 15:25:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:25:44 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:25:44 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 15:25:44 [DEBUG] Schema: Beginning Creation +2022/02/22 15:25:44 HTTP request POST mso/api/v1/schemas +2022/02/22 15:25:44 [DEBUG] Begin Injection +2022/02/22 15:25:44 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 15:25:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:25:45 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:25:45 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214b3201d00004c514f9e7f] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008500c0 400 [] false false map[] 0xc00080d200 0xc000393550} +2022/02/22 15:25:45 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214b3201d00004c514f9e7f","displayName":"acctest_tdri4","description":"","templates":[{"name":"acctest_cdtsq","displayName":"acctest_cdtsq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:25:45 [DEBUG] Exit from do method +2022/02/22 15:25:45 [DEBUG] 6214b3201d00004c514f9e7f: Schema Creation finished successfully +2022/02/22 15:25:45 [DEBUG] 6214b3201d00004c514f9e7f: Beginning Read +2022/02/22 15:25:45 HTTP request GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:45 [DEBUG] Begin Injection +2022/02/22 15:25:45 HTTP request after injection GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010d6040 400 [] false false map[] 0xc000140000 0xc000393550} +2022/02/22 15:25:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f {"id":"6214b3201d00004c514f9e7f","displayName":"acctest_tdri4","description":"","templates":[{"name":"acctest_cdtsq","displayName":"acctest_cdtsq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:25:45 [DEBUG] Exit from do method +2022/02/22 15:25:45 [DEBUG] 6214b3201d00004c514f9e7f: Read finished successfully +2022/02/22 15:25:45 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 15:25:45 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 15:25:45 HTTP request PATCH mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:45 [DEBUG] Begin Injection +2022/02/22 15:25:45 HTTP request after injection PATCH mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:45 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:55:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00080ca00 0xc000393550} +2022/02/22 15:25:45 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:45 [DEBUG] acctest_f17u0: Creation finished successfully +2022/02/22 15:25:45 [DEBUG] acctest_f17u0: Beginning Read +2022/02/22 15:25:45 HTTP request GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:45 [DEBUG] Begin Injection +2022/02/22 15:25:45 HTTP request after injection GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a300 768 [] false false map[] 0xc00080cc00 0xc000393550} +2022/02/22 15:25:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f {"id":"6214b3201d00004c514f9e7f","displayName":"acctest_tdri4","description":"","templates":[{"name":"acctest_cdtsq","displayName":"acctest_cdtsq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 15:25:46 [DEBUG] Exit from do method +2022/02/22 15:25:46 currentvrfname acctest_f17u0 +2022/02/22 15:25:46 found correct vrfname +2022/02/22 15:25:46 [DEBUG] acctest_f17u0: Read finished successfully +2022/02/22 15:25:46 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:25:46 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 15:25:46 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 15:25:46 HTTP request PATCH mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:46 [DEBUG] Begin Injection +2022/02/22 15:25:46 HTTP request after injection PATCH mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:46 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:55:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00080d800 0xc000393550} +2022/02/22 15:25:46 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:46 [DEBUG] : Beginning Read +2022/02/22 15:25:46 HTTP request GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:46 [DEBUG] Begin Injection +2022/02/22 15:25:46 HTTP request after injection GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000244180 1147 [] false false map[] 0xc00080c100 0xc000393550} +2022/02/22 15:25:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f {"id":"6214b3201d00004c514f9e7f","displayName":"acctest_tdri4","description":"","templates":[{"name":"acctest_cdtsq","displayName":"acctest_cdtsq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","extEpgType":"on-premise","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:25:46 [DEBUG] Exit from do method +2022/02/22 15:25:46 [DEBUG] /schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0: Read finished successfully +2022/02/22 15:25:46 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:25:46 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Policy Update +2022/02/22 15:25:46 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:46 [DEBUG] Begin Injection +2022/02/22 15:25:46 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:47 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010d6040 359 [] false false map[] 0xc000989300 0xc000393550} +2022/02/22 15:25:47 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"","externalEpgRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:25:47 [DEBUG] Exit from do method +2022/02/22 15:25:47 [DEBUG] Policy Update finished successfully: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:47 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:47 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:47 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:47 [DEBUG] Begin Injection +2022/02/22 15:25:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00099c1c0 359 [] false false map[] 0xc000140000 0xc000393550} +2022/02/22 15:25:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"","externalEpgRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:25:47 [DEBUG] Exit from do method +2022/02/22 15:25:47 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:47 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 15:25:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:47 [DEBUG] New state was assigned lineage "fdf7bf2c-d713-48c4-98c9-5923f698a5f0" +2022/02/22 15:25:47 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:47 [DEBUG] Begin Injection +2022/02/22 15:25:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a300 359 [] false false map[] 0xc00080c100 0xc000393550} +2022/02/22 15:25:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"","externalEpgRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:25:48 [DEBUG] Exit from do method +2022/02/22 15:25:48 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:48 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:25:48 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:48 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:48 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:25:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:25:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:25:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:48 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:48 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:48 [DEBUG] : Beginning Read +2022/02/22 15:25:48 HTTP request GET mso/api/v1/tenants +2022/02/22 15:25:48 [DEBUG] Begin Injection +2022/02/22 15:25:48 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:25:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087cb80 3980 [] false false map[] 0xc000988a00 0xc000393550} +2022/02/22 15:25:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:25:48 [DEBUG] Exit from do method +2022/02/22 15:25:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:25:48 [DEBUG] 6214b3201d00004c514f9e7f: Beginning Read +2022/02/22 15:25:48 HTTP request GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:48 [DEBUG] Begin Injection +2022/02/22 15:25:48 HTTP request after injection GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00087cd00 1147 [] false false map[] 0xc000140300 0xc000393550} +2022/02/22 15:25:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f {"id":"6214b3201d00004c514f9e7f","displayName":"acctest_tdri4","description":"","templates":[{"name":"acctest_cdtsq","displayName":"acctest_cdtsq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","extEpgType":"on-premise","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:25:48 [DEBUG] Exit from do method +2022/02/22 15:25:48 [DEBUG] 6214b3201d00004c514f9e7f: Read finished successfully +2022/02/22 15:25:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:25:48 [DEBUG] acctest_f17u0: Beginning Read +2022/02/22 15:25:48 HTTP request GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:48 [DEBUG] Begin Injection +2022/02/22 15:25:48 HTTP request after injection GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000636040 1147 [] false false map[] 0xc00080c700 0xc000393550} +2022/02/22 15:25:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f {"id":"6214b3201d00004c514f9e7f","displayName":"acctest_tdri4","description":"","templates":[{"name":"acctest_cdtsq","displayName":"acctest_cdtsq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","extEpgType":"on-premise","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:25:49 [DEBUG] Exit from do method +2022/02/22 15:25:49 currentvrfname acctest_f17u0 +2022/02/22 15:25:49 found correct vrfname +2022/02/22 15:25:49 [DEBUG] acctest_f17u0: Read finished successfully +2022/02/22 15:25:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:25:49 [DEBUG] /schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0: Beginning Read +2022/02/22 15:25:49 HTTP request GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:49 [DEBUG] Begin Injection +2022/02/22 15:25:49 HTTP request after injection GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010d7240 1147 [] false false map[] 0xc000988a00 0xc000393550} +2022/02/22 15:25:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f {"id":"6214b3201d00004c514f9e7f","displayName":"acctest_tdri4","description":"","templates":[{"name":"acctest_cdtsq","displayName":"acctest_cdtsq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","extEpgType":"on-premise","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:25:49 [DEBUG] Exit from do method +2022/02/22 15:25:49 [DEBUG] /schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0: Read finished successfully +2022/02/22 15:25:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:49 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:49 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:49 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:49 [DEBUG] Begin Injection +2022/02/22 15:25:49 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000245840 359 [] false false map[] 0xc00080c900 0xc000393550} +2022/02/22 15:25:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"","externalEpgRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:25:50 [DEBUG] Exit from do method +2022/02/22 15:25:50 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:50 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:50 [DEBUG] New state was assigned lineage "b4b7e4d2-c46a-f49c-a3a6-704aa9e486b1" +2022/02/22 15:25:50 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:50 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:50 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:50 [DEBUG] Test: Executing step 6 +2022/02/22 15:25:50 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:50 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:25:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:25:50 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:25:50 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:50 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 15:25:50 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 15:25:50 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 15:25:50 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:25:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:25:50 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:50 [DEBUG] : Beginning Read +2022/02/22 15:25:50 HTTP request GET mso/api/v1/tenants +2022/02/22 15:25:50 [DEBUG] Begin Injection +2022/02/22 15:25:50 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:25:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000760040 3980 [] false false map[] 0xc000989000 0xc000393550} +2022/02/22 15:25:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:25:50 [DEBUG] Exit from do method +2022/02/22 15:25:50 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:25:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:50 [DEBUG] 6214b3201d00004c514f9e7f: Beginning Read +2022/02/22 15:25:50 HTTP request GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:50 [DEBUG] Begin Injection +2022/02/22 15:25:50 HTTP request after injection GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:50 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:50 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:50 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:50 [DEBUG] Begin Injection +2022/02/22 15:25:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000761440 1147 [] false false map[] 0xc00080c600 0xc000393550} +2022/02/22 15:25:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f {"id":"6214b3201d00004c514f9e7f","displayName":"acctest_tdri4","description":"","templates":[{"name":"acctest_cdtsq","displayName":"acctest_cdtsq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","extEpgType":"on-premise","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:25:50 [DEBUG] Exit from do method +2022/02/22 15:25:50 [DEBUG] 6214b3201d00004c514f9e7f: Read finished successfully +2022/02/22 15:25:50 [DEBUG] acctest_f17u0: Beginning Read +2022/02/22 15:25:50 HTTP request GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:50 [DEBUG] Begin Injection +2022/02/22 15:25:50 HTTP request after injection GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000761ac0 359 [] false false map[] 0xc0001a4300 0xc000393550} +2022/02/22 15:25:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"","externalEpgRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 15:25:51 [DEBUG] Exit from do method +2022/02/22 15:25:51 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000850040 1147 [] false false map[] 0xc000140500 0xc000393550} +2022/02/22 15:25:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f {"id":"6214b3201d00004c514f9e7f","displayName":"acctest_tdri4","description":"","templates":[{"name":"acctest_cdtsq","displayName":"acctest_cdtsq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","extEpgType":"on-premise","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:25:51 [DEBUG] Exit from do method +2022/02/22 15:25:51 currentvrfname acctest_f17u0 +2022/02/22 15:25:51 found correct vrfname +2022/02/22 15:25:51 [DEBUG] acctest_f17u0: Read finished successfully +2022/02/22 15:25:51 [DEBUG] /schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0: Beginning Read +2022/02/22 15:25:51 HTTP request GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:51 [DEBUG] Begin Injection +2022/02/22 15:25:51 HTTP request after injection GET mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002449c0 1147 [] false false map[] 0xc0001a4b00 0xc000393550} +2022/02/22 15:25:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f {"id":"6214b3201d00004c514f9e7f","displayName":"acctest_tdri4","description":"","templates":[{"name":"acctest_cdtsq","displayName":"acctest_cdtsq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_f17u0","displayName":"acctest_f17u0","extEpgType":"on-premise","vrfRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/vrfs/acctest_f17u0","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:25:52 [DEBUG] Exit from do method +2022/02/22 15:25:52 [DEBUG] /schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0: Read finished successfully +2022/02/22 15:25:52 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:52 [DEBUG] New state was assigned lineage "bfe6e586-c75c-76b1-0dc8-252d98625c19" +2022/02/22 15:25:52 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 15:25:52 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:52 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:52 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "test description" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.61.81" => "1.2.61.81" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214b31b1b0000de79fd0659" => "6214b31b1b0000de79fd0659" + name: "acctest_61n67" => "acctest_61n67" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214b3201d00004c514f9e7f" => "" + name: "acctest_tdri4" => "" + template_name: "acctest_cdtsq" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_f17u0" => "" + external_epg_name: "acctest_f17u0" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214b3201d00004c514f9e7f" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_cdtsq" => "" + vrf_name: "acctest_f17u0" => "" + vrf_schema_id: "6214b3201d00004c514f9e7f" => "" + vrf_template_name: "acctest_cdtsq" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_f17u0" => "" + id: "acctest_f17u0" => "" + layer3_multicast: "false" => "" + name: "acctest_f17u0" => "" + schema_id: "6214b3201d00004c514f9e7f" => "" + template: "acctest_cdtsq" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b31b1b0000de79fd0659 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.61.81 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0 + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_61n67 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214b3201d00004c514f9e7f + provider = provider.mso + name = acctest_tdri4 + template_name = acctest_cdtsq + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214b3201d00004c514f9e7f/templates/acctest_cdtsq/externalEpgs/acctest_f17u0 + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_f17u0 + external_epg_name = acctest_f17u0 + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214b3201d00004c514f9e7f + selector_ip = + selector_name = + template_name = acctest_cdtsq + vrf_name = acctest_f17u0 + vrf_schema_id = 6214b3201d00004c514f9e7f + vrf_template_name = acctest_cdtsq + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_f17u0 + provider = provider.mso + display_name = acctest_f17u0 + layer3_multicast = false + name = acctest_f17u0 + schema_id = 6214b3201d00004c514f9e7f + template = acctest_cdtsq + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 15:25:52 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:25:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 15:25:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (destroy) +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:25:52 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:25:52 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 15:25:52 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 15:25:52 HTTP request PATCH mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:52 [DEBUG] Begin Injection +2022/02/22 15:25:52 HTTP request after injection PATCH mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:52 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:25:52 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Policy Update +2022/02/22 15:25:52 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:52 [DEBUG] Begin Injection +2022/02/22 15:25:52 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:52 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b18c0 371 [] false false map[] 0xc000faac00 0xc0000f4370} +2022/02/22 15:25:52 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:25:52 [DEBUG] Exit from do method +2022/02/22 15:25:52 [DEBUG] Policy Update finished successfully: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:52 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:52 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:52 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:52 [DEBUG] Begin Injection +2022/02/22 15:25:52 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:52 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:55:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000140500 0xc000cf2000} +2022/02/22 15:25:52 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:52 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 15:25:52 [DEBUG] acctest_f17u0: Beginning Destroy +2022/02/22 15:25:52 HTTP request PATCH mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:52 [DEBUG] Begin Injection +2022/02/22 15:25:52 HTTP request after injection PATCH mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b1c80 371 [] false false map[] 0xc000140700 0xc0000f4370} +2022/02/22 15:25:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:25:52 [DEBUG] Exit from do method +2022/02/22 15:25:52 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:52 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:55:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00080c600 0xc000cf2000} +2022/02/22 15:25:52 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f?validate=false +2022/02/22 15:25:52 [DEBUG] acctest_f17u0: Destroy finished successfully +2022/02/22 15:25:52 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 15:25:52 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 15:25:52 [DEBUG] 6214b3201d00004c514f9e7f: Beginning Destroy +2022/02/22 15:25:52 HTTP request DELETE mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:52 [DEBUG] Begin Injection +2022/02/22 15:25:52 HTTP request after injection DELETE mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:53 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:55:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000fab400 0xc000cf2000} +2022/02/22 15:25:53 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214b3201d00004c514f9e7f +2022/02/22 15:25:53 [DEBUG] 6214b3201d00004c514f9e7f: Destroy finished successfully +2022/02/22 15:25:53 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:53 [DEBUG] New state was assigned lineage "4945de9b-38c1-0229-dc33-da585569d06d" +2022/02/22 15:25:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:53 [DEBUG] Begin Injection +2022/02/22 15:25:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000244640 371 [] false false map[] 0xc000140000 0xc000cf2000} +2022/02/22 15:25:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:25:53 [DEBUG] Exit from do method +2022/02/22 15:25:53 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:53 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:53 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:53 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:25:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:25:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:53 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:25:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:53 [DEBUG] : Beginning Read +2022/02/22 15:25:53 HTTP request GET mso/api/v1/tenants +2022/02/22 15:25:53 [DEBUG] Begin Injection +2022/02/22 15:25:53 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:25:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000636100 3980 [] false false map[] 0xc000140a00 0xc000cf2000} +2022/02/22 15:25:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:25:54 [DEBUG] Exit from do method +2022/02/22 15:25:54 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:25:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:54 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:54 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:54 [DEBUG] Begin Injection +2022/02/22 15:25:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019fb40 371 [] false false map[] 0xc000cec600 0xc000cf2000} +2022/02/22 15:25:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:25:54 [DEBUG] Exit from do method +2022/02/22 15:25:54 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:54 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:54 [DEBUG] New state was assigned lineage "6e24460e-6fb3-0471-4c85-3e0ef35e36cb" +2022/02/22 15:25:54 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:54 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:54 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:54 [DEBUG] Test: Executing step 7 +2022/02/22 15:25:54 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (import id \"6214b31b1b0000de79fd0659\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/22 15:25:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (import id \"6214b31b1b0000de79fd0659\")" references: [] +2022/02/22 15:25:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:54 [DEBUG] Starting graph walk: walkImport +2022/02/22 15:25:54 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Import +2022/02/22 15:25:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:54 [DEBUG] Begin Injection +2022/02/22 15:25:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010d7880 371 [] false false map[] 0xc000cc8200 0xc000cf2000} +2022/02/22 15:25:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:25:54 [DEBUG] Exit from do method +2022/02/22 15:25:54 [DEBUG] 6214b31b1b0000de79fd0659: Import finished successfully +2022/02/22 15:25:54 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:54 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:54 [DEBUG] Begin Injection +2022/02/22 15:25:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000760080 371 [] false false map[] 0xc00080cd00 0xc000cf2000} +2022/02/22 15:25:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:25:55 [DEBUG] Exit from do method +2022/02/22 15:25:55 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:55 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:55 [DEBUG] New state was assigned lineage "6955da64-34f0-c98b-b5aa-deb2539770f1" +2022/02/22 15:25:55 [DEBUG] Test: Executing step 8 +2022/02/22 15:25:55 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:55 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:25:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:25:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:25:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:55 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:25:55 [ERROR] : eval: *terraform.EvalValidateResource, err: 2 problems: + +- Missing required argument: The argument "name" is required, but no definition was found. +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:25:55 [ERROR] : eval: *terraform.EvalSequence, err: 2 problems: + +- Missing required argument: The argument "name" is required, but no definition was found. +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:25:55 [DEBUG] Test: Executing step 9 +2022/02/22 15:25:55 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:55 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:25:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:55 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:25:55 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:55 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:25:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:25:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:55 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:25:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:55 [DEBUG] : Beginning Read +2022/02/22 15:25:55 HTTP request GET mso/api/v1/tenants +2022/02/22 15:25:55 [DEBUG] Begin Injection +2022/02/22 15:25:55 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:25:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a300 3980 [] false false map[] 0xc000b4c100 0xc000cf2000} +2022/02/22 15:25:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:25:55 [DEBUG] Exit from do method +2022/02/22 15:25:55 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:25:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:55 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:55 id: 6214b31b1b0000de79fd0659 +2022/02/22 15:25:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:55 [DEBUG] Begin Injection +2022/02/22 15:25:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002444c0 371 [] false false map[] 0xc00080c600 0xc000cf2000} +2022/02/22 15:25:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 {"id":"6214b31b1b0000de79fd0659","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.61.81","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 15:25:56 [DEBUG] Exit from do method +2022/02/22 15:25:56 [DEBUG] 6214b31b1b0000de79fd0659: Read finished successfully +2022/02/22 15:25:56 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:56 [DEBUG] New state was assigned lineage "9e89d70e-8beb-2122-67b9-3fe576c2c2ef" +2022/02/22 15:25:56 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:56 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:56 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:56 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "test description" => "" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.61.81" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214b31b1b0000de79fd0659" => "" + name: "acctest_61n67" => "acctest_2xl4j" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b31b1b0000de79fd0659 + provider = provider.mso + description = test description + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.61.81 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_61n67 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:25:56 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:25:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:25:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:25:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:25:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 15:25:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:25:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:25:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:56 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:25:56 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:25:56 [DEBUG] 6214b31b1b0000de79fd0659: Beginning Read +2022/02/22 15:25:56 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:56 [DEBUG] Begin Injection +2022/02/22 15:25:56 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:56 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:56 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:55:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0003dc800 0xc000cf2000} +2022/02/22 15:25:56 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b31b1b0000de79fd0659 +2022/02/22 15:25:56 [DEBUG] : Read finished successfully +2022/02/22 15:25:56 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:25:56 [DEBUG] : Beginning Create +2022/02/22 15:25:56 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:25:56 [DEBUG] Begin Injection +2022/02/22 15:25:56 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:25:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:25:56 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:25:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000761440 160 [] false false map[] 0xc000f34500 0xc000cf2000} +2022/02/22 15:25:56 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b32c1b0000de79fd065a","name":"acctest_2xl4j","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:25:56 [DEBUG] Exit from do method +2022/02/22 15:25:56 [DEBUG] 6214b32c1b0000de79fd065a: Creation finished successfully +2022/02/22 15:25:56 [DEBUG] 6214b32c1b0000de79fd065a: Beginning Read +2022/02/22 15:25:56 id: 6214b32c1b0000de79fd065a +2022/02/22 15:25:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:56 [DEBUG] Begin Injection +2022/02/22 15:25:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c080 160 [] false false map[] 0xc000f34700 0xc000cf2000} +2022/02/22 15:25:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a {"id":"6214b32c1b0000de79fd065a","name":"acctest_2xl4j","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:25:57 [DEBUG] Exit from do method +2022/02/22 15:25:57 [DEBUG] 6214b32c1b0000de79fd065a: Read finished successfully +2022/02/22 15:25:57 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:57 [DEBUG] New state was assigned lineage "ebeaa8e2-5066-b73e-84e9-92d2b11f4ee0" +2022/02/22 15:25:57 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:57 [DEBUG] Begin Injection +2022/02/22 15:25:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000760a00 160 [] false false map[] 0xc0003dc000 0xc000cf2000} +2022/02/22 15:25:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a {"id":"6214b32c1b0000de79fd065a","name":"acctest_2xl4j","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:25:57 [DEBUG] Exit from do method +2022/02/22 15:25:57 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:57 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:57 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:57 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:25:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:25:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:57 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:25:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:57 [DEBUG] : Beginning Read +2022/02/22 15:25:57 HTTP request GET mso/api/v1/tenants +2022/02/22 15:25:57 [DEBUG] Begin Injection +2022/02/22 15:25:57 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:25:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007b20c0 3980 [] false false map[] 0xc000689800 0xc000cf2000} +2022/02/22 15:25:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:25:58 [DEBUG] Exit from do method +2022/02/22 15:25:58 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:58 [DEBUG] 6214b32c1b0000de79fd065a: Beginning Read +2022/02/22 15:25:58 id: 6214b32c1b0000de79fd065a +2022/02/22 15:25:58 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:58 [DEBUG] Begin Injection +2022/02/22 15:25:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000760140 160 [] false false map[] 0xc0003dc600 0xc000cf2000} +2022/02/22 15:25:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a {"id":"6214b32c1b0000de79fd065a","name":"acctest_2xl4j","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:25:58 [DEBUG] Exit from do method +2022/02/22 15:25:58 [DEBUG] 6214b32c1b0000de79fd065a: Read finished successfully +2022/02/22 15:25:58 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:58 [DEBUG] New state was assigned lineage "17e9440f-0938-c44c-1af1-b613c1ce4bab" +2022/02/22 15:25:58 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:58 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:58 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:58 [DEBUG] Test: Executing step 10 +2022/02/22 15:25:58 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:58 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:25:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:58 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:25:58 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:58 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:25:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:25:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:58 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:58 [DEBUG] : Beginning Read +2022/02/22 15:25:58 HTTP request GET mso/api/v1/tenants +2022/02/22 15:25:58 [DEBUG] Begin Injection +2022/02/22 15:25:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:25:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:25:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048c3c0 3980 [] false false map[] 0xc000141900 0xc000cf2000} +2022/02/22 15:25:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:25:58 [DEBUG] Exit from do method +2022/02/22 15:25:58 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:25:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:58 [DEBUG] 6214b32c1b0000de79fd065a: Beginning Read +2022/02/22 15:25:58 id: 6214b32c1b0000de79fd065a +2022/02/22 15:25:58 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:58 [DEBUG] Begin Injection +2022/02/22 15:25:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000636740 160 [] false false map[] 0xc001250400 0xc000cf2000} +2022/02/22 15:25:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a {"id":"6214b32c1b0000de79fd065a","name":"acctest_2xl4j","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:25:59 [DEBUG] Exit from do method +2022/02/22 15:25:59 [DEBUG] 6214b32c1b0000de79fd065a: Read finished successfully +2022/02/22 15:25:59 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:59 [DEBUG] New state was assigned lineage "fd62d910-a3a9-0f40-0bd7-ab8f5175a701" +2022/02/22 15:25:59 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:25:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:59 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:59 [DEBUG] provider has no plugin.Client +2022/02/22 15:25:59 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "6214b32c1b0000de79fd065a" => "" + name: "acctest_2xl4j" => "acctest_61n67" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b32c1b0000de79fd065a + provider = provider.mso + description = + name = acctest_2xl4j + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:25:59 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:25:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:25:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:25:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:25:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:25:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:25:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:25:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:25:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:25:59 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:25:59 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:25:59 [DEBUG] 6214b32c1b0000de79fd065a: Beginning Read +2022/02/22 15:25:59 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:59 [DEBUG] Begin Injection +2022/02/22 15:25:59 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:59 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:59 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:55:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001251100 0xc000cf2000} +2022/02/22 15:25:59 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32c1b0000de79fd065a +2022/02/22 15:25:59 [DEBUG] : Read finished successfully +2022/02/22 15:25:59 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:25:59 [DEBUG] : Beginning Create +2022/02/22 15:25:59 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:25:59 [DEBUG] Begin Injection +2022/02/22 15:25:59 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:25:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:26:00 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:26:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:55:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007b2300 160 [] false false map[] 0xc000140b00 0xc000cf2000} +2022/02/22 15:26:00 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b32f1b0000d179fd065b","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:26:00 [DEBUG] Exit from do method +2022/02/22 15:26:00 [DEBUG] 6214b32f1b0000d179fd065b: Creation finished successfully +2022/02/22 15:26:00 [DEBUG] 6214b32f1b0000d179fd065b: Beginning Read +2022/02/22 15:26:00 id: 6214b32f1b0000d179fd065b +2022/02/22 15:26:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:00 [DEBUG] Begin Injection +2022/02/22 15:26:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:56:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000761fc0 160 [] false false map[] 0xc001250000 0xc000cf2000} +2022/02/22 15:26:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b {"id":"6214b32f1b0000d179fd065b","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:26:00 [DEBUG] Exit from do method +2022/02/22 15:26:00 [DEBUG] 6214b32f1b0000d179fd065b: Read finished successfully +2022/02/22 15:26:00 [DEBUG] provider has no plugin.Client +2022/02/22 15:26:00 [DEBUG] New state was assigned lineage "02df6db8-3093-1f94-0e93-ccd104a4565d" +2022/02/22 15:26:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:00 [DEBUG] Begin Injection +2022/02/22 15:26:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:56:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019fcc0 160 [] false false map[] 0xc001250100 0xc000cf2000} +2022/02/22 15:26:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b {"id":"6214b32f1b0000d179fd065b","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:26:01 [DEBUG] Exit from do method +2022/02/22 15:26:01 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:26:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:26:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:26:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:26:01 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:26:01 [DEBUG] provider has no plugin.Client +2022/02/22 15:26:01 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:26:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:26:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:26:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:26:01 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:01 [DEBUG] : Beginning Read +2022/02/22 15:26:01 HTTP request GET mso/api/v1/tenants +2022/02/22 15:26:01 [DEBUG] Begin Injection +2022/02/22 15:26:01 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:26:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:26:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:26:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:56:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000761b40 3980 [] false false map[] 0xc000256100 0xc000cf2000} +2022/02/22 15:26:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:26:01 [DEBUG] Exit from do method +2022/02/22 15:26:01 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:26:01 [DEBUG] 6214b32f1b0000d179fd065b: Beginning Read +2022/02/22 15:26:01 id: 6214b32f1b0000d179fd065b +2022/02/22 15:26:01 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:01 [DEBUG] Begin Injection +2022/02/22 15:26:01 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:56:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048d280 160 [] false false map[] 0xc001250400 0xc000cf2000} +2022/02/22 15:26:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b {"id":"6214b32f1b0000d179fd065b","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:26:01 [DEBUG] Exit from do method +2022/02/22 15:26:01 [DEBUG] 6214b32f1b0000d179fd065b: Read finished successfully +2022/02/22 15:26:01 [DEBUG] provider has no plugin.Client +2022/02/22 15:26:01 [DEBUG] New state was assigned lineage "c15dcedc-3577-7078-c425-32ff4cbbe956" +2022/02/22 15:26:01 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:26:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:26:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:26:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:26:01 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:26:01 [DEBUG] provider has no plugin.Client +2022/02/22 15:26:01 [WARN] Test: Executing destroy step +2022/02/22 15:26:01 [DEBUG] provider has no plugin.Client +2022/02/22 15:26:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:26:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:26:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:26:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:26:01 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:26:01 [DEBUG] provider has no plugin.Client +2022/02/22 15:26:01 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:26:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:26:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:26:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:26:01 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:26:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:01 [DEBUG] : Beginning Read +2022/02/22 15:26:01 HTTP request GET mso/api/v1/tenants +2022/02/22 15:26:01 [DEBUG] Begin Injection +2022/02/22 15:26:01 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:26:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:26:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:26:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:56:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000850bc0 3980 [] false false map[] 0xc000cc8400 0xc000cf2000} +2022/02/22 15:26:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:26:02 [DEBUG] Exit from do method +2022/02/22 15:26:02 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:26:02 [DEBUG] 6214b32f1b0000d179fd065b: Beginning Read +2022/02/22 15:26:02 id: 6214b32f1b0000d179fd065b +2022/02/22 15:26:02 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:02 [DEBUG] Begin Injection +2022/02/22 15:26:02 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:56:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007b2100 160 [] false false map[] 0xc000cc8b00 0xc000cf2000} +2022/02/22 15:26:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b {"id":"6214b32f1b0000d179fd065b","name":"acctest_61n67","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:26:02 [DEBUG] Exit from do method +2022/02/22 15:26:02 [DEBUG] 6214b32f1b0000d179fd065b: Read finished successfully +2022/02/22 15:26:02 [DEBUG] provider has no plugin.Client +2022/02/22 15:26:02 [DEBUG] New state was assigned lineage "d8e5b456-4526-dddd-2e5d-18008436552d" +2022/02/22 15:26:02 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:26:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:26:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:26:02 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:26:02 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214b32f1b0000d179fd065b" => "" + name: "acctest_61n67" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b32f1b0000d179fd065b + provider = provider.mso + description = + name = acctest_61n67 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:26:02 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:26:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:26:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:26:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:02 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:26:02 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:26:02 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:26:02 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:26:02 [DEBUG] 6214b32f1b0000d179fd065b: Beginning Read +2022/02/22 15:26:02 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:02 [DEBUG] Begin Injection +2022/02/22 15:26:02 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:03 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:03 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 09:56:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000cc8100 0xc000cf2000} +2022/02/22 15:26:03 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:03 [DEBUG] : Read finished successfully +2022/02/22 15:26:03 [DEBUG] provider has no plugin.Client +2022/02/22 15:26:03 [DEBUG] New state was assigned lineage "34cce691-0aba-8525-b4ea-1f10c20b1d33" +2022/02/22 15:26:03 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:03 [DEBUG] Begin Injection +2022/02/22 15:26:03 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b +2022/02/22 15:26:03 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:56:03 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000850940 86 [] false false map[] 0xc000140300 0xc000cf2000} +2022/02/22 15:26:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b32f1b0000d179fd065b {"code":141,"message":"Resource Not Found: Policy 6214b32f1b0000d179fd065b not found"} +2022/02/22 15:26:03 [DEBUG] Exit from do method +2022/02/22 15:26:03 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:26:03 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:26:03 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:26:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:26:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:26:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:26:03 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:26:03 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:26:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:03 [DEBUG] : Beginning Read +2022/02/22 15:26:03 HTTP request GET mso/api/v1/tenants +2022/02/22 15:26:03 [DEBUG] Begin Injection +2022/02/22 15:26:03 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:26:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:26:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:26:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 09:56:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a340 3980 [] false false map[] 0xc001258100 0xc000cf2000} +2022/02/22 15:26:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:26:03 [DEBUG] Exit from do method +2022/02/22 15:26:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:26:03 [DEBUG] provider has no plugin.Client +2022/02/22 15:26:03 [DEBUG] New state was assigned lineage "5972cafc-8548-6855-80cd-f1cf866b6957" +2022/02/22 15:26:03 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:26:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:26:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:26:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:26:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:26:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:26:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:26:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:26:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:26:03 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:45:36 [DEBUG] Test: Executing step 0 +2022/02/22 15:45:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:45:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:45:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:45:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:45:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:45:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:45:36 [DEBUG] Test: Executing step 1 +2022/02/22 15:45:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:45:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:45:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:45:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:45:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:45:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:45:36 [DEBUG] Test: Executing step 2 +2022/02/22 15:45:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:45:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:45:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:45:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:45:36 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:45:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:45:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:45:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:45:36 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:45:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:36 [DEBUG] : Beginning Read +2022/02/22 15:45:36 HTTP request GET mso/api/v1/tenants +2022/02/22 15:45:36 [DEBUG] Begin Injection +2022/02/22 15:45:36 HTTP request POST /login +2022/02/22 15:45:36 HTTP request after injection POST /login +2022/02/22 15:45:36 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:45:38 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:45:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:38 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjYxMzgsImlhdCI6MTY0NTUyNDkzOCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJTbGJvbz00SUw5ZE54VnJmZTQzdlZpeFMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.fDsvm2Zq2AbgbnQ53BghF-vTa87CEx5wwPq2nQgYZz6_wRPeYHbrCnAg38VQG42eWW3dVxnN9YY-lMq8jNjYb9ery2seNkKRZ1hQ7f3yDWOqpZ51gWiR16W8vsLU6VGpdlCMRYMKEaZz6fu5rsDP3WK-_4aPND2twIxztBAg4NeWnYjU7Db6sS1otr909G2lyRoiuCtaeZGoXrz2SVUzFhdOGpKqF2caQXWsCrOOQqZ2u9oELZiBd-38BDS76XtwbFSJ7rcp4rPTz25FLpjXmCWwJ6pPWkE-3ZNlHY57uPSnryL83KQxuzlrIYK1EGMdWODFOKhkZRjf531E2t5ZgA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000972800 -1 [chunked] false false map[] 0xc000660400 0xc000415e40} +2022/02/22 15:45:38 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjYxMzgsImlhdCI6MTY0NTUyNDkzOCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJTbGJvbz00SUw5ZE54VnJmZTQzdlZpeFMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.fDsvm2Zq2AbgbnQ53BghF-vTa87CEx5wwPq2nQgYZz6_wRPeYHbrCnAg38VQG42eWW3dVxnN9YY-lMq8jNjYb9ery2seNkKRZ1hQ7f3yDWOqpZ51gWiR16W8vsLU6VGpdlCMRYMKEaZz6fu5rsDP3WK-_4aPND2twIxztBAg4NeWnYjU7Db6sS1otr909G2lyRoiuCtaeZGoXrz2SVUzFhdOGpKqF2caQXWsCrOOQqZ2u9oELZiBd-38BDS76XtwbFSJ7rcp4rPTz25FLpjXmCWwJ6pPWkE-3ZNlHY57uPSnryL83KQxuzlrIYK1EGMdWODFOKhkZRjf531E2t5ZgA","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjYxMzgsImlhdCI6MTY0NTUyNDkzOCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJTbGJvbz00SUw5ZE54VnJmZTQzdlZpeFMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.fDsvm2Zq2AbgbnQ53BghF-vTa87CEx5wwPq2nQgYZz6_wRPeYHbrCnAg38VQG42eWW3dVxnN9YY-lMq8jNjYb9ery2seNkKRZ1hQ7f3yDWOqpZ51gWiR16W8vsLU6VGpdlCMRYMKEaZz6fu5rsDP3WK-_4aPND2twIxztBAg4NeWnYjU7Db6sS1otr909G2lyRoiuCtaeZGoXrz2SVUzFhdOGpKqF2caQXWsCrOOQqZ2u9oELZiBd-38BDS76XtwbFSJ7rcp4rPTz25FLpjXmCWwJ6pPWkE-3ZNlHY57uPSnryL83KQxuzlrIYK1EGMdWODFOKhkZRjf531E2t5ZgA"} +2022/02/22 15:45:38 [DEBUG] Exit from do method +2022/02/22 15:45:38 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:45:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:45:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:45:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091d00 3980 [] false false map[] 0xc000660300 0xc000415e40} +2022/02/22 15:45:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:45:39 [DEBUG] Exit from do method +2022/02/22 15:45:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:45:39 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:39 [DEBUG] New state was assigned lineage "1c8dada2-3e0d-167d-a409-b6a7ff784bc7" +2022/02/22 15:45:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:45:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:45:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:45:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:45:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:45:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:39 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:45:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:39 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:45:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:45:39 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:39 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_8pisi" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:45:39 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:45:39 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:45:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:45:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:45:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:45:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:45:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:45:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:45:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:45:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:39 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:45:39 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:45:39 [DEBUG] : Beginning Create +2022/02/22 15:45:39 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:45:39 [DEBUG] Begin Injection +2022/02/22 15:45:39 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:45:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:45:39 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:45:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091cc0 160 [] false false map[] 0xc000660b00 0xc000415e40} +2022/02/22 15:45:39 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b7cb1b0000dc7afd065c","name":"acctest_8pisi","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:45:39 [DEBUG] Exit from do method +2022/02/22 15:45:39 [DEBUG] 6214b7cb1b0000dc7afd065c: Creation finished successfully +2022/02/22 15:45:39 [DEBUG] 6214b7cb1b0000dc7afd065c: Beginning Read +2022/02/22 15:45:39 id: 6214b7cb1b0000dc7afd065c +2022/02/22 15:45:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:39 [DEBUG] Begin Injection +2022/02/22 15:45:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019fe80 160 [] false false map[] 0xc000844000 0xc000415e40} +2022/02/22 15:45:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c {"id":"6214b7cb1b0000dc7afd065c","name":"acctest_8pisi","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:45:40 [DEBUG] Exit from do method +2022/02/22 15:45:40 [DEBUG] 6214b7cb1b0000dc7afd065c: Read finished successfully +2022/02/22 15:45:40 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:40 [DEBUG] New state was assigned lineage "c1c456bb-2f51-78de-6b55-a892402ecc3f" +2022/02/22 15:45:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:40 [DEBUG] Begin Injection +2022/02/22 15:45:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b58ac0 160 [] false false map[] 0xc000844100 0xc000415e40} +2022/02/22 15:45:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c {"id":"6214b7cb1b0000dc7afd065c","name":"acctest_8pisi","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:45:40 [DEBUG] Exit from do method +2022/02/22 15:45:40 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:45:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:45:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:45:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:45:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:45:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:40 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:45:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:45:40 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:45:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:45:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:45:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:45:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:45:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:45:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:40 [DEBUG] : Beginning Read +2022/02/22 15:45:40 HTTP request GET mso/api/v1/tenants +2022/02/22 15:45:40 [DEBUG] Begin Injection +2022/02/22 15:45:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:45:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:45:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:45:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00084b200 3980 [] false false map[] 0xc00098a300 0xc000415e40} +2022/02/22 15:45:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:45:40 [DEBUG] Exit from do method +2022/02/22 15:45:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:45:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:45:40 [DEBUG] 6214b7cb1b0000dc7afd065c: Beginning Read +2022/02/22 15:45:40 id: 6214b7cb1b0000dc7afd065c +2022/02/22 15:45:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:40 [DEBUG] Begin Injection +2022/02/22 15:45:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b080 160 [] false false map[] 0xc000660200 0xc000415e40} +2022/02/22 15:45:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c {"id":"6214b7cb1b0000dc7afd065c","name":"acctest_8pisi","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:45:41 [DEBUG] Exit from do method +2022/02/22 15:45:41 [DEBUG] 6214b7cb1b0000dc7afd065c: Read finished successfully +2022/02/22 15:45:41 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:41 [DEBUG] New state was assigned lineage "f55c1f03-3b5b-bc4a-9d1d-501a0edc1a91" +2022/02/22 15:45:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:45:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:45:41 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:41 [DEBUG] Test: Executing step 3 +2022/02/22 15:45:41 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:45:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:45:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:45:41 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:45:41 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:45:41 [DEBUG] Test: Executing step 4 +2022/02/22 15:45:41 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:45:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:45:41 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:45:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:41 [DEBUG] : Beginning Read +2022/02/22 15:45:41 HTTP request GET mso/api/v1/tenants +2022/02/22 15:45:41 [DEBUG] Begin Injection +2022/02/22 15:45:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:45:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:45:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:45:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090040 3980 [] false false map[] 0xc000660300 0xc000415e40} +2022/02/22 15:45:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:45:41 [DEBUG] Exit from do method +2022/02/22 15:45:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:45:41 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:45:41 [DEBUG] 6214b7cb1b0000dc7afd065c: Beginning Read +2022/02/22 15:45:41 id: 6214b7cb1b0000dc7afd065c +2022/02/22 15:45:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:41 [DEBUG] Begin Injection +2022/02/22 15:45:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:41 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:45:41 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:45:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:45:41 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:45:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ab80 160 [] false false map[] 0xc00098a300 0xc000415e40} +2022/02/22 15:45:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c {"id":"6214b7cb1b0000dc7afd065c","name":"acctest_8pisi","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:45:42 [DEBUG] Exit from do method +2022/02/22 15:45:42 [DEBUG] 6214b7cb1b0000dc7afd065c: Read finished successfully +2022/02/22 15:45:42 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:42 [DEBUG] New state was assigned lineage "3f111f41-eeb1-5b03-5d1c-ecb49277d4c0" +2022/02/22 15:45:42 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:45:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:45:42 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:45:42 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:45:42 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:45:42 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:45:42 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:45:42 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:42 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.168.68" + id: "6214b7cb1b0000dc7afd065c" => "6214b7cb1b0000dc7afd065c" + name: "acctest_8pisi" => "acctest_8pisi" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_u1eae" + template_name: "" => "acctest_cpl30" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_uaap1" + external_epg_name: "" => "acctest_uaap1" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_cpl30" + vrf_name: "" => "acctest_uaap1" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_uaap1" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_uaap1" + schema_id: "" => "" + template: "" => "acctest_cpl30" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b7cb1b0000dc7afd065c + provider = provider.mso + description = + name = acctest_8pisi + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:45:42 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:45:42 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:45:42 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:45:42 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:45:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:45:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:45:42 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:45:42 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 15:45:42 [DEBUG] Schema: Beginning Creation +2022/02/22 15:45:42 HTTP request POST mso/api/v1/schemas +2022/02/22 15:45:42 [DEBUG] Begin Injection +2022/02/22 15:45:42 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 15:45:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:45:42 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:45:42 [DEBUG] 6214b7cb1b0000dc7afd065c: Beginning Policy Update +2022/02/22 15:45:42 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg. +2022/02/22 15:45:42 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg. +2022/02/22 15:45:42 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg. +2022/02/22 15:45:42 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:45:42 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214b7ce1d0000ea514f9e87] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cc7b80 400 [] false false map[] 0xc000660b00 0xc000415e40} +2022/02/22 15:45:42 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214b7ce1d0000ea514f9e87","displayName":"acctest_u1eae","description":"","templates":[{"name":"acctest_cpl30","displayName":"acctest_cpl30","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:45:42 [DEBUG] Exit from do method +2022/02/22 15:45:42 [DEBUG] 6214b7ce1d0000ea514f9e87: Schema Creation finished successfully +2022/02/22 15:45:42 [DEBUG] 6214b7ce1d0000ea514f9e87: Beginning Read +2022/02/22 15:45:42 HTTP request GET mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:42 [DEBUG] Begin Injection +2022/02/22 15:45:42 HTTP request after injection GET mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cc7d00 400 [] false false map[] 0xc000074700 0xc000415e40} +2022/02/22 15:45:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 {"id":"6214b7ce1d0000ea514f9e87","displayName":"acctest_u1eae","description":"","templates":[{"name":"acctest_cpl30","displayName":"acctest_cpl30","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:45:42 [DEBUG] Exit from do method +2022/02/22 15:45:42 [DEBUG] 6214b7ce1d0000ea514f9e87: Read finished successfully +2022/02/22 15:45:42 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 15:45:42 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 15:45:42 HTTP request PATCH mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:42 [DEBUG] Begin Injection +2022/02/22 15:45:42 HTTP request after injection PATCH mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:43 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:15:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000074d00 0xc000415e40} +2022/02/22 15:45:43 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:43 [DEBUG] acctest_uaap1: Creation finished successfully +2022/02/22 15:45:43 [DEBUG] acctest_uaap1: Beginning Read +2022/02/22 15:45:43 HTTP request GET mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:43 [DEBUG] Begin Injection +2022/02/22 15:45:43 HTTP request after injection GET mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b58280 768 [] false false map[] 0xc000d3c000 0xc000415e40} +2022/02/22 15:45:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 {"id":"6214b7ce1d0000ea514f9e87","displayName":"acctest_u1eae","description":"","templates":[{"name":"acctest_cpl30","displayName":"acctest_cpl30","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_uaap1","displayName":"acctest_uaap1","vrfRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/vrfs/acctest_uaap1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 15:45:43 [DEBUG] Exit from do method +2022/02/22 15:45:43 currentvrfname acctest_uaap1 +2022/02/22 15:45:43 found correct vrfname +2022/02/22 15:45:43 [DEBUG] acctest_uaap1: Read finished successfully +2022/02/22 15:45:43 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:45:43 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 15:45:43 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 15:45:43 HTTP request PATCH mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:43 [DEBUG] Begin Injection +2022/02/22 15:45:43 HTTP request after injection PATCH mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:43 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:15:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d3cb00 0xc000415e40} +2022/02/22 15:45:43 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:43 [DEBUG] : Beginning Read +2022/02/22 15:45:43 HTTP request GET mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:43 [DEBUG] Begin Injection +2022/02/22 15:45:43 HTTP request after injection GET mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000776580 1147 [] false false map[] 0xc000660000 0xc000415e40} +2022/02/22 15:45:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 {"id":"6214b7ce1d0000ea514f9e87","displayName":"acctest_u1eae","description":"","templates":[{"name":"acctest_cpl30","displayName":"acctest_cpl30","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_uaap1","displayName":"acctest_uaap1","vrfRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/vrfs/acctest_uaap1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_uaap1","displayName":"acctest_uaap1","extEpgType":"on-premise","vrfRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/vrfs/acctest_uaap1","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/externalEpgs/acctest_uaap1","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:45:44 [DEBUG] Exit from do method +2022/02/22 15:45:44 [DEBUG] /schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/externalEpgs/acctest_uaap1: Read finished successfully +2022/02/22 15:45:44 [DEBUG] New state was assigned lineage "ab2d19f8-3292-1633-70db-8464e85d8610" +2022/02/22 15:45:44 [WARN] Test: Executing destroy step +2022/02/22 15:45:44 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:44 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:45:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:45:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:45:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:45:44 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:45:44 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:44 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 15:45:44 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 15:45:44 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 15:45:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:45:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:45:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:45:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:45:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:45:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:45:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:44 [DEBUG] : Beginning Read +2022/02/22 15:45:44 HTTP request GET mso/api/v1/tenants +2022/02/22 15:45:44 [DEBUG] Begin Injection +2022/02/22 15:45:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:45:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:45:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:45:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e800 3980 [] false false map[] 0xc000075700 0xc000415e40} +2022/02/22 15:45:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:45:44 [DEBUG] Exit from do method +2022/02/22 15:45:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:45:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:45:44 [DEBUG] 6214b7ce1d0000ea514f9e87: Beginning Read +2022/02/22 15:45:44 [DEBUG] 6214b7cb1b0000dc7afd065c: Beginning Read +2022/02/22 15:45:44 id: 6214b7cb1b0000dc7afd065c +2022/02/22 15:45:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:44 [DEBUG] Begin Injection +2022/02/22 15:45:44 HTTP request GET mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:44 [DEBUG] Begin Injection +2022/02/22 15:45:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:44 HTTP request after injection GET mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b58540 160 [] false false map[] 0xc000074600 0xc000415e40} +2022/02/22 15:45:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c {"id":"6214b7cb1b0000dc7afd065c","name":"acctest_8pisi","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:45:44 [DEBUG] Exit from do method +2022/02/22 15:45:44 [DEBUG] 6214b7cb1b0000dc7afd065c: Read finished successfully +2022/02/22 15:45:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000cbb500 1147 [] false false map[] 0xc0001a0300 0xc000415e40} +2022/02/22 15:45:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 {"id":"6214b7ce1d0000ea514f9e87","displayName":"acctest_u1eae","description":"","templates":[{"name":"acctest_cpl30","displayName":"acctest_cpl30","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_uaap1","displayName":"acctest_uaap1","vrfRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/vrfs/acctest_uaap1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_uaap1","displayName":"acctest_uaap1","extEpgType":"on-premise","vrfRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/vrfs/acctest_uaap1","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/externalEpgs/acctest_uaap1","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:45:45 [DEBUG] Exit from do method +2022/02/22 15:45:45 [DEBUG] 6214b7ce1d0000ea514f9e87: Read finished successfully +2022/02/22 15:45:45 [DEBUG] acctest_uaap1: Beginning Read +2022/02/22 15:45:45 HTTP request GET mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:45 [DEBUG] Begin Injection +2022/02/22 15:45:45 HTTP request after injection GET mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ba00 1147 [] false false map[] 0xc0001a0800 0xc000415e40} +2022/02/22 15:45:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 {"id":"6214b7ce1d0000ea514f9e87","displayName":"acctest_u1eae","description":"","templates":[{"name":"acctest_cpl30","displayName":"acctest_cpl30","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_uaap1","displayName":"acctest_uaap1","vrfRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/vrfs/acctest_uaap1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_uaap1","displayName":"acctest_uaap1","extEpgType":"on-premise","vrfRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/vrfs/acctest_uaap1","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/externalEpgs/acctest_uaap1","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:45:45 [DEBUG] Exit from do method +2022/02/22 15:45:45 currentvrfname acctest_uaap1 +2022/02/22 15:45:45 found correct vrfname +2022/02/22 15:45:45 [DEBUG] acctest_uaap1: Read finished successfully +2022/02/22 15:45:45 [DEBUG] /schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/externalEpgs/acctest_uaap1: Beginning Read +2022/02/22 15:45:45 HTTP request GET mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:45 [DEBUG] Begin Injection +2022/02/22 15:45:45 HTTP request after injection GET mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000972180 1147 [] false false map[] 0xc00098a400 0xc000415e40} +2022/02/22 15:45:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 {"id":"6214b7ce1d0000ea514f9e87","displayName":"acctest_u1eae","description":"","templates":[{"name":"acctest_cpl30","displayName":"acctest_cpl30","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_uaap1","displayName":"acctest_uaap1","vrfRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/vrfs/acctest_uaap1","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_uaap1","displayName":"acctest_uaap1","extEpgType":"on-premise","vrfRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/vrfs/acctest_uaap1","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/externalEpgs/acctest_uaap1","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:45:45 [DEBUG] Exit from do method +2022/02/22 15:45:45 [DEBUG] /schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/externalEpgs/acctest_uaap1: Read finished successfully +2022/02/22 15:45:45 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:45 [DEBUG] New state was assigned lineage "edf67e4b-8eb1-4a0b-b760-c16ad26c2c95" +2022/02/22 15:45:45 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:45:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:45:45 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:45:45 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214b7cb1b0000dc7afd065c" => "" + name: "acctest_8pisi" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "6214b7ce1d0000ea514f9e87" => "" + name: "acctest_u1eae" => "" + template_name: "acctest_cpl30" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_uaap1" => "" + external_epg_name: "acctest_uaap1" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/externalEpgs/acctest_uaap1" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214b7ce1d0000ea514f9e87" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_cpl30" => "" + vrf_name: "acctest_uaap1" => "" + vrf_schema_id: "6214b7ce1d0000ea514f9e87" => "" + vrf_template_name: "acctest_cpl30" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_uaap1" => "" + id: "acctest_uaap1" => "" + layer3_multicast: "false" => "" + name: "acctest_uaap1" => "" + schema_id: "6214b7ce1d0000ea514f9e87" => "" + template: "acctest_cpl30" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b7cb1b0000dc7afd065c + provider = provider.mso + description = + name = acctest_8pisi + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 6214b7ce1d0000ea514f9e87 + provider = provider.mso + name = acctest_u1eae + template_name = acctest_cpl30 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214b7ce1d0000ea514f9e87/templates/acctest_cpl30/externalEpgs/acctest_uaap1 + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_uaap1 + external_epg_name = acctest_uaap1 + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214b7ce1d0000ea514f9e87 + selector_ip = + selector_name = + template_name = acctest_cpl30 + vrf_name = acctest_uaap1 + vrf_schema_id = 6214b7ce1d0000ea514f9e87 + vrf_template_name = acctest_cpl30 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_uaap1 + provider = provider.mso + display_name = acctest_uaap1 + layer3_multicast = false + name = acctest_uaap1 + schema_id = 6214b7ce1d0000ea514f9e87 + template = acctest_cpl30 + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 15:45:45 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:45:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:45:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:45 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:45:45 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:45:45 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:45:45 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:45:45 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 15:45:45 [DEBUG] 6214b7cb1b0000dc7afd065c: Beginning Read +2022/02/22 15:45:45 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:45 [DEBUG] Begin Injection +2022/02/22 15:45:45 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:45 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 15:45:45 HTTP request PATCH mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:45 [DEBUG] Begin Injection +2022/02/22 15:45:45 HTTP request after injection PATCH mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:46 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:15:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001098000 0xc000415e40} +2022/02/22 15:45:46 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:46 [DEBUG] : Read finished successfully +2022/02/22 15:45:46 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:15:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000fd4200 0xc000470000} +2022/02/22 15:45:46 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:46 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 15:45:46 [DEBUG] acctest_uaap1: Beginning Destroy +2022/02/22 15:45:46 HTTP request PATCH mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:46 [DEBUG] Begin Injection +2022/02/22 15:45:46 HTTP request after injection PATCH mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:46 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:15:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000764200 0xc000470000} +2022/02/22 15:45:46 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87?validate=false +2022/02/22 15:45:46 [DEBUG] acctest_uaap1: Destroy finished successfully +2022/02/22 15:45:46 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 15:45:46 [DEBUG] 6214b7ce1d0000ea514f9e87: Beginning Destroy +2022/02/22 15:45:46 HTTP request DELETE mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:46 [DEBUG] Begin Injection +2022/02/22 15:45:46 HTTP request after injection DELETE mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:47 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:15:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000074500 0xc000470000} +2022/02/22 15:45:47 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214b7ce1d0000ea514f9e87 +2022/02/22 15:45:47 [DEBUG] 6214b7ce1d0000ea514f9e87: Destroy finished successfully +2022/02/22 15:45:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:47 [DEBUG] New state was assigned lineage "cac7b612-8548-4020-1ec1-2cf8bb961562" +2022/02/22 15:45:47 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:47 [DEBUG] Begin Injection +2022/02/22 15:45:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c +2022/02/22 15:45:47 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:47 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000316200 86 [] false false map[] 0xc00098a000 0xc000470000} +2022/02/22 15:45:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b7cb1b0000dc7afd065c {"code":141,"message":"Resource Not Found: Policy 6214b7cb1b0000dc7afd065c not found"} +2022/02/22 15:45:47 [DEBUG] Exit from do method +2022/02/22 15:45:47 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:45:47 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:45:47 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:45:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:45:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:45:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:47 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:45:47 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:45:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:47 [DEBUG] : Beginning Read +2022/02/22 15:45:47 HTTP request GET mso/api/v1/tenants +2022/02/22 15:45:47 [DEBUG] Begin Injection +2022/02/22 15:45:47 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:45:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:45:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:45:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:15:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b58880 3980 [] false false map[] 0xc00098a300 0xc000470000} +2022/02/22 15:45:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:45:47 [DEBUG] Exit from do method +2022/02/22 15:45:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:45:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:45:47 [DEBUG] New state was assigned lineage "52e2ca8f-ef58-44a0-a6dd-a9e69ba7a07e" +2022/02/22 15:45:47 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:45:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:45:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:45:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:45:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:45:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:45:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:45:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:45:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:45:47 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:48:17 [DEBUG] Test: Executing step 0 +2022/02/22 15:48:17 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:48:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:48:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:48:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:17 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:48:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:48:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:48:17 [DEBUG] Test: Executing step 1 +2022/02/22 15:48:17 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:48:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:48:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:48:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:17 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:48:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:48:17 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:48:17 [DEBUG] Test: Executing step 2 +2022/02/22 15:48:17 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:48:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:48:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:48:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:17 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:48:17 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:17 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:48:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:48:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:48:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:17 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:48:17 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:48:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:17 [DEBUG] : Beginning Read +2022/02/22 15:48:17 HTTP request GET mso/api/v1/tenants +2022/02/22 15:48:17 [DEBUG] Begin Injection +2022/02/22 15:48:17 HTTP request POST /login +2022/02/22 15:48:17 HTTP request after injection POST /login +2022/02/22 15:48:17 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:48:19 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:48:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:19 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjYyOTksImlhdCI6MTY0NTUyNTA5OSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiIyaXlYalowam9TZDFPdlQ4OFptNzVrSFgiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Iz7ndtDFHBqXgAvTwEPKieXYyrqaTsmyaQ7X41oBf17nuPrAKD97zT780cf07TobjNO607D0G6u2b5tk5FtdorbjfiDC_g8xota34vCYnmSyuh8Rx_b0bQGIq7En9DGPRUsmC0Lie63hZMjMno2NUQxfzwkHYcfE6_vc87O3aOEoJgb_fI-LiynHWiFHednoRRGCCK_gXSuo_xeh0VSUkzgtQSHPKGoC_AJGC4-gTJE9hD3hgDPkXkJXuMu1DnTw5xYb34Hll5FTHaDms2gclb1MtgTBIvOqpnLnFn3jUZs1ohiajVS4oo9cTYyKDKYM9u47HY2N_wa7hqpBCW7-Wg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00015c1c0 -1 [chunked] false false map[] 0xc000786300 0xc000800160} +2022/02/22 15:48:19 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjYyOTksImlhdCI6MTY0NTUyNTA5OSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiIyaXlYalowam9TZDFPdlQ4OFptNzVrSFgiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Iz7ndtDFHBqXgAvTwEPKieXYyrqaTsmyaQ7X41oBf17nuPrAKD97zT780cf07TobjNO607D0G6u2b5tk5FtdorbjfiDC_g8xota34vCYnmSyuh8Rx_b0bQGIq7En9DGPRUsmC0Lie63hZMjMno2NUQxfzwkHYcfE6_vc87O3aOEoJgb_fI-LiynHWiFHednoRRGCCK_gXSuo_xeh0VSUkzgtQSHPKGoC_AJGC4-gTJE9hD3hgDPkXkJXuMu1DnTw5xYb34Hll5FTHaDms2gclb1MtgTBIvOqpnLnFn3jUZs1ohiajVS4oo9cTYyKDKYM9u47HY2N_wa7hqpBCW7-Wg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjYyOTksImlhdCI6MTY0NTUyNTA5OSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiIyaXlYalowam9TZDFPdlQ4OFptNzVrSFgiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Iz7ndtDFHBqXgAvTwEPKieXYyrqaTsmyaQ7X41oBf17nuPrAKD97zT780cf07TobjNO607D0G6u2b5tk5FtdorbjfiDC_g8xota34vCYnmSyuh8Rx_b0bQGIq7En9DGPRUsmC0Lie63hZMjMno2NUQxfzwkHYcfE6_vc87O3aOEoJgb_fI-LiynHWiFHednoRRGCCK_gXSuo_xeh0VSUkzgtQSHPKGoC_AJGC4-gTJE9hD3hgDPkXkJXuMu1DnTw5xYb34Hll5FTHaDms2gclb1MtgTBIvOqpnLnFn3jUZs1ohiajVS4oo9cTYyKDKYM9u47HY2N_wa7hqpBCW7-Wg"} +2022/02/22 15:48:19 [DEBUG] Exit from do method +2022/02/22 15:48:19 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:48:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:48:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:48:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a740 3980 [] false false map[] 0xc000786200 0xc000800160} +2022/02/22 15:48:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:48:19 [DEBUG] Exit from do method +2022/02/22 15:48:19 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:48:19 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:19 [DEBUG] New state was assigned lineage "478ceb10-d00e-31cf-0163-d5ccd1241fab" +2022/02/22 15:48:19 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:48:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:48:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:48:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:48:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:48:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:19 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:48:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:19 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:48:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:48:19 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:19 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_6u01g" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:48:19 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:48:19 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:48:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:48:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:48:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:48:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:48:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:48:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:48:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:48:19 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:48:19 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:48:19 [DEBUG] : Beginning Create +2022/02/22 15:48:19 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:48:19 [DEBUG] Begin Injection +2022/02/22 15:48:19 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:48:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:48:20 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:48:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a640 160 [] false false map[] 0xc000c7f400 0xc000800160} +2022/02/22 15:48:20 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b86b1b0000f27afd065d","name":"acctest_6u01g","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:48:20 [DEBUG] Exit from do method +2022/02/22 15:48:20 [DEBUG] 6214b86b1b0000f27afd065d: Creation finished successfully +2022/02/22 15:48:20 [DEBUG] 6214b86b1b0000f27afd065d: Beginning Read +2022/02/22 15:48:20 id: 6214b86b1b0000f27afd065d +2022/02/22 15:48:20 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:20 [DEBUG] Begin Injection +2022/02/22 15:48:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005c0780 160 [] false false map[] 0xc000c7e000 0xc000800160} +2022/02/22 15:48:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d {"id":"6214b86b1b0000f27afd065d","name":"acctest_6u01g","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:48:20 [DEBUG] Exit from do method +2022/02/22 15:48:20 [DEBUG] 6214b86b1b0000f27afd065d: Read finished successfully +2022/02/22 15:48:20 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:20 [DEBUG] New state was assigned lineage "a2b06a64-12d5-b685-e34b-7124bd88b636" +2022/02/22 15:48:20 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:20 [DEBUG] Begin Injection +2022/02/22 15:48:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ab80 160 [] false false map[] 0xc000140000 0xc000800160} +2022/02/22 15:48:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d {"id":"6214b86b1b0000f27afd065d","name":"acctest_6u01g","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:48:20 [DEBUG] Exit from do method +2022/02/22 15:48:20 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:48:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:48:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:48:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:48:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:48:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:20 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:48:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:48:20 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:20 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:48:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:48:20 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:48:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:48:20 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:48:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:20 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:48:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:20 [DEBUG] : Beginning Read +2022/02/22 15:48:20 HTTP request GET mso/api/v1/tenants +2022/02/22 15:48:20 [DEBUG] Begin Injection +2022/02/22 15:48:20 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:48:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:48:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:48:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a14d00 3980 [] false false map[] 0xc000786a00 0xc000800160} +2022/02/22 15:48:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:48:21 [DEBUG] Exit from do method +2022/02/22 15:48:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:48:21 [DEBUG] 6214b86b1b0000f27afd065d: Beginning Read +2022/02/22 15:48:21 id: 6214b86b1b0000f27afd065d +2022/02/22 15:48:21 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:21 [DEBUG] Begin Injection +2022/02/22 15:48:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a700 160 [] false false map[] 0xc000786d00 0xc000800160} +2022/02/22 15:48:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d {"id":"6214b86b1b0000f27afd065d","name":"acctest_6u01g","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:48:21 [DEBUG] Exit from do method +2022/02/22 15:48:21 [DEBUG] 6214b86b1b0000f27afd065d: Read finished successfully +2022/02/22 15:48:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:21 [DEBUG] New state was assigned lineage "bbd48ec2-6f0b-de32-0c8b-3bc9664e3331" +2022/02/22 15:48:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:48:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:21 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:48:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:21 [DEBUG] Test: Executing step 3 +2022/02/22 15:48:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:21 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:48:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:48:21 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:48:21 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:48:21 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 15:48:21 [DEBUG] Test: Executing step 4 +2022/02/22 15:48:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:21 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:48:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:21 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:48:21 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:21 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:48:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:48:21 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:48:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:21 [DEBUG] : Beginning Read +2022/02/22 15:48:21 HTTP request GET mso/api/v1/tenants +2022/02/22 15:48:21 [DEBUG] Begin Injection +2022/02/22 15:48:21 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:48:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:48:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:48:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00015c100 3980 [] false false map[] 0xc000c14900 0xc000800160} +2022/02/22 15:48:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:48:22 [DEBUG] Exit from do method +2022/02/22 15:48:22 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:48:22 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:48:22 [DEBUG] 6214b86b1b0000f27afd065d: Beginning Read +2022/02/22 15:48:22 id: 6214b86b1b0000f27afd065d +2022/02/22 15:48:22 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:22 [DEBUG] Begin Injection +2022/02/22 15:48:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:22 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:48:22 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:48:22 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:48:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00015ce00 160 [] false false map[] 0xc000786400 0xc000800160} +2022/02/22 15:48:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d {"id":"6214b86b1b0000f27afd065d","name":"acctest_6u01g","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:48:22 [DEBUG] Exit from do method +2022/02/22 15:48:22 [DEBUG] 6214b86b1b0000f27afd065d: Read finished successfully +2022/02/22 15:48:22 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:22 [DEBUG] New state was assigned lineage "8ef3e670-2536-47bb-6933-b6bdbe44de5f" +2022/02/22 15:48:22 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:48:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 15:48:22 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:48:22 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 15:48:22 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 15:48:22 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 15:48:22 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:48:22 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:22 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.246.83" + id: "6214b86b1b0000f27afd065d" => "6214b86b1b0000f27afd065d" + name: "acctest_6u01g" => "acctest_6u01g" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_uaxfi" + template_name: "" => "acctest_l7bup" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_vlg27" + external_epg_name: "" => "acctest_vlg27" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_l7bup" + vrf_name: "" => "acctest_vlg27" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_vlg27" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_vlg27" + schema_id: "" => "" + template: "" => "acctest_l7bup" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b86b1b0000f27afd065d + provider = provider.mso + description = + name = acctest_6u01g + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:48:22 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:48:22 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 15:48:22 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 15:48:22 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 15:48:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:48:22 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 15:48:22 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:48:22 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 15:48:22 [DEBUG] Schema: Beginning Creation +2022/02/22 15:48:22 HTTP request POST mso/api/v1/schemas +2022/02/22 15:48:22 [DEBUG] Begin Injection +2022/02/22 15:48:22 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 15:48:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:48:22 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:48:22 [DEBUG] 6214b86b1b0000f27afd065d: Beginning Policy Update +2022/02/22 15:48:22 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg. +2022/02/22 15:48:22 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg. +2022/02/22 15:48:22 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg. +2022/02/22 15:48:22 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 15:48:22 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214b86e1d00000e524f9e8d] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00015c280 400 [] false false map[] 0xc000ab8400 0xc000800160} +2022/02/22 15:48:22 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214b86e1d00000e524f9e8d","displayName":"acctest_uaxfi","description":"","templates":[{"name":"acctest_l7bup","displayName":"acctest_l7bup","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:48:22 [DEBUG] Exit from do method +2022/02/22 15:48:22 [DEBUG] 6214b86e1d00000e524f9e8d: Schema Creation finished successfully +2022/02/22 15:48:22 [DEBUG] 6214b86e1d00000e524f9e8d: Beginning Read +2022/02/22 15:48:22 HTTP request GET mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:22 [DEBUG] Begin Injection +2022/02/22 15:48:22 HTTP request after injection GET mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00015dbc0 400 [] false false map[] 0xc000786000 0xc000800160} +2022/02/22 15:48:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d {"id":"6214b86e1d00000e524f9e8d","displayName":"acctest_uaxfi","description":"","templates":[{"name":"acctest_l7bup","displayName":"acctest_l7bup","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 15:48:23 [DEBUG] Exit from do method +2022/02/22 15:48:23 [DEBUG] 6214b86e1d00000e524f9e8d: Read finished successfully +2022/02/22 15:48:23 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 15:48:23 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 15:48:23 HTTP request PATCH mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:23 [DEBUG] Begin Injection +2022/02/22 15:48:23 HTTP request after injection PATCH mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:23 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:23 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:18:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000786900 0xc000800160} +2022/02/22 15:48:23 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:23 [DEBUG] acctest_vlg27: Creation finished successfully +2022/02/22 15:48:23 [DEBUG] acctest_vlg27: Beginning Read +2022/02/22 15:48:23 HTTP request GET mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:23 [DEBUG] Begin Injection +2022/02/22 15:48:23 HTTP request after injection GET mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bf80c0 768 [] false false map[] 0xc000d36100 0xc000800160} +2022/02/22 15:48:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d {"id":"6214b86e1d00000e524f9e8d","displayName":"acctest_uaxfi","description":"","templates":[{"name":"acctest_l7bup","displayName":"acctest_l7bup","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_vlg27","displayName":"acctest_vlg27","vrfRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/vrfs/acctest_vlg27","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 15:48:23 [DEBUG] Exit from do method +2022/02/22 15:48:23 currentvrfname acctest_vlg27 +2022/02/22 15:48:23 found correct vrfname +2022/02/22 15:48:23 [DEBUG] acctest_vlg27: Read finished successfully +2022/02/22 15:48:23 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 15:48:23 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 15:48:23 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 15:48:23 HTTP request PATCH mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:23 [DEBUG] Begin Injection +2022/02/22 15:48:23 HTTP request after injection PATCH mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:23 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:24 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:24 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:18:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000140700 0xc000800160} +2022/02/22 15:48:24 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:24 [DEBUG] : Beginning Read +2022/02/22 15:48:24 HTTP request GET mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:24 [DEBUG] Begin Injection +2022/02/22 15:48:24 HTTP request after injection GET mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bf8040 1147 [] false false map[] 0xc000140900 0xc000800160} +2022/02/22 15:48:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d {"id":"6214b86e1d00000e524f9e8d","displayName":"acctest_uaxfi","description":"","templates":[{"name":"acctest_l7bup","displayName":"acctest_l7bup","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_vlg27","displayName":"acctest_vlg27","vrfRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/vrfs/acctest_vlg27","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_vlg27","displayName":"acctest_vlg27","extEpgType":"on-premise","vrfRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/vrfs/acctest_vlg27","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/externalEpgs/acctest_vlg27","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:48:24 [DEBUG] Exit from do method +2022/02/22 15:48:24 [DEBUG] /schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/externalEpgs/acctest_vlg27: Read finished successfully +2022/02/22 15:48:24 [DEBUG] New state was assigned lineage "4f790b0f-93a1-9d87-32b4-594921fde16e" +2022/02/22 15:48:24 [WARN] Test: Executing destroy step +2022/02/22 15:48:24 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:48:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:48:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:24 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:24 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:48:24 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:24 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 15:48:24 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 15:48:24 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 15:48:24 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:48:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:48:24 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:48:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:48:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:48:24 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:48:24 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:48:24 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:24 [DEBUG] : Beginning Read +2022/02/22 15:48:24 HTTP request GET mso/api/v1/tenants +2022/02/22 15:48:24 [DEBUG] Begin Injection +2022/02/22 15:48:24 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:48:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:48:24 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:48:24 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:24 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000575cc0 3980 [] false false map[] 0xc000bc8600 0xc000800160} +2022/02/22 15:48:24 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:48:24 [DEBUG] Exit from do method +2022/02/22 15:48:24 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:48:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:48:24 [DEBUG] 6214b86e1d00000e524f9e8d: Beginning Read +2022/02/22 15:48:24 HTTP request GET mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:24 [DEBUG] Begin Injection +2022/02/22 15:48:24 HTTP request after injection GET mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:24 [DEBUG] 6214b86b1b0000f27afd065d: Beginning Read +2022/02/22 15:48:24 id: 6214b86b1b0000f27afd065d +2022/02/22 15:48:24 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:24 [DEBUG] Begin Injection +2022/02/22 15:48:24 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:24 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00015ca40 1147 [] false false map[] 0xc000bc8c00 0xc000800160} +2022/02/22 15:48:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d {"id":"6214b86e1d00000e524f9e8d","displayName":"acctest_uaxfi","description":"","templates":[{"name":"acctest_l7bup","displayName":"acctest_l7bup","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_vlg27","displayName":"acctest_vlg27","vrfRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/vrfs/acctest_vlg27","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_vlg27","displayName":"acctest_vlg27","extEpgType":"on-premise","vrfRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/vrfs/acctest_vlg27","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/externalEpgs/acctest_vlg27","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:48:25 [DEBUG] Exit from do method +2022/02/22 15:48:25 [DEBUG] 6214b86e1d00000e524f9e8d: Read finished successfully +2022/02/22 15:48:25 [DEBUG] acctest_vlg27: Beginning Read +2022/02/22 15:48:25 HTTP request GET mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:25 [DEBUG] Begin Injection +2022/02/22 15:48:25 HTTP request after injection GET mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f613c0 160 [] false false map[] 0xc000786600 0xc000800160} +2022/02/22 15:48:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d {"id":"6214b86b1b0000f27afd065d","name":"acctest_6u01g","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:48:25 [DEBUG] Exit from do method +2022/02/22 15:48:25 [DEBUG] 6214b86b1b0000f27afd065d: Read finished successfully +2022/02/22 15:48:25 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:25 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:25 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d03980 1147 [] false false map[] 0xc000786900 0xc000800160} +2022/02/22 15:48:25 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d {"id":"6214b86e1d00000e524f9e8d","displayName":"acctest_uaxfi","description":"","templates":[{"name":"acctest_l7bup","displayName":"acctest_l7bup","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_vlg27","displayName":"acctest_vlg27","vrfRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/vrfs/acctest_vlg27","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_vlg27","displayName":"acctest_vlg27","extEpgType":"on-premise","vrfRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/vrfs/acctest_vlg27","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/externalEpgs/acctest_vlg27","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:48:25 [DEBUG] Exit from do method +2022/02/22 15:48:25 currentvrfname acctest_vlg27 +2022/02/22 15:48:25 found correct vrfname +2022/02/22 15:48:25 [DEBUG] acctest_vlg27: Read finished successfully +2022/02/22 15:48:25 [DEBUG] /schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/externalEpgs/acctest_vlg27: Beginning Read +2022/02/22 15:48:25 HTTP request GET mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:25 [DEBUG] Begin Injection +2022/02/22 15:48:25 HTTP request after injection GET mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:25 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00065c040 1147 [] false false map[] 0xc000bde300 0xc000800160} +2022/02/22 15:48:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d {"id":"6214b86e1d00000e524f9e8d","displayName":"acctest_uaxfi","description":"","templates":[{"name":"acctest_l7bup","displayName":"acctest_l7bup","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_vlg27","displayName":"acctest_vlg27","vrfRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/vrfs/acctest_vlg27","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_vlg27","displayName":"acctest_vlg27","extEpgType":"on-premise","vrfRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/vrfs/acctest_vlg27","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/externalEpgs/acctest_vlg27","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 15:48:26 [DEBUG] Exit from do method +2022/02/22 15:48:26 [DEBUG] /schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/externalEpgs/acctest_vlg27: Read finished successfully +2022/02/22 15:48:26 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:26 [DEBUG] New state was assigned lineage "f141e46b-744b-b5f4-1e8c-939b9cec9d96" +2022/02/22 15:48:26 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:48:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:48:26 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:48:26 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214b86b1b0000f27afd065d" => "" + name: "acctest_6u01g" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "6214b86e1d00000e524f9e8d" => "" + name: "acctest_uaxfi" => "" + template_name: "acctest_l7bup" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_vlg27" => "" + external_epg_name: "acctest_vlg27" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/externalEpgs/acctest_vlg27" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214b86e1d00000e524f9e8d" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_l7bup" => "" + vrf_name: "acctest_vlg27" => "" + vrf_schema_id: "6214b86e1d00000e524f9e8d" => "" + vrf_template_name: "acctest_l7bup" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_vlg27" => "" + id: "acctest_vlg27" => "" + layer3_multicast: "false" => "" + name: "acctest_vlg27" => "" + schema_id: "6214b86e1d00000e524f9e8d" => "" + template: "acctest_l7bup" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b86b1b0000f27afd065d + provider = provider.mso + description = + name = acctest_6u01g + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 6214b86e1d00000e524f9e8d + provider = provider.mso + name = acctest_uaxfi + template_name = acctest_l7bup + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214b86e1d00000e524f9e8d/templates/acctest_l7bup/externalEpgs/acctest_vlg27 + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_vlg27 + external_epg_name = acctest_vlg27 + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214b86e1d00000e524f9e8d + selector_ip = + selector_name = + template_name = acctest_l7bup + vrf_name = acctest_vlg27 + vrf_schema_id = 6214b86e1d00000e524f9e8d + vrf_template_name = acctest_l7bup + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_vlg27 + provider = provider.mso + display_name = acctest_vlg27 + layer3_multicast = false + name = acctest_vlg27 + schema_id = 6214b86e1d00000e524f9e8d + template = acctest_l7bup + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 15:48:26 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:48:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (clean up state) +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:48:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:48:26 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:48:26 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:48:26 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:48:26 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:48:26 [DEBUG] 6214b86b1b0000f27afd065d: Beginning Read +2022/02/22 15:48:26 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:26 [DEBUG] Begin Injection +2022/02/22 15:48:26 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:26 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 15:48:26 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 15:48:26 HTTP request PATCH mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:26 [DEBUG] Begin Injection +2022/02/22 15:48:26 HTTP request after injection PATCH mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:26 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:18:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000786e00 0xc000800790} +2022/02/22 15:48:26 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:26 [DEBUG] : Read finished successfully +2022/02/22 15:48:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:18:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c8a000 0xc0000f42c0} +2022/02/22 15:48:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:26 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 15:48:26 [DEBUG] acctest_vlg27: Beginning Destroy +2022/02/22 15:48:26 HTTP request PATCH mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:26 [DEBUG] Begin Injection +2022/02/22 15:48:26 HTTP request after injection PATCH mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:26 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:26 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:18:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000c8aa00 0xc0000f42c0} +2022/02/22 15:48:26 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d?validate=false +2022/02/22 15:48:26 [DEBUG] acctest_vlg27: Destroy finished successfully +2022/02/22 15:48:26 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 15:48:26 [DEBUG] 6214b86e1d00000e524f9e8d: Beginning Destroy +2022/02/22 15:48:26 HTTP request DELETE mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:26 [DEBUG] Begin Injection +2022/02/22 15:48:26 HTTP request after injection DELETE mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:27 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:27 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:18:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000786800 0xc0000f42c0} +2022/02/22 15:48:27 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214b86e1d00000e524f9e8d +2022/02/22 15:48:27 [DEBUG] 6214b86e1d00000e524f9e8d: Destroy finished successfully +2022/02/22 15:48:27 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:27 [DEBUG] New state was assigned lineage "7298047f-419d-99a9-2dcd-2ce063638472" +2022/02/22 15:48:27 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:27 [DEBUG] Begin Injection +2022/02/22 15:48:27 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d +2022/02/22 15:48:27 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:27 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d02040 86 [] false false map[] 0xc000786900 0xc0000f42c0} +2022/02/22 15:48:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b86b1b0000f27afd065d {"code":141,"message":"Resource Not Found: Policy 6214b86b1b0000f27afd065d not found"} +2022/02/22 15:48:27 [DEBUG] Exit from do method +2022/02/22 15:48:27 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:48:27 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:48:27 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:48:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:48:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:48:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:27 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:48:27 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:48:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:27 [DEBUG] : Beginning Read +2022/02/22 15:48:27 HTTP request GET mso/api/v1/tenants +2022/02/22 15:48:27 [DEBUG] Begin Injection +2022/02/22 15:48:27 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:48:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:48:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:48:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:18:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d02ac0 3980 [] false false map[] 0xc000140c00 0xc0000f42c0} +2022/02/22 15:48:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:48:28 [DEBUG] Exit from do method +2022/02/22 15:48:28 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:48:28 [DEBUG] provider has no plugin.Client +2022/02/22 15:48:28 [DEBUG] New state was assigned lineage "03928065-d735-b8f7-4d89-bf435eb984c0" +2022/02/22 15:48:28 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:48:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:48:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:48:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:48:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:48:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:48:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:48:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:48:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:48:28 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:50:42 [DEBUG] Test: Executing step 0 +2022/02/22 15:50:42 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:42 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:50:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:50:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:50:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:50:42 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:50:42 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:50:42 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:50:42 [DEBUG] Test: Executing step 1 +2022/02/22 15:50:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:43 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:50:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:50:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:50:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:50:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:43 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:50:43 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:50:43 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:50:43 [DEBUG] Test: Executing step 2 +2022/02/22 15:50:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:43 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:50:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:50:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:50:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:50:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:43 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:50:43 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:50:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:50:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:50:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:50:43 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:50:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:43 [DEBUG] : Beginning Read +2022/02/22 15:50:43 HTTP request GET mso/api/v1/tenants +2022/02/22 15:50:43 [DEBUG] Begin Injection +2022/02/22 15:50:43 HTTP request POST /login +2022/02/22 15:50:43 HTTP request after injection POST /login +2022/02/22 15:50:43 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:50:45 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:50:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:45 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjY0NDUsImlhdCI6MTY0NTUyNTI0NSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJhNEl0N3lFdEZLMHdweDIyTXdWVmRmVlAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.iUw3AuNCH7xlF-iVqMIXyCTYFMYSONsY6EZIwz0w1tn477P2j2lyREC2IvH86KaLgscOHuEZMHT_BnEQpqYEBnEn-fC1AdQwRHHzfFBTg6svJiT0A1QtJD1Qyks7YWN0GyRzy7g3Rvne3qiuqspfJcXg0n3ZpyTSJ_uiWehnItiuZoqX8vytTenpQGLqQOHoHKfJZQDRwZ616OhgOsvxuqSjM0hd_q0-H77L0eeizJThZLkYH-04UO8bGdITx3u5f_944-bRuXG2VcZhGs0kVgcKiAaAEtH5FybrNoN_OfoHDpBQK5GAqkzTtaG4trpXUs512k73H3zeJWje4FEsFw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0005e2b80 -1 [chunked] false false map[] 0xc000140400 0xc0000f4420} +2022/02/22 15:50:45 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjY0NDUsImlhdCI6MTY0NTUyNTI0NSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJhNEl0N3lFdEZLMHdweDIyTXdWVmRmVlAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.iUw3AuNCH7xlF-iVqMIXyCTYFMYSONsY6EZIwz0w1tn477P2j2lyREC2IvH86KaLgscOHuEZMHT_BnEQpqYEBnEn-fC1AdQwRHHzfFBTg6svJiT0A1QtJD1Qyks7YWN0GyRzy7g3Rvne3qiuqspfJcXg0n3ZpyTSJ_uiWehnItiuZoqX8vytTenpQGLqQOHoHKfJZQDRwZ616OhgOsvxuqSjM0hd_q0-H77L0eeizJThZLkYH-04UO8bGdITx3u5f_944-bRuXG2VcZhGs0kVgcKiAaAEtH5FybrNoN_OfoHDpBQK5GAqkzTtaG4trpXUs512k73H3zeJWje4FEsFw","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjY0NDUsImlhdCI6MTY0NTUyNTI0NSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJhNEl0N3lFdEZLMHdweDIyTXdWVmRmVlAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.iUw3AuNCH7xlF-iVqMIXyCTYFMYSONsY6EZIwz0w1tn477P2j2lyREC2IvH86KaLgscOHuEZMHT_BnEQpqYEBnEn-fC1AdQwRHHzfFBTg6svJiT0A1QtJD1Qyks7YWN0GyRzy7g3Rvne3qiuqspfJcXg0n3ZpyTSJ_uiWehnItiuZoqX8vytTenpQGLqQOHoHKfJZQDRwZ616OhgOsvxuqSjM0hd_q0-H77L0eeizJThZLkYH-04UO8bGdITx3u5f_944-bRuXG2VcZhGs0kVgcKiAaAEtH5FybrNoN_OfoHDpBQK5GAqkzTtaG4trpXUs512k73H3zeJWje4FEsFw"} +2022/02/22 15:50:45 [DEBUG] Exit from do method +2022/02/22 15:50:45 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:50:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:50:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:50:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e2ec0 3980 [] false false map[] 0xc000140300 0xc0000f4420} +2022/02/22 15:50:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:50:45 [DEBUG] Exit from do method +2022/02/22 15:50:45 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:50:45 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:45 [DEBUG] New state was assigned lineage "96a07786-bc0e-4ac4-004e-e7df7d707a68" +2022/02/22 15:50:45 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:50:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:50:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:50:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:50:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:45 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:50:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:45 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:50:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:50:45 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:45 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_fgc8u" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:50:45 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:50:45 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:50:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 15:50:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:50:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:50:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:50:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:50:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:50:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:50:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:45 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:50:45 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:50:45 [DEBUG] : Beginning Create +2022/02/22 15:50:45 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:50:45 [DEBUG] Begin Injection +2022/02/22 15:50:45 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:50:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:50:46 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:50:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e3000 160 [] false false map[] 0xc000140b00 0xc0000f4420} +2022/02/22 15:50:46 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b8fd1b00001a7bfd065e","name":"acctest_fgc8u","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:50:46 [DEBUG] Exit from do method +2022/02/22 15:50:46 [DEBUG] 6214b8fd1b00001a7bfd065e: Creation finished successfully +2022/02/22 15:50:46 [DEBUG] 6214b8fd1b00001a7bfd065e: Beginning Read +2022/02/22 15:50:46 id: 6214b8fd1b00001a7bfd065e +2022/02/22 15:50:46 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:46 [DEBUG] Begin Injection +2022/02/22 15:50:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bf40 160 [] false false map[] 0xc000d4ad00 0xc0000f4420} +2022/02/22 15:50:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e {"id":"6214b8fd1b00001a7bfd065e","name":"acctest_fgc8u","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:50:46 [DEBUG] Exit from do method +2022/02/22 15:50:46 [DEBUG] 6214b8fd1b00001a7bfd065e: Read finished successfully +2022/02/22 15:50:46 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:46 [DEBUG] New state was assigned lineage "294c030c-f119-ad84-b983-e73ae13da21d" +2022/02/22 15:50:46 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:46 [DEBUG] Begin Injection +2022/02/22 15:50:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e080 160 [] false false map[] 0xc000140e00 0xc0000f4420} +2022/02/22 15:50:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e {"id":"6214b8fd1b00001a7bfd065e","name":"acctest_fgc8u","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:50:46 [DEBUG] Exit from do method +2022/02/22 15:50:46 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:50:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:50:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:50:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:50:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:46 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:50:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:50:46 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:46 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:50:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:50:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:50:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:50:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:46 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:50:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:46 [DEBUG] : Beginning Read +2022/02/22 15:50:46 HTTP request GET mso/api/v1/tenants +2022/02/22 15:50:46 [DEBUG] Begin Injection +2022/02/22 15:50:46 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:50:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:50:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:50:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000903f40 3980 [] false false map[] 0xc000140900 0xc0000f4420} +2022/02/22 15:50:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:50:47 [DEBUG] Exit from do method +2022/02/22 15:50:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:50:47 [DEBUG] 6214b8fd1b00001a7bfd065e: Beginning Read +2022/02/22 15:50:47 id: 6214b8fd1b00001a7bfd065e +2022/02/22 15:50:47 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:47 [DEBUG] Begin Injection +2022/02/22 15:50:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e2880 160 [] false false map[] 0xc000d4a500 0xc0000f4420} +2022/02/22 15:50:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e {"id":"6214b8fd1b00001a7bfd065e","name":"acctest_fgc8u","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:50:47 [DEBUG] Exit from do method +2022/02/22 15:50:47 [DEBUG] 6214b8fd1b00001a7bfd065e: Read finished successfully +2022/02/22 15:50:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:47 [DEBUG] New state was assigned lineage "ddf0cf0e-36b4-eef3-37b3-1cb0ba79d372" +2022/02/22 15:50:47 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:50:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:50:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:47 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:50:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:47 [DEBUG] Test: Executing step 3 +2022/02/22 15:50:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:47 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:50:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:50:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:47 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:50:47 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:47 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:50:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:50:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:47 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:50:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:47 [DEBUG] : Beginning Read +2022/02/22 15:50:47 HTTP request GET mso/api/v1/tenants +2022/02/22 15:50:47 [DEBUG] Begin Injection +2022/02/22 15:50:47 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:50:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:50:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:50:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e2e00 3980 [] false false map[] 0xc000140200 0xc0000f4420} +2022/02/22 15:50:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:50:48 [DEBUG] Exit from do method +2022/02/22 15:50:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:50:48 [DEBUG] 6214b8fd1b00001a7bfd065e: Beginning Read +2022/02/22 15:50:48 id: 6214b8fd1b00001a7bfd065e +2022/02/22 15:50:48 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:48 [DEBUG] Begin Injection +2022/02/22 15:50:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000902040 160 [] false false map[] 0xc000258400 0xc0000f4420} +2022/02/22 15:50:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e {"id":"6214b8fd1b00001a7bfd065e","name":"acctest_fgc8u","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:50:48 [DEBUG] Exit from do method +2022/02/22 15:50:48 [DEBUG] 6214b8fd1b00001a7bfd065e: Read finished successfully +2022/02/22 15:50:48 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:48 [DEBUG] New state was assigned lineage "a5194b69-735b-110c-fd8c-767ee1e1acd4" +2022/02/22 15:50:48 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:50:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:50:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:48 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:50:48 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:48 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.154.164" + id: "6214b8fd1b00001a7bfd065e" => "6214b8fd1b00001a7bfd065e" + name: "acctest_fgc8u" => "acctest_fgc8u" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b8fd1b00001a7bfd065e + provider = provider.mso + description = + name = acctest_fgc8u + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:50:48 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:50:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:50:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:50:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:50:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:48 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:50:48 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:50:48 [DEBUG] 6214b8fd1b00001a7bfd065e: Beginning Policy Update +2022/02/22 15:50:48 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg. +2022/02/22 15:50:48 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg. +2022/02/22 15:50:48 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg. +2022/02/22 15:50:48 [DEBUG] New state was assigned lineage "ff77734b-c4ad-82d0-5c6e-05154a79863e" +2022/02/22 15:50:48 [WARN] Test: Executing destroy step +2022/02/22 15:50:48 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:48 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:50:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:50:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:48 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:50:48 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:48 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:50:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:50:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:50:48 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:50:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:48 [DEBUG] : Beginning Read +2022/02/22 15:50:48 HTTP request GET mso/api/v1/tenants +2022/02/22 15:50:48 [DEBUG] Begin Injection +2022/02/22 15:50:48 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:50:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:50:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:50:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b88240 3980 [] false false map[] 0xc000140800 0xc0000f4420} +2022/02/22 15:50:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:50:49 [DEBUG] Exit from do method +2022/02/22 15:50:49 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:50:49 [DEBUG] 6214b8fd1b00001a7bfd065e: Beginning Read +2022/02/22 15:50:49 id: 6214b8fd1b00001a7bfd065e +2022/02/22 15:50:49 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:49 [DEBUG] Begin Injection +2022/02/22 15:50:49 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000942780 160 [] false false map[] 0xc000140d00 0xc0000f4420} +2022/02/22 15:50:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e {"id":"6214b8fd1b00001a7bfd065e","name":"acctest_fgc8u","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:50:49 [DEBUG] Exit from do method +2022/02/22 15:50:49 [DEBUG] 6214b8fd1b00001a7bfd065e: Read finished successfully +2022/02/22 15:50:49 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:49 [DEBUG] New state was assigned lineage "32aa81a9-1186-bd00-43de-f23971c4f245" +2022/02/22 15:50:49 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:50:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:50:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:49 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:50:49 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214b8fd1b00001a7bfd065e" => "" + name: "acctest_fgc8u" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b8fd1b00001a7bfd065e + provider = provider.mso + description = + name = acctest_fgc8u + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:50:49 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:50:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:50:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:49 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:50:49 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:50:49 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:50:49 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:50:49 [DEBUG] 6214b8fd1b00001a7bfd065e: Beginning Read +2022/02/22 15:50:49 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:49 [DEBUG] Begin Injection +2022/02/22 15:50:49 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:49 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:20:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0003cc900 0xc0000f4420} +2022/02/22 15:50:49 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:49 [DEBUG] : Read finished successfully +2022/02/22 15:50:49 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:49 [DEBUG] New state was assigned lineage "59fdbc96-de1c-30e5-1e48-2625c5a95042" +2022/02/22 15:50:49 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:49 [DEBUG] Begin Injection +2022/02/22 15:50:49 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e +2022/02/22 15:50:50 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:49 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e480 86 [] false false map[] 0xc000b4c000 0xc0000f4420} +2022/02/22 15:50:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b8fd1b00001a7bfd065e {"code":141,"message":"Resource Not Found: Policy 6214b8fd1b00001a7bfd065e not found"} +2022/02/22 15:50:50 [DEBUG] Exit from do method +2022/02/22 15:50:50 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:50:50 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:50:50 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:50:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:50:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:50:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:50 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:50:50 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:50:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:50 [DEBUG] : Beginning Read +2022/02/22 15:50:50 HTTP request GET mso/api/v1/tenants +2022/02/22 15:50:50 [DEBUG] Begin Injection +2022/02/22 15:50:50 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:50:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:50:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:50:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:20:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b471c0 3980 [] false false map[] 0xc0009ca500 0xc0000f4420} +2022/02/22 15:50:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:50:50 [DEBUG] Exit from do method +2022/02/22 15:50:50 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:50:50 [DEBUG] provider has no plugin.Client +2022/02/22 15:50:50 [DEBUG] New state was assigned lineage "cac254e5-29b6-f87a-438f-634d100c8a9f" +2022/02/22 15:50:50 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:50:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:50:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:50:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:50:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:50:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:50:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:50:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:50:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:50:50 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:51:53 [DEBUG] Test: Executing step 0 +2022/02/22 15:51:53 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:53 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:51:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:51:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:51:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:51:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:51:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:53 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:51:53 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:51:53 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:51:53 [DEBUG] Test: Executing step 1 +2022/02/22 15:51:53 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:53 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:51:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:51:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:51:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:51:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:51:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:53 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:51:53 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:51:53 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:51:53 [DEBUG] Test: Executing step 2 +2022/02/22 15:51:53 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:53 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:51:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:51:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:51:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:51:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:51:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:53 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:51:54 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:54 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:51:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:51:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:51:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:54 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:51:54 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:51:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:54 [DEBUG] : Beginning Read +2022/02/22 15:51:54 HTTP request GET mso/api/v1/tenants +2022/02/22 15:51:54 [DEBUG] Begin Injection +2022/02/22 15:51:54 HTTP request POST /login +2022/02/22 15:51:54 HTTP request after injection POST /login +2022/02/22 15:51:54 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:51:55 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:51:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:55 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjY1MTUsImlhdCI6MTY0NTUyNTMxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJEUmxJQjF2ZFM2QnphZWJPWUk1Mj16QkMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Uk4yoZDrIU-Q5H2BFIcaw2f6leY4vWJgG63InLYHJtSk_RiYET-z3P0WQ3a---jDHwlVM2MZT3co8unc3oYsdZiLu3A4EYbkeEmz2au-qpffoGriJCQKhXkLVlcE3drqQ37aYTi6ZwDXjp7xFtLnWDd-waaIMhftlkiOlCl2pX4GpPqr_wFkKgbfJ9hP4pdqhAFBZjzGw_AsiZ4qsKsDeVneSfLDhdEyB39SyQc9FedgzCoKtOcO4qbPLjfeas_5GW62mkwZNQ0NVl7TbHmSy5qWcWhEGNHECuC6fa5nmSvJZ4R0YxQnCR7EFbXN_mEK2w4bFCN_clZ497WmF6dr9Q; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0004a6f00 -1 [chunked] false false map[] 0xc00032e200 0xc000500790} +2022/02/22 15:51:55 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjY1MTUsImlhdCI6MTY0NTUyNTMxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJEUmxJQjF2ZFM2QnphZWJPWUk1Mj16QkMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Uk4yoZDrIU-Q5H2BFIcaw2f6leY4vWJgG63InLYHJtSk_RiYET-z3P0WQ3a---jDHwlVM2MZT3co8unc3oYsdZiLu3A4EYbkeEmz2au-qpffoGriJCQKhXkLVlcE3drqQ37aYTi6ZwDXjp7xFtLnWDd-waaIMhftlkiOlCl2pX4GpPqr_wFkKgbfJ9hP4pdqhAFBZjzGw_AsiZ4qsKsDeVneSfLDhdEyB39SyQc9FedgzCoKtOcO4qbPLjfeas_5GW62mkwZNQ0NVl7TbHmSy5qWcWhEGNHECuC6fa5nmSvJZ4R0YxQnCR7EFbXN_mEK2w4bFCN_clZ497WmF6dr9Q","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjY1MTUsImlhdCI6MTY0NTUyNTMxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJEUmxJQjF2ZFM2QnphZWJPWUk1Mj16QkMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Uk4yoZDrIU-Q5H2BFIcaw2f6leY4vWJgG63InLYHJtSk_RiYET-z3P0WQ3a---jDHwlVM2MZT3co8unc3oYsdZiLu3A4EYbkeEmz2au-qpffoGriJCQKhXkLVlcE3drqQ37aYTi6ZwDXjp7xFtLnWDd-waaIMhftlkiOlCl2pX4GpPqr_wFkKgbfJ9hP4pdqhAFBZjzGw_AsiZ4qsKsDeVneSfLDhdEyB39SyQc9FedgzCoKtOcO4qbPLjfeas_5GW62mkwZNQ0NVl7TbHmSy5qWcWhEGNHECuC6fa5nmSvJZ4R0YxQnCR7EFbXN_mEK2w4bFCN_clZ497WmF6dr9Q"} +2022/02/22 15:51:55 [DEBUG] Exit from do method +2022/02/22 15:51:55 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:51:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:51:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:51:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004a7140 3980 [] false false map[] 0xc00032e100 0xc000500790} +2022/02/22 15:51:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:51:56 [DEBUG] Exit from do method +2022/02/22 15:51:56 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:51:56 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:56 [DEBUG] New state was assigned lineage "15d89fde-c247-72e3-77af-01c9bbb3fb77" +2022/02/22 15:51:56 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:51:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:51:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:51:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:51:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:51:56 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:51:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:56 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:51:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:51:56 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:56 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_2b8q6" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:51:56 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:51:56 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:51:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:51:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:51:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:51:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:51:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:51:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:51:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:51:56 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:51:56 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:51:56 [DEBUG] : Beginning Create +2022/02/22 15:51:56 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:51:56 [DEBUG] Begin Injection +2022/02/22 15:51:56 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:51:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:51:56 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:51:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006ac0c0 160 [] false false map[] 0xc00086ce00 0xc000500790} +2022/02/22 15:51:56 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b9441b00002a7bfd065f","name":"acctest_2b8q6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:51:56 [DEBUG] Exit from do method +2022/02/22 15:51:56 [DEBUG] 6214b9441b00002a7bfd065f: Creation finished successfully +2022/02/22 15:51:56 [DEBUG] 6214b9441b00002a7bfd065f: Beginning Read +2022/02/22 15:51:56 id: 6214b9441b00002a7bfd065f +2022/02/22 15:51:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:56 [DEBUG] Begin Injection +2022/02/22 15:51:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002600c0 160 [] false false map[] 0xc0004ac100 0xc000500790} +2022/02/22 15:51:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f {"id":"6214b9441b00002a7bfd065f","name":"acctest_2b8q6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:51:56 [DEBUG] Exit from do method +2022/02/22 15:51:56 [DEBUG] 6214b9441b00002a7bfd065f: Read finished successfully +2022/02/22 15:51:56 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:56 [DEBUG] New state was assigned lineage "42af6240-1fc1-91f0-2892-77db6e2f46e4" +2022/02/22 15:51:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:56 [DEBUG] Begin Injection +2022/02/22 15:51:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004a6040 160 [] false false map[] 0xc00086d000 0xc000500790} +2022/02/22 15:51:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f {"id":"6214b9441b00002a7bfd065f","name":"acctest_2b8q6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:51:57 [DEBUG] Exit from do method +2022/02/22 15:51:57 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:51:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:51:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:51:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:57 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:51:57 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:57 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:51:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:51:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:51:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:57 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:57 [DEBUG] : Beginning Read +2022/02/22 15:51:57 HTTP request GET mso/api/v1/tenants +2022/02/22 15:51:57 [DEBUG] Begin Injection +2022/02/22 15:51:57 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:51:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:51:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:51:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e4040 3980 [] false false map[] 0xc0004ac500 0xc000500790} +2022/02/22 15:51:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:51:57 [DEBUG] Exit from do method +2022/02/22 15:51:57 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:51:57 [DEBUG] 6214b9441b00002a7bfd065f: Beginning Read +2022/02/22 15:51:57 id: 6214b9441b00002a7bfd065f +2022/02/22 15:51:57 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:57 [DEBUG] Begin Injection +2022/02/22 15:51:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004240c0 160 [] false false map[] 0xc00000e400 0xc000500790} +2022/02/22 15:51:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f {"id":"6214b9441b00002a7bfd065f","name":"acctest_2b8q6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:51:57 [DEBUG] Exit from do method +2022/02/22 15:51:57 [DEBUG] 6214b9441b00002a7bfd065f: Read finished successfully +2022/02/22 15:51:57 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:57 [DEBUG] New state was assigned lineage "16f3b63b-bc6b-d0b0-59c4-ac584cf1cdff" +2022/02/22 15:51:57 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:51:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:51:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:51:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:57 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:51:57 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:57 [DEBUG] Test: Executing step 3 +2022/02/22 15:51:57 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:51:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:51:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:51:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:57 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:51:57 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:57 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:51:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:51:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:51:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:51:57 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:51:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:58 [DEBUG] : Beginning Read +2022/02/22 15:51:58 HTTP request GET mso/api/v1/tenants +2022/02/22 15:51:58 [DEBUG] Begin Injection +2022/02/22 15:51:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:51:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:51:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:51:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b9e1c0 3980 [] false false map[] 0xc0004ac700 0xc000500790} +2022/02/22 15:51:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:51:58 [DEBUG] Exit from do method +2022/02/22 15:51:58 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:51:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:51:58 [DEBUG] 6214b9441b00002a7bfd065f: Beginning Read +2022/02/22 15:51:58 id: 6214b9441b00002a7bfd065f +2022/02/22 15:51:58 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:58 [DEBUG] Begin Injection +2022/02/22 15:51:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000260180 160 [] false false map[] 0xc0004ac800 0xc000500790} +2022/02/22 15:51:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f {"id":"6214b9441b00002a7bfd065f","name":"acctest_2b8q6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:51:58 [DEBUG] Exit from do method +2022/02/22 15:51:58 [DEBUG] 6214b9441b00002a7bfd065f: Read finished successfully +2022/02/22 15:51:58 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:58 [DEBUG] New state was assigned lineage "314fd3f0-0438-85bd-6452-74a29c861c7f" +2022/02/22 15:51:58 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:51:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:51:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:51:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:51:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:51:58 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:51:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:51:58 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:58 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.132.84" + id: "6214b9441b00002a7bfd065f" => "6214b9441b00002a7bfd065f" + name: "acctest_2b8q6" => "acctest_2b8q6" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b9441b00002a7bfd065f + provider = provider.mso + description = + name = acctest_2b8q6 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:51:58 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:51:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:51:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:51:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:51:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:51:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:51:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:51:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:51:58 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:51:58 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:51:58 [DEBUG] 6214b9441b00002a7bfd065f: Beginning Policy Update +2022/02/22 15:51:58 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:58 [DEBUG] Begin Injection +2022/02/22 15:51:58 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:59 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[276] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000948280 276 [] false false map[] 0xc0009aa500 0xc000500790} +2022/02/22 15:51:59 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f {"id":"6214b9441b00002a7bfd065f","name":"acctest_2b8q6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.132.84","epgRef":"","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:51:59 [DEBUG] Exit from do method +2022/02/22 15:51:59 [DEBUG] Policy Update finished successfully: 6214b9441b00002a7bfd065f +2022/02/22 15:51:59 [DEBUG] 6214b9441b00002a7bfd065f: Beginning Read +2022/02/22 15:51:59 id: 6214b9441b00002a7bfd065f +2022/02/22 15:51:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:59 [DEBUG] Begin Injection +2022/02/22 15:51:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[276] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000108300 276 [] false false map[] 0xc0009aa000 0xc000500790} +2022/02/22 15:51:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f {"id":"6214b9441b00002a7bfd065f","name":"acctest_2b8q6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.132.84","epgRef":"","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:51:59 [DEBUG] Exit from do method +2022/02/22 15:51:59 [DEBUG] 6214b9441b00002a7bfd065f: Read finished successfully +2022/02/22 15:51:59 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 15:51:59 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:59 [DEBUG] New state was assigned lineage "76469600-f418-ecc2-0ebe-42e45dadf7aa" +2022/02/22 15:51:59 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:51:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:51:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:51:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:51:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:51:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:59 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:51:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:51:59 [DEBUG] provider has no plugin.Client +2022/02/22 15:51:59 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:51:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:51:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:51:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:51:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:51:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:51:59 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:51:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:51:59 [DEBUG] : Beginning Read +2022/02/22 15:51:59 HTTP request GET mso/api/v1/tenants +2022/02/22 15:51:59 [DEBUG] Begin Injection +2022/02/22 15:51:59 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:51:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:51:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:51:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000260140 3980 [] false false map[] 0xc000704300 0xc000500790} +2022/02/22 15:51:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:51:59 [DEBUG] Exit from do method +2022/02/22 15:51:59 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:51:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:51:59 [DEBUG] 6214b9441b00002a7bfd065f: Beginning Read +2022/02/22 15:51:59 id: 6214b9441b00002a7bfd065f +2022/02/22 15:51:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:59 [DEBUG] Begin Injection +2022/02/22 15:51:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:51:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[276] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:21:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000949140 276 [] false false map[] 0xc0004ac600 0xc000500790} +2022/02/22 15:52:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f {"id":"6214b9441b00002a7bfd065f","name":"acctest_2b8q6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.132.84","epgRef":"","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:52:00 [DEBUG] Exit from do method +2022/02/22 15:52:00 [DEBUG] 6214b9441b00002a7bfd065f: Read finished successfully +2022/02/22 15:52:00 [DEBUG] provider has no plugin.Client +2022/02/22 15:52:00 [DEBUG] New state was assigned lineage "7bbd8793-7e69-5cf3-4632-9349fc4e5a84" +2022/02/22 15:52:00 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:52:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:52:00 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:52:00 [DEBUG] provider has no plugin.Client +2022/02/22 15:52:00 [WARN] Test: Executing destroy step +2022/02/22 15:52:00 [DEBUG] provider has no plugin.Client +2022/02/22 15:52:00 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:52:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:52:00 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:52:00 [DEBUG] provider has no plugin.Client +2022/02/22 15:52:00 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:52:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:52:00 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:52:00 [DEBUG] : Beginning Read +2022/02/22 15:52:00 HTTP request GET mso/api/v1/tenants +2022/02/22 15:52:00 [DEBUG] Begin Injection +2022/02/22 15:52:00 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:52:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:52:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:52:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:22:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e5340 3980 [] false false map[] 0xc0004ac700 0xc000500790} +2022/02/22 15:52:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:52:00 [DEBUG] Exit from do method +2022/02/22 15:52:00 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:52:00 [DEBUG] 6214b9441b00002a7bfd065f: Beginning Read +2022/02/22 15:52:00 id: 6214b9441b00002a7bfd065f +2022/02/22 15:52:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:00 [DEBUG] Begin Injection +2022/02/22 15:52:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[276] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:22:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000109b80 276 [] false false map[] 0xc000ada700 0xc000500790} +2022/02/22 15:52:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f {"id":"6214b9441b00002a7bfd065f","name":"acctest_2b8q6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.132.84","epgRef":"","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 15:52:00 [DEBUG] Exit from do method +2022/02/22 15:52:00 [DEBUG] 6214b9441b00002a7bfd065f: Read finished successfully +2022/02/22 15:52:00 [DEBUG] provider has no plugin.Client +2022/02/22 15:52:00 [DEBUG] New state was assigned lineage "dc0485ed-a43f-211b-5dbf-ba43f4f123d1" +2022/02/22 15:52:00 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:52:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:52:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:52:00 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:52:00 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.132.84" => "" + dhcp_relay_policy_provider.0.epg: "" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214b9441b00002a7bfd065f" => "" + name: "acctest_2b8q6" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b9441b00002a7bfd065f + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.132.84 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_2b8q6 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:52:00 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:52:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:52:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:52:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:52:00 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:52:00 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:52:00 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:52:00 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:52:00 [DEBUG] 6214b9441b00002a7bfd065f: Beginning Read +2022/02/22 15:52:00 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:00 [DEBUG] Begin Injection +2022/02/22 15:52:00 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:01 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:01 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:22:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0004ad100 0xc000500790} +2022/02/22 15:52:01 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:01 [DEBUG] : Read finished successfully +2022/02/22 15:52:01 [DEBUG] provider has no plugin.Client +2022/02/22 15:52:01 [DEBUG] New state was assigned lineage "912508f3-961c-3cc6-81d1-b9724b3d70c8" +2022/02/22 15:52:01 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:01 [DEBUG] Begin Injection +2022/02/22 15:52:01 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f +2022/02/22 15:52:01 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:22:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b9e2c0 86 [] false false map[] 0xc000ada100 0xc000500790} +2022/02/22 15:52:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9441b00002a7bfd065f {"code":141,"message":"Resource Not Found: Policy 6214b9441b00002a7bfd065f not found"} +2022/02/22 15:52:01 [DEBUG] Exit from do method +2022/02/22 15:52:01 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:52:01 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:52:01 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:52:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:52:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:52:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:52:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:52:01 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:52:01 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:52:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:52:01 [DEBUG] : Beginning Read +2022/02/22 15:52:01 HTTP request GET mso/api/v1/tenants +2022/02/22 15:52:01 [DEBUG] Begin Injection +2022/02/22 15:52:01 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:52:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:52:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:52:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:22:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004a7a00 3980 [] false false map[] 0xc0004ac800 0xc000500790} +2022/02/22 15:52:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:52:02 [DEBUG] Exit from do method +2022/02/22 15:52:02 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:52:02 [DEBUG] provider has no plugin.Client +2022/02/22 15:52:02 [DEBUG] New state was assigned lineage "150c8940-6f5e-5f34-e3ca-7108026efece" +2022/02/22 15:52:02 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:52:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:52:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:52:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:52:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:52:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:52:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:52:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:52:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:52:02 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:54:11 [DEBUG] Test: Executing step 0 +2022/02/22 15:54:11 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:11 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:54:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:54:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:11 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:54:11 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:54:11 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 15:54:11 [DEBUG] Test: Executing step 1 +2022/02/22 15:54:11 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:11 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:54:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:54:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:54:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:11 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:54:11 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:54:11 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 15:54:11 [DEBUG] Test: Executing step 2 +2022/02/22 15:54:11 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:11 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:54:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:54:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:54:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:11 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:54:11 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:11 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:54:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:54:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:54:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:11 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:54:11 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:54:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:11 [DEBUG] : Beginning Read +2022/02/22 15:54:11 HTTP request GET mso/api/v1/tenants +2022/02/22 15:54:11 [DEBUG] Begin Injection +2022/02/22 15:54:11 HTTP request POST /login +2022/02/22 15:54:11 HTTP request after injection POST /login +2022/02/22 15:54:11 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 15:54:13 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 15:54:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:13 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjY2NTMsImlhdCI6MTY0NTUyNTQ1MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJjajBxQkIwWmhwdk9zQnAzZlo2UHlrWWYiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.O4BDOtgO5jpL-KQ7XPy6eFF9d-mBikmXN6b3pz-QTQ7u5MxufKJfT5aynRwVFeQs3L2Cjpmq7JA8UsBb5jMo1SWuxpUnv5UqT1xQxtygM5Amw09hLiRCRbo1fsJ-z5VijyU0Acwg08MdF4hxBAvNryt7d2joPDu4i9qx41KwZlD0wfmxPfAC_Dezvn0jUMaeV40r5AdbcRi0Ihrc8ZtvfQVj5NA0zC5te9LHFtKha4VqRsJDS_c0pvR7ApK1Cwto_896tswfrjruQCupkxaGLtmfvKOimgJCIzBQtOKIW2CXCYNI9zuSP6_FO0c7UHRcYgjZ6r0Nhu5axZZpeVJElQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0005e0300 -1 [chunked] false false map[] 0xc0007f8200 0xc0006a2160} +2022/02/22 15:54:13 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjY2NTMsImlhdCI6MTY0NTUyNTQ1MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJjajBxQkIwWmhwdk9zQnAzZlo2UHlrWWYiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.O4BDOtgO5jpL-KQ7XPy6eFF9d-mBikmXN6b3pz-QTQ7u5MxufKJfT5aynRwVFeQs3L2Cjpmq7JA8UsBb5jMo1SWuxpUnv5UqT1xQxtygM5Amw09hLiRCRbo1fsJ-z5VijyU0Acwg08MdF4hxBAvNryt7d2joPDu4i9qx41KwZlD0wfmxPfAC_Dezvn0jUMaeV40r5AdbcRi0Ihrc8ZtvfQVj5NA0zC5te9LHFtKha4VqRsJDS_c0pvR7ApK1Cwto_896tswfrjruQCupkxaGLtmfvKOimgJCIzBQtOKIW2CXCYNI9zuSP6_FO0c7UHRcYgjZ6r0Nhu5axZZpeVJElQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjY2NTMsImlhdCI6MTY0NTUyNTQ1MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJjajBxQkIwWmhwdk9zQnAzZlo2UHlrWWYiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.O4BDOtgO5jpL-KQ7XPy6eFF9d-mBikmXN6b3pz-QTQ7u5MxufKJfT5aynRwVFeQs3L2Cjpmq7JA8UsBb5jMo1SWuxpUnv5UqT1xQxtygM5Amw09hLiRCRbo1fsJ-z5VijyU0Acwg08MdF4hxBAvNryt7d2joPDu4i9qx41KwZlD0wfmxPfAC_Dezvn0jUMaeV40r5AdbcRi0Ihrc8ZtvfQVj5NA0zC5te9LHFtKha4VqRsJDS_c0pvR7ApK1Cwto_896tswfrjruQCupkxaGLtmfvKOimgJCIzBQtOKIW2CXCYNI9zuSP6_FO0c7UHRcYgjZ6r0Nhu5axZZpeVJElQ"} +2022/02/22 15:54:13 [DEBUG] Exit from do method +2022/02/22 15:54:13 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:54:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:54:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:54:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003fe340 3980 [] false false map[] 0xc0007f8100 0xc0006a2160} +2022/02/22 15:54:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:54:13 [DEBUG] Exit from do method +2022/02/22 15:54:13 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:54:13 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:13 [DEBUG] New state was assigned lineage "e4a3cc7f-dbd3-581a-d95d-baa2d801acc7" +2022/02/22 15:54:13 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:54:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:54:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:54:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:54:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:13 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:54:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:13 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:54:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:54:13 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:13 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_074gv" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 15:54:13 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:54:13 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 15:54:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:54:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:54:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:54:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:54:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:54:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:54:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:54:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:13 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:54:13 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 15:54:13 [DEBUG] : Beginning Create +2022/02/22 15:54:13 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:54:13 [DEBUG] Begin Injection +2022/02/22 15:54:13 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 15:54:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:54:14 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 15:54:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019f5c0 160 [] false false map[] 0xc00077c600 0xc0006a2160} +2022/02/22 15:54:14 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214b9cd1b0000467bfd0660","name":"acctest_074gv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:54:14 [DEBUG] Exit from do method +2022/02/22 15:54:14 [DEBUG] 6214b9cd1b0000467bfd0660: Creation finished successfully +2022/02/22 15:54:14 [DEBUG] 6214b9cd1b0000467bfd0660: Beginning Read +2022/02/22 15:54:14 id: 6214b9cd1b0000467bfd0660 +2022/02/22 15:54:14 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:14 [DEBUG] Begin Injection +2022/02/22 15:54:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000506100 160 [] false false map[] 0xc00077c700 0xc0006a2160} +2022/02/22 15:54:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 {"id":"6214b9cd1b0000467bfd0660","name":"acctest_074gv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:54:14 [DEBUG] Exit from do method +2022/02/22 15:54:14 [DEBUG] 6214b9cd1b0000467bfd0660: Read finished successfully +2022/02/22 15:54:14 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:14 [DEBUG] New state was assigned lineage "2a6edf47-7524-fba1-b325-727a78faac2b" +2022/02/22 15:54:14 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:14 [DEBUG] Begin Injection +2022/02/22 15:54:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e0240 160 [] false false map[] 0xc00048a100 0xc0006a2160} +2022/02/22 15:54:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 {"id":"6214b9cd1b0000467bfd0660","name":"acctest_074gv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:54:14 [DEBUG] Exit from do method +2022/02/22 15:54:14 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:54:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:54:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:54:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:54:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:14 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:54:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:54:14 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:14 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:54:14 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:14 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:54:14 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:54:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:14 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:14 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:54:14 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:54:14 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:14 [DEBUG] : Beginning Read +2022/02/22 15:54:14 HTTP request GET mso/api/v1/tenants +2022/02/22 15:54:14 [DEBUG] Begin Injection +2022/02/22 15:54:14 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:54:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:54:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:54:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ae80 3980 [] false false map[] 0xc00048a700 0xc0006a2160} +2022/02/22 15:54:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:54:15 [DEBUG] Exit from do method +2022/02/22 15:54:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:54:15 [DEBUG] 6214b9cd1b0000467bfd0660: Beginning Read +2022/02/22 15:54:15 id: 6214b9cd1b0000467bfd0660 +2022/02/22 15:54:15 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:15 [DEBUG] Begin Injection +2022/02/22 15:54:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c37840 160 [] false false map[] 0xc00048a900 0xc0006a2160} +2022/02/22 15:54:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 {"id":"6214b9cd1b0000467bfd0660","name":"acctest_074gv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:54:15 [DEBUG] Exit from do method +2022/02/22 15:54:15 [DEBUG] 6214b9cd1b0000467bfd0660: Read finished successfully +2022/02/22 15:54:15 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:15 [DEBUG] New state was assigned lineage "2bb5e0f2-472f-3150-efeb-d23210b684cb" +2022/02/22 15:54:15 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:54:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:54:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:15 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:54:15 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:15 [DEBUG] Test: Executing step 3 +2022/02/22 15:54:15 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:54:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:54:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:15 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:54:15 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:15 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:54:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:54:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:15 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:54:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:15 [DEBUG] : Beginning Read +2022/02/22 15:54:15 HTTP request GET mso/api/v1/tenants +2022/02/22 15:54:15 [DEBUG] Begin Injection +2022/02/22 15:54:15 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:54:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:54:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:54:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000206bc0 3980 [] false false map[] 0xc0008d0200 0xc0006a2160} +2022/02/22 15:54:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:54:16 [DEBUG] Exit from do method +2022/02/22 15:54:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:54:16 [DEBUG] 6214b9cd1b0000467bfd0660: Beginning Read +2022/02/22 15:54:16 id: 6214b9cd1b0000467bfd0660 +2022/02/22 15:54:16 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:16 [DEBUG] Begin Injection +2022/02/22 15:54:16 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003fe340 160 [] false false map[] 0xc0008d0600 0xc0006a2160} +2022/02/22 15:54:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 {"id":"6214b9cd1b0000467bfd0660","name":"acctest_074gv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:54:16 [DEBUG] Exit from do method +2022/02/22 15:54:16 [DEBUG] 6214b9cd1b0000467bfd0660: Read finished successfully +2022/02/22 15:54:16 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:16 [DEBUG] New state was assigned lineage "36161967-2d64-a49e-5140-cf3472dfdcff" +2022/02/22 15:54:16 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 15:54:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:54:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:16 [DEBUG] Starting graph walk: walkPlan +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:54:16 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:16 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.94.198" + id: "6214b9cd1b0000467bfd0660" => "6214b9cd1b0000467bfd0660" + name: "acctest_074gv" => "acctest_074gv" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b9cd1b0000467bfd0660 + provider = provider.mso + description = + name = acctest_074gv + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:54:16 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:54:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:54:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:54:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:16 [DEBUG] Starting graph walk: walkApply +2022/02/22 15:54:16 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 15:54:16 [DEBUG] 6214b9cd1b0000467bfd0660: Beginning Policy Update +2022/02/22 15:54:16 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg. +2022/02/22 15:54:16 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg. +2022/02/22 15:54:16 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg. +2022/02/22 15:54:16 [DEBUG] New state was assigned lineage "0f1eab1a-59e7-6f7b-e075-51407306b11e" +2022/02/22 15:54:16 [WARN] Test: Executing destroy step +2022/02/22 15:54:16 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:16 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 15:54:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:54:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:54:16 [DEBUG] Starting graph walk: walkValidate +2022/02/22 15:54:16 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:16 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:54:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:54:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:16 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:54:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:16 [DEBUG] : Beginning Read +2022/02/22 15:54:16 HTTP request GET mso/api/v1/tenants +2022/02/22 15:54:16 [DEBUG] Begin Injection +2022/02/22 15:54:16 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:54:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:54:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:54:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ca0d80 3980 [] false false map[] 0xc000208400 0xc0006a2160} +2022/02/22 15:54:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:54:17 [DEBUG] Exit from do method +2022/02/22 15:54:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 15:54:17 [DEBUG] 6214b9cd1b0000467bfd0660: Beginning Read +2022/02/22 15:54:17 id: 6214b9cd1b0000467bfd0660 +2022/02/22 15:54:17 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:17 [DEBUG] Begin Injection +2022/02/22 15:54:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e1440 160 [] false false map[] 0xc000812600 0xc0006a2160} +2022/02/22 15:54:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 {"id":"6214b9cd1b0000467bfd0660","name":"acctest_074gv","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 15:54:17 [DEBUG] Exit from do method +2022/02/22 15:54:17 [DEBUG] 6214b9cd1b0000467bfd0660: Read finished successfully +2022/02/22 15:54:17 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:17 [DEBUG] New state was assigned lineage "04793a01-bb23-d8c9-fda8-47a269e4f1c4" +2022/02/22 15:54:17 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:54:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:54:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:17 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:54:17 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214b9cd1b0000467bfd0660" => "" + name: "acctest_074gv" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214b9cd1b0000467bfd0660 + provider = provider.mso + description = + name = acctest_074gv + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 15:54:17 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 15:54:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:54:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:54:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:17 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 15:54:17 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 15:54:17 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 15:54:17 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 15:54:17 [DEBUG] 6214b9cd1b0000467bfd0660: Beginning Read +2022/02/22 15:54:17 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:17 [DEBUG] Begin Injection +2022/02/22 15:54:17 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:17 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:17 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:24:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00048a900 0xc0006a2160} +2022/02/22 15:54:17 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:17 [DEBUG] : Read finished successfully +2022/02/22 15:54:17 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:17 [DEBUG] New state was assigned lineage "742707e5-ddd1-4882-e0f9-838f28bdcce4" +2022/02/22 15:54:17 HTTP request GET mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:17 [DEBUG] Begin Injection +2022/02/22 15:54:17 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 +2022/02/22 15:54:18 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:17 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004ec240 86 [] false false map[] 0xc000812100 0xc0006a2160} +2022/02/22 15:54:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214b9cd1b0000467bfd0660 {"code":141,"message":"Resource Not Found: Policy 6214b9cd1b0000467bfd0660 not found"} +2022/02/22 15:54:18 [DEBUG] Exit from do method +2022/02/22 15:54:18 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:54:18 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 15:54:18 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 15:54:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:54:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 15:54:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:18 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 15:54:18 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 15:54:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:18 [DEBUG] : Beginning Read +2022/02/22 15:54:18 HTTP request GET mso/api/v1/tenants +2022/02/22 15:54:18 [DEBUG] Begin Injection +2022/02/22 15:54:18 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 15:54:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:54:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 15:54:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:24:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004ec040 3980 [] false false map[] 0xc000be4300 0xc0006a2160} +2022/02/22 15:54:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 15:54:18 [DEBUG] Exit from do method +2022/02/22 15:54:18 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 15:54:18 [DEBUG] provider has no plugin.Client +2022/02/22 15:54:18 [DEBUG] New state was assigned lineage "6b6b35d8-292a-f1ab-1ef9-d665e9e50e2a" +2022/02/22 15:54:18 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 15:54:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:54:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 15:54:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 15:54:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 15:54:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 15:54:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 15:54:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 15:54:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 15:54:18 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:03:24 [DEBUG] Test: Executing step 0 +2022/02/22 16:03:24 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:03:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:03:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:03:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:24 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:03:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 16:03:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 16:03:24 [DEBUG] Test: Executing step 1 +2022/02/22 16:03:24 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:03:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:03:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:03:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:24 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:03:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 16:03:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 16:03:24 [DEBUG] Test: Executing step 2 +2022/02/22 16:03:24 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:03:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:03:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:03:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:24 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:03:24 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:24 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:03:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:03:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:03:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:24 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:03:24 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:03:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:24 [DEBUG] : Beginning Read +2022/02/22 16:03:24 HTTP request GET mso/api/v1/tenants +2022/02/22 16:03:24 [DEBUG] Begin Injection +2022/02/22 16:03:24 HTTP request POST /login +2022/02/22 16:03:24 HTTP request after injection POST /login +2022/02/22 16:03:24 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 16:03:26 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 16:03:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:26 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjcyMDYsImlhdCI6MTY0NTUyNjAwNiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJXUFRiNT1IdWVJMzJiTD1yY1VPcldDQnAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.dtAxjcXpTUJW_tAsxNyQ1nidFOHktFzq1cvyeHFBQGGkD8wyYC50GILlpnmbhZhJMxzjpUZtd_H1Ha84hzmO9oSzV9J0D2bSCcbfLxFallS8nZlJfKtxovzqdPyGtPpPQ9LInxccDB94lqQ4-4PApHWYmN0Ib7If3ND40JiMQXrwf_-n1yQvlNLoDJodD2OmboBqTthXD28GRzXwZlEWQR4qUvHNjC7HowwLFj5pEUVprxj-rJGdjUQ70IXZoAR0e9_3DqYC_TL3cUE4ex7SDunkHHUliogbPvSzBBB7E4TZ7NdY-YeAYVasFsxuWDl09MhdFPxvw8Jsd7fAUHa1Dw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0003e1200 -1 [chunked] false false map[] 0xc000a68600 0xc0001a0790} +2022/02/22 16:03:26 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjcyMDYsImlhdCI6MTY0NTUyNjAwNiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJXUFRiNT1IdWVJMzJiTD1yY1VPcldDQnAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.dtAxjcXpTUJW_tAsxNyQ1nidFOHktFzq1cvyeHFBQGGkD8wyYC50GILlpnmbhZhJMxzjpUZtd_H1Ha84hzmO9oSzV9J0D2bSCcbfLxFallS8nZlJfKtxovzqdPyGtPpPQ9LInxccDB94lqQ4-4PApHWYmN0Ib7If3ND40JiMQXrwf_-n1yQvlNLoDJodD2OmboBqTthXD28GRzXwZlEWQR4qUvHNjC7HowwLFj5pEUVprxj-rJGdjUQ70IXZoAR0e9_3DqYC_TL3cUE4ex7SDunkHHUliogbPvSzBBB7E4TZ7NdY-YeAYVasFsxuWDl09MhdFPxvw8Jsd7fAUHa1Dw","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"app-user\",\"ReadPriv\"],[\"admin\",\"WritePriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjcyMDYsImlhdCI6MTY0NTUyNjAwNiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJXUFRiNT1IdWVJMzJiTD1yY1VPcldDQnAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.dtAxjcXpTUJW_tAsxNyQ1nidFOHktFzq1cvyeHFBQGGkD8wyYC50GILlpnmbhZhJMxzjpUZtd_H1Ha84hzmO9oSzV9J0D2bSCcbfLxFallS8nZlJfKtxovzqdPyGtPpPQ9LInxccDB94lqQ4-4PApHWYmN0Ib7If3ND40JiMQXrwf_-n1yQvlNLoDJodD2OmboBqTthXD28GRzXwZlEWQR4qUvHNjC7HowwLFj5pEUVprxj-rJGdjUQ70IXZoAR0e9_3DqYC_TL3cUE4ex7SDunkHHUliogbPvSzBBB7E4TZ7NdY-YeAYVasFsxuWDl09MhdFPxvw8Jsd7fAUHa1Dw"} +2022/02/22 16:03:26 [DEBUG] Exit from do method +2022/02/22 16:03:26 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:03:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:03:26 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:03:26 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:26 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00062b6c0 3980 [] false false map[] 0xc000a68500 0xc0001a0790} +2022/02/22 16:03:26 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:03:26 [DEBUG] Exit from do method +2022/02/22 16:03:26 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:03:26 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:26 [DEBUG] New state was assigned lineage "4078816d-bfd1-df3d-b76f-9abeea68d325" +2022/02/22 16:03:26 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:03:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:03:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:03:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:03:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:03:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:26 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:03:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:26 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:03:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:03:26 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:26 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_s2m1l" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 16:03:26 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:03:26 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:03:26 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 16:03:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:03:26 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:03:26 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:03:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:03:26 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:03:26 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:03:26 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:26 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:03:26 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 16:03:26 [DEBUG] : Beginning Create +2022/02/22 16:03:26 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:03:26 [DEBUG] Begin Injection +2022/02/22 16:03:26 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:03:26 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:03:27 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:03:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e0680 160 [] false false map[] 0xc0009ac400 0xc0001a0790} +2022/02/22 16:03:27 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214bbf71b0000ab7bfd0661","name":"acctest_s2m1l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:03:27 [DEBUG] Exit from do method +2022/02/22 16:03:27 [DEBUG] 6214bbf71b0000ab7bfd0661: Creation finished successfully +2022/02/22 16:03:27 [DEBUG] 6214bbf71b0000ab7bfd0661: Beginning Read +2022/02/22 16:03:27 id: 6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:27 HTTP request GET mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:27 [DEBUG] Begin Injection +2022/02/22 16:03:27 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e0840 160 [] false false map[] 0xc000ce0200 0xc0001a0790} +2022/02/22 16:03:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 {"id":"6214bbf71b0000ab7bfd0661","name":"acctest_s2m1l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:03:27 [DEBUG] Exit from do method +2022/02/22 16:03:27 [DEBUG] 6214bbf71b0000ab7bfd0661: Read finished successfully +2022/02/22 16:03:27 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:27 [DEBUG] New state was assigned lineage "e90c058f-3fa9-e107-f30e-3f0921cb4a10" +2022/02/22 16:03:27 HTTP request GET mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:27 [DEBUG] Begin Injection +2022/02/22 16:03:27 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00080b700 160 [] false false map[] 0xc0000aa600 0xc0001a0790} +2022/02/22 16:03:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 {"id":"6214bbf71b0000ab7bfd0661","name":"acctest_s2m1l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:03:27 [DEBUG] Exit from do method +2022/02/22 16:03:27 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:03:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:03:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:03:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:03:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:03:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:27 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:03:28 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:28 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:03:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:28 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:28 [DEBUG] : Beginning Read +2022/02/22 16:03:28 HTTP request GET mso/api/v1/tenants +2022/02/22 16:03:28 [DEBUG] Begin Injection +2022/02/22 16:03:28 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:03:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:03:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:03:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00080aa80 3980 [] false false map[] 0xc0000aaa00 0xc0001a0790} +2022/02/22 16:03:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:03:28 [DEBUG] Exit from do method +2022/02/22 16:03:28 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:03:28 [DEBUG] 6214bbf71b0000ab7bfd0661: Beginning Read +2022/02/22 16:03:28 id: 6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:28 HTTP request GET mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:28 [DEBUG] Begin Injection +2022/02/22 16:03:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001f4240 160 [] false false map[] 0xc0009f6500 0xc0001a0790} +2022/02/22 16:03:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 {"id":"6214bbf71b0000ab7bfd0661","name":"acctest_s2m1l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:03:28 [DEBUG] Exit from do method +2022/02/22 16:03:28 [DEBUG] 6214bbf71b0000ab7bfd0661: Read finished successfully +2022/02/22 16:03:28 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:28 [DEBUG] New state was assigned lineage "05f553fe-f1f9-a4d3-bb20-315ebff563ce" +2022/02/22 16:03:28 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:03:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:03:28 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:03:28 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:28 [DEBUG] Test: Executing step 3 +2022/02/22 16:03:28 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:28 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:03:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:28 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:03:28 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 16:03:28 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 16:03:28 [DEBUG] Test: Executing step 4 +2022/02/22 16:03:28 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:28 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:03:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:03:28 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:03:28 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:28 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:03:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:28 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:03:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:28 [DEBUG] : Beginning Read +2022/02/22 16:03:28 HTTP request GET mso/api/v1/tenants +2022/02/22 16:03:28 [DEBUG] Begin Injection +2022/02/22 16:03:28 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:03:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:03:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:03:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00062a480 3980 [] false false map[] 0xc0009f6400 0xc0001a0790} +2022/02/22 16:03:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:03:29 [DEBUG] Exit from do method +2022/02/22 16:03:29 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:03:29 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:03:29 [DEBUG] 6214bbf71b0000ab7bfd0661: Beginning Read +2022/02/22 16:03:29 id: 6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:29 HTTP request GET mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:29 [DEBUG] Begin Injection +2022/02/22 16:03:29 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:29 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:03:29 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:03:29 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:03:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e00c0 160 [] false false map[] 0xc0000aa900 0xc0001a0790} +2022/02/22 16:03:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 {"id":"6214bbf71b0000ab7bfd0661","name":"acctest_s2m1l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:03:29 [DEBUG] Exit from do method +2022/02/22 16:03:29 [DEBUG] 6214bbf71b0000ab7bfd0661: Read finished successfully +2022/02/22 16:03:29 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:29 [DEBUG] New state was assigned lineage "7d72f20e-7a73-6184-3c1f-8b9898e74831" +2022/02/22 16:03:29 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:03:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:29 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:29 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:03:29 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:03:29 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:03:29 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:03:29 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:29 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.208.134" + id: "6214bbf71b0000ab7bfd0661" => "6214bbf71b0000ab7bfd0661" + name: "acctest_s2m1l" => "acctest_s2m1l" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_0pmgm" + template_name: "" => "acctest_s8g16" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_307op" + external_epg_name: "" => "acctest_307op" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_s8g16" + vrf_name: "" => "acctest_307op" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_307op" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_307op" + schema_id: "" => "" + template: "" => "acctest_s8g16" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214bbf71b0000ab7bfd0661 + provider = provider.mso + description = + name = acctest_s2m1l + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 16:03:29 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:03:29 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:03:29 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:03:29 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:03:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:03:29 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 16:03:29 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:03:29 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 16:03:29 [DEBUG] Schema: Beginning Creation +2022/02/22 16:03:29 HTTP request POST mso/api/v1/schemas +2022/02/22 16:03:29 [DEBUG] Begin Injection +2022/02/22 16:03:29 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 16:03:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 16:03:29 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 16:03:29 [DEBUG] 6214bbf71b0000ab7bfd0661: Beginning Policy Update +2022/02/22 16:03:29 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg. +2022/02/22 16:03:29 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg. +2022/02/22 16:03:29 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg. +2022/02/22 16:03:29 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 16:03:29 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214bbf91d00008e524f9e93] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ac280 400 [] false false map[] 0xc0002a6c00 0xc0001a0790} +2022/02/22 16:03:29 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214bbf91d00008e524f9e93","displayName":"acctest_0pmgm","description":"","templates":[{"name":"acctest_s8g16","displayName":"acctest_s8g16","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 16:03:29 [DEBUG] Exit from do method +2022/02/22 16:03:29 [DEBUG] 6214bbf91d00008e524f9e93: Schema Creation finished successfully +2022/02/22 16:03:29 [DEBUG] 6214bbf91d00008e524f9e93: Beginning Read +2022/02/22 16:03:29 HTTP request GET mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:29 [DEBUG] Begin Injection +2022/02/22 16:03:29 HTTP request after injection GET mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ac040 400 [] false false map[] 0xc000d26300 0xc0001a0790} +2022/02/22 16:03:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 {"id":"6214bbf91d00008e524f9e93","displayName":"acctest_0pmgm","description":"","templates":[{"name":"acctest_s8g16","displayName":"acctest_s8g16","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 16:03:30 [DEBUG] Exit from do method +2022/02/22 16:03:30 [DEBUG] 6214bbf91d00008e524f9e93: Read finished successfully +2022/02/22 16:03:30 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 16:03:30 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 16:03:30 HTTP request PATCH mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:30 [DEBUG] Begin Injection +2022/02/22 16:03:30 HTTP request after injection PATCH mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:30 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:30 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:33:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d26400 0xc0001a0790} +2022/02/22 16:03:30 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:30 [DEBUG] acctest_307op: Creation finished successfully +2022/02/22 16:03:30 [DEBUG] acctest_307op: Beginning Read +2022/02/22 16:03:30 HTTP request GET mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:30 [DEBUG] Begin Injection +2022/02/22 16:03:30 HTTP request after injection GET mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000528f00 768 [] false false map[] 0xc000d26600 0xc0001a0790} +2022/02/22 16:03:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 {"id":"6214bbf91d00008e524f9e93","displayName":"acctest_0pmgm","description":"","templates":[{"name":"acctest_s8g16","displayName":"acctest_s8g16","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_307op","displayName":"acctest_307op","vrfRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/vrfs/acctest_307op","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 16:03:30 [DEBUG] Exit from do method +2022/02/22 16:03:30 currentvrfname acctest_307op +2022/02/22 16:03:30 found correct vrfname +2022/02/22 16:03:30 [DEBUG] acctest_307op: Read finished successfully +2022/02/22 16:03:30 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:03:30 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 16:03:30 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 16:03:30 HTTP request PATCH mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:30 [DEBUG] Begin Injection +2022/02/22 16:03:30 HTTP request after injection PATCH mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:31 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:33:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0009f6e00 0xc0001a0790} +2022/02/22 16:03:31 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:31 [DEBUG] : Beginning Read +2022/02/22 16:03:31 HTTP request GET mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:31 [DEBUG] Begin Injection +2022/02/22 16:03:31 HTTP request after injection GET mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000528040 1147 [] false false map[] 0xc00025e300 0xc0001a0790} +2022/02/22 16:03:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 {"id":"6214bbf91d00008e524f9e93","displayName":"acctest_0pmgm","description":"","templates":[{"name":"acctest_s8g16","displayName":"acctest_s8g16","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_307op","displayName":"acctest_307op","vrfRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/vrfs/acctest_307op","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_307op","displayName":"acctest_307op","extEpgType":"on-premise","vrfRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/vrfs/acctest_307op","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/externalEpgs/acctest_307op","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:03:31 [DEBUG] Exit from do method +2022/02/22 16:03:31 [DEBUG] /schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/externalEpgs/acctest_307op: Read finished successfully +2022/02/22 16:03:31 [DEBUG] New state was assigned lineage "441a19f0-e046-defc-23ca-b862a1de8171" +2022/02/22 16:03:31 [WARN] Test: Executing destroy step +2022/02/22 16:03:31 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:31 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:03:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 16:03:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:03:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:31 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:03:31 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:03:31 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 16:03:31 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 16:03:31 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 16:03:31 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:31 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:03:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 16:03:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:03:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:03:31 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:03:31 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:03:31 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:03:31 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:31 [DEBUG] : Beginning Read +2022/02/22 16:03:31 HTTP request GET mso/api/v1/tenants +2022/02/22 16:03:31 [DEBUG] Begin Injection +2022/02/22 16:03:31 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:03:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:03:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:03:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005ad180 3980 [] false false map[] 0xc0002a6100 0xc0001a0790} +2022/02/22 16:03:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:03:31 [DEBUG] Exit from do method +2022/02/22 16:03:31 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:03:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:03:31 [DEBUG] 6214bbf91d00008e524f9e93: Beginning Read +2022/02/22 16:03:31 HTTP request GET mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:31 [DEBUG] Begin Injection +2022/02/22 16:03:31 HTTP request after injection GET mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:31 [DEBUG] 6214bbf71b0000ab7bfd0661: Beginning Read +2022/02/22 16:03:31 id: 6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:31 HTTP request GET mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:31 [DEBUG] Begin Injection +2022/02/22 16:03:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b3c0 1147 [] false false map[] 0xc00025e400 0xc0001a0790} +2022/02/22 16:03:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 {"id":"6214bbf91d00008e524f9e93","displayName":"acctest_0pmgm","description":"","templates":[{"name":"acctest_s8g16","displayName":"acctest_s8g16","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_307op","displayName":"acctest_307op","vrfRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/vrfs/acctest_307op","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_307op","displayName":"acctest_307op","extEpgType":"on-premise","vrfRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/vrfs/acctest_307op","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/externalEpgs/acctest_307op","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:03:32 [DEBUG] Exit from do method +2022/02/22 16:03:32 [DEBUG] 6214bbf91d00008e524f9e93: Read finished successfully +2022/02/22 16:03:32 [DEBUG] acctest_307op: Beginning Read +2022/02/22 16:03:32 HTTP request GET mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:32 [DEBUG] Begin Injection +2022/02/22 16:03:32 HTTP request after injection GET mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:32 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e1680 160 [] false false map[] 0xc00025e500 0xc0001a0790} +2022/02/22 16:03:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 {"id":"6214bbf71b0000ab7bfd0661","name":"acctest_s2m1l","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:03:32 [DEBUG] Exit from do method +2022/02/22 16:03:32 [DEBUG] 6214bbf71b0000ab7bfd0661: Read finished successfully +2022/02/22 16:03:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:32 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000772080 1147 [] false false map[] 0xc00025e700 0xc0001a0790} +2022/02/22 16:03:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 {"id":"6214bbf91d00008e524f9e93","displayName":"acctest_0pmgm","description":"","templates":[{"name":"acctest_s8g16","displayName":"acctest_s8g16","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_307op","displayName":"acctest_307op","vrfRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/vrfs/acctest_307op","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_307op","displayName":"acctest_307op","extEpgType":"on-premise","vrfRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/vrfs/acctest_307op","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/externalEpgs/acctest_307op","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:03:32 [DEBUG] Exit from do method +2022/02/22 16:03:32 currentvrfname acctest_307op +2022/02/22 16:03:32 found correct vrfname +2022/02/22 16:03:32 [DEBUG] acctest_307op: Read finished successfully +2022/02/22 16:03:33 [DEBUG] /schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/externalEpgs/acctest_307op: Beginning Read +2022/02/22 16:03:33 HTTP request GET mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:33 [DEBUG] Begin Injection +2022/02/22 16:03:33 HTTP request after injection GET mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:33 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:33 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ef6a80 1147 [] false false map[] 0xc0000aa700 0xc0001a0790} +2022/02/22 16:03:33 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 {"id":"6214bbf91d00008e524f9e93","displayName":"acctest_0pmgm","description":"","templates":[{"name":"acctest_s8g16","displayName":"acctest_s8g16","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_307op","displayName":"acctest_307op","vrfRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/vrfs/acctest_307op","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_307op","displayName":"acctest_307op","extEpgType":"on-premise","vrfRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/vrfs/acctest_307op","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/externalEpgs/acctest_307op","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:03:33 [DEBUG] Exit from do method +2022/02/22 16:03:33 [DEBUG] /schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/externalEpgs/acctest_307op: Read finished successfully +2022/02/22 16:03:33 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:33 [DEBUG] New state was assigned lineage "956016d6-b22a-7aff-150c-00a22aa427ca" +2022/02/22 16:03:33 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:03:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:03:33 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214bbf71b0000ab7bfd0661" => "" + name: "acctest_s2m1l" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema.test + id: "6214bbf91d00008e524f9e93" => "" + name: "acctest_0pmgm" => "" + template_name: "acctest_s8g16" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_307op" => "" + external_epg_name: "acctest_307op" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/externalEpgs/acctest_307op" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214bbf91d00008e524f9e93" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_s8g16" => "" + vrf_name: "acctest_307op" => "" + vrf_schema_id: "6214bbf91d00008e524f9e93" => "" + vrf_template_name: "acctest_s8g16" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_307op" => "" + id: "acctest_307op" => "" + layer3_multicast: "false" => "" + name: "acctest_307op" => "" + schema_id: "6214bbf91d00008e524f9e93" => "" + template: "acctest_s8g16" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214bbf71b0000ab7bfd0661 + provider = provider.mso + description = + name = acctest_s2m1l + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 6214bbf91d00008e524f9e93 + provider = provider.mso + name = acctest_0pmgm + template_name = acctest_s8g16 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214bbf91d00008e524f9e93/templates/acctest_s8g16/externalEpgs/acctest_307op + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_307op + external_epg_name = acctest_307op + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214bbf91d00008e524f9e93 + selector_ip = + selector_name = + template_name = acctest_s8g16 + vrf_name = acctest_307op + vrf_schema_id = 6214bbf91d00008e524f9e93 + vrf_template_name = acctest_s8g16 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_307op + provider = provider.mso + display_name = acctest_307op + layer3_multicast = false + name = acctest_307op + schema_id = 6214bbf91d00008e524f9e93 + template = acctest_s8g16 + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 16:03:33 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:03:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 16:03:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (destroy) +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 16:03:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:33 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:03:33 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 16:03:33 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 16:03:33 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 16:03:33 [DEBUG] 6214bbf71b0000ab7bfd0661: Beginning Read +2022/02/22 16:03:33 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:33 [DEBUG] Begin Injection +2022/02/22 16:03:33 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:33 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 16:03:33 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 16:03:33 HTTP request PATCH mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:33 [DEBUG] Begin Injection +2022/02/22 16:03:33 HTTP request after injection PATCH mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:33 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:33:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0002a7500 0xc000c60000} +2022/02/22 16:03:33 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:33 [DEBUG] : Read finished successfully +2022/02/22 16:03:33 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:33 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:33:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0002a6000 0xc00013e2c0} +2022/02/22 16:03:33 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:33 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 16:03:33 [DEBUG] acctest_307op: Beginning Destroy +2022/02/22 16:03:33 HTTP request PATCH mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:33 [DEBUG] Begin Injection +2022/02/22 16:03:33 HTTP request after injection PATCH mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:33 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:34 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:33:33 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0002a6a00 0xc00013e2c0} +2022/02/22 16:03:34 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93?validate=false +2022/02/22 16:03:34 [DEBUG] acctest_307op: Destroy finished successfully +2022/02/22 16:03:34 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 16:03:34 [DEBUG] 6214bbf91d00008e524f9e93: Beginning Destroy +2022/02/22 16:03:34 HTTP request DELETE mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:34 [DEBUG] Begin Injection +2022/02/22 16:03:34 HTTP request after injection DELETE mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:34 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:34 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:33:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0002a7100 0xc00013e2c0} +2022/02/22 16:03:34 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214bbf91d00008e524f9e93 +2022/02/22 16:03:34 [DEBUG] 6214bbf91d00008e524f9e93: Destroy finished successfully +2022/02/22 16:03:34 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:34 [DEBUG] New state was assigned lineage "3778a858-3679-0be8-b392-0603f2d83e6d" +2022/02/22 16:03:34 HTTP request GET mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:34 [DEBUG] Begin Injection +2022/02/22 16:03:34 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 +2022/02/22 16:03:34 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:34 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e0040 86 [] false false map[] 0xc0000aa400 0xc00013e2c0} +2022/02/22 16:03:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214bbf71b0000ab7bfd0661 {"code":141,"message":"Resource Not Found: Policy 6214bbf71b0000ab7bfd0661 not found"} +2022/02/22 16:03:34 [DEBUG] Exit from do method +2022/02/22 16:03:34 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:03:34 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:03:34 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:03:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:03:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:03:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:34 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:03:34 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:03:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:34 [DEBUG] : Beginning Read +2022/02/22 16:03:34 HTTP request GET mso/api/v1/tenants +2022/02/22 16:03:34 [DEBUG] Begin Injection +2022/02/22 16:03:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:03:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:03:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:03:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:33:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003e01c0 3980 [] false false map[] 0xc0002a6500 0xc00013e2c0} +2022/02/22 16:03:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:03:35 [DEBUG] Exit from do method +2022/02/22 16:03:35 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:03:35 [DEBUG] provider has no plugin.Client +2022/02/22 16:03:35 [DEBUG] New state was assigned lineage "21494a37-ccfc-6613-e31e-6d650301fb23" +2022/02/22 16:03:35 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:03:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:03:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:03:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:03:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:03:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:03:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:03:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:03:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:03:35 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:12:24 [DEBUG] Test: Executing step 0 +2022/02/22 16:12:24 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:24 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:12:24 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:12:24 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:12:24 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:12:24 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:12:24 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:24 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:24 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:12:24 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 16:12:24 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 16:12:24 [DEBUG] Test: Executing step 1 +2022/02/22 16:12:25 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:25 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:12:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:12:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:12:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:12:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:12:25 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:12:25 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 16:12:25 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 16:12:25 [DEBUG] Test: Executing step 2 +2022/02/22 16:12:25 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:25 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:12:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:12:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:12:25 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:12:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:25 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:12:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:25 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:12:25 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:25 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:12:25 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:12:25 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:12:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:25 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:25 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:12:25 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:12:25 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:25 [DEBUG] : Beginning Read +2022/02/22 16:12:25 HTTP request GET mso/api/v1/tenants +2022/02/22 16:12:25 [DEBUG] Begin Injection +2022/02/22 16:12:25 HTTP request POST /login +2022/02/22 16:12:25 HTTP request after injection POST /login +2022/02/22 16:12:25 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 16:12:27 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 16:12:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:26 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1Mjc3NDYsImlhdCI6MTY0NTUyNjU0NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJKODBNTVVZclljdjNOUUlpSDB5WVBqY2EiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.CyLindLnH9Lv3y8Eg3VjKcGfbdiYDPASpzDLO5_APa_FpBrE3H7iywvp0vAbPrdlZwpSgKXeT6JVLyNzFIf2RxTbA2qHCSg54yw21vejEAHT9pmOgnu_PTg3LpmT50nyeifooQ5K1Em501usk-GUFkrtcC1rVQRQa4XVsjabPHhb7Pwvvbf008x8tnWtQdwu32p1-KtJ2n17C5HvdCra60oPnybCZfuGs8rk007zVE4cscYPlPBDXPdi2bsWecR301pgUeheF7tf_WLYOr0joGigO9ORJSo9sfpaT6z8e8BIRSNhqUhrqgaMuXUXCCo6a1rKCkyEZjTr3_ViGfhCOg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00011aa00 -1 [chunked] false false map[] 0xc0001b4200 0xc0001d8420} +2022/02/22 16:12:27 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1Mjc3NDYsImlhdCI6MTY0NTUyNjU0NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJKODBNTVVZclljdjNOUUlpSDB5WVBqY2EiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.CyLindLnH9Lv3y8Eg3VjKcGfbdiYDPASpzDLO5_APa_FpBrE3H7iywvp0vAbPrdlZwpSgKXeT6JVLyNzFIf2RxTbA2qHCSg54yw21vejEAHT9pmOgnu_PTg3LpmT50nyeifooQ5K1Em501usk-GUFkrtcC1rVQRQa4XVsjabPHhb7Pwvvbf008x8tnWtQdwu32p1-KtJ2n17C5HvdCra60oPnybCZfuGs8rk007zVE4cscYPlPBDXPdi2bsWecR301pgUeheF7tf_WLYOr0joGigO9ORJSo9sfpaT6z8e8BIRSNhqUhrqgaMuXUXCCo6a1rKCkyEZjTr3_ViGfhCOg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1Mjc3NDYsImlhdCI6MTY0NTUyNjU0NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJKODBNTVVZclljdjNOUUlpSDB5WVBqY2EiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.CyLindLnH9Lv3y8Eg3VjKcGfbdiYDPASpzDLO5_APa_FpBrE3H7iywvp0vAbPrdlZwpSgKXeT6JVLyNzFIf2RxTbA2qHCSg54yw21vejEAHT9pmOgnu_PTg3LpmT50nyeifooQ5K1Em501usk-GUFkrtcC1rVQRQa4XVsjabPHhb7Pwvvbf008x8tnWtQdwu32p1-KtJ2n17C5HvdCra60oPnybCZfuGs8rk007zVE4cscYPlPBDXPdi2bsWecR301pgUeheF7tf_WLYOr0joGigO9ORJSo9sfpaT6z8e8BIRSNhqUhrqgaMuXUXCCo6a1rKCkyEZjTr3_ViGfhCOg"} +2022/02/22 16:12:27 [DEBUG] Exit from do method +2022/02/22 16:12:27 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:12:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:12:27 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:12:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073a2c0 3980 [] false false map[] 0xc0001b4100 0xc0001d8420} +2022/02/22 16:12:27 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:12:27 [DEBUG] Exit from do method +2022/02/22 16:12:27 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:12:27 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:27 [DEBUG] New state was assigned lineage "ba24408c-6b5a-0f41-1f62-5ddce498cfb5" +2022/02/22 16:12:27 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:12:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:12:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:12:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:12:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:12:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:27 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:12:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:27 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:12:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:12:27 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:27 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_971xc" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 16:12:27 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:12:27 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:12:27 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:12:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:12:27 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:12:27 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:12:27 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:12:27 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:12:27 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:12:27 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:12:27 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 16:12:27 [DEBUG] : Beginning Create +2022/02/22 16:12:27 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:12:27 [DEBUG] Begin Injection +2022/02/22 16:12:27 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:12:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:12:27 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:12:27 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:27 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a240 160 [] false false map[] 0xc000776400 0xc0001d8420} +2022/02/22 16:12:27 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214be131b0000257cfd0662","name":"acctest_971xc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:12:27 [DEBUG] Exit from do method +2022/02/22 16:12:27 [DEBUG] 6214be131b0000257cfd0662: Creation finished successfully +2022/02/22 16:12:27 [DEBUG] 6214be131b0000257cfd0662: Beginning Read +2022/02/22 16:12:27 id: 6214be131b0000257cfd0662 +2022/02/22 16:12:27 HTTP request GET mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:27 [DEBUG] Begin Injection +2022/02/22 16:12:27 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:27 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003065c0 160 [] false false map[] 0xc000ad2000 0xc0001d8420} +2022/02/22 16:12:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 {"id":"6214be131b0000257cfd0662","name":"acctest_971xc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:12:28 [DEBUG] Exit from do method +2022/02/22 16:12:28 [DEBUG] 6214be131b0000257cfd0662: Read finished successfully +2022/02/22 16:12:28 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:28 [DEBUG] New state was assigned lineage "93277422-6ead-be40-7426-9dd7054ddf73" +2022/02/22 16:12:28 HTTP request GET mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:28 [DEBUG] Begin Injection +2022/02/22 16:12:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a480 160 [] false false map[] 0xc00022c300 0xc0001d8420} +2022/02/22 16:12:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 {"id":"6214be131b0000257cfd0662","name":"acctest_971xc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:12:28 [DEBUG] Exit from do method +2022/02/22 16:12:28 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:12:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:12:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:12:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:12:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:12:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:28 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:12:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:12:28 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:28 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:12:28 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:12:28 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:12:28 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:12:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:12:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:28 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:28 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:12:28 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:28 [DEBUG] : Beginning Read +2022/02/22 16:12:28 HTTP request GET mso/api/v1/tenants +2022/02/22 16:12:28 [DEBUG] Begin Injection +2022/02/22 16:12:28 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:12:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:12:28 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:12:28 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:28 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00028c180 3980 [] false false map[] 0xc000a50200 0xc0001d8420} +2022/02/22 16:12:28 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:12:28 [DEBUG] Exit from do method +2022/02/22 16:12:28 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:12:28 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:12:28 [DEBUG] 6214be131b0000257cfd0662: Beginning Read +2022/02/22 16:12:28 id: 6214be131b0000257cfd0662 +2022/02/22 16:12:28 HTTP request GET mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:28 [DEBUG] Begin Injection +2022/02/22 16:12:28 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:28 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001bdcc0 160 [] false false map[] 0xc000a50700 0xc0001d8420} +2022/02/22 16:12:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 {"id":"6214be131b0000257cfd0662","name":"acctest_971xc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:12:29 [DEBUG] Exit from do method +2022/02/22 16:12:29 [DEBUG] 6214be131b0000257cfd0662: Read finished successfully +2022/02/22 16:12:29 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:29 [DEBUG] New state was assigned lineage "56c72d05-889b-471f-39fd-ca603cbb92dc" +2022/02/22 16:12:29 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:12:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:12:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:12:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:29 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:12:29 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:29 [DEBUG] Test: Executing step 3 +2022/02/22 16:12:29 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:29 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:12:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:12:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:12:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:29 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:12:29 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:29 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:12:29 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:12:29 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:12:29 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:29 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:29 [DEBUG] : Beginning Read +2022/02/22 16:12:29 HTTP request GET mso/api/v1/tenants +2022/02/22 16:12:29 [DEBUG] Begin Injection +2022/02/22 16:12:29 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:12:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:12:29 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:12:29 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000efb880 3980 [] false false map[] 0xc000a50700 0xc0001d8420} +2022/02/22 16:12:29 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:12:29 [DEBUG] Exit from do method +2022/02/22 16:12:29 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:12:29 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:12:29 [DEBUG] 6214be131b0000257cfd0662: Beginning Read +2022/02/22 16:12:29 id: 6214be131b0000257cfd0662 +2022/02/22 16:12:29 HTTP request GET mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:29 [DEBUG] Begin Injection +2022/02/22 16:12:29 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:29 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:29 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a680 160 [] false false map[] 0xc00022d000 0xc0001d8420} +2022/02/22 16:12:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 {"id":"6214be131b0000257cfd0662","name":"acctest_971xc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:12:30 [DEBUG] Exit from do method +2022/02/22 16:12:30 [DEBUG] 6214be131b0000257cfd0662: Read finished successfully +2022/02/22 16:12:30 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:30 [DEBUG] New state was assigned lineage "c14c0c16-a6de-b3e0-3ba3-4d049dddd467" +2022/02/22 16:12:30 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:12:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:12:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:12:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:30 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:12:30 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:30 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.34.169" + id: "6214be131b0000257cfd0662" => "6214be131b0000257cfd0662" + name: "acctest_971xc" => "acctest_971xc" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214be131b0000257cfd0662 + provider = provider.mso + description = + name = acctest_971xc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 16:12:30 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:12:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:12:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:12:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:12:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:30 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:12:30 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 16:12:30 [DEBUG] 6214be131b0000257cfd0662: Beginning Policy Update +2022/02/22 16:12:30 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: Expected any one of the epg or external_epg. +2022/02/22 16:12:30 [ERROR] : eval: *terraform.EvalApplyPost, err: Expected any one of the epg or external_epg. +2022/02/22 16:12:30 [ERROR] : eval: *terraform.EvalSequence, err: Expected any one of the epg or external_epg. +2022/02/22 16:12:30 [DEBUG] New state was assigned lineage "b5912285-0618-32e3-492b-bc0c97bf14b0" +2022/02/22 16:12:30 [WARN] Test: Executing destroy step +2022/02/22 16:12:30 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:30 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:12:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:12:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:12:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:30 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:12:30 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:30 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:12:30 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:12:30 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:12:30 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:30 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:30 [DEBUG] : Beginning Read +2022/02/22 16:12:30 HTTP request GET mso/api/v1/tenants +2022/02/22 16:12:30 [DEBUG] Begin Injection +2022/02/22 16:12:30 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:12:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:12:30 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:12:30 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00028c280 3980 [] false false map[] 0xc00022d100 0xc0001d8420} +2022/02/22 16:12:30 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:12:30 [DEBUG] Exit from do method +2022/02/22 16:12:30 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:12:30 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:12:30 [DEBUG] 6214be131b0000257cfd0662: Beginning Read +2022/02/22 16:12:30 id: 6214be131b0000257cfd0662 +2022/02/22 16:12:30 HTTP request GET mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:30 [DEBUG] Begin Injection +2022/02/22 16:12:30 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:30 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:31 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:30 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a080 160 [] false false map[] 0xc000a96500 0xc0001d8420} +2022/02/22 16:12:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 {"id":"6214be131b0000257cfd0662","name":"acctest_971xc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:12:31 [DEBUG] Exit from do method +2022/02/22 16:12:31 [DEBUG] 6214be131b0000257cfd0662: Read finished successfully +2022/02/22 16:12:31 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:31 [DEBUG] New state was assigned lineage "a8462785-5466-8433-362e-94df05ad971c" +2022/02/22 16:12:31 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:12:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:12:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:12:31 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:12:31 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214be131b0000257cfd0662" => "" + name: "acctest_971xc" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214be131b0000257cfd0662 + provider = provider.mso + description = + name = acctest_971xc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 16:12:31 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:12:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:31 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:12:31 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 16:12:31 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 16:12:31 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 16:12:31 [DEBUG] 6214be131b0000257cfd0662: Beginning Read +2022/02/22 16:12:31 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:31 [DEBUG] Begin Injection +2022/02/22 16:12:31 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:31 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:31 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 10:42:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000c7ce00 0xc0001d8420} +2022/02/22 16:12:31 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:31 [DEBUG] : Read finished successfully +2022/02/22 16:12:31 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:31 [DEBUG] New state was assigned lineage "74a63571-74b9-f178-05b4-46fd3f4c5aff" +2022/02/22 16:12:31 HTTP request GET mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:31 [DEBUG] Begin Injection +2022/02/22 16:12:31 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:31 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 +2022/02/22 16:12:31 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:31 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00011a4c0 86 [] false false map[] 0xc00022c300 0xc0001d8420} +2022/02/22 16:12:31 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214be131b0000257cfd0662 {"code":141,"message":"Resource Not Found: Policy 6214be131b0000257cfd0662 not found"} +2022/02/22 16:12:31 [DEBUG] Exit from do method +2022/02/22 16:12:31 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:12:31 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:12:31 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:12:31 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:12:31 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:31 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:12:31 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:12:31 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:31 [DEBUG] : Beginning Read +2022/02/22 16:12:31 HTTP request GET mso/api/v1/tenants +2022/02/22 16:12:31 [DEBUG] Begin Injection +2022/02/22 16:12:31 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:12:31 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:12:32 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:12:32 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 10:42:31 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00066c300 3980 [] false false map[] 0xc00022c400 0xc0001d8420} +2022/02/22 16:12:32 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:12:32 [DEBUG] Exit from do method +2022/02/22 16:12:32 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:12:32 [DEBUG] provider has no plugin.Client +2022/02/22 16:12:32 [DEBUG] New state was assigned lineage "cddd4a71-4139-c1d7-5b73-3fd8a155daea" +2022/02/22 16:12:32 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:12:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:12:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:12:32 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:12:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:12:32 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:12:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:12:32 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:12:32 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:12:32 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:39:39 [DEBUG] Test: Executing step 0 +2022/02/22 16:39:39 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:39:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:39 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:39:39 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 16:39:39 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 16:39:39 [DEBUG] Test: Executing step 1 +2022/02/22 16:39:39 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:39:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:39 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:39:39 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 16:39:39 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 16:39:39 [DEBUG] Test: Executing step 2 +2022/02/22 16:39:39 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:39:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:39 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:39:39 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:39:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:39:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:39:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:39:39 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:39:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:39 [DEBUG] : Beginning Read +2022/02/22 16:39:39 HTTP request GET mso/api/v1/tenants +2022/02/22 16:39:39 [DEBUG] Begin Injection +2022/02/22 16:39:39 HTTP request POST /login +2022/02/22 16:39:39 HTTP request after injection POST /login +2022/02/22 16:39:39 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 16:39:41 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 16:39:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:41 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjkzODEsImlhdCI6MTY0NTUyODE4MSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI3OEJDcXNGYk51VnhRTTllakE3YThsdGQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.cI0iyjb7nKrYgzFWxHovvNdzBkekyI6W8EPq0Yr338hWTIBz_jMv3vlbNwV2r9roRsUPvoBD6Nrg8aUaJqsDnhRvihyzIdKXviet83DhMBiiYn8vR1t7cBOwDW_d0E2GgV9BD7q2UBI5FeACqjh-NJOR8FjJ6k3NgK3hpCYXTxlHClD1qtaKVC4PZcSkOckCR3Ne6d6_RF86CjoRDRbnKVddBN7Fy-Dh2kKKD2TX-rq-X9TN7IAS9lW4AH8egxKNuyCoZHolTCwF6oHeOpHjaimj0P1zp4A7BL5iUh5EfFgCyrAp9nR3SvcH2CYybWTHhG390ou1998ES9bbtNt_8Q; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000e08340 -1 [chunked] false false map[] 0xc000186e00 0xc0003d53f0} +2022/02/22 16:39:41 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjkzODEsImlhdCI6MTY0NTUyODE4MSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI3OEJDcXNGYk51VnhRTTllakE3YThsdGQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.cI0iyjb7nKrYgzFWxHovvNdzBkekyI6W8EPq0Yr338hWTIBz_jMv3vlbNwV2r9roRsUPvoBD6Nrg8aUaJqsDnhRvihyzIdKXviet83DhMBiiYn8vR1t7cBOwDW_d0E2GgV9BD7q2UBI5FeACqjh-NJOR8FjJ6k3NgK3hpCYXTxlHClD1qtaKVC4PZcSkOckCR3Ne6d6_RF86CjoRDRbnKVddBN7Fy-Dh2kKKD2TX-rq-X9TN7IAS9lW4AH8egxKNuyCoZHolTCwF6oHeOpHjaimj0P1zp4A7BL5iUh5EfFgCyrAp9nR3SvcH2CYybWTHhG390ou1998ES9bbtNt_8Q","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MjkzODEsImlhdCI6MTY0NTUyODE4MSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI3OEJDcXNGYk51VnhRTTllakE3YThsdGQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.cI0iyjb7nKrYgzFWxHovvNdzBkekyI6W8EPq0Yr338hWTIBz_jMv3vlbNwV2r9roRsUPvoBD6Nrg8aUaJqsDnhRvihyzIdKXviet83DhMBiiYn8vR1t7cBOwDW_d0E2GgV9BD7q2UBI5FeACqjh-NJOR8FjJ6k3NgK3hpCYXTxlHClD1qtaKVC4PZcSkOckCR3Ne6d6_RF86CjoRDRbnKVddBN7Fy-Dh2kKKD2TX-rq-X9TN7IAS9lW4AH8egxKNuyCoZHolTCwF6oHeOpHjaimj0P1zp4A7BL5iUh5EfFgCyrAp9nR3SvcH2CYybWTHhG390ou1998ES9bbtNt_8Q"} +2022/02/22 16:39:41 [DEBUG] Exit from do method +2022/02/22 16:39:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:39:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e08480 3980 [] false false map[] 0xc000186d00 0xc0003d53f0} +2022/02/22 16:39:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:39:42 [DEBUG] Exit from do method +2022/02/22 16:39:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:39:42 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:42 [DEBUG] New state was assigned lineage "4026f084-0e81-8862-1e56-152344c67dcb" +2022/02/22 16:39:42 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:42 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:42 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:39:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:42 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:42 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_ravf1" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 16:39:42 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:39:42 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:39:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:39:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:39:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:39:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:39:42 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:39:42 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 16:39:42 [DEBUG] : Beginning Create +2022/02/22 16:39:42 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:39:42 [DEBUG] Begin Injection +2022/02/22 16:39:42 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:39:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:39:42 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:39:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004cf000 160 [] false false map[] 0xc0007ba200 0xc0003d53f0} +2022/02/22 16:39:42 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:39:42 [DEBUG] Exit from do method +2022/02/22 16:39:42 [DEBUG] 6214c4761b00004e7dfd0663: Creation finished successfully +2022/02/22 16:39:42 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:39:42 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:42 [DEBUG] Begin Injection +2022/02/22 16:39:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c38080 160 [] false false map[] 0xc0007ba400 0xc0003d53f0} +2022/02/22 16:39:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:39:42 [DEBUG] Exit from do method +2022/02/22 16:39:42 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:39:42 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:42 [DEBUG] New state was assigned lineage "1c60e319-8486-34ce-6787-818fe3aacd32" +2022/02/22 16:39:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:42 [DEBUG] Begin Injection +2022/02/22 16:39:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e08040 160 [] false false map[] 0xc000290000 0xc0003d53f0} +2022/02/22 16:39:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:39:43 [DEBUG] Exit from do method +2022/02/22 16:39:43 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:39:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:43 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:43 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:39:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:39:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:39:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:43 [DEBUG] : Beginning Read +2022/02/22 16:39:43 HTTP request GET mso/api/v1/tenants +2022/02/22 16:39:43 [DEBUG] Begin Injection +2022/02/22 16:39:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:39:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000c5400 3980 [] false false map[] 0xc000b94500 0xc0003d53f0} +2022/02/22 16:39:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:39:43 [DEBUG] Exit from do method +2022/02/22 16:39:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:39:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:43 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:39:43 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:43 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:43 [DEBUG] Begin Injection +2022/02/22 16:39:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e09240 160 [] false false map[] 0xc0003f8400 0xc0003d53f0} +2022/02/22 16:39:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:39:44 [DEBUG] Exit from do method +2022/02/22 16:39:44 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:39:44 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:44 [DEBUG] New state was assigned lineage "cbb56e80-ba76-c935-ef34-215c902f90df" +2022/02/22 16:39:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:44 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:44 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:44 [DEBUG] Test: Executing step 3 +2022/02/22 16:39:44 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:44 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:39:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:44 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:39:44 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:39:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:44 [DEBUG] : Beginning Read +2022/02/22 16:39:44 HTTP request GET mso/api/v1/tenants +2022/02/22 16:39:44 [DEBUG] Begin Injection +2022/02/22 16:39:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:39:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005622c0 3980 [] false false map[] 0xc000744300 0xc0003d53f0} +2022/02/22 16:39:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:39:44 [DEBUG] Exit from do method +2022/02/22 16:39:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:44 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:39:44 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:44 [DEBUG] Begin Injection +2022/02/22 16:39:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005630c0 160 [] false false map[] 0xc000516300 0xc0003d53f0} +2022/02/22 16:39:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:39:44 [DEBUG] Exit from do method +2022/02/22 16:39:44 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:39:44 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:44 [DEBUG] New state was assigned lineage "50455657-4517-3909-46e7-ae680432b24d" +2022/02/22 16:39:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:44 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:44 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:44 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.71.84" + id: "6214c4761b00004e7dfd0663" => "6214c4761b00004e7dfd0663" + name: "acctest_ravf1" => "acctest_ravf1" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214c4761b00004e7dfd0663 + provider = provider.mso + description = + name = acctest_ravf1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 16:39:44 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:39:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:39:44 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:39:44 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 16:39:44 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Policy Update +2022/02/22 16:39:44 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: expected any one of the epg or external_epg. +2022/02/22 16:39:44 [ERROR] : eval: *terraform.EvalApplyPost, err: expected any one of the epg or external_epg. +2022/02/22 16:39:44 [ERROR] : eval: *terraform.EvalSequence, err: expected any one of the epg or external_epg. +2022/02/22 16:39:44 [DEBUG] New state was assigned lineage "66257930-d655-ee53-5fd4-623e901bed32" +2022/02/22 16:39:44 [DEBUG] Test: Executing step 4 +2022/02/22 16:39:44 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:44 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:39:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:44 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:39:44 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 16:39:44 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 16:39:44 [DEBUG] Test: Executing step 5 +2022/02/22 16:39:44 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:44 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:39:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:44 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:39:44 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:39:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:39:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:44 [DEBUG] : Beginning Read +2022/02/22 16:39:44 HTTP request GET mso/api/v1/tenants +2022/02/22 16:39:44 [DEBUG] Begin Injection +2022/02/22 16:39:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:39:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004ce140 3980 [] false false map[] 0xc000186c00 0xc0003d53f0} +2022/02/22 16:39:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:39:45 [DEBUG] Exit from do method +2022/02/22 16:39:45 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:45 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:39:45 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:39:45 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:45 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:45 [DEBUG] Begin Injection +2022/02/22 16:39:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:45 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:39:45 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:39:45 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:39:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000c46c0 160 [] false false map[] 0xc000186e00 0xc0003d53f0} +2022/02/22 16:39:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:39:45 [DEBUG] Exit from do method +2022/02/22 16:39:45 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:39:45 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:45 [DEBUG] New state was assigned lineage "ad798733-e60f-13af-6e99-45e599048123" +2022/02/22 16:39:45 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:45 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:45 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:45 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:39:45 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:39:45 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:39:45 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:45 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.71.84" + id: "6214c4761b00004e7dfd0663" => "6214c4761b00004e7dfd0663" + name: "acctest_ravf1" => "acctest_ravf1" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_qn6el" + template_name: "" => "acctest_gcd0n" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_84xdr" + external_epg_name: "" => "acctest_84xdr" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_gcd0n" + vrf_name: "" => "acctest_84xdr" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_84xdr" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_84xdr" + schema_id: "" => "" + template: "" => "acctest_gcd0n" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214c4761b00004e7dfd0663 + provider = provider.mso + description = + name = acctest_ravf1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 16:39:45 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:39:45 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:39:45 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:39:45 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:39:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 16:39:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:39:45 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:39:45 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 16:39:45 [DEBUG] Schema: Beginning Creation +2022/02/22 16:39:45 HTTP request POST mso/api/v1/schemas +2022/02/22 16:39:45 [DEBUG] Begin Injection +2022/02/22 16:39:45 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 16:39:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 16:39:45 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 16:39:45 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Policy Update +2022/02/22 16:39:45 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: expected any one of the epg or external_epg. +2022/02/22 16:39:45 [ERROR] : eval: *terraform.EvalApplyPost, err: expected any one of the epg or external_epg. +2022/02/22 16:39:45 [ERROR] : eval: *terraform.EvalSequence, err: expected any one of the epg or external_epg. +2022/02/22 16:39:46 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 16:39:46 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214c4791d0000be534f9e99] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049a7c0 400 [] false false map[] 0xc0008fa400 0xc0003d53f0} +2022/02/22 16:39:46 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214c4791d0000be534f9e99","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 16:39:46 [DEBUG] Exit from do method +2022/02/22 16:39:46 [DEBUG] 6214c4791d0000be534f9e99: Schema Creation finished successfully +2022/02/22 16:39:46 [DEBUG] 6214c4791d0000be534f9e99: Beginning Read +2022/02/22 16:39:46 HTTP request GET mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:46 [DEBUG] Begin Injection +2022/02/22 16:39:46 HTTP request after injection GET mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e084c0 400 [] false false map[] 0xc0008fa000 0xc0003d53f0} +2022/02/22 16:39:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 {"id":"6214c4791d0000be534f9e99","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 16:39:46 [DEBUG] Exit from do method +2022/02/22 16:39:46 [DEBUG] 6214c4791d0000be534f9e99: Read finished successfully +2022/02/22 16:39:46 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 16:39:46 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 16:39:46 HTTP request PATCH mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:46 [DEBUG] Begin Injection +2022/02/22 16:39:46 HTTP request after injection PATCH mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:46 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:09:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000187300 0xc0003d53f0} +2022/02/22 16:39:46 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:46 [DEBUG] acctest_84xdr: Creation finished successfully +2022/02/22 16:39:46 [DEBUG] acctest_84xdr: Beginning Read +2022/02/22 16:39:46 HTTP request GET mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:46 [DEBUG] Begin Injection +2022/02/22 16:39:46 HTTP request after injection GET mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d3e040 768 [] false false map[] 0xc000187500 0xc0003d53f0} +2022/02/22 16:39:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 {"id":"6214c4791d0000be534f9e99","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 16:39:46 [DEBUG] Exit from do method +2022/02/22 16:39:46 currentvrfname acctest_84xdr +2022/02/22 16:39:46 found correct vrfname +2022/02/22 16:39:46 [DEBUG] acctest_84xdr: Read finished successfully +2022/02/22 16:39:46 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:39:46 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 16:39:46 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 16:39:46 HTTP request PATCH mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:46 [DEBUG] Begin Injection +2022/02/22 16:39:46 HTTP request after injection PATCH mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:47 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:09:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000187100 0xc0003d53f0} +2022/02/22 16:39:47 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:47 [DEBUG] : Beginning Read +2022/02/22 16:39:47 HTTP request GET mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:47 [DEBUG] Begin Injection +2022/02/22 16:39:47 HTTP request after injection GET mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049b500 1147 [] false false map[] 0xc000187300 0xc0003d53f0} +2022/02/22 16:39:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 {"id":"6214c4791d0000be534f9e99","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","extEpgType":"on-premise","vrfRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/vrfs/acctest_84xdr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:39:47 [DEBUG] Exit from do method +2022/02/22 16:39:47 [DEBUG] /schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/externalEpgs/acctest_84xdr: Read finished successfully +2022/02/22 16:39:47 [DEBUG] New state was assigned lineage "b4f1f90e-9fcd-d6bd-020e-09074a645d1b" +2022/02/22 16:39:47 [DEBUG] Test: Executing step 6 +2022/02/22 16:39:47 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:47 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:39:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:39:47 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:39:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:39:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:47 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:39:47 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:47 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 16:39:47 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 16:39:47 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 16:39:47 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:39:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:39:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:39:47 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:39:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:47 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:39:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:47 [DEBUG] : Beginning Read +2022/02/22 16:39:47 HTTP request GET mso/api/v1/tenants +2022/02/22 16:39:47 [DEBUG] Begin Injection +2022/02/22 16:39:47 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:39:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004cecc0 3980 [] false false map[] 0xc000186c00 0xc0003d53f0} +2022/02/22 16:39:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:39:48 [DEBUG] Exit from do method +2022/02/22 16:39:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:39:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:48 [DEBUG] 6214c4791d0000be534f9e99: Beginning Read +2022/02/22 16:39:48 HTTP request GET mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:48 [DEBUG] Begin Injection +2022/02/22 16:39:48 HTTP request after injection GET mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:48 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:39:48 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:48 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:48 [DEBUG] Begin Injection +2022/02/22 16:39:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001144f80 1147 [] false false map[] 0xc000b18500 0xc0003d53f0} +2022/02/22 16:39:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 {"id":"6214c4791d0000be534f9e99","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","extEpgType":"on-premise","vrfRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/vrfs/acctest_84xdr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:39:48 [DEBUG] Exit from do method +2022/02/22 16:39:48 [DEBUG] 6214c4791d0000be534f9e99: Read finished successfully +2022/02/22 16:39:48 [DEBUG] acctest_84xdr: Beginning Read +2022/02/22 16:39:48 HTTP request GET mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:48 [DEBUG] Begin Injection +2022/02/22 16:39:48 HTTP request after injection GET mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011440c0 160 [] false false map[] 0xc000187000 0xc0003d53f0} +2022/02/22 16:39:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:39:48 [DEBUG] Exit from do method +2022/02/22 16:39:48 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:39:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004ce140 1147 [] false false map[] 0xc000b18800 0xc0003d53f0} +2022/02/22 16:39:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 {"id":"6214c4791d0000be534f9e99","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","extEpgType":"on-premise","vrfRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/vrfs/acctest_84xdr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:39:48 [DEBUG] Exit from do method +2022/02/22 16:39:48 currentvrfname acctest_84xdr +2022/02/22 16:39:48 found correct vrfname +2022/02/22 16:39:48 [DEBUG] acctest_84xdr: Read finished successfully +2022/02/22 16:39:48 [DEBUG] /schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/externalEpgs/acctest_84xdr: Beginning Read +2022/02/22 16:39:48 HTTP request GET mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:48 [DEBUG] Begin Injection +2022/02/22 16:39:48 HTTP request after injection GET mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e08a80 1147 [] false false map[] 0xc00028e200 0xc0003d53f0} +2022/02/22 16:39:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 {"id":"6214c4791d0000be534f9e99","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","extEpgType":"on-premise","vrfRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/vrfs/acctest_84xdr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:39:49 [DEBUG] Exit from do method +2022/02/22 16:39:49 [DEBUG] /schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/externalEpgs/acctest_84xdr: Read finished successfully +2022/02/22 16:39:49 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:49 [DEBUG] New state was assigned lineage "a0ef15ac-01a1-b9b2-df25-7ccdc9e290c1" +2022/02/22 16:39:49 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (orphan) +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:49 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:49 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:49 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.71.84" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214c4761b00004e7dfd0663" => "6214c4761b00004e7dfd0663" + name: "acctest_ravf1" => "acctest_ravf1" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214c4791d0000be534f9e99" => "" + name: "acctest_qn6el" => "" + template_name: "acctest_gcd0n" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_84xdr" => "" + external_epg_name: "acctest_84xdr" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/externalEpgs/acctest_84xdr" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214c4791d0000be534f9e99" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_gcd0n" => "" + vrf_name: "acctest_84xdr" => "" + vrf_schema_id: "6214c4791d0000be534f9e99" => "" + vrf_template_name: "acctest_gcd0n" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_84xdr" => "" + id: "acctest_84xdr" => "" + layer3_multicast: "false" => "" + name: "acctest_84xdr" => "" + schema_id: "6214c4791d0000be534f9e99" => "" + template: "acctest_gcd0n" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214c4761b00004e7dfd0663 + provider = provider.mso + description = + name = acctest_ravf1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 6214c4791d0000be534f9e99 + provider = provider.mso + name = acctest_qn6el + template_name = acctest_gcd0n + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214c4791d0000be534f9e99/templates/acctest_gcd0n/externalEpgs/acctest_84xdr + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_84xdr + external_epg_name = acctest_84xdr + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214c4791d0000be534f9e99 + selector_ip = + selector_name = + template_name = acctest_gcd0n + vrf_name = acctest_84xdr + vrf_schema_id = 6214c4791d0000be534f9e99 + vrf_template_name = acctest_gcd0n + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_84xdr + provider = provider.mso + display_name = acctest_84xdr + layer3_multicast = false + name = acctest_84xdr + schema_id = 6214c4791d0000be534f9e99 + template = acctest_gcd0n + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 16:39:49 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:39:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 16:39:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (destroy) +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 16:39:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:49 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:39:49 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 16:39:49 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 16:39:49 HTTP request PATCH mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:49 [DEBUG] Begin Injection +2022/02/22 16:39:49 HTTP request after injection PATCH mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:49 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 16:39:49 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Policy Update +2022/02/22 16:39:49 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:49 [DEBUG] Begin Injection +2022/02/22 16:39:49 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:49 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000663f80 355 [] false false map[] 0xc000187a00 0xc0000ee0b0} +2022/02/22 16:39:49 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 16:39:49 [DEBUG] Exit from do method +2022/02/22 16:39:49 [DEBUG] Policy Update finished successfully: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:49 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:39:49 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:49 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:49 [DEBUG] Begin Injection +2022/02/22 16:39:49 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:49 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:09:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000187100 0xc0003d5c30} +2022/02/22 16:39:49 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:49 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 16:39:49 [DEBUG] acctest_84xdr: Beginning Destroy +2022/02/22 16:39:49 HTTP request PATCH mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:49 [DEBUG] Begin Injection +2022/02/22 16:39:49 HTTP request after injection PATCH mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004ce780 355 [] false false map[] 0xc001012400 0xc0000ee0b0} +2022/02/22 16:39:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 16:39:49 [DEBUG] Exit from do method +2022/02/22 16:39:49 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:39:49 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 16:39:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:09:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000bac200 0xc0003d5c30} +2022/02/22 16:39:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99?validate=false +2022/02/22 16:39:50 [DEBUG] acctest_84xdr: Destroy finished successfully +2022/02/22 16:39:50 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 16:39:50 [DEBUG] 6214c4791d0000be534f9e99: Beginning Destroy +2022/02/22 16:39:50 HTTP request DELETE mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:50 [DEBUG] Begin Injection +2022/02/22 16:39:50 HTTP request after injection DELETE mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:50 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:09:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001012e00 0xc0003d5c30} +2022/02/22 16:39:50 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214c4791d0000be534f9e99 +2022/02/22 16:39:50 [DEBUG] 6214c4791d0000be534f9e99: Destroy finished successfully +2022/02/22 16:39:50 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:50 [DEBUG] New state was assigned lineage "b71fdf57-cb59-8fe8-15af-33f9826e1c41" +2022/02/22 16:39:50 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:50 [DEBUG] Begin Injection +2022/02/22 16:39:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e09600 355 [] false false map[] 0xc000350000 0xc0003d5c30} +2022/02/22 16:39:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 16:39:50 [DEBUG] Exit from do method +2022/02/22 16:39:50 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:50 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:50 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:50 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:39:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:39:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:50 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:39:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:50 [DEBUG] : Beginning Read +2022/02/22 16:39:50 HTTP request GET mso/api/v1/tenants +2022/02/22 16:39:50 [DEBUG] Begin Injection +2022/02/22 16:39:50 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:39:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049a600 3980 [] false false map[] 0xc000b02400 0xc0003d5c30} +2022/02/22 16:39:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:39:51 [DEBUG] Exit from do method +2022/02/22 16:39:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:51 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:39:51 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:51 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:51 [DEBUG] Begin Injection +2022/02/22 16:39:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000e25bc0 355 [] false false map[] 0xc000186400 0xc0003d5c30} +2022/02/22 16:39:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 16:39:51 [DEBUG] Exit from do method +2022/02/22 16:39:51 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:39:51 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:51 [DEBUG] New state was assigned lineage "e5bbf1eb-6a5f-6a7b-354b-40fcd24f815a" +2022/02/22 16:39:51 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:51 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:51 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:51 [DEBUG] Test: Executing step 7 +2022/02/22 16:39:51 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:51 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:39:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:51 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:39:51 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:51 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:39:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:39:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:39:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:51 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:51 [DEBUG] : Beginning Read +2022/02/22 16:39:51 HTTP request GET mso/api/v1/tenants +2022/02/22 16:39:51 [DEBUG] Begin Injection +2022/02/22 16:39:51 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:39:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000662940 3980 [] false false map[] 0xc000186400 0xc0003d5c30} +2022/02/22 16:39:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:39:51 [DEBUG] Exit from do method +2022/02/22 16:39:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:39:51 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:39:51 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:39:51 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:39:51 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:39:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:51 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:39:51 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:51 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:51 [DEBUG] Begin Injection +2022/02/22 16:39:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011442c0 355 [] false false map[] 0xc000d44400 0xc0003d5c30} +2022/02/22 16:39:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 16:39:52 [DEBUG] Exit from do method +2022/02/22 16:39:52 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:39:52 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:52 [DEBUG] New state was assigned lineage "63cc060d-424e-71db-501b-855046207a80" +2022/02/22 16:39:52 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:52 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:52 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:39:52 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:39:52 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:39:52 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:52 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:52 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.71.84" => "1.2.71.84" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214c4761b00004e7dfd0663" => "6214c4761b00004e7dfd0663" + name: "acctest_ravf1" => "acctest_ravf1" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_qn6el" + template_name: "" => "acctest_gcd0n" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_84xdr" + external_epg_name: "" => "acctest_84xdr" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_gcd0n" + vrf_name: "" => "acctest_84xdr" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_84xdr" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_84xdr" + schema_id: "" => "" + template: "" => "acctest_gcd0n" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214c4761b00004e7dfd0663 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.71.84 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_ravf1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 16:39:52 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:39:52 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:39:52 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:39:52 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:39:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test (prepare state)] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 16:39:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:39:52 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:39:52 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 16:39:52 [DEBUG] Schema: Beginning Creation +2022/02/22 16:39:52 HTTP request POST mso/api/v1/schemas +2022/02/22 16:39:52 [DEBUG] Begin Injection +2022/02/22 16:39:52 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 16:39:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 16:39:52 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 16:39:52 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214c4801d0000c8534f9e9f] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a26a00 400 [] false false map[] 0xc000186200 0xc0003d5c30} +2022/02/22 16:39:52 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214c4801d0000c8534f9e9f","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 16:39:52 [DEBUG] Exit from do method +2022/02/22 16:39:52 [DEBUG] 6214c4801d0000c8534f9e9f: Schema Creation finished successfully +2022/02/22 16:39:52 [DEBUG] 6214c4801d0000c8534f9e9f: Beginning Read +2022/02/22 16:39:52 HTTP request GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:52 [DEBUG] Begin Injection +2022/02/22 16:39:52 HTTP request after injection GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001144180 400 [] false false map[] 0xc000186400 0xc0003d5c30} +2022/02/22 16:39:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f {"id":"6214c4801d0000c8534f9e9f","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 16:39:52 [DEBUG] Exit from do method +2022/02/22 16:39:52 [DEBUG] 6214c4801d0000c8534f9e9f: Read finished successfully +2022/02/22 16:39:52 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 16:39:52 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 16:39:52 HTTP request PATCH mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:52 [DEBUG] Begin Injection +2022/02/22 16:39:52 HTTP request after injection PATCH mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:53 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:09:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0009f4200 0xc0003d5c30} +2022/02/22 16:39:53 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:53 [DEBUG] acctest_84xdr: Creation finished successfully +2022/02/22 16:39:53 [DEBUG] acctest_84xdr: Beginning Read +2022/02/22 16:39:53 HTTP request GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:53 [DEBUG] Begin Injection +2022/02/22 16:39:53 HTTP request after injection GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a26040 768 [] false false map[] 0xc000c2c800 0xc0003d5c30} +2022/02/22 16:39:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f {"id":"6214c4801d0000c8534f9e9f","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 16:39:53 [DEBUG] Exit from do method +2022/02/22 16:39:53 currentvrfname acctest_84xdr +2022/02/22 16:39:53 found correct vrfname +2022/02/22 16:39:53 [DEBUG] acctest_84xdr: Read finished successfully +2022/02/22 16:39:53 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:39:53 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 16:39:53 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 16:39:53 HTTP request PATCH mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:53 [DEBUG] Begin Injection +2022/02/22 16:39:53 HTTP request after injection PATCH mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:53 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:09:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0009f4800 0xc0003d5c30} +2022/02/22 16:39:53 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:53 [DEBUG] : Beginning Read +2022/02/22 16:39:53 HTTP request GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:53 [DEBUG] Begin Injection +2022/02/22 16:39:53 HTTP request after injection GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001144040 1147 [] false false map[] 0xc000186800 0xc0003d5c30} +2022/02/22 16:39:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f {"id":"6214c4801d0000c8534f9e9f","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","extEpgType":"on-premise","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:39:54 [DEBUG] Exit from do method +2022/02/22 16:39:54 [DEBUG] /schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr: Read finished successfully +2022/02/22 16:39:54 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 16:39:54 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Policy Update +2022/02/22 16:39:54 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:54 [DEBUG] Begin Injection +2022/02/22 16:39:54 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:54 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010c6140 359 [] false false map[] 0xc000186c00 0xc0003d5c30} +2022/02/22 16:39:54 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"","externalEpgRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 16:39:54 [DEBUG] Exit from do method +2022/02/22 16:39:54 [DEBUG] Policy Update finished successfully: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:54 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:39:54 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:54 [DEBUG] Begin Injection +2022/02/22 16:39:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049a440 359 [] false false map[] 0xc000102100 0xc0003d5c30} +2022/02/22 16:39:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"","externalEpgRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 16:39:54 [DEBUG] Exit from do method +2022/02/22 16:39:54 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:39:54 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 16:39:54 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:54 [DEBUG] New state was assigned lineage "459394bb-91a3-0653-cc00-e460c177150f" +2022/02/22 16:39:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:54 [DEBUG] Begin Injection +2022/02/22 16:39:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010c6140 359 [] false false map[] 0xc000186200 0xc0003d5c30} +2022/02/22 16:39:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"","externalEpgRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 16:39:55 [DEBUG] Exit from do method +2022/02/22 16:39:55 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 16:39:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:55 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:55 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:55 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:55 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:55 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:55 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:39:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:39:55 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:55 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:39:55 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 16:39:55 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:55 [DEBUG] : Beginning Read +2022/02/22 16:39:55 HTTP request GET mso/api/v1/tenants +2022/02/22 16:39:55 [DEBUG] Begin Injection +2022/02/22 16:39:55 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:39:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014e8080 3980 [] false false map[] 0xc0004b2400 0xc0003d5c30} +2022/02/22 16:39:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:39:55 [DEBUG] Exit from do method +2022/02/22 16:39:55 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:39:55 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:39:55 [DEBUG] 6214c4801d0000c8534f9e9f: Beginning Read +2022/02/22 16:39:55 HTTP request GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:55 [DEBUG] Begin Injection +2022/02/22 16:39:55 HTTP request after injection GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e56c0 1147 [] false false map[] 0xc000c2cb00 0xc0003d5c30} +2022/02/22 16:39:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f {"id":"6214c4801d0000c8534f9e9f","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","extEpgType":"on-premise","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:39:55 [DEBUG] Exit from do method +2022/02/22 16:39:56 [DEBUG] 6214c4801d0000c8534f9e9f: Read finished successfully +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:39:56 [DEBUG] acctest_84xdr: Beginning Read +2022/02/22 16:39:56 HTTP request GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:56 [DEBUG] Begin Injection +2022/02/22 16:39:56 HTTP request after injection GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000c4680 1147 [] false false map[] 0xc0004b2a00 0xc0003d5c30} +2022/02/22 16:39:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f {"id":"6214c4801d0000c8534f9e9f","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","extEpgType":"on-premise","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:39:56 [DEBUG] Exit from do method +2022/02/22 16:39:56 currentvrfname acctest_84xdr +2022/02/22 16:39:56 found correct vrfname +2022/02/22 16:39:56 [DEBUG] acctest_84xdr: Read finished successfully +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:39:56 [DEBUG] /schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr: Beginning Read +2022/02/22 16:39:56 HTTP request GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:56 [DEBUG] Begin Injection +2022/02/22 16:39:56 HTTP request after injection GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001144800 1147 [] false false map[] 0xc0004b2b00 0xc0003d5c30} +2022/02/22 16:39:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f {"id":"6214c4801d0000c8534f9e9f","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","extEpgType":"on-premise","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:39:56 [DEBUG] Exit from do method +2022/02/22 16:39:56 [DEBUG] /schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr: Read finished successfully +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:56 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:39:56 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:56 [DEBUG] Begin Injection +2022/02/22 16:39:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00049a400 359 [] false false map[] 0xc000d74700 0xc0003d5c30} +2022/02/22 16:39:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"","externalEpgRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 16:39:56 [DEBUG] Exit from do method +2022/02/22 16:39:56 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:39:56 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:56 [DEBUG] New state was assigned lineage "d70aed65-e1c1-e36a-3470-d3f33190f848" +2022/02/22 16:39:56 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 16:39:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:56 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:56 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:39:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:56 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:56 [DEBUG] Test: Executing step 8 +2022/02/22 16:39:57 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:39:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 16:39:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:39:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:39:57 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:39:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:57 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:39:57 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:57 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 16:39:57 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 16:39:57 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 16:39:57 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:39:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:39:57 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:39:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:39:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:57 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:57 [DEBUG] : Beginning Read +2022/02/22 16:39:57 HTTP request GET mso/api/v1/tenants +2022/02/22 16:39:57 [DEBUG] Begin Injection +2022/02/22 16:39:57 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:39:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:39:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000c5b80 3980 [] false false map[] 0xc000c2cf00 0xc0003d5c30} +2022/02/22 16:39:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:39:57 [DEBUG] Exit from do method +2022/02/22 16:39:57 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:39:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:57 [DEBUG] 6214c4801d0000c8534f9e9f: Beginning Read +2022/02/22 16:39:57 HTTP request GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:57 [DEBUG] Begin Injection +2022/02/22 16:39:57 HTTP request after injection GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:57 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:39:57 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:57 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:57 [DEBUG] Begin Injection +2022/02/22 16:39:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a26d40 359 [] false false map[] 0xc000218000 0xc0000ee0b0} +2022/02/22 16:39:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"","externalEpgRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 16:39:57 [DEBUG] Exit from do method +2022/02/22 16:39:57 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:39:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000562dc0 1147 [] false false map[] 0xc000186600 0xc0003d5c30} +2022/02/22 16:39:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f {"id":"6214c4801d0000c8534f9e9f","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","extEpgType":"on-premise","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:39:57 [DEBUG] Exit from do method +2022/02/22 16:39:57 [DEBUG] 6214c4801d0000c8534f9e9f: Read finished successfully +2022/02/22 16:39:57 [DEBUG] acctest_84xdr: Beginning Read +2022/02/22 16:39:57 HTTP request GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:57 [DEBUG] Begin Injection +2022/02/22 16:39:57 HTTP request after injection GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a6e00 1147 [] false false map[] 0xc000186a00 0xc0003d5c30} +2022/02/22 16:39:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f {"id":"6214c4801d0000c8534f9e9f","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","extEpgType":"on-premise","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:39:58 [DEBUG] Exit from do method +2022/02/22 16:39:58 currentvrfname acctest_84xdr +2022/02/22 16:39:58 found correct vrfname +2022/02/22 16:39:58 [DEBUG] acctest_84xdr: Read finished successfully +2022/02/22 16:39:58 [DEBUG] /schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr: Beginning Read +2022/02/22 16:39:58 HTTP request GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:58 [DEBUG] Begin Injection +2022/02/22 16:39:58 HTTP request after injection GET mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005631c0 1147 [] false false map[] 0xc000186d00 0xc0003d5c30} +2022/02/22 16:39:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f {"id":"6214c4801d0000c8534f9e9f","displayName":"acctest_qn6el","description":"","templates":[{"name":"acctest_gcd0n","displayName":"acctest_gcd0n","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_84xdr","displayName":"acctest_84xdr","extEpgType":"on-premise","vrfRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/vrfs/acctest_84xdr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:39:58 [DEBUG] Exit from do method +2022/02/22 16:39:58 [DEBUG] /schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr: Read finished successfully +2022/02/22 16:39:58 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:58 [DEBUG] New state was assigned lineage "748e5f81-1562-0b96-0795-aba6d9be656f" +2022/02/22 16:39:58 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:58 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:58 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:58 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "test description" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.71.84" => "1.2.71.84" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214c4761b00004e7dfd0663" => "6214c4761b00004e7dfd0663" + name: "acctest_ravf1" => "acctest_ravf1" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214c4801d0000c8534f9e9f" => "" + name: "acctest_qn6el" => "" + template_name: "acctest_gcd0n" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_84xdr" => "" + external_epg_name: "acctest_84xdr" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214c4801d0000c8534f9e9f" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_gcd0n" => "" + vrf_name: "acctest_84xdr" => "" + vrf_schema_id: "6214c4801d0000c8534f9e9f" => "" + vrf_template_name: "acctest_gcd0n" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_84xdr" => "" + id: "acctest_84xdr" => "" + layer3_multicast: "false" => "" + name: "acctest_84xdr" => "" + schema_id: "6214c4801d0000c8534f9e9f" => "" + template: "acctest_gcd0n" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214c4761b00004e7dfd0663 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.71.84 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_ravf1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214c4801d0000c8534f9e9f + provider = provider.mso + name = acctest_qn6el + template_name = acctest_gcd0n + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214c4801d0000c8534f9e9f/templates/acctest_gcd0n/externalEpgs/acctest_84xdr + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_84xdr + external_epg_name = acctest_84xdr + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214c4801d0000c8534f9e9f + selector_ip = + selector_name = + template_name = acctest_gcd0n + vrf_name = acctest_84xdr + vrf_schema_id = 6214c4801d0000c8534f9e9f + vrf_template_name = acctest_gcd0n + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_84xdr + provider = provider.mso + display_name = acctest_84xdr + layer3_multicast = false + name = acctest_84xdr + schema_id = 6214c4801d0000c8534f9e9f + template = acctest_gcd0n + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 16:39:58 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:39:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (clean up state) +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:39:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:39:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 16:39:58 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:39:58 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 16:39:58 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 16:39:58 HTTP request PATCH mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:58 [DEBUG] Begin Injection +2022/02/22 16:39:58 HTTP request after injection PATCH mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:58 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 16:39:58 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Policy Update +2022/02/22 16:39:58 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:58 [DEBUG] Begin Injection +2022/02/22 16:39:58 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:58 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:09:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000446600 0xc0003d5c30} +2022/02/22 16:39:58 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:58 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 16:39:58 [DEBUG] acctest_84xdr: Beginning Destroy +2022/02/22 16:39:58 HTTP request PATCH mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:58 [DEBUG] Begin Injection +2022/02/22 16:39:58 HTTP request after injection PATCH mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:58 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000662c40 371 [] false false map[] 0xc000c2d200 0xc0000ee0b0} +2022/02/22 16:39:58 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 16:39:58 [DEBUG] Exit from do method +2022/02/22 16:39:58 [DEBUG] Policy Update finished successfully: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:58 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:39:58 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:39:58 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:58 [DEBUG] Begin Injection +2022/02/22 16:39:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010c7740 371 [] false false map[] 0xc000446800 0xc0000ee0b0} +2022/02/22 16:39:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 16:39:59 [DEBUG] Exit from do method +2022/02/22 16:39:59 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:39:59 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 16:39:59 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:59 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:09:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000186a00 0xc0003d5c30} +2022/02/22 16:39:59 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f?validate=false +2022/02/22 16:39:59 [DEBUG] acctest_84xdr: Destroy finished successfully +2022/02/22 16:39:59 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 16:39:59 [DEBUG] 6214c4801d0000c8534f9e9f: Beginning Destroy +2022/02/22 16:39:59 HTTP request DELETE mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:59 [DEBUG] Begin Injection +2022/02/22 16:39:59 HTTP request after injection DELETE mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:59 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:59 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:09:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000446c00 0xc0003d5c30} +2022/02/22 16:39:59 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214c4801d0000c8534f9e9f +2022/02/22 16:39:59 [DEBUG] 6214c4801d0000c8534f9e9f: Destroy finished successfully +2022/02/22 16:39:59 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:59 [DEBUG] New state was assigned lineage "212755a3-b83e-937d-4f05-2f533120ea14" +2022/02/22 16:39:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:59 [DEBUG] Begin Injection +2022/02/22 16:39:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:39:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:09:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000562900 371 [] false false map[] 0xc000d52100 0xc0003d5c30} +2022/02/22 16:39:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 16:39:59 [DEBUG] Exit from do method +2022/02/22 16:39:59 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:39:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:39:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:59 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:39:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:39:59 [DEBUG] provider has no plugin.Client +2022/02/22 16:39:59 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:39:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:39:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:39:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:39:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:39:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:39:59 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:39:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:39:59 [DEBUG] : Beginning Read +2022/02/22 16:39:59 HTTP request GET mso/api/v1/tenants +2022/02/22 16:39:59 [DEBUG] Begin Injection +2022/02/22 16:39:59 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:39:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011440c0 3980 [] false false map[] 0xc000c2cb00 0xc0003d5c30} +2022/02/22 16:40:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:40:00 [DEBUG] Exit from do method +2022/02/22 16:40:00 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:40:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:00 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:40:00 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:40:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:00 [DEBUG] Begin Injection +2022/02/22 16:40:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004ce0c0 371 [] false false map[] 0xc000c2c700 0xc0003d5c30} +2022/02/22 16:40:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 16:40:00 [DEBUG] Exit from do method +2022/02/22 16:40:00 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:40:00 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:00 [DEBUG] New state was assigned lineage "6c2ce8cb-c5f6-3a39-0e21-5f41ac6c9afe" +2022/02/22 16:40:00 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:40:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:00 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:40:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:00 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:00 [DEBUG] Test: Executing step 9 +2022/02/22 16:40:00 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (import id \"6214c4761b00004e7dfd0663\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/22 16:40:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (import id \"6214c4761b00004e7dfd0663\")" references: [] +2022/02/22 16:40:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:00 [DEBUG] Starting graph walk: walkImport +2022/02/22 16:40:00 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Import +2022/02/22 16:40:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:00 [DEBUG] Begin Injection +2022/02/22 16:40:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000662040 371 [] false false map[] 0xc000186c00 0xc0003d5c30} +2022/02/22 16:40:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 16:40:01 [DEBUG] Exit from do method +2022/02/22 16:40:01 [DEBUG] 6214c4761b00004e7dfd0663: Import finished successfully +2022/02/22 16:40:01 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:40:01 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:40:01 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:01 [DEBUG] Begin Injection +2022/02/22 16:40:01 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004cf640 371 [] false false map[] 0xc000186400 0xc0003d5c30} +2022/02/22 16:40:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 16:40:01 [DEBUG] Exit from do method +2022/02/22 16:40:01 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:40:01 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:01 [DEBUG] New state was assigned lineage "b43c6c8a-5255-2b62-c915-f4fe0441a881" +2022/02/22 16:40:01 [DEBUG] Test: Executing step 10 +2022/02/22 16:40:01 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:40:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:40:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:40:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:01 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:40:01 [ERROR] : eval: *terraform.EvalValidateResource, err: 2 problems: + +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +- Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 16:40:01 [ERROR] : eval: *terraform.EvalSequence, err: 2 problems: + +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +- Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 16:40:01 [DEBUG] Test: Executing step 11 +2022/02/22 16:40:01 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:01 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:40:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:40:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:40:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:01 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:40:01 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:01 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:40:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:40:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:40:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:01 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:40:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:01 [DEBUG] : Beginning Read +2022/02/22 16:40:01 HTTP request GET mso/api/v1/tenants +2022/02/22 16:40:01 [DEBUG] Begin Injection +2022/02/22 16:40:01 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:40:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001144080 3980 [] false false map[] 0xc000446500 0xc0003d5c30} +2022/02/22 16:40:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:40:01 [DEBUG] Exit from do method +2022/02/22 16:40:01 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:40:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:01 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:40:01 id: 6214c4761b00004e7dfd0663 +2022/02/22 16:40:01 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:01 [DEBUG] Begin Injection +2022/02/22 16:40:01 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[371] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000662080 371 [] false false map[] 0xc000186500 0xc0003d5c30} +2022/02/22 16:40:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 {"id":"6214c4761b00004e7dfd0663","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.71.84","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 16:40:02 [DEBUG] Exit from do method +2022/02/22 16:40:02 [DEBUG] 6214c4761b00004e7dfd0663: Read finished successfully +2022/02/22 16:40:02 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:02 [DEBUG] New state was assigned lineage "ae46c0a0-6cfe-8e5e-d289-5c54dce1c89d" +2022/02/22 16:40:02 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:40:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:02 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:02 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:02 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "test description" => "" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.71.84" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214c4761b00004e7dfd0663" => "" + name: "acctest_ravf1" => "acctest_2eyiq" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214c4761b00004e7dfd0663 + provider = provider.mso + description = test description + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.71.84 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_ravf1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 16:40:02 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:40:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 16:40:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:40:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:40:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:40:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:40:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:40:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:40:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:02 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:40:02 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 16:40:02 [DEBUG] 6214c4761b00004e7dfd0663: Beginning Read +2022/02/22 16:40:02 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:02 [DEBUG] Begin Injection +2022/02/22 16:40:02 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:02 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:02 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:10:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000447400 0xc0003d5c30} +2022/02/22 16:40:02 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c4761b00004e7dfd0663 +2022/02/22 16:40:02 [DEBUG] : Read finished successfully +2022/02/22 16:40:02 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 16:40:02 [DEBUG] : Beginning Create +2022/02/22 16:40:02 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:40:02 [DEBUG] Begin Injection +2022/02/22 16:40:02 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:40:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:40:02 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:40:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004ce3c0 160 [] false false map[] 0xc0005dca00 0xc0003d5c30} +2022/02/22 16:40:02 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214c48a1b0000747dfd0664","name":"acctest_2eyiq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:40:02 [DEBUG] Exit from do method +2022/02/22 16:40:02 [DEBUG] 6214c48a1b0000747dfd0664: Creation finished successfully +2022/02/22 16:40:02 [DEBUG] 6214c48a1b0000747dfd0664: Beginning Read +2022/02/22 16:40:02 id: 6214c48a1b0000747dfd0664 +2022/02/22 16:40:02 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:02 [DEBUG] Begin Injection +2022/02/22 16:40:02 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a6400 160 [] false false map[] 0xc000446100 0xc0003d5c30} +2022/02/22 16:40:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 {"id":"6214c48a1b0000747dfd0664","name":"acctest_2eyiq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:40:03 [DEBUG] Exit from do method +2022/02/22 16:40:03 [DEBUG] 6214c48a1b0000747dfd0664: Read finished successfully +2022/02/22 16:40:03 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:03 [DEBUG] New state was assigned lineage "5f9438cb-a0dd-3f3d-0b88-eadbe6e92944" +2022/02/22 16:40:03 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:03 [DEBUG] Begin Injection +2022/02/22 16:40:03 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a6540 160 [] false false map[] 0xc000186000 0xc0003d5c30} +2022/02/22 16:40:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 {"id":"6214c48a1b0000747dfd0664","name":"acctest_2eyiq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:40:03 [DEBUG] Exit from do method +2022/02/22 16:40:03 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:40:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:03 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:40:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:03 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:03 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:40:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:40:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:40:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:03 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:40:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:03 [DEBUG] : Beginning Read +2022/02/22 16:40:03 HTTP request GET mso/api/v1/tenants +2022/02/22 16:40:03 [DEBUG] Begin Injection +2022/02/22 16:40:03 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:40:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a7840 3980 [] false false map[] 0xc000524400 0xc0003d5c30} +2022/02/22 16:40:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:40:03 [DEBUG] Exit from do method +2022/02/22 16:40:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:40:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:03 [DEBUG] 6214c48a1b0000747dfd0664: Beginning Read +2022/02/22 16:40:03 id: 6214c48a1b0000747dfd0664 +2022/02/22 16:40:03 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:03 [DEBUG] Begin Injection +2022/02/22 16:40:03 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004cec80 160 [] false false map[] 0xc000da6800 0xc0003d5c30} +2022/02/22 16:40:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 {"id":"6214c48a1b0000747dfd0664","name":"acctest_2eyiq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:40:04 [DEBUG] Exit from do method +2022/02/22 16:40:04 [DEBUG] 6214c48a1b0000747dfd0664: Read finished successfully +2022/02/22 16:40:04 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:04 [DEBUG] New state was assigned lineage "686e06be-c34d-4bea-9050-72082d8940be" +2022/02/22 16:40:04 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:40:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:04 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:04 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:04 [DEBUG] Test: Executing step 12 +2022/02/22 16:40:04 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:04 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:40:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:40:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:04 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:40:04 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:04 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:40:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:40:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:04 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:04 [DEBUG] : Beginning Read +2022/02/22 16:40:04 HTTP request GET mso/api/v1/tenants +2022/02/22 16:40:04 [DEBUG] Begin Injection +2022/02/22 16:40:04 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:40:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000c4780 3980 [] false false map[] 0xc000fdcd00 0xc0003d5c30} +2022/02/22 16:40:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:40:04 [DEBUG] Exit from do method +2022/02/22 16:40:04 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:40:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:04 [DEBUG] 6214c48a1b0000747dfd0664: Beginning Read +2022/02/22 16:40:04 id: 6214c48a1b0000747dfd0664 +2022/02/22 16:40:04 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:04 [DEBUG] Begin Injection +2022/02/22 16:40:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a26280 160 [] false false map[] 0xc000186b00 0xc0003d5c30} +2022/02/22 16:40:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 {"id":"6214c48a1b0000747dfd0664","name":"acctest_2eyiq","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:40:05 [DEBUG] Exit from do method +2022/02/22 16:40:05 [DEBUG] 6214c48a1b0000747dfd0664: Read finished successfully +2022/02/22 16:40:05 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:05 [DEBUG] New state was assigned lineage "2ea15743-2290-8808-324e-005ebb21a610" +2022/02/22 16:40:05 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:40:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:05 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:05 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:05 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "6214c48a1b0000747dfd0664" => "" + name: "acctest_2eyiq" => "acctest_ravf1" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214c48a1b0000747dfd0664 + provider = provider.mso + description = + name = acctest_2eyiq + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 16:40:05 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:40:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:40:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:40:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:40:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:40:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:40:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:40:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:40:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:05 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:40:05 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 16:40:05 [DEBUG] 6214c48a1b0000747dfd0664: Beginning Read +2022/02/22 16:40:05 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:05 [DEBUG] Begin Injection +2022/02/22 16:40:05 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:05 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:05 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:10:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00065c100 0xc0003d5c30} +2022/02/22 16:40:05 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48a1b0000747dfd0664 +2022/02/22 16:40:05 [DEBUG] : Read finished successfully +2022/02/22 16:40:05 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 16:40:05 [DEBUG] : Beginning Create +2022/02/22 16:40:05 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:40:05 [DEBUG] Begin Injection +2022/02/22 16:40:05 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:40:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:40:05 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:40:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010c6880 160 [] false false map[] 0xc000186600 0xc0003d5c30} +2022/02/22 16:40:05 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214c48d1b0000767dfd0665","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:40:05 [DEBUG] Exit from do method +2022/02/22 16:40:05 [DEBUG] 6214c48d1b0000767dfd0665: Creation finished successfully +2022/02/22 16:40:05 [DEBUG] 6214c48d1b0000767dfd0665: Beginning Read +2022/02/22 16:40:05 id: 6214c48d1b0000767dfd0665 +2022/02/22 16:40:05 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:05 [DEBUG] Begin Injection +2022/02/22 16:40:05 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a26540 160 [] false false map[] 0xc00157e000 0xc0003d5c30} +2022/02/22 16:40:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 {"id":"6214c48d1b0000767dfd0665","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:40:06 [DEBUG] Exit from do method +2022/02/22 16:40:06 [DEBUG] 6214c48d1b0000767dfd0665: Read finished successfully +2022/02/22 16:40:06 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:06 [DEBUG] New state was assigned lineage "acb2bfc0-6772-9131-ce97-6f9b7d54a39e" +2022/02/22 16:40:06 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:06 [DEBUG] Begin Injection +2022/02/22 16:40:06 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0010c61c0 160 [] false false map[] 0xc00157e100 0xc0003d5c30} +2022/02/22 16:40:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 {"id":"6214c48d1b0000767dfd0665","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:40:06 [DEBUG] Exit from do method +2022/02/22 16:40:06 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:40:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:06 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:40:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:06 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:06 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:40:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:40:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:40:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:06 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:40:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:06 [DEBUG] : Beginning Read +2022/02/22 16:40:06 HTTP request GET mso/api/v1/tenants +2022/02/22 16:40:06 [DEBUG] Begin Injection +2022/02/22 16:40:06 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:40:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001144140 3980 [] false false map[] 0xc000187000 0xc0003d5c30} +2022/02/22 16:40:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:40:06 [DEBUG] Exit from do method +2022/02/22 16:40:06 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:40:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:06 [DEBUG] 6214c48d1b0000767dfd0665: Beginning Read +2022/02/22 16:40:06 id: 6214c48d1b0000767dfd0665 +2022/02/22 16:40:06 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:06 [DEBUG] Begin Injection +2022/02/22 16:40:06 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014e8240 160 [] false false map[] 0xc000ae4400 0xc0003d5c30} +2022/02/22 16:40:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 {"id":"6214c48d1b0000767dfd0665","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:40:07 [DEBUG] Exit from do method +2022/02/22 16:40:07 [DEBUG] 6214c48d1b0000767dfd0665: Read finished successfully +2022/02/22 16:40:07 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:07 [DEBUG] New state was assigned lineage "e8c4ba5c-ec29-1c20-211e-e2f63ed3a1f3" +2022/02/22 16:40:07 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:40:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:07 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:07 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:07 [WARN] Test: Executing destroy step +2022/02/22 16:40:07 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:07 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:40:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:40:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:07 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:40:07 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:07 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:40:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:40:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:40:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:07 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:07 [DEBUG] : Beginning Read +2022/02/22 16:40:07 HTTP request GET mso/api/v1/tenants +2022/02/22 16:40:07 [DEBUG] Begin Injection +2022/02/22 16:40:07 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:40:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000c4180 3980 [] false false map[] 0xc001494300 0xc0003d5c30} +2022/02/22 16:40:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:40:07 [DEBUG] Exit from do method +2022/02/22 16:40:07 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:40:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:40:07 [DEBUG] 6214c48d1b0000767dfd0665: Beginning Read +2022/02/22 16:40:07 id: 6214c48d1b0000767dfd0665 +2022/02/22 16:40:07 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:07 [DEBUG] Begin Injection +2022/02/22 16:40:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006620c0 160 [] false false map[] 0xc000186400 0xc0003d5c30} +2022/02/22 16:40:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 {"id":"6214c48d1b0000767dfd0665","name":"acctest_ravf1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 16:40:08 [DEBUG] Exit from do method +2022/02/22 16:40:08 [DEBUG] 6214c48d1b0000767dfd0665: Read finished successfully +2022/02/22 16:40:08 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:08 [DEBUG] New state was assigned lineage "8835130e-3a1b-8fc8-1b9e-96ea041deb17" +2022/02/22 16:40:08 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:40:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:40:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:08 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:40:08 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214c48d1b0000767dfd0665" => "" + name: "acctest_ravf1" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214c48d1b0000767dfd0665 + provider = provider.mso + description = + name = acctest_ravf1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 16:40:08 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:40:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:40:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:08 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:40:08 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 16:40:08 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 16:40:08 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 16:40:08 [DEBUG] 6214c48d1b0000767dfd0665: Beginning Read +2022/02/22 16:40:08 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:08 [DEBUG] Begin Injection +2022/02/22 16:40:08 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:08 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:08 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:10:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000f1c200 0xc0003d5c30} +2022/02/22 16:40:08 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:08 [DEBUG] : Read finished successfully +2022/02/22 16:40:08 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:08 [DEBUG] New state was assigned lineage "1c7032e7-1d60-1178-c5ab-341b0ff4c63f" +2022/02/22 16:40:08 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:08 [DEBUG] Begin Injection +2022/02/22 16:40:08 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 +2022/02/22 16:40:08 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:08 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000662a00 86 [] false false map[] 0xc000f1c300 0xc0003d5c30} +2022/02/22 16:40:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c48d1b0000767dfd0665 {"code":141,"message":"Resource Not Found: Policy 6214c48d1b0000767dfd0665 not found"} +2022/02/22 16:40:08 [DEBUG] Exit from do method +2022/02/22 16:40:08 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:40:08 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:40:08 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:40:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:40:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:08 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:40:08 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:40:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:08 [DEBUG] : Beginning Read +2022/02/22 16:40:08 HTTP request GET mso/api/v1/tenants +2022/02/22 16:40:08 [DEBUG] Begin Injection +2022/02/22 16:40:08 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:40:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:40:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:10:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000c4200 3980 [] false false map[] 0xc001495300 0xc0003d5c30} +2022/02/22 16:40:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:40:09 [DEBUG] Exit from do method +2022/02/22 16:40:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:40:09 [DEBUG] provider has no plugin.Client +2022/02/22 16:40:09 [DEBUG] New state was assigned lineage "22c25158-75f5-f700-42f0-4e742326a5dc" +2022/02/22 16:40:09 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:40:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:40:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:40:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:40:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:40:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:40:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:40:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:40:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:40:09 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:44:15 [DEBUG] Test: Executing step 0 +2022/02/22 16:44:15 [DEBUG] provider has no plugin.Client +2022/02/22 16:44:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:44:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:44:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:44:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:44:15 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:44:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:44:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:44:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:44:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:44:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:44:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:44:15 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 16:44:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 16:44:15 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:44:15 [DEBUG] provider has no plugin.Client +2022/02/22 16:44:15 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:44:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:44:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:44:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:44:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:44:15 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:44:15 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:44:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:44:15 [DEBUG] : Beginning Read +2022/02/22 16:44:15 HTTP request GET mso/api/v1/tenants +2022/02/22 16:44:15 [DEBUG] Begin Injection +2022/02/22 16:44:15 HTTP request POST /login +2022/02/22 16:44:15 HTTP request after injection POST /login +2022/02/22 16:44:15 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 16:44:16 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 16:44:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:14:16 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1Mjk2NTYsImlhdCI6MTY0NTUyODQ1NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJSS1ZpODJyU0FMcnhpS0hJdFplbllweXMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.f9kZe-b49E4jqtn_cTsQqZQ5N9_HTAv6Jgz7gFHIQaJyRnW1cmk0gcqYTo1FolyIXt4GylBmE5MERi0kb2XNIZ-DsL73Z1m06fPKp29D7_E3BUNuiCZPjrf3P8vZZlzlZ1Z2w2dsszwcyCvTJm4di3Cr6evY85ChetUUzyA4xlOWbNbBxDkLZi0vFLwz3JJhQxdXgc97RskGSBKAhghpOKi9rKa0Ue2yFrPllBKChhXbXHN-7xrTaN3kd0DJNVwt1xRnhQMRhTbo71HQ7Ja52V7L2NonZJFqijyw34B7EWJ0Lezld-JXO5uZcaoQslJ5_WxHtrDZS2v3TyNyatRdYg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00082a200 -1 [chunked] false false map[] 0xc000850200 0xc000164580} +2022/02/22 16:44:16 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1Mjk2NTYsImlhdCI6MTY0NTUyODQ1NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJSS1ZpODJyU0FMcnhpS0hJdFplbllweXMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.f9kZe-b49E4jqtn_cTsQqZQ5N9_HTAv6Jgz7gFHIQaJyRnW1cmk0gcqYTo1FolyIXt4GylBmE5MERi0kb2XNIZ-DsL73Z1m06fPKp29D7_E3BUNuiCZPjrf3P8vZZlzlZ1Z2w2dsszwcyCvTJm4di3Cr6evY85ChetUUzyA4xlOWbNbBxDkLZi0vFLwz3JJhQxdXgc97RskGSBKAhghpOKi9rKa0Ue2yFrPllBKChhXbXHN-7xrTaN3kd0DJNVwt1xRnhQMRhTbo71HQ7Ja52V7L2NonZJFqijyw34B7EWJ0Lezld-JXO5uZcaoQslJ5_WxHtrDZS2v3TyNyatRdYg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1Mjk2NTYsImlhdCI6MTY0NTUyODQ1NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJSS1ZpODJyU0FMcnhpS0hJdFplbllweXMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.f9kZe-b49E4jqtn_cTsQqZQ5N9_HTAv6Jgz7gFHIQaJyRnW1cmk0gcqYTo1FolyIXt4GylBmE5MERi0kb2XNIZ-DsL73Z1m06fPKp29D7_E3BUNuiCZPjrf3P8vZZlzlZ1Z2w2dsszwcyCvTJm4di3Cr6evY85ChetUUzyA4xlOWbNbBxDkLZi0vFLwz3JJhQxdXgc97RskGSBKAhghpOKi9rKa0Ue2yFrPllBKChhXbXHN-7xrTaN3kd0DJNVwt1xRnhQMRhTbo71HQ7Ja52V7L2NonZJFqijyw34B7EWJ0Lezld-JXO5uZcaoQslJ5_WxHtrDZS2v3TyNyatRdYg"} +2022/02/22 16:44:16 [DEBUG] Exit from do method +2022/02/22 16:44:16 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:44:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:44:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:44:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:14:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00053a3c0 3980 [] false false map[] 0xc000850100 0xc000164580} +2022/02/22 16:44:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:44:17 [DEBUG] Exit from do method +2022/02/22 16:44:17 [ERROR] : eval: *terraform.EvalReadData, err: Tenant of specified name not found +2022/02/22 16:44:17 [ERROR] : eval: *terraform.EvalSequence, err: Tenant of specified name not found +2022/02/22 16:44:17 [DEBUG] New state was assigned lineage "af4466d5-e800-ad03-801e-b444cedfc08b" +2022/02/22 16:44:17 [WARN] Skipping destroy test since there is no state. +2022/02/22 16:46:51 [DEBUG] Test: Executing step 0 +2022/02/22 16:46:51 [DEBUG] provider has no plugin.Client +2022/02/22 16:46:51 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:46:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:46:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:46:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:46:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:46:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:46:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:46:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:46:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 16:46:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 16:46:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:46:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:46:51 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:46:51 [DEBUG] provider has no plugin.Client +2022/02/22 16:46:51 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:46:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:46:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:46:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:46:51 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:46:51 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:46:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:51 [DEBUG] : Beginning Read +2022/02/22 16:46:51 HTTP request GET mso/api/v1/tenants +2022/02/22 16:46:51 [DEBUG] Begin Injection +2022/02/22 16:46:51 HTTP request POST /login +2022/02/22 16:46:51 HTTP request after injection POST /login +2022/02/22 16:46:51 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 16:46:53 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 16:46:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:16:53 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1Mjk4MTMsImlhdCI6MTY0NTUyODYxMywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ2OWtiVWUxQkdCTXU4R09EMTdrdlpJTWIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.AeZQ9a9PwOlOL033jRqilui-3d4PL5js1otVIR-LwYfbBWyUwVaMDu31z_OV4ap8F0z95cgMY37zbrkUOGjoQmu8M3uz6m5wq6R6uOjFva5dWqPJePz3yEeRtJ8VSU0-sHUlSqXa_UxuzBWOtfBXP1ovd2o9mdLZQWgQURyoPNLBNj57RnHPT7xdsuO7Ecy0e9rNU3yznzgo7W2nIMXVRGGUSowJl9PfUiNj2P_1E1v6yOsGRV6I-z8qaZnzzszw-o14UzKEMaTNVHGtoUI_45d64hu6uj6ijaKRtl25najIyFKCauy7HKoTake-8vCybwZnhurgzJupYPnLYkbmKg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00021a140 -1 [chunked] false false map[] 0xc0003ae400 0xc0003f4000} +2022/02/22 16:46:53 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1Mjk4MTMsImlhdCI6MTY0NTUyODYxMywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ2OWtiVWUxQkdCTXU4R09EMTdrdlpJTWIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.AeZQ9a9PwOlOL033jRqilui-3d4PL5js1otVIR-LwYfbBWyUwVaMDu31z_OV4ap8F0z95cgMY37zbrkUOGjoQmu8M3uz6m5wq6R6uOjFva5dWqPJePz3yEeRtJ8VSU0-sHUlSqXa_UxuzBWOtfBXP1ovd2o9mdLZQWgQURyoPNLBNj57RnHPT7xdsuO7Ecy0e9rNU3yznzgo7W2nIMXVRGGUSowJl9PfUiNj2P_1E1v6yOsGRV6I-z8qaZnzzszw-o14UzKEMaTNVHGtoUI_45d64hu6uj6ijaKRtl25najIyFKCauy7HKoTake-8vCybwZnhurgzJupYPnLYkbmKg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"app-user\",\"ReadPriv\"],[\"admin\",\"WritePriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1Mjk4MTMsImlhdCI6MTY0NTUyODYxMywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ2OWtiVWUxQkdCTXU4R09EMTdrdlpJTWIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.AeZQ9a9PwOlOL033jRqilui-3d4PL5js1otVIR-LwYfbBWyUwVaMDu31z_OV4ap8F0z95cgMY37zbrkUOGjoQmu8M3uz6m5wq6R6uOjFva5dWqPJePz3yEeRtJ8VSU0-sHUlSqXa_UxuzBWOtfBXP1ovd2o9mdLZQWgQURyoPNLBNj57RnHPT7xdsuO7Ecy0e9rNU3yznzgo7W2nIMXVRGGUSowJl9PfUiNj2P_1E1v6yOsGRV6I-z8qaZnzzszw-o14UzKEMaTNVHGtoUI_45d64hu6uj6ijaKRtl25najIyFKCauy7HKoTake-8vCybwZnhurgzJupYPnLYkbmKg"} +2022/02/22 16:46:53 [DEBUG] Exit from do method +2022/02/22 16:46:53 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:46:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:46:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:46:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:16:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a080 3980 [] false false map[] 0xc0003ae300 0xc0003f4000} +2022/02/22 16:46:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:46:53 [DEBUG] Exit from do method +2022/02/22 16:46:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:46:53 [DEBUG] provider has no plugin.Client +2022/02/22 16:46:53 [DEBUG] New state was assigned lineage "f56cdb00-e357-b18f-9391-cb8a145ecf6d" +2022/02/22 16:46:53 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:46:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:53 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:53 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:46:53 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:46:53 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:46:53 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:46:53 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:46:53 [DEBUG] provider has no plugin.Client +2022/02/22 16:46:53 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "2" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.13.169" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + dhcp_relay_policy_provider.1.dhcp_server_address: "" => "1.2.13.169" + dhcp_relay_policy_provider.1.external_epg: "" => "" + dhcp_relay_policy_provider.1.tenant_id: "" => "" + id: "" => "" + name: "" => "acctest_lgk4d" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_h743f" + template_name: "" => "acctest_pozxf" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_boeyr" + external_epg_name: "" => "acctest_boeyr" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_pozxf" + vrf_name: "" => "acctest_boeyr" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_boeyr" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_boeyr" + schema_id: "" => "" + template: "" => "acctest_pozxf" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 16:46:53 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:46:53 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:46:53 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:46:53 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:46:53 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:46:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:46:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 16:46:53 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:46:53 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 16:46:53 [DEBUG] Schema: Beginning Creation +2022/02/22 16:46:53 HTTP request POST mso/api/v1/schemas +2022/02/22 16:46:53 [DEBUG] Begin Injection +2022/02/22 16:46:53 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 16:46:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 16:46:54 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 16:46:54 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:16:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214c6251d000005544f9ea5] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b053c0 400 [] false false map[] 0xc00088e400 0xc0003f4000} +2022/02/22 16:46:54 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214c6251d000005544f9ea5","displayName":"acctest_h743f","description":"","templates":[{"name":"acctest_pozxf","displayName":"acctest_pozxf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 16:46:54 [DEBUG] Exit from do method +2022/02/22 16:46:54 [DEBUG] 6214c6251d000005544f9ea5: Schema Creation finished successfully +2022/02/22 16:46:54 [DEBUG] 6214c6251d000005544f9ea5: Beginning Read +2022/02/22 16:46:54 HTTP request GET mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:54 [DEBUG] Begin Injection +2022/02/22 16:46:54 HTTP request after injection GET mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:16:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000a2540 400 [] false false map[] 0xc000420900 0xc0003f4000} +2022/02/22 16:46:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 {"id":"6214c6251d000005544f9ea5","displayName":"acctest_h743f","description":"","templates":[{"name":"acctest_pozxf","displayName":"acctest_pozxf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 16:46:54 [DEBUG] Exit from do method +2022/02/22 16:46:54 [DEBUG] 6214c6251d000005544f9ea5: Read finished successfully +2022/02/22 16:46:54 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 16:46:54 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 16:46:54 HTTP request PATCH mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:54 [DEBUG] Begin Injection +2022/02/22 16:46:54 HTTP request after injection PATCH mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:54 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:54 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:16:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000140800 0xc0003f4000} +2022/02/22 16:46:54 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:54 [DEBUG] acctest_boeyr: Creation finished successfully +2022/02/22 16:46:54 [DEBUG] acctest_boeyr: Beginning Read +2022/02/22 16:46:54 HTTP request GET mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:54 [DEBUG] Begin Injection +2022/02/22 16:46:54 HTTP request after injection GET mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:16:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b044c0 768 [] false false map[] 0xc00088e100 0xc0003f4000} +2022/02/22 16:46:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 {"id":"6214c6251d000005544f9ea5","displayName":"acctest_h743f","description":"","templates":[{"name":"acctest_pozxf","displayName":"acctest_pozxf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_boeyr","displayName":"acctest_boeyr","vrfRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/vrfs/acctest_boeyr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 16:46:54 [DEBUG] Exit from do method +2022/02/22 16:46:54 currentvrfname acctest_boeyr +2022/02/22 16:46:54 found correct vrfname +2022/02/22 16:46:54 [DEBUG] acctest_boeyr: Read finished successfully +2022/02/22 16:46:55 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:46:55 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 16:46:55 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 16:46:55 HTTP request PATCH mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:55 [DEBUG] Begin Injection +2022/02/22 16:46:55 HTTP request after injection PATCH mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:55 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:55 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:16:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00088ec00 0xc0003f4000} +2022/02/22 16:46:55 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:55 [DEBUG] : Beginning Read +2022/02/22 16:46:55 HTTP request GET mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:55 [DEBUG] Begin Injection +2022/02/22 16:46:55 HTTP request after injection GET mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:16:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a9e140 1147 [] false false map[] 0xc0003d0100 0xc0003f4000} +2022/02/22 16:46:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 {"id":"6214c6251d000005544f9ea5","displayName":"acctest_h743f","description":"","templates":[{"name":"acctest_pozxf","displayName":"acctest_pozxf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_boeyr","displayName":"acctest_boeyr","vrfRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/vrfs/acctest_boeyr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_boeyr","displayName":"acctest_boeyr","extEpgType":"on-premise","vrfRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/vrfs/acctest_boeyr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/externalEpgs/acctest_boeyr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:46:55 [DEBUG] Exit from do method +2022/02/22 16:46:55 [DEBUG] /schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/externalEpgs/acctest_boeyr: Read finished successfully +2022/02/22 16:46:55 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 16:46:55 [DEBUG] : Beginning Create +2022/02/22 16:46:55 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:46:55 [DEBUG] Begin Injection +2022/02/22 16:46:55 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:46:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:46:56 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:46:56 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[74] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:16:55 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000487600 74 [] false false map[] 0xc0003d0e00 0xc0003f4000} +2022/02/22 16:46:56 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: externalEpgRef cannot be duplicated."} +2022/02/22 16:46:56 [DEBUG] Exit from do method +2022/02/22 16:46:56 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 16:46:56 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 16:46:56 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 16:46:56 [DEBUG] New state was assigned lineage "5216c133-04e6-870a-73c2-ea39d583d945" +2022/02/22 16:46:56 [WARN] Test: Executing destroy step +2022/02/22 16:46:56 [DEBUG] provider has no plugin.Client +2022/02/22 16:46:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:46:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:46:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:46:56 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:46:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:46:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:46:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:56 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:46:56 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 16:46:56 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 16:46:56 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 16:46:56 [DEBUG] provider has no plugin.Client +2022/02/22 16:46:56 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:46:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 16:46:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:46:56 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:46:56 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:46:56 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:46:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:46:56 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:56 [DEBUG] : Beginning Read +2022/02/22 16:46:56 HTTP request GET mso/api/v1/tenants +2022/02/22 16:46:56 [DEBUG] Begin Injection +2022/02/22 16:46:56 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:46:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:46:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:46:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:16:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091d80 3980 [] false false map[] 0xc0003c0300 0xc0003f4000} +2022/02/22 16:46:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:46:56 [DEBUG] Exit from do method +2022/02/22 16:46:56 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:46:56 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:46:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:46:56 [DEBUG] 6214c6251d000005544f9ea5: Beginning Read +2022/02/22 16:46:56 HTTP request GET mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:56 [DEBUG] Begin Injection +2022/02/22 16:46:56 HTTP request after injection GET mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:16:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b717c0 1147 [] false false map[] 0xc000840500 0xc0003f4000} +2022/02/22 16:46:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 {"id":"6214c6251d000005544f9ea5","displayName":"acctest_h743f","description":"","templates":[{"name":"acctest_pozxf","displayName":"acctest_pozxf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_boeyr","displayName":"acctest_boeyr","vrfRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/vrfs/acctest_boeyr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_boeyr","displayName":"acctest_boeyr","extEpgType":"on-premise","vrfRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/vrfs/acctest_boeyr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/externalEpgs/acctest_boeyr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:46:56 [DEBUG] Exit from do method +2022/02/22 16:46:56 [DEBUG] 6214c6251d000005544f9ea5: Read finished successfully +2022/02/22 16:46:56 [DEBUG] acctest_boeyr: Beginning Read +2022/02/22 16:46:56 HTTP request GET mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:56 [DEBUG] Begin Injection +2022/02/22 16:46:56 HTTP request after injection GET mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:16:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021b9c0 1147 [] false false map[] 0xc00015a700 0xc0003f4000} +2022/02/22 16:46:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 {"id":"6214c6251d000005544f9ea5","displayName":"acctest_h743f","description":"","templates":[{"name":"acctest_pozxf","displayName":"acctest_pozxf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_boeyr","displayName":"acctest_boeyr","vrfRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/vrfs/acctest_boeyr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_boeyr","displayName":"acctest_boeyr","extEpgType":"on-premise","vrfRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/vrfs/acctest_boeyr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/externalEpgs/acctest_boeyr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:46:57 [DEBUG] Exit from do method +2022/02/22 16:46:57 currentvrfname acctest_boeyr +2022/02/22 16:46:57 found correct vrfname +2022/02/22 16:46:57 [DEBUG] acctest_boeyr: Read finished successfully +2022/02/22 16:46:57 [DEBUG] /schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/externalEpgs/acctest_boeyr: Beginning Read +2022/02/22 16:46:57 HTTP request GET mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:57 [DEBUG] Begin Injection +2022/02/22 16:46:57 HTTP request after injection GET mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:16:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b70040 1147 [] false false map[] 0xc000140a00 0xc0003f4000} +2022/02/22 16:46:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 {"id":"6214c6251d000005544f9ea5","displayName":"acctest_h743f","description":"","templates":[{"name":"acctest_pozxf","displayName":"acctest_pozxf","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_boeyr","displayName":"acctest_boeyr","vrfRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/vrfs/acctest_boeyr","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_boeyr","displayName":"acctest_boeyr","extEpgType":"on-premise","vrfRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/vrfs/acctest_boeyr","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/externalEpgs/acctest_boeyr","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 16:46:57 [DEBUG] Exit from do method +2022/02/22 16:46:57 [DEBUG] /schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/externalEpgs/acctest_boeyr: Read finished successfully +2022/02/22 16:46:57 [DEBUG] provider has no plugin.Client +2022/02/22 16:46:57 [DEBUG] New state was assigned lineage "c8c85497-61e1-0a0c-d626-3634322cddca" +2022/02/22 16:46:57 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:46:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:57 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:46:57 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_schema.test + id: "6214c6251d000005544f9ea5" => "" + name: "acctest_h743f" => "" + template_name: "acctest_pozxf" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_boeyr" => "" + external_epg_name: "acctest_boeyr" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/externalEpgs/acctest_boeyr" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214c6251d000005544f9ea5" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_pozxf" => "" + vrf_name: "acctest_boeyr" => "" + vrf_schema_id: "6214c6251d000005544f9ea5" => "" + vrf_template_name: "acctest_pozxf" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_boeyr" => "" + id: "acctest_boeyr" => "" + layer3_multicast: "false" => "" + name: "acctest_boeyr" => "" + schema_id: "6214c6251d000005544f9ea5" => "" + template: "acctest_pozxf" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_schema.test: + ID = 6214c6251d000005544f9ea5 + provider = provider.mso + name = acctest_h743f + template_name = acctest_pozxf + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214c6251d000005544f9ea5/templates/acctest_pozxf/externalEpgs/acctest_boeyr + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_boeyr + external_epg_name = acctest_boeyr + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214c6251d000005544f9ea5 + selector_ip = + selector_name = + template_name = acctest_pozxf + vrf_name = acctest_boeyr + vrf_schema_id = 6214c6251d000005544f9ea5 + vrf_template_name = acctest_pozxf + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_boeyr + provider = provider.mso + display_name = acctest_boeyr + layer3_multicast = false + name = acctest_boeyr + schema_id = 6214c6251d000005544f9ea5 + template = acctest_pozxf + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 16:46:57 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:46:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 16:46:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:46:57 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 16:46:57 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:46:57 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 16:46:57 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 16:46:57 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 16:46:57 HTTP request PATCH mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:57 [DEBUG] Begin Injection +2022/02/22 16:46:57 HTTP request after injection PATCH mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:57 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:16:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000141300 0xc0003f4000} +2022/02/22 16:46:57 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:57 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 16:46:57 [DEBUG] acctest_boeyr: Beginning Destroy +2022/02/22 16:46:57 HTTP request PATCH mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:57 [DEBUG] Begin Injection +2022/02/22 16:46:57 HTTP request after injection PATCH mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:58 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:16:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000908500 0xc0003f4000} +2022/02/22 16:46:58 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5?validate=false +2022/02/22 16:46:58 [DEBUG] acctest_boeyr: Destroy finished successfully +2022/02/22 16:46:58 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 16:46:58 [DEBUG] 6214c6251d000005544f9ea5: Beginning Destroy +2022/02/22 16:46:58 HTTP request DELETE mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:58 [DEBUG] Begin Injection +2022/02/22 16:46:58 HTTP request after injection DELETE mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:58 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:16:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000908900 0xc0003f4000} +2022/02/22 16:46:58 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214c6251d000005544f9ea5 +2022/02/22 16:46:58 [DEBUG] 6214c6251d000005544f9ea5: Destroy finished successfully +2022/02/22 16:46:58 [DEBUG] provider has no plugin.Client +2022/02/22 16:46:58 [DEBUG] New state was assigned lineage "b6096c79-6eca-c53e-804c-737c46617686" +2022/02/22 16:46:58 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:46:58 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:46:58 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:46:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:46:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:46:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:46:58 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:46:58 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:46:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:58 [DEBUG] : Beginning Read +2022/02/22 16:46:58 HTTP request GET mso/api/v1/tenants +2022/02/22 16:46:58 [DEBUG] Begin Injection +2022/02/22 16:46:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:46:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:46:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:46:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:16:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021a080 3980 [] false false map[] 0xc000140500 0xc0003f4000} +2022/02/22 16:46:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:46:58 [DEBUG] Exit from do method +2022/02/22 16:46:58 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:46:58 [DEBUG] provider has no plugin.Client +2022/02/22 16:46:58 [DEBUG] New state was assigned lineage "58e074c7-2515-0aa2-d813-00a35e9ead0e" +2022/02/22 16:46:58 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:46:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:46:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:46:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:46:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:46:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:46:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:46:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:46:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:46:58 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:55:36 [DEBUG] Test: Executing step 0 +2022/02/22 16:55:36 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:55:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:55:36 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:55:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:55:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:55:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:55:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:55:36 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:55:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 16:55:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 16:55:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:55:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:55:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 16:55:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:55:36 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:55:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:55:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:55:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:55:36 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:55:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:36 [DEBUG] : Beginning Read +2022/02/22 16:55:36 HTTP request GET mso/api/v1/tenants +2022/02/22 16:55:36 [DEBUG] Begin Injection +2022/02/22 16:55:36 HTTP request POST /login +2022/02/22 16:55:36 HTTP request after injection POST /login +2022/02/22 16:55:36 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 16:55:37 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 16:55:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:37 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzAzMzcsImlhdCI6MTY0NTUyOTEzNywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI9WUNJcGt1Z2RYd3lOTlhLOFdTY1lsVTAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.ug5soiN6RORwkvnuzhGxNq6YkGEY9IsZ5UG9IrCpsgBWSs3gQZcqY-935_LMM2ncHG3en0gWd3tnj1TAJ4SZB12ddn6TIj1PSmQLdgdgG3GQeRMbEFm_9zR3PF90U5XaxaTA53fFa6Zk3ewVmVFBnen2pT8kLaI8XspmyQCjSLuwZx996A9lzBkTgXKEPk0_FXeV__iphUpT6Hrb_NkJBHp2G9kq47HWc5C0uHD08KNd9_uEDD8W9-mhlmVZbeDN82vYdlN51leTP_6jD9VKhemGQCKfoJS0PBeqQrp8S7SCREC3WWLlQoCcwejmyi7TVQuWoq_wbZRHinMzugaBhg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0006df380 -1 [chunked] false false map[] 0xc000748300 0xc0004d6000} +2022/02/22 16:55:37 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzAzMzcsImlhdCI6MTY0NTUyOTEzNywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI9WUNJcGt1Z2RYd3lOTlhLOFdTY1lsVTAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.ug5soiN6RORwkvnuzhGxNq6YkGEY9IsZ5UG9IrCpsgBWSs3gQZcqY-935_LMM2ncHG3en0gWd3tnj1TAJ4SZB12ddn6TIj1PSmQLdgdgG3GQeRMbEFm_9zR3PF90U5XaxaTA53fFa6Zk3ewVmVFBnen2pT8kLaI8XspmyQCjSLuwZx996A9lzBkTgXKEPk0_FXeV__iphUpT6Hrb_NkJBHp2G9kq47HWc5C0uHD08KNd9_uEDD8W9-mhlmVZbeDN82vYdlN51leTP_6jD9VKhemGQCKfoJS0PBeqQrp8S7SCREC3WWLlQoCcwejmyi7TVQuWoq_wbZRHinMzugaBhg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzAzMzcsImlhdCI6MTY0NTUyOTEzNywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI9WUNJcGt1Z2RYd3lOTlhLOFdTY1lsVTAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.ug5soiN6RORwkvnuzhGxNq6YkGEY9IsZ5UG9IrCpsgBWSs3gQZcqY-935_LMM2ncHG3en0gWd3tnj1TAJ4SZB12ddn6TIj1PSmQLdgdgG3GQeRMbEFm_9zR3PF90U5XaxaTA53fFa6Zk3ewVmVFBnen2pT8kLaI8XspmyQCjSLuwZx996A9lzBkTgXKEPk0_FXeV__iphUpT6Hrb_NkJBHp2G9kq47HWc5C0uHD08KNd9_uEDD8W9-mhlmVZbeDN82vYdlN51leTP_6jD9VKhemGQCKfoJS0PBeqQrp8S7SCREC3WWLlQoCcwejmyi7TVQuWoq_wbZRHinMzugaBhg"} +2022/02/22 16:55:37 [DEBUG] Exit from do method +2022/02/22 16:55:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:55:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:55:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:55:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b4100 3980 [] false false map[] 0xc000748200 0xc0004d6000} +2022/02/22 16:55:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:55:38 [DEBUG] Exit from do method +2022/02/22 16:55:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:55:38 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:38 [DEBUG] New state was assigned lineage "cb59da48-a609-4981-98ab-b6e654d8052a" +2022/02/22 16:55:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:55:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:38 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:38 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:55:38 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:55:38 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 16:55:38 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:55:38 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:55:38 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:55:38 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:55:38 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:38 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "2" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.240.110" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + dhcp_relay_policy_provider.1.dhcp_server_address: "" => "1.2.240.110" + dhcp_relay_policy_provider.1.external_epg: "" => "" + dhcp_relay_policy_provider.1.tenant_id: "" => "" + id: "" => "" + name: "" => "acctest_m6vdc" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_0rq6y" + template_name: "" => "acctest_jiclx" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_j7484" + external_epg_name: "" => "acctest_j7484" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_jiclx" + vrf_name: "" => "acctest_j7484" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_external_epg.test1 + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_itcov" + external_epg_name: "" => "acctest_itcov" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_jiclx" + vrf_name: "" => "acctest_j7484" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_j7484" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_j7484" + schema_id: "" => "" + template: "" => "acctest_jiclx" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 16:55:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:55:38 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 16:55:38 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:55:38 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 16:55:38 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 16:55:38 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 16:55:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1 mso_schema_template_external_epg.test1 mso_schema_template_external_epg.test1 (prepare state)] +2022/02/22 16:55:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (prepare state)" references: [] +2022/02/22 16:55:38 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:55:38 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 16:55:38 [DEBUG] Schema: Beginning Creation +2022/02/22 16:55:38 HTTP request POST mso/api/v1/schemas +2022/02/22 16:55:38 [DEBUG] Begin Injection +2022/02/22 16:55:38 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 16:55:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 16:55:38 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 16:55:38 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214c8321d000042544f9eab] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003fa040 400 [] false false map[] 0xc000680a00 0xc0004d6000} +2022/02/22 16:55:38 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 16:55:38 [DEBUG] Exit from do method +2022/02/22 16:55:38 [DEBUG] 6214c8321d000042544f9eab: Schema Creation finished successfully +2022/02/22 16:55:38 [DEBUG] 6214c8321d000042544f9eab: Beginning Read +2022/02/22 16:55:38 HTTP request GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:38 [DEBUG] Begin Injection +2022/02/22 16:55:38 HTTP request after injection GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00083b000 400 [] false false map[] 0xc00009c800 0xc0004d6000} +2022/02/22 16:55:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 16:55:39 [DEBUG] Exit from do method +2022/02/22 16:55:39 [DEBUG] 6214c8321d000042544f9eab: Read finished successfully +2022/02/22 16:55:39 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 16:55:39 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 16:55:39 HTTP request PATCH mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:39 [DEBUG] Begin Injection +2022/02/22 16:55:39 HTTP request after injection PATCH mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:39 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:25:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00009d300 0xc0004d6000} +2022/02/22 16:55:39 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:39 [DEBUG] acctest_j7484: Creation finished successfully +2022/02/22 16:55:39 [DEBUG] acctest_j7484: Beginning Read +2022/02/22 16:55:39 HTTP request GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:39 [DEBUG] Begin Injection +2022/02/22 16:55:39 HTTP request after injection GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006de140 768 [] false false map[] 0xc000680100 0xc0004d6000} +2022/02/22 16:55:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_j7484","displayName":"acctest_j7484","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 16:55:39 [DEBUG] Exit from do method +2022/02/22 16:55:39 currentvrfname acctest_j7484 +2022/02/22 16:55:39 found correct vrfname +2022/02/22 16:55:39 [DEBUG] acctest_j7484: Read finished successfully +2022/02/22 16:55:39 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:55:39 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 16:55:39 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 16:55:39 [DEBUG] mso_schema_template_external_epg.test1: applying the planned Create change +2022/02/22 16:55:39 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 16:55:39 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 16:55:39 HTTP request PATCH mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:39 [DEBUG] Begin Injection +2022/02/22 16:55:39 HTTP request after injection PATCH mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:39 HTTP request PATCH mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:39 [DEBUG] Begin Injection +2022/02/22 16:55:39 HTTP request after injection PATCH mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:40 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:25:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000680c00 0xc0004d6000} +2022/02/22 16:55:40 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:40 [DEBUG] : Beginning Read +2022/02/22 16:55:40 HTTP request GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:40 [DEBUG] Begin Injection +2022/02/22 16:55:40 HTTP request after injection GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:40 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:25:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00009ce00 0xc0004d6000} +2022/02/22 16:55:40 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:40 [DEBUG] : Beginning Read +2022/02/22 16:55:40 HTTP request GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:40 [DEBUG] Begin Injection +2022/02/22 16:55:40 HTTP request after injection GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e4000 1527 [] false false map[] 0xc00044a400 0xc0004d6000} +2022/02/22 16:55:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_j7484","displayName":"acctest_j7484","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_j7484","displayName":"acctest_j7484","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","anpRef":"","description":""},{"name":"acctest_itcov","displayName":"acctest_itcov","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 16:55:40 [DEBUG] Exit from do method +2022/02/22 16:55:40 [DEBUG] /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484: Read finished successfully +2022/02/22 16:55:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003fa080 1527 [] false false map[] 0xc00009d200 0xc0003d5d90} +2022/02/22 16:55:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_j7484","displayName":"acctest_j7484","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_j7484","displayName":"acctest_j7484","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","anpRef":"","description":""},{"name":"acctest_itcov","displayName":"acctest_itcov","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 16:55:40 [DEBUG] Exit from do method +2022/02/22 16:55:40 [DEBUG] /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov: Read finished successfully +2022/02/22 16:55:40 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 16:55:40 [DEBUG] : Beginning Create +2022/02/22 16:55:40 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:55:40 [DEBUG] Begin Injection +2022/02/22 16:55:40 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:55:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:55:41 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:55:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[549] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003fbe80 549 [] false false map[] 0xc000680800 0xc0003d5d90} +2022/02/22 16:55:41 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214c8351b0000397efd0667","name":"acctest_m6vdc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.240.110","epgRef":"","externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"},{"addr":"1.2.240.110","epgRef":"","externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 16:55:41 [DEBUG] Exit from do method +2022/02/22 16:55:41 [DEBUG] 6214c8351b0000397efd0667: Creation finished successfully +2022/02/22 16:55:41 [DEBUG] 6214c8351b0000397efd0667: Beginning Read +2022/02/22 16:55:41 id: 6214c8351b0000397efd0667 +2022/02/22 16:55:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:41 [DEBUG] Begin Injection +2022/02/22 16:55:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[549] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b4240 549 [] false false map[] 0xc00044a100 0xc0004d60b0} +2022/02/22 16:55:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 {"id":"6214c8351b0000397efd0667","name":"acctest_m6vdc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.240.110","epgRef":"","externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"},{"addr":"1.2.240.110","epgRef":"","externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 16:55:41 [DEBUG] Exit from do method +2022/02/22 16:55:41 [DEBUG] 6214c8351b0000397efd0667: Read finished successfully +2022/02/22 16:55:41 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[1].epg: was null, but now cty.StringVal("") +2022/02/22 16:55:41 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:41 [DEBUG] New state was assigned lineage "278aedc6-0369-19db-818f-6d7c6ece2da9" +2022/02/22 16:55:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:41 [DEBUG] Begin Injection +2022/02/22 16:55:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[549] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004949c0 549 [] false false map[] 0xc00044a100 0xc0004d60b0} +2022/02/22 16:55:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 {"id":"6214c8351b0000397efd0667","name":"acctest_m6vdc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.240.110","epgRef":"","externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"},{"addr":"1.2.240.110","epgRef":"","externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 16:55:41 [DEBUG] Exit from do method +2022/02/22 16:55:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:55:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 16:55:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 16:55:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:55:41 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:55:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:55:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:55:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:55:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:55:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:55:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:55:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:55:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:41 [DEBUG] : Beginning Read +2022/02/22 16:55:41 HTTP request GET mso/api/v1/tenants +2022/02/22 16:55:41 [DEBUG] Begin Injection +2022/02/22 16:55:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:55:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:55:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:55:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000844040 3980 [] false false map[] 0xc00067c800 0xc0004d60b0} +2022/02/22 16:55:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:55:42 [DEBUG] Exit from do method +2022/02/22 16:55:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:55:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:55:42 [DEBUG] 6214c8321d000042544f9eab: Beginning Read +2022/02/22 16:55:42 HTTP request GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 [DEBUG] Begin Injection +2022/02/22 16:55:42 HTTP request after injection GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e4040 1527 [] false false map[] 0xc00009ca00 0xc0004d60b0} +2022/02/22 16:55:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_j7484","displayName":"acctest_j7484","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_j7484","displayName":"acctest_j7484","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","anpRef":"","description":""},{"name":"acctest_itcov","displayName":"acctest_itcov","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 16:55:42 [DEBUG] Exit from do method +2022/02/22 16:55:42 [DEBUG] 6214c8321d000042544f9eab: Read finished successfully +2022/02/22 16:55:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:55:42 [DEBUG] acctest_j7484: Beginning Read +2022/02/22 16:55:42 HTTP request GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 [DEBUG] Begin Injection +2022/02/22 16:55:42 HTTP request after injection GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003fa100 1527 [] false false map[] 0xc00067c400 0xc0004d60b0} +2022/02/22 16:55:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_j7484","displayName":"acctest_j7484","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_j7484","displayName":"acctest_j7484","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","anpRef":"","description":""},{"name":"acctest_itcov","displayName":"acctest_itcov","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 16:55:42 [DEBUG] Exit from do method +2022/02/22 16:55:42 currentvrfname acctest_j7484 +2022/02/22 16:55:42 found correct vrfname +2022/02/22 16:55:42 [DEBUG] acctest_j7484: Read finished successfully +2022/02/22 16:55:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 16:55:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:55:42 [DEBUG] /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484: Beginning Read +2022/02/22 16:55:42 [DEBUG] /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov: Beginning Read +2022/02/22 16:55:42 HTTP request GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 [DEBUG] Begin Injection +2022/02/22 16:55:42 HTTP request GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 [DEBUG] Begin Injection +2022/02/22 16:55:42 HTTP request after injection GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 HTTP request after injection GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006de040 1527 [] false false map[] 0xc000680500 0xc0004d6000} +2022/02/22 16:55:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_j7484","displayName":"acctest_j7484","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_j7484","displayName":"acctest_j7484","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","anpRef":"","description":""},{"name":"acctest_itcov","displayName":"acctest_itcov","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 16:55:43 [DEBUG] Exit from do method +2022/02/22 16:55:43 [DEBUG] /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov: Read finished successfully +2022/02/22 16:55:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000844040 1527 [] false false map[] 0xc00009cf00 0xc0004d60b0} +2022/02/22 16:55:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_j7484","displayName":"acctest_j7484","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_j7484","displayName":"acctest_j7484","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","anpRef":"","description":""},{"name":"acctest_itcov","displayName":"acctest_itcov","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 16:55:43 [DEBUG] Exit from do method +2022/02/22 16:55:43 [DEBUG] /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484: Read finished successfully +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:55:43 [DEBUG] 6214c8351b0000397efd0667: Beginning Read +2022/02/22 16:55:43 id: 6214c8351b0000397efd0667 +2022/02/22 16:55:43 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:43 [DEBUG] Begin Injection +2022/02/22 16:55:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[549] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e5300 549 [] false false map[] 0xc00009d300 0xc0004d60b0} +2022/02/22 16:55:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 {"id":"6214c8351b0000397efd0667","name":"acctest_m6vdc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.240.110","epgRef":"","externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"},{"addr":"1.2.240.110","epgRef":"","externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 16:55:43 [DEBUG] Exit from do method +2022/02/22 16:55:43 [DEBUG] 6214c8351b0000397efd0667: Read finished successfully +2022/02/22 16:55:43 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:43 [DEBUG] New state was assigned lineage "8fc96b4d-0ed4-9aec-b10d-abdd722fedc9" +2022/02/22 16:55:43 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:55:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:43 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:55:43 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:43 [DEBUG] Test: Executing step 1 +2022/02/22 16:55:43 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:43 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:55:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:43 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:55:43 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:43 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 16:55:43 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 16:55:43 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test1 because it has no config +2022/02/22 16:55:43 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 16:55:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:55:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:55:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:55:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:43 [DEBUG] : Beginning Read +2022/02/22 16:55:43 HTTP request GET mso/api/v1/tenants +2022/02/22 16:55:43 [DEBUG] Begin Injection +2022/02/22 16:55:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:55:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:55:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:55:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000664140 3980 [] false false map[] 0xc00009c300 0xc0004d60b0} +2022/02/22 16:55:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:55:44 [DEBUG] Exit from do method +2022/02/22 16:55:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:55:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:55:44 [DEBUG] 6214c8321d000042544f9eab: Beginning Read +2022/02/22 16:55:44 HTTP request GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 [DEBUG] Begin Injection +2022/02/22 16:55:44 HTTP request after injection GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 [DEBUG] 6214c8351b0000397efd0667: Beginning Read +2022/02/22 16:55:44 id: 6214c8351b0000397efd0667 +2022/02/22 16:55:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:44 [DEBUG] Begin Injection +2022/02/22 16:55:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[549] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b5ec0 549 [] false false map[] 0xc000680900 0xc0004d6000} +2022/02/22 16:55:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 {"id":"6214c8351b0000397efd0667","name":"acctest_m6vdc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.240.110","epgRef":"","externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"},{"addr":"1.2.240.110","epgRef":"","externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 16:55:44 [DEBUG] Exit from do method +2022/02/22 16:55:44 [DEBUG] 6214c8351b0000397efd0667: Read finished successfully +2022/02/22 16:55:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001e5380 1527 [] false false map[] 0xc000824200 0xc0004d60b0} +2022/02/22 16:55:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_j7484","displayName":"acctest_j7484","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_j7484","displayName":"acctest_j7484","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","anpRef":"","description":""},{"name":"acctest_itcov","displayName":"acctest_itcov","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 16:55:44 [DEBUG] Exit from do method +2022/02/22 16:55:44 [DEBUG] 6214c8321d000042544f9eab: Read finished successfully +2022/02/22 16:55:44 [DEBUG] acctest_j7484: Beginning Read +2022/02/22 16:55:44 HTTP request GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 [DEBUG] Begin Injection +2022/02/22 16:55:44 HTTP request after injection GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a080 1527 [] false false map[] 0xc000c10000 0xc0004d60b0} +2022/02/22 16:55:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_j7484","displayName":"acctest_j7484","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_j7484","displayName":"acctest_j7484","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","anpRef":"","description":""},{"name":"acctest_itcov","displayName":"acctest_itcov","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 16:55:44 [DEBUG] Exit from do method +2022/02/22 16:55:44 currentvrfname acctest_j7484 +2022/02/22 16:55:44 found correct vrfname +2022/02/22 16:55:44 [DEBUG] acctest_j7484: Read finished successfully +2022/02/22 16:55:44 [DEBUG] /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484: Beginning Read +2022/02/22 16:55:44 [DEBUG] /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov: Beginning Read +2022/02/22 16:55:44 HTTP request GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 [DEBUG] Begin Injection +2022/02/22 16:55:44 HTTP request after injection GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 HTTP request GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 [DEBUG] Begin Injection +2022/02/22 16:55:44 HTTP request after injection GET mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a080 1527 [] false false map[] 0xc000680500 0xc0004d6000} +2022/02/22 16:55:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_j7484","displayName":"acctest_j7484","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_j7484","displayName":"acctest_j7484","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","anpRef":"","description":""},{"name":"acctest_itcov","displayName":"acctest_itcov","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 16:55:45 [DEBUG] Exit from do method +2022/02/22 16:55:45 [DEBUG] /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov: Read finished successfully +2022/02/22 16:55:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bd40 1527 [] false false map[] 0xc00044a200 0xc0004d60b0} +2022/02/22 16:55:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab {"id":"6214c8321d000042544f9eab","displayName":"acctest_0rq6y","description":"","templates":[{"name":"acctest_jiclx","displayName":"acctest_jiclx","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_j7484","displayName":"acctest_j7484","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_j7484","displayName":"acctest_j7484","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484","anpRef":"","description":""},{"name":"acctest_itcov","displayName":"acctest_itcov","extEpgType":"on-premise","vrfRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/vrfs/acctest_j7484","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 16:55:45 [DEBUG] Exit from do method +2022/02/22 16:55:45 [DEBUG] /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484: Read finished successfully +2022/02/22 16:55:45 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:45 [DEBUG] New state was assigned lineage "7f2cdb10-5def-6949-d973-2873da5b5ce3" +2022/02/22 16:55:45 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:55:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 16:55:45 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:55:45 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:45 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "2" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.240.110" => "1.2.240.110" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + dhcp_relay_policy_provider.1.dhcp_server_address: "1.2.240.110" => "" + dhcp_relay_policy_provider.1.epg: "" => "" + dhcp_relay_policy_provider.1.external_epg: "/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov" => "" + dhcp_relay_policy_provider.1.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214c8351b0000397efd0667" => "6214c8351b0000397efd0667" + name: "acctest_m6vdc" => "acctest_m6vdc" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214c8321d000042544f9eab" => "" + name: "acctest_0rq6y" => "" + template_name: "acctest_jiclx" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_j7484" => "" + external_epg_name: "acctest_j7484" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214c8321d000042544f9eab" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_jiclx" => "" + vrf_name: "acctest_j7484" => "" + vrf_schema_id: "6214c8321d000042544f9eab" => "" + vrf_template_name: "acctest_jiclx" => "" +DESTROY: mso_schema_template_external_epg.test1 + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_itcov" => "" + external_epg_name: "acctest_itcov" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214c8321d000042544f9eab" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_jiclx" => "" + vrf_name: "acctest_j7484" => "" + vrf_schema_id: "6214c8321d000042544f9eab" => "" + vrf_template_name: "acctest_jiclx" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_j7484" => "" + id: "acctest_j7484" => "" + layer3_multicast: "false" => "" + name: "acctest_j7484" => "" + schema_id: "6214c8321d000042544f9eab" => "" + template: "acctest_jiclx" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214c8351b0000397efd0667 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 2 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.240.110 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484 + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + dhcp_relay_policy_provider.1.dhcp_server_address = 1.2.240.110 + dhcp_relay_policy_provider.1.epg = + dhcp_relay_policy_provider.1.external_epg = /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov + dhcp_relay_policy_provider.1.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_m6vdc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test + mso_schema_template_external_epg.test1 +mso_schema.test: + ID = 6214c8321d000042544f9eab + provider = provider.mso + name = acctest_0rq6y + template_name = acctest_jiclx + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_j7484 + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_j7484 + external_epg_name = acctest_j7484 + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214c8321d000042544f9eab + selector_ip = + selector_name = + template_name = acctest_jiclx + vrf_name = acctest_j7484 + vrf_schema_id = 6214c8321d000042544f9eab + vrf_template_name = acctest_jiclx + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_external_epg.test1: + ID = /schemas/6214c8321d000042544f9eab/templates/acctest_jiclx/externalEpgs/acctest_itcov + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_itcov + external_epg_name = acctest_itcov + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214c8321d000042544f9eab + selector_ip = + selector_name = + template_name = acctest_jiclx + vrf_name = acctest_j7484 + vrf_schema_id = 6214c8321d000042544f9eab + vrf_template_name = acctest_jiclx + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_j7484 + provider = provider.mso + display_name = acctest_j7484 + layer3_multicast = false + name = acctest_j7484 + schema_id = 6214c8321d000042544f9eab + template = acctest_jiclx + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 16:55:45 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:55:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (destroy)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (clean up state)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (destroy)" references: [] +2022/02/22 16:55:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 16:55:45 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:55:45 [DEBUG] mso_schema_template_external_epg.test1: applying the planned Delete change +2022/02/22 16:55:45 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 16:55:45 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 16:55:45 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 16:55:45 HTTP request PATCH mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 [DEBUG] Begin Injection +2022/02/22 16:55:45 HTTP request after injection PATCH mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 HTTP request PATCH mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 [DEBUG] Begin Injection +2022/02/22 16:55:45 HTTP request after injection PATCH mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 16:55:45 [DEBUG] 6214c8351b0000397efd0667: Beginning Policy Update +2022/02/22 16:55:45 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:45 [DEBUG] Begin Injection +2022/02/22 16:55:45 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:45 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:25:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001b4800 0xc0004d6000} +2022/02/22 16:55:45 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:25:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00009c600 0xc0004d60b0} +2022/02/22 16:55:45 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 16:55:45 [DEBUG] acctest_j7484: Beginning Destroy +2022/02/22 16:55:45 HTTP request PATCH mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 [DEBUG] Begin Injection +2022/02/22 16:55:45 HTTP request after injection PATCH mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006df640 357 [] false false map[] 0xc000680500 0xc0004d6000} +2022/02/22 16:55:45 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 {"id":"6214c8351b0000397efd0667","name":"acctest_m6vdc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.240.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 16:55:45 [DEBUG] Exit from do method +2022/02/22 16:55:45 [DEBUG] Policy Update finished successfully: 6214c8351b0000397efd0667 +2022/02/22 16:55:45 [DEBUG] 6214c8351b0000397efd0667: Beginning Read +2022/02/22 16:55:45 id: 6214c8351b0000397efd0667 +2022/02/22 16:55:45 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:45 [DEBUG] Begin Injection +2022/02/22 16:55:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:45 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:25:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00009d000 0xc0004d60b0} +2022/02/22 16:55:45 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab?validate=false +2022/02/22 16:55:45 [DEBUG] acctest_j7484: Destroy finished successfully +2022/02/22 16:55:45 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 16:55:45 [DEBUG] 6214c8321d000042544f9eab: Beginning Destroy +2022/02/22 16:55:45 HTTP request DELETE mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:45 [DEBUG] Begin Injection +2022/02/22 16:55:45 HTTP request after injection DELETE mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b4940 357 [] false false map[] 0xc000680800 0xc0004d6000} +2022/02/22 16:55:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 {"id":"6214c8351b0000397efd0667","name":"acctest_m6vdc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.240.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 16:55:46 [DEBUG] Exit from do method +2022/02/22 16:55:46 [DEBUG] 6214c8351b0000397efd0667: Read finished successfully +2022/02/22 16:55:46 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 16:55:46 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:25:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000680c00 0xc0004d60b0} +2022/02/22 16:55:46 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214c8321d000042544f9eab +2022/02/22 16:55:46 [DEBUG] 6214c8321d000042544f9eab: Destroy finished successfully +2022/02/22 16:55:46 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:46 [DEBUG] New state was assigned lineage "30f8db02-2d2b-803c-a1a3-e7a8fb30a8d0" +2022/02/22 16:55:46 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:46 [DEBUG] Begin Injection +2022/02/22 16:55:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006de180 357 [] false false map[] 0xc00044a100 0xc0004d6000} +2022/02/22 16:55:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 {"id":"6214c8351b0000397efd0667","name":"acctest_m6vdc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.240.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 16:55:46 [DEBUG] Exit from do method +2022/02/22 16:55:46 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:55:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:55:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:55:46 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:55:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:55:46 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:46 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:55:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:55:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:55:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:55:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:55:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:46 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:55:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:46 [DEBUG] : Beginning Read +2022/02/22 16:55:46 HTTP request GET mso/api/v1/tenants +2022/02/22 16:55:46 [DEBUG] Begin Injection +2022/02/22 16:55:46 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:55:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:55:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:55:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003fa180 3980 [] false false map[] 0xc000680300 0xc0004d6000} +2022/02/22 16:55:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:55:46 [DEBUG] Exit from do method +2022/02/22 16:55:46 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:55:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:55:46 [DEBUG] 6214c8351b0000397efd0667: Beginning Read +2022/02/22 16:55:46 id: 6214c8351b0000397efd0667 +2022/02/22 16:55:46 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:46 [DEBUG] Begin Injection +2022/02/22 16:55:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000664ac0 357 [] false false map[] 0xc000680900 0xc0004d6000} +2022/02/22 16:55:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 {"id":"6214c8351b0000397efd0667","name":"acctest_m6vdc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.240.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 16:55:47 [DEBUG] Exit from do method +2022/02/22 16:55:47 [DEBUG] 6214c8351b0000397efd0667: Read finished successfully +2022/02/22 16:55:47 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:47 [DEBUG] New state was assigned lineage "d670fd9a-3dda-ba51-0f2f-78ed5669ef5f" +2022/02/22 16:55:47 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:55:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:55:47 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:55:47 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:47 [WARN] Test: Executing destroy step +2022/02/22 16:55:47 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:47 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:55:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:47 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:55:47 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:47 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:55:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:47 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:47 [DEBUG] : Beginning Read +2022/02/22 16:55:47 HTTP request GET mso/api/v1/tenants +2022/02/22 16:55:47 [DEBUG] Begin Injection +2022/02/22 16:55:47 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:55:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:55:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:55:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006df900 3980 [] false false map[] 0xc000680300 0xc0004d6000} +2022/02/22 16:55:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:55:47 [DEBUG] Exit from do method +2022/02/22 16:55:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:55:47 [DEBUG] 6214c8351b0000397efd0667: Beginning Read +2022/02/22 16:55:47 id: 6214c8351b0000397efd0667 +2022/02/22 16:55:47 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:47 [DEBUG] Begin Injection +2022/02/22 16:55:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b8ec00 357 [] false false map[] 0xc00009cb00 0xc0004d6000} +2022/02/22 16:55:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 {"id":"6214c8351b0000397efd0667","name":"acctest_m6vdc","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.240.110","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 16:55:47 [DEBUG] Exit from do method +2022/02/22 16:55:47 [DEBUG] 6214c8351b0000397efd0667: Read finished successfully +2022/02/22 16:55:47 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:47 [DEBUG] New state was assigned lineage "51792bf8-b5b8-ad1a-5c61-c89fb7d7d857" +2022/02/22 16:55:47 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:55:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:55:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:47 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:55:47 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.240.110" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214c8351b0000397efd0667" => "" + name: "acctest_m6vdc" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214c8351b0000397efd0667 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.240.110 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_m6vdc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 16:55:47 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:55:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:55:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:55:47 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:55:47 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 16:55:47 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 16:55:47 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 16:55:47 [DEBUG] 6214c8351b0000397efd0667: Beginning Read +2022/02/22 16:55:47 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:47 [DEBUG] Begin Injection +2022/02/22 16:55:47 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:48 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:48 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:25:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000681b00 0xc0004d6000} +2022/02/22 16:55:48 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:48 [DEBUG] : Read finished successfully +2022/02/22 16:55:48 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:48 [DEBUG] New state was assigned lineage "a40a3f33-7a91-3f39-5426-e5e7122314b3" +2022/02/22 16:55:48 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:48 [DEBUG] Begin Injection +2022/02/22 16:55:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 +2022/02/22 16:55:48 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:48 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007bc840 86 [] false false map[] 0xc000680200 0xc0004d6000} +2022/02/22 16:55:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8351b0000397efd0667 {"code":141,"message":"Resource Not Found: Policy 6214c8351b0000397efd0667 not found"} +2022/02/22 16:55:48 [DEBUG] Exit from do method +2022/02/22 16:55:48 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:55:48 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:55:48 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:55:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:55:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:55:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:48 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:55:48 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:55:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:48 [DEBUG] : Beginning Read +2022/02/22 16:55:48 HTTP request GET mso/api/v1/tenants +2022/02/22 16:55:48 [DEBUG] Begin Injection +2022/02/22 16:55:48 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:55:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:55:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:55:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:25:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000b4140 3980 [] false false map[] 0xc000680800 0xc0004d6000} +2022/02/22 16:55:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:55:48 [DEBUG] Exit from do method +2022/02/22 16:55:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:55:48 [DEBUG] provider has no plugin.Client +2022/02/22 16:55:48 [DEBUG] New state was assigned lineage "7dbacf92-93f9-e576-f35e-43c0a302f473" +2022/02/22 16:55:48 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 16:55:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:55:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 16:55:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:55:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 16:55:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 16:55:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:55:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 16:55:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:55:48 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 16:56:49 [DEBUG] Test: Executing step 0 +2022/02/22 16:56:49 [DEBUG] provider has no plugin.Client +2022/02/22 16:56:49 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:56:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:56:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:56:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:56:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:56:49 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:56:49 [DEBUG] provider has no plugin.Client +2022/02/22 16:56:49 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:56:49 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:56:49 [DEBUG] New state was assigned lineage "12b1b80f-61bb-fcd1-9079-3d479ffb480e" +2022/02/22 16:56:49 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:56:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:56:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:56:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:56:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:56:49 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:56:49 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:56:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:56:49 [DEBUG] provider has no plugin.Client +2022/02/22 16:56:49 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "guyte" + tenant_id: "" => "guyte" + + + +STATE: + + +2022/02/22 16:56:49 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:56:49 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:56:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:56:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:56:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:56:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:56:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:56:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:56:49 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:56:49 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 16:56:49 [DEBUG] : Beginning Create +2022/02/22 16:56:49 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:56:49 [DEBUG] Begin Injection +2022/02/22 16:56:49 HTTP request POST /login +2022/02/22 16:56:49 HTTP request after injection POST /login +2022/02/22 16:56:49 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 16:56:50 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 16:56:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:26:50 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA0MTAsImlhdCI6MTY0NTUyOTIxMCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJRR3N0ZjhIWW5JOG9SNElmUWF2STB5UnkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.P96suhDBduVqrMiGMKeU5f0GliBnexg0vvK57vS_iV4-0lM65CEtkcQwT-LarXvUcH01BolCosLMdYAi5O1eSSvBQMWzseaPVs66-5XgHyVz-9MVqI2PLclc_FIZS6HaXC80SVttcUiHU-ByyLC9qfMwBbdq-NymADp4l400quHqA6qnImDMDqf4yjzF7I4Q0Mzj_Rz18LvUQ87cQOJ6qtTH40LExHszGQM0jPsiAxfhJg_WPdN6QiM-U8GKcn9MsmD5RjcbXg3LlLKcKzJUIchirY0l9pTd3P9MFi0e3SK4i8SaGsDLETONzxHHvRJeG-NXar6_3Kw_PNiXyOMOXg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00014bcc0 -1 [chunked] false false map[] 0xc00061ca00 0xc0000c49a0} +2022/02/22 16:56:50 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA0MTAsImlhdCI6MTY0NTUyOTIxMCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJRR3N0ZjhIWW5JOG9SNElmUWF2STB5UnkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.P96suhDBduVqrMiGMKeU5f0GliBnexg0vvK57vS_iV4-0lM65CEtkcQwT-LarXvUcH01BolCosLMdYAi5O1eSSvBQMWzseaPVs66-5XgHyVz-9MVqI2PLclc_FIZS6HaXC80SVttcUiHU-ByyLC9qfMwBbdq-NymADp4l400quHqA6qnImDMDqf4yjzF7I4Q0Mzj_Rz18LvUQ87cQOJ6qtTH40LExHszGQM0jPsiAxfhJg_WPdN6QiM-U8GKcn9MsmD5RjcbXg3LlLKcKzJUIchirY0l9pTd3P9MFi0e3SK4i8SaGsDLETONzxHHvRJeG-NXar6_3Kw_PNiXyOMOXg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA0MTAsImlhdCI6MTY0NTUyOTIxMCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJRR3N0ZjhIWW5JOG9SNElmUWF2STB5UnkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.P96suhDBduVqrMiGMKeU5f0GliBnexg0vvK57vS_iV4-0lM65CEtkcQwT-LarXvUcH01BolCosLMdYAi5O1eSSvBQMWzseaPVs66-5XgHyVz-9MVqI2PLclc_FIZS6HaXC80SVttcUiHU-ByyLC9qfMwBbdq-NymADp4l400quHqA6qnImDMDqf4yjzF7I4Q0Mzj_Rz18LvUQ87cQOJ6qtTH40LExHszGQM0jPsiAxfhJg_WPdN6QiM-U8GKcn9MsmD5RjcbXg3LlLKcKzJUIchirY0l9pTd3P9MFi0e3SK4i8SaGsDLETONzxHHvRJeG-NXar6_3Kw_PNiXyOMOXg"} +2022/02/22 16:56:50 [DEBUG] Exit from do method +2022/02/22 16:56:50 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:56:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:56:50 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:56:50 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[97] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:26:50 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002bbd80 97 [] false false map[] 0xc00061c900 0xc0000c49a0} +2022/02/22 16:56:50 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: The tenant with id guyte is not found for the current user."} +2022/02/22 16:56:50 [DEBUG] Exit from do method +2022/02/22 16:56:50 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: The tenant with id guyte is not found for the current user."{} +2022/02/22 16:56:50 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: The tenant with id guyte is not found for the current user."{} +2022/02/22 16:56:50 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: The tenant with id guyte is not found for the current user."{} +2022/02/22 16:56:50 [DEBUG] New state was assigned lineage "a4a5800d-ebcf-a493-a667-bd94d8bc0aa0" +2022/02/22 16:56:50 [DEBUG] Test: Executing step 1 +2022/02/22 16:56:50 [DEBUG] provider has no plugin.Client +2022/02/22 16:56:50 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:56:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:56:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:56:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:56:50 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:56:50 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of name to be in the range (1 - 1000), got kk0ozt3fwaapts8xp3eunbmo1efqtblf79oy04kuksdvraaov09lkrl8ddntp0ouwencnirrjxqdb106mr3vxgzm7lr2n1h3ptwe2iw718lohf17qb8hejywreogdtktdemozp18aajs2289jm6jgirzis0g9nw0f0901f6gz3u0kbpzl401tfd106liba7gpdn2qgi07vhc6k3u8dztpxxpbhak849e1wc3d2mtuoim1zjz2abhbwno7m7afcggq0t7q9rna8f98od101tuhvij8ms7p3hw0ywaan007f9srgkhbr3crgo39i721z42wjfmoglzj7oqsniydmlxnpcd8zsumqv7kz63j70putv62nl2bdrwqbwforfh8cyej7vzey32wxxgbuh70huuw4rc1gefdhzieqczeejx82ufsid17r36p6uxsb0noblf4zfks4deciirf9ws3gj2e8n6ityvyst39u6fmq94vgrnqltoeszdzc77qq4l46mlx0v0dn6g3y3pagoj7ys7dn47nlksfiypcmlxnvshiyiq06msny8gqenpent2kgf00pj2ydpyeecc6upvivomuv81hup9rcstl4ebhi8cpkfodxqcd1lk6vy4tzas7f4i2q2urdw7xsewh82liiiihqxk6ntpj1ggofw92fy0cjwf73dcc9ocigrgmp897zp6xtvaqcfyvg2ltskfhg7jttsuv2plo2t09suaujinjrcso94gh44po4hhzmyr0pobgdv4uvix0bisyk9yhpts7tswor8628zhyw4mexq147zhfagx4e60ynnt1jltmzarsq6caga9gydytuil1ewx2csmbcriqpdiyft6mom8znto0vhvx4pl9qriokh7jwku002xy9z8b6v4buyjd94w1i88svx7zpequ079p6sjhx3cgs3vt0gb16vx373986e029fymmvo09xeyu6rmfscndtuteo0njx7of6ok0nrv +2022/02/22 16:56:50 [ERROR] : eval: *terraform.EvalSequence, err: expected length of name to be in the range (1 - 1000), got kk0ozt3fwaapts8xp3eunbmo1efqtblf79oy04kuksdvraaov09lkrl8ddntp0ouwencnirrjxqdb106mr3vxgzm7lr2n1h3ptwe2iw718lohf17qb8hejywreogdtktdemozp18aajs2289jm6jgirzis0g9nw0f0901f6gz3u0kbpzl401tfd106liba7gpdn2qgi07vhc6k3u8dztpxxpbhak849e1wc3d2mtuoim1zjz2abhbwno7m7afcggq0t7q9rna8f98od101tuhvij8ms7p3hw0ywaan007f9srgkhbr3crgo39i721z42wjfmoglzj7oqsniydmlxnpcd8zsumqv7kz63j70putv62nl2bdrwqbwforfh8cyej7vzey32wxxgbuh70huuw4rc1gefdhzieqczeejx82ufsid17r36p6uxsb0noblf4zfks4deciirf9ws3gj2e8n6ityvyst39u6fmq94vgrnqltoeszdzc77qq4l46mlx0v0dn6g3y3pagoj7ys7dn47nlksfiypcmlxnvshiyiq06msny8gqenpent2kgf00pj2ydpyeecc6upvivomuv81hup9rcstl4ebhi8cpkfodxqcd1lk6vy4tzas7f4i2q2urdw7xsewh82liiiihqxk6ntpj1ggofw92fy0cjwf73dcc9ocigrgmp897zp6xtvaqcfyvg2ltskfhg7jttsuv2plo2t09suaujinjrcso94gh44po4hhzmyr0pobgdv4uvix0bisyk9yhpts7tswor8628zhyw4mexq147zhfagx4e60ynnt1jltmzarsq6caga9gydytuil1ewx2csmbcriqpdiyft6mom8znto0vhvx4pl9qriokh7jwku002xy9z8b6v4buyjd94w1i88svx7zpequ079p6sjhx3cgs3vt0gb16vx373986e029fymmvo09xeyu6rmfscndtuteo0njx7of6ok0nrv +2022/02/22 16:56:50 [DEBUG] Test: Executing step 2 +2022/02/22 16:56:50 [DEBUG] provider has no plugin.Client +2022/02/22 16:56:50 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:56:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:56:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:56:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:56:50 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:56:50 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of description to be in the range (1 - 1000), got jlrivdlludu6dla7o9gzeu9aj8luy6smlshchtlsalb0sveb41wtnq40ycpnmx76waq4p2tn92ak37zm6t0cc4riekvuaj9dkw2hifrnu6vrkdrqbm98j76d06znyumc64r1ibn8ud9wtxzwbic91nj8a6f8sb08a1lg9syjz8w1d03y7b6chyqyy2u0h8opva63gnyp9d47nx04xamrbof2yeojzko9lmjxplh4qvcwbigre3vw7gbkfdasbbidye9bt7jfwnqhkbw6fcvv02s286j0vhzvt6jnftak1yhschilxk1ksqihfm2qjiuk3hlghsany8waikj0ykov0t2clmnj4ihu0ok08ionqtc3fumm1e0uwklv9qrtz8h6btcv7krx9vgw6ymhmex1rp0b37txql4ayuzospjohe8tlogajurot3nrffk22o8619v3w42vymv9v7l37h3mkpd39i1jkynq0od8ywpbvmei18zzsvv7laplyflnmmvpdm6slgjbg2hj2m6gd84ogarbpvfm0uvwduiqqzzjaaxryvbxq6hs3iz9q2b6r2lu91lnsa300u06bg1yc777hekrjpvon0i6cs6mzo4ns7u276r86kr1yjuam2rdza8x4mh9fk2ykntag4loxxpqdecg0oa4k38lhf9qucg0gginugb16qx1vayzcgc9fls29ofctbh9n1wuik69je7he6kt410w7k9ty09czxzx7lhl8ml0b306yl81kdw9vsiz3428qmwfvlk0ftb6rmodh2693d60ti24taen16p3qkt6arpwxpdjivt0o0jz2duzad793oeh84qcqblq18pi7tla3ee2jvw3fblq3qw76dx61mao8bfwsiigjeasnxscggx9myumy6ytlllvkx9cqoslcp33udssvmgamqsdr0oug77w981dm0r3pt1p8fd1thuvbbosweahtrbw80aeyiasp6xz6pt74mz3rv7js +2022/02/22 16:56:50 [ERROR] : eval: *terraform.EvalSequence, err: expected length of description to be in the range (1 - 1000), got jlrivdlludu6dla7o9gzeu9aj8luy6smlshchtlsalb0sveb41wtnq40ycpnmx76waq4p2tn92ak37zm6t0cc4riekvuaj9dkw2hifrnu6vrkdrqbm98j76d06znyumc64r1ibn8ud9wtxzwbic91nj8a6f8sb08a1lg9syjz8w1d03y7b6chyqyy2u0h8opva63gnyp9d47nx04xamrbof2yeojzko9lmjxplh4qvcwbigre3vw7gbkfdasbbidye9bt7jfwnqhkbw6fcvv02s286j0vhzvt6jnftak1yhschilxk1ksqihfm2qjiuk3hlghsany8waikj0ykov0t2clmnj4ihu0ok08ionqtc3fumm1e0uwklv9qrtz8h6btcv7krx9vgw6ymhmex1rp0b37txql4ayuzospjohe8tlogajurot3nrffk22o8619v3w42vymv9v7l37h3mkpd39i1jkynq0od8ywpbvmei18zzsvv7laplyflnmmvpdm6slgjbg2hj2m6gd84ogarbpvfm0uvwduiqqzzjaaxryvbxq6hs3iz9q2b6r2lu91lnsa300u06bg1yc777hekrjpvon0i6cs6mzo4ns7u276r86kr1yjuam2rdza8x4mh9fk2ykntag4loxxpqdecg0oa4k38lhf9qucg0gginugb16qx1vayzcgc9fls29ofctbh9n1wuik69je7he6kt410w7k9ty09czxzx7lhl8ml0b306yl81kdw9vsiz3428qmwfvlk0ftb6rmodh2693d60ti24taen16p3qkt6arpwxpdjivt0o0jz2duzad793oeh84qcqblq18pi7tla3ee2jvw3fblq3qw76dx61mao8bfwsiigjeasnxscggx9myumy6ytlllvkx9cqoslcp33udssvmgamqsdr0oug77w981dm0r3pt1p8fd1thuvbbosweahtrbw80aeyiasp6xz6pt74mz3rv7js +2022/02/22 16:56:50 [DEBUG] Test: Executing step 3 +2022/02/22 16:56:50 [DEBUG] provider has no plugin.Client +2022/02/22 16:56:50 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:56:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:56:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:56:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:56:50 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:56:50 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "cfkbw" is not expected here. +2022/02/22 16:56:50 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "cfkbw" is not expected here. +2022/02/22 16:56:50 [DEBUG] Test: Executing step 4 +2022/02/22 16:56:50 [DEBUG] provider has no plugin.Client +2022/02/22 16:56:50 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:56:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:56:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:56:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:56:50 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:56:50 [DEBUG] provider has no plugin.Client +2022/02/22 16:56:50 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:56:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:56:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:56:50 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:56:50 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:56:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:56:50 [DEBUG] : Beginning Read +2022/02/22 16:56:50 HTTP request GET mso/api/v1/tenants +2022/02/22 16:56:50 [DEBUG] Begin Injection +2022/02/22 16:56:50 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:56:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:56:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:56:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:26:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00024ca40 3980 [] false false map[] 0xc0007f5500 0xc0000c49a0} +2022/02/22 16:56:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:56:51 [DEBUG] Exit from do method +2022/02/22 16:56:51 [ERROR] : eval: *terraform.EvalReadData, err: Tenant of specified name not found +2022/02/22 16:56:51 [ERROR] : eval: *terraform.EvalSequence, err: Tenant of specified name not found +2022/02/22 16:56:51 [DEBUG] New state was assigned lineage "4c30a6ee-c902-86aa-db34-2a4fbeb97982" +2022/02/22 16:56:51 [WARN] Skipping destroy test since there is no state. +2022/02/22 16:58:18 [DEBUG] Test: Executing step 0 +2022/02/22 16:58:18 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:18 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:58:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:58:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:58:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:58:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:18 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:58:18 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:18 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:58:18 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:58:18 [DEBUG] New state was assigned lineage "c8560641-3da2-f0b5-68f0-51fbd54b1f56" +2022/02/22 16:58:18 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:58:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:58:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:58:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:58:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:18 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:58:18 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:58:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:58:18 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:18 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "go04z" + tenant_id: "" => "go04z" + + + +STATE: + + +2022/02/22 16:58:18 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:58:18 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:58:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:58:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:58:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:58:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:58:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:58:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:18 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:58:18 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 16:58:18 [DEBUG] : Beginning Create +2022/02/22 16:58:18 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:58:18 [DEBUG] Begin Injection +2022/02/22 16:58:18 HTTP request POST /login +2022/02/22 16:58:18 HTTP request after injection POST /login +2022/02/22 16:58:18 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 16:58:20 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 16:58:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:28:20 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA1MDAsImlhdCI6MTY0NTUyOTMwMCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJBckVBSUt1WFJuVUFRaFlseU5Ud25pZzkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.PeMx6IFRvR0jDi6wAZqLTN1vwvmyYbE4RYV8FLyBNPu8CgWsrk9IXR0oYWmKY4WmxCsFXS4TUY-bZoGHKAoShiACcTzULM5y9lhsLYD_2E75QOoSO_sNtIj1O8pExBU1-0r4n2RakRvhV2QlUolGpDdyOB_RTqxFwgNJpIlSAjEKfZD8vviV3uoSRk6apzXeYDIutiVvFuAVRTuIS47taxpsZgsUgKG92Au_1Jrh_BBGNMBOY57tcVlpX0FeaiOasRmqs3Q79udzIOAV6quYDkXiMvnzrUVfQq6JWzedfA0su382E73dGmu3IiUHbhN8PYQuB9K4aksOgbDnwjm-Gw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0001de340 -1 [chunked] false false map[] 0xc0007a0500 0xc00055e000} +2022/02/22 16:58:20 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA1MDAsImlhdCI6MTY0NTUyOTMwMCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJBckVBSUt1WFJuVUFRaFlseU5Ud25pZzkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.PeMx6IFRvR0jDi6wAZqLTN1vwvmyYbE4RYV8FLyBNPu8CgWsrk9IXR0oYWmKY4WmxCsFXS4TUY-bZoGHKAoShiACcTzULM5y9lhsLYD_2E75QOoSO_sNtIj1O8pExBU1-0r4n2RakRvhV2QlUolGpDdyOB_RTqxFwgNJpIlSAjEKfZD8vviV3uoSRk6apzXeYDIutiVvFuAVRTuIS47taxpsZgsUgKG92Au_1Jrh_BBGNMBOY57tcVlpX0FeaiOasRmqs3Q79udzIOAV6quYDkXiMvnzrUVfQq6JWzedfA0su382E73dGmu3IiUHbhN8PYQuB9K4aksOgbDnwjm-Gw","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA1MDAsImlhdCI6MTY0NTUyOTMwMCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJBckVBSUt1WFJuVUFRaFlseU5Ud25pZzkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.PeMx6IFRvR0jDi6wAZqLTN1vwvmyYbE4RYV8FLyBNPu8CgWsrk9IXR0oYWmKY4WmxCsFXS4TUY-bZoGHKAoShiACcTzULM5y9lhsLYD_2E75QOoSO_sNtIj1O8pExBU1-0r4n2RakRvhV2QlUolGpDdyOB_RTqxFwgNJpIlSAjEKfZD8vviV3uoSRk6apzXeYDIutiVvFuAVRTuIS47taxpsZgsUgKG92Au_1Jrh_BBGNMBOY57tcVlpX0FeaiOasRmqs3Q79udzIOAV6quYDkXiMvnzrUVfQq6JWzedfA0su382E73dGmu3IiUHbhN8PYQuB9K4aksOgbDnwjm-Gw"} +2022/02/22 16:58:20 [DEBUG] Exit from do method +2022/02/22 16:58:20 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:58:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:58:21 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:58:21 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[97] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:28:21 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001922c0 97 [] false false map[] 0xc0007a0400 0xc00055e000} +2022/02/22 16:58:21 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: The tenant with id go04z is not found for the current user."} +2022/02/22 16:58:21 [DEBUG] Exit from do method +2022/02/22 16:58:21 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: The tenant with id go04z is not found for the current user."{} +2022/02/22 16:58:21 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: The tenant with id go04z is not found for the current user."{} +2022/02/22 16:58:21 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: The tenant with id go04z is not found for the current user."{} +2022/02/22 16:58:21 [DEBUG] New state was assigned lineage "650b02cf-4b42-d641-b0ae-048d20850c98" +2022/02/22 16:58:21 [DEBUG] Test: Executing step 1 +2022/02/22 16:58:21 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:21 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:58:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:21 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:58:21 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of name to be in the range (1 - 1000), got g99lh6ogw8d76winmhqignm3xexv7w3tyaoem1sbgj9v4kumkp8s6ng30epuy129f1wm9x2mpk7ry09cyjvxbgq3u6nkn9ydbi6eqgg39oezlb94yixnpi6hrtkxvehh9rnnofoqgwj3szvyhank6uetml6p4283uuqz3y0i32samtw8ov4odcm7p8fas111ln06beujijndtrd2snhrl2m8x6f8rn6z1zpsngavwie3uuqixgysd1j0zbwkpzoqb7n8jngqczw8j2ebma2kng7rb9t8roo3w2pepuh3w7x067smn064hnv8u3187ln8tft1a94ok779s0uf12uymbn4wlbo644l7c3ymgq6j79hqnum16i478i14q9neyjhox8l9f42a3agjpvqjfzad8pj3dui9ww9zcsnm93aproicutjzf9q3b967hvn7xd1kv6znqvxrkliww4g2n3piixbfig6ptum7fxr2j697x1nebhi4mvuuoi9rngaf77bbgsh891ssvs4kmw4vgkuumdie271agg3kxbwqwx0zr11jnbg3bvpgb8wymma4milv46m78xd1lem28c2hvyfqy8pe0pyzzqdr1e171tn2cu7nevuszwaccbfm8s74kkjyhbua2lpo4dhbcou9ntgzgav81pbkopduiryajxh607wa8cyvxctt23oi322ueb7svvqwbikkojk1itea9mxlwxetf98mhhgbseu8xz3yoocvou2yw1upk2vx3pahoh13xo1vxaofa06614maiv8jk7i3x9nwdrkvnpxzs8lssj2kp9ctrfm2g7ma6qwrsd2jjuawtwu4fsjuxuj3knarhbzrow7ci1q08u86wfmgebzrg1felork4wvynncm19inl4c8k6adbb1g09bn8ovkwd6vsgmspmkc6r6sv7k6idl16ut6f74c0ewt7r24hjl0pn0dbzeyinvtf233d36oifd1w20mc1k2lxm3sqal +2022/02/22 16:58:21 [ERROR] : eval: *terraform.EvalSequence, err: expected length of name to be in the range (1 - 1000), got g99lh6ogw8d76winmhqignm3xexv7w3tyaoem1sbgj9v4kumkp8s6ng30epuy129f1wm9x2mpk7ry09cyjvxbgq3u6nkn9ydbi6eqgg39oezlb94yixnpi6hrtkxvehh9rnnofoqgwj3szvyhank6uetml6p4283uuqz3y0i32samtw8ov4odcm7p8fas111ln06beujijndtrd2snhrl2m8x6f8rn6z1zpsngavwie3uuqixgysd1j0zbwkpzoqb7n8jngqczw8j2ebma2kng7rb9t8roo3w2pepuh3w7x067smn064hnv8u3187ln8tft1a94ok779s0uf12uymbn4wlbo644l7c3ymgq6j79hqnum16i478i14q9neyjhox8l9f42a3agjpvqjfzad8pj3dui9ww9zcsnm93aproicutjzf9q3b967hvn7xd1kv6znqvxrkliww4g2n3piixbfig6ptum7fxr2j697x1nebhi4mvuuoi9rngaf77bbgsh891ssvs4kmw4vgkuumdie271agg3kxbwqwx0zr11jnbg3bvpgb8wymma4milv46m78xd1lem28c2hvyfqy8pe0pyzzqdr1e171tn2cu7nevuszwaccbfm8s74kkjyhbua2lpo4dhbcou9ntgzgav81pbkopduiryajxh607wa8cyvxctt23oi322ueb7svvqwbikkojk1itea9mxlwxetf98mhhgbseu8xz3yoocvou2yw1upk2vx3pahoh13xo1vxaofa06614maiv8jk7i3x9nwdrkvnpxzs8lssj2kp9ctrfm2g7ma6qwrsd2jjuawtwu4fsjuxuj3knarhbzrow7ci1q08u86wfmgebzrg1felork4wvynncm19inl4c8k6adbb1g09bn8ovkwd6vsgmspmkc6r6sv7k6idl16ut6f74c0ewt7r24hjl0pn0dbzeyinvtf233d36oifd1w20mc1k2lxm3sqal +2022/02/22 16:58:21 [DEBUG] Test: Executing step 2 +2022/02/22 16:58:21 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:21 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:58:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:21 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:58:21 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of description to be in the range (1 - 1000), got tmi0lx2ld4ttnj6jw90yvzwhubfukwjeop380y7k2qj3uuj8eoxum6g9il90ik0tfivm3wkb13a7ztd7y0cmifitia9wcfgm2k7xz0ks4gr0h6r8orygsz8py3l9jdtmak7jbqn9otgw96ksp7c6bnc2skiq9wzp2r9p0l2kmeoe6k7y1bje1o86wkm7kd6id69l7ju70b9uqocomkgcvmclnk499e7yeh6kqffcn212esdoirv731snixhyzxtlh3h3dw1xyro43f02d8axgovbgf63tvfatvlydkmlwr8l0y6pjua89yt67wewoiiyi0tiqr7rx79vpmh74pv2ubbgfneb97v4y0z27oh6mgqv2x2nfgrmh47k8w1fe9bsylo2ohcsowe9jr7ulzjn0mod1cvb8xofeiu3id8u9ieozyaw6qas6tuphmd8drsdib97cnjvj9e68b7lhakidza64z7wdg7tqo1n30rnch8d8v2wotubkzs2720pcr8q1mbmj6rq1g9g29wprumxgozbg8bm1rbmjod7uzx1lbiwkhrp4n3tlpbeynulbhoq36es124xz2cn24m449pvb0wigbdso2a1veg73nzfccjsl4hvgp2y6tw1j4ddjoei2aqucffd1t3zz08gjyidzutx3zoyvmoc2jdeanzh829yvo7qjhv2aqxs7khs67c2j3qdvgdp8yqx4u18ujh3aag8qv9o94n88qwyc2copnzjszynq4w3diumywy7cyn9romlmpmh8x7az9h04c32eh1fdqdkjzhzxrij7ex3dss3eh60wp2yvxocotmhdtj9x0bkz2r18qhc4qv99pflkwhqyj4fozguycftvgpyd7ikxg8ecvfyyp16k8i3q26dtsr7auhjkth42g4n2gkqwwbozjhil8pskg8yv9pi8gmgo3kjs0pasc7iuc38vhj8ulm4uhynbz7bgcltmdtyksrnpdh7xiprvlpvbctu8 +2022/02/22 16:58:21 [ERROR] : eval: *terraform.EvalSequence, err: expected length of description to be in the range (1 - 1000), got tmi0lx2ld4ttnj6jw90yvzwhubfukwjeop380y7k2qj3uuj8eoxum6g9il90ik0tfivm3wkb13a7ztd7y0cmifitia9wcfgm2k7xz0ks4gr0h6r8orygsz8py3l9jdtmak7jbqn9otgw96ksp7c6bnc2skiq9wzp2r9p0l2kmeoe6k7y1bje1o86wkm7kd6id69l7ju70b9uqocomkgcvmclnk499e7yeh6kqffcn212esdoirv731snixhyzxtlh3h3dw1xyro43f02d8axgovbgf63tvfatvlydkmlwr8l0y6pjua89yt67wewoiiyi0tiqr7rx79vpmh74pv2ubbgfneb97v4y0z27oh6mgqv2x2nfgrmh47k8w1fe9bsylo2ohcsowe9jr7ulzjn0mod1cvb8xofeiu3id8u9ieozyaw6qas6tuphmd8drsdib97cnjvj9e68b7lhakidza64z7wdg7tqo1n30rnch8d8v2wotubkzs2720pcr8q1mbmj6rq1g9g29wprumxgozbg8bm1rbmjod7uzx1lbiwkhrp4n3tlpbeynulbhoq36es124xz2cn24m449pvb0wigbdso2a1veg73nzfccjsl4hvgp2y6tw1j4ddjoei2aqucffd1t3zz08gjyidzutx3zoyvmoc2jdeanzh829yvo7qjhv2aqxs7khs67c2j3qdvgdp8yqx4u18ujh3aag8qv9o94n88qwyc2copnzjszynq4w3diumywy7cyn9romlmpmh8x7az9h04c32eh1fdqdkjzhzxrij7ex3dss3eh60wp2yvxocotmhdtj9x0bkz2r18qhc4qv99pflkwhqyj4fozguycftvgpyd7ikxg8ecvfyyp16k8i3q26dtsr7auhjkth42g4n2gkqwwbozjhil8pskg8yv9pi8gmgo3kjs0pasc7iuc38vhj8ulm4uhynbz7bgcltmdtyksrnpdh7xiprvlpvbctu8 +2022/02/22 16:58:21 [DEBUG] Test: Executing step 3 +2022/02/22 16:58:21 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:21 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:58:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:21 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:58:21 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "omioq" is not expected here. +2022/02/22 16:58:21 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "omioq" is not expected here. +2022/02/22 16:58:21 [DEBUG] Test: Executing step 4 +2022/02/22 16:58:21 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:21 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:58:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:21 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:58:21 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:21 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:58:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:21 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:58:21 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:21 [DEBUG] : Beginning Read +2022/02/22 16:58:21 HTTP request GET mso/api/v1/tenants +2022/02/22 16:58:21 [DEBUG] Begin Injection +2022/02/22 16:58:21 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:58:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:58:21 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:58:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:28:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fa41c0 3980 [] false false map[] 0xc000180400 0xc00055e000} +2022/02/22 16:58:21 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:58:21 [DEBUG] Exit from do method +2022/02/22 16:58:21 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:58:21 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:21 [DEBUG] New state was assigned lineage "8e3e61cd-68dc-d87e-8ca8-c41f02edc668" +2022/02/22 16:58:21 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:58:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:21 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:21 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:58:21 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:21 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.196.17" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + id: "" => "" + name: "" => "acctest_77uj6" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 16:58:21 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 16:58:21 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 16:58:21 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 16:58:21 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 16:58:21 [DEBUG] Starting graph walk: walkApply +2022/02/22 16:58:21 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 16:58:21 [DEBUG] : Beginning Create +2022/02/22 16:58:21 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:58:21 [DEBUG] Begin Injection +2022/02/22 16:58:21 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 16:58:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:58:21 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 16:58:21 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:28:21 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001924c0 356 [] false false map[] 0xc0003d6800 0xc00055e000} +2022/02/22 16:58:21 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 16:58:21 [DEBUG] Exit from do method +2022/02/22 16:58:21 [DEBUG] 6214c8d51b00003a7efd0668: Creation finished successfully +2022/02/22 16:58:21 [DEBUG] 6214c8d51b00003a7efd0668: Beginning Read +2022/02/22 16:58:21 id: 6214c8d51b00003a7efd0668 +2022/02/22 16:58:21 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c8d51b00003a7efd0668 +2022/02/22 16:58:21 [DEBUG] Begin Injection +2022/02/22 16:58:21 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c8d51b00003a7efd0668 +2022/02/22 16:58:21 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8d51b00003a7efd0668 +2022/02/22 16:58:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8d51b00003a7efd0668 +2022/02/22 16:58:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:28:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fa4c80 356 [] false false map[] 0xc000fa2200 0xc00055e000} +2022/02/22 16:58:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8d51b00003a7efd0668 {"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 16:58:22 [DEBUG] Exit from do method +2022/02/22 16:58:22 [DEBUG] 6214c8d51b00003a7efd0668: Read finished successfully +2022/02/22 16:58:22 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 16:58:22 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:22 [DEBUG] New state was assigned lineage "78b40f8a-be79-0a0e-1aba-a2d34a1f69ac" +2022/02/22 16:58:22 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:58:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:58:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:58:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:22 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:58:22 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:22 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:58:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:58:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:58:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:22 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:22 [DEBUG] : Beginning Read +2022/02/22 16:58:22 HTTP request GET mso/api/v1/tenants +2022/02/22 16:58:22 [DEBUG] Begin Injection +2022/02/22 16:58:22 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:58:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:58:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:58:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:28:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fe2040 3980 [] false false map[] 0xc000638500 0xc00055e000} +2022/02/22 16:58:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:58:22 [DEBUG] Exit from do method +2022/02/22 16:58:22 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:58:22 [DEBUG] 6214c8d51b00003a7efd0668: Beginning Read +2022/02/22 16:58:22 id: 6214c8d51b00003a7efd0668 +2022/02/22 16:58:22 HTTP request GET mso/api/v1/policies/dhcp/relay/6214c8d51b00003a7efd0668 +2022/02/22 16:58:22 [DEBUG] Begin Injection +2022/02/22 16:58:22 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214c8d51b00003a7efd0668 +2022/02/22 16:58:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8d51b00003a7efd0668 +2022/02/22 16:58:22 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8d51b00003a7efd0668 +2022/02/22 16:58:22 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:28:22 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fa4240 356 [] false false map[] 0xc000180700 0xc00055e000} +2022/02/22 16:58:22 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214c8d51b00003a7efd0668 {"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 16:58:22 [DEBUG] Exit from do method +2022/02/22 16:58:22 [DEBUG] 6214c8d51b00003a7efd0668: Read finished successfully +2022/02/22 16:58:22 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:22 [DEBUG] New state was assigned lineage "611128c6-383c-d674-f905-9706b6be58ad" +2022/02/22 16:58:22 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 16:58:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:58:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:58:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:22 [DEBUG] Starting graph walk: walkPlan +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 16:58:22 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:22 [WARN] Test: Executing destroy step +2022/02/22 16:58:22 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:22 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 16:58:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 16:58:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:58:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:22 [DEBUG] Starting graph walk: walkValidate +2022/02/22 16:58:22 [DEBUG] provider has no plugin.Client +2022/02/22 16:58:22 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 16:58:22 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 16:58:22 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 16:58:22 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 16:58:22 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 16:58:22 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 16:58:22 [DEBUG] : Beginning Read +2022/02/22 16:58:22 HTTP request GET mso/api/v1/tenants +2022/02/22 16:58:22 [DEBUG] Begin Injection +2022/02/22 16:58:22 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 16:58:22 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:58:23 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 16:58:23 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:28:23 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fe20c0 3980 [] false false map[] 0xc000180e00 0xc00055e000} +2022/02/22 16:58:23 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 16:58:23 [DEBUG] Exit from do method +2022/02/22 16:58:23 [ERROR] : eval: *terraform.EvalReadData, err: Tenant of specified name not found +2022/02/22 16:58:23 [ERROR] : eval: *terraform.EvalSequence, err: Tenant of specified name not found +2022/02/22 16:58:23 [DEBUG] New state was assigned lineage "904a04eb-c452-f226-02dc-f4a6558a3ec9" +2022/02/22 17:03:38 [DEBUG] Test: Executing step 0 +2022/02/22 17:03:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:03:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:03:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:03:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:03:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:03:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:03:38 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:03:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:03:38 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:03:38 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:03:38 [DEBUG] New state was assigned lineage "4ebfb94d-f029-1986-10f8-1ac119e3dff9" +2022/02/22 17:03:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:03:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:03:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:03:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:03:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:03:38 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:03:38 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:03:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:03:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:03:38 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "bwi3x" + tenant_id: "" => "bwi3x" + + + +STATE: + + +2022/02/22 17:03:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:03:38 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:03:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:03:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:03:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:03:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:03:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:03:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:03:38 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:03:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:03:38 [DEBUG] : Beginning Create +2022/02/22 17:03:38 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:03:38 [DEBUG] Begin Injection +2022/02/22 17:03:38 HTTP request POST /login +2022/02/22 17:03:38 HTTP request after injection POST /login +2022/02/22 17:03:38 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:03:39 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:03:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:33:39 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA4MTksImlhdCI6MTY0NTUyOTYxOSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJWOU1XR0E3VT1jM2FvYlpnVnViVW5JRVoiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.P1Gnuzaj-83YYlvNKDxVCtRjsd0Qpr4_BKuBry83WQnCmUbv7IV0fQm0ygemmWQ_f7KW3C-sIjLDJN8XK5FxR3LcaEExHQ6mKYUFNRzINg3fm78onRcaEsR0NXAJS77gfLiFzHNGtAdOQewQS34o5avB_RsD-_c9vx-aarR-2FwQEl7X9yVRPu2sPbXnHlzipTW3o3u0WCuwu8f0QjfSEJPEfsviJnVhWrS6EZZebY3_hnbWIDPd6iCJhi8tcn2VDreNUMfiW5aZx015cNrobkBH1XS8zoAz5T7ZUPx0cvOXuVlnh0qlfyXQDjeisOCzV--InFgsp8e2BPs4iP1Qxw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000090280 -1 [chunked] false false map[] 0xc000818700 0xc000136840} +2022/02/22 17:03:39 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA4MTksImlhdCI6MTY0NTUyOTYxOSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJWOU1XR0E3VT1jM2FvYlpnVnViVW5JRVoiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.P1Gnuzaj-83YYlvNKDxVCtRjsd0Qpr4_BKuBry83WQnCmUbv7IV0fQm0ygemmWQ_f7KW3C-sIjLDJN8XK5FxR3LcaEExHQ6mKYUFNRzINg3fm78onRcaEsR0NXAJS77gfLiFzHNGtAdOQewQS34o5avB_RsD-_c9vx-aarR-2FwQEl7X9yVRPu2sPbXnHlzipTW3o3u0WCuwu8f0QjfSEJPEfsviJnVhWrS6EZZebY3_hnbWIDPd6iCJhi8tcn2VDreNUMfiW5aZx015cNrobkBH1XS8zoAz5T7ZUPx0cvOXuVlnh0qlfyXQDjeisOCzV--InFgsp8e2BPs4iP1Qxw","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA4MTksImlhdCI6MTY0NTUyOTYxOSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJWOU1XR0E3VT1jM2FvYlpnVnViVW5JRVoiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.P1Gnuzaj-83YYlvNKDxVCtRjsd0Qpr4_BKuBry83WQnCmUbv7IV0fQm0ygemmWQ_f7KW3C-sIjLDJN8XK5FxR3LcaEExHQ6mKYUFNRzINg3fm78onRcaEsR0NXAJS77gfLiFzHNGtAdOQewQS34o5avB_RsD-_c9vx-aarR-2FwQEl7X9yVRPu2sPbXnHlzipTW3o3u0WCuwu8f0QjfSEJPEfsviJnVhWrS6EZZebY3_hnbWIDPd6iCJhi8tcn2VDreNUMfiW5aZx015cNrobkBH1XS8zoAz5T7ZUPx0cvOXuVlnh0qlfyXQDjeisOCzV--InFgsp8e2BPs4iP1Qxw"} +2022/02/22 17:03:39 [DEBUG] Exit from do method +2022/02/22 17:03:39 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:03:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:03:40 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:03:40 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[97] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:33:39 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000f6200 97 [] false false map[] 0xc000818600 0xc000136840} +2022/02/22 17:03:40 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: The tenant with id bwi3x is not found for the current user."} +2022/02/22 17:03:40 [DEBUG] Exit from do method +2022/02/22 17:03:40 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: The tenant with id bwi3x is not found for the current user."{} +2022/02/22 17:03:40 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: The tenant with id bwi3x is not found for the current user."{} +2022/02/22 17:03:40 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: The tenant with id bwi3x is not found for the current user."{} +2022/02/22 17:03:40 [DEBUG] New state was assigned lineage "fa843e57-5d42-21b5-00b0-9719c294b0cc" +2022/02/22 17:03:40 [DEBUG] Test: Executing step 1 +2022/02/22 17:03:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:03:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:03:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:03:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:03:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:03:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:03:40 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of name to be in the range (1 - 1000), got tjqhrsl6k06zre6gwbkqwb2ajeyyvbrkonevnumwfdz0aucu7oas6uk608wfeptodb1fypitmncwgugczwiwl09973t8sed8160uyp6kdm73trfbf08bgibttq2b73bd9nid2ix9b8uvz1ick3h3a2hrvne9x1z86uwuhvrf0btsv4wzx34xt2qv187vwncfbsmrnk6l6kutjh1ak7n2zjpujszjy2xg4ed4c9l2hueaxdk6em2elcrdlcucytmfrxmbf4sdbxcrchtnzk3jv4n2j1c74u4k7d91saaxah1bmt2vblumw3xoxfu1cukbcrr12m0gry8jchvmko20pniki13nm4btkj11u6xr0jyw7i9xl4lf6u2zdlfyhlhei406rmhxo07ls8yepqtfqnri1xfh148g1wnggns2dzh44r32u7pcxnn1ocuyzp43uhvl6rixcj4a0ldqj2p84svmn798xwdyh0yln7629nnfkkdzjabia72vm29mjfkbu1oqmuffd1iwt9cek0ari6zyi2geazu4holckthendrscunekwfjmtbg1gzzcb8dgxqkpr173rfm1i3pq47nxynh3qd8464fv08kw0j6bfrlsvnxuuz02z7kwq9ka1tnnq3cdiu932cgvk7rtjoaq1vl8cjn0cn2st8jvc8gw3kx1k8a3bwy8fm1w9xd99q8yxsestbremifh42b7si2t8c1e6xfgeodhrijgt3xk84b06cnsovcr70shqno7nv9w67vg3o69jl8h64li1p9v2g7qaoib9fe9xjzfqi99fy2l2d6e8tnmcr29eygmcdjinstibyvdit0gm8dq92eyjup916g6ezld2ioit21hi9rfpk81qnusn76adpz7z6xdtyv1f0jrp3l43zuc8gr60xueo8qd6yl9cohmildb7xluy1xtxxowhmt8qia6g4jvvfu78xqcy9vl99fgm30clkefwn2r0ac7bpdre826 +2022/02/22 17:03:40 [ERROR] : eval: *terraform.EvalSequence, err: expected length of name to be in the range (1 - 1000), got tjqhrsl6k06zre6gwbkqwb2ajeyyvbrkonevnumwfdz0aucu7oas6uk608wfeptodb1fypitmncwgugczwiwl09973t8sed8160uyp6kdm73trfbf08bgibttq2b73bd9nid2ix9b8uvz1ick3h3a2hrvne9x1z86uwuhvrf0btsv4wzx34xt2qv187vwncfbsmrnk6l6kutjh1ak7n2zjpujszjy2xg4ed4c9l2hueaxdk6em2elcrdlcucytmfrxmbf4sdbxcrchtnzk3jv4n2j1c74u4k7d91saaxah1bmt2vblumw3xoxfu1cukbcrr12m0gry8jchvmko20pniki13nm4btkj11u6xr0jyw7i9xl4lf6u2zdlfyhlhei406rmhxo07ls8yepqtfqnri1xfh148g1wnggns2dzh44r32u7pcxnn1ocuyzp43uhvl6rixcj4a0ldqj2p84svmn798xwdyh0yln7629nnfkkdzjabia72vm29mjfkbu1oqmuffd1iwt9cek0ari6zyi2geazu4holckthendrscunekwfjmtbg1gzzcb8dgxqkpr173rfm1i3pq47nxynh3qd8464fv08kw0j6bfrlsvnxuuz02z7kwq9ka1tnnq3cdiu932cgvk7rtjoaq1vl8cjn0cn2st8jvc8gw3kx1k8a3bwy8fm1w9xd99q8yxsestbremifh42b7si2t8c1e6xfgeodhrijgt3xk84b06cnsovcr70shqno7nv9w67vg3o69jl8h64li1p9v2g7qaoib9fe9xjzfqi99fy2l2d6e8tnmcr29eygmcdjinstibyvdit0gm8dq92eyjup916g6ezld2ioit21hi9rfpk81qnusn76adpz7z6xdtyv1f0jrp3l43zuc8gr60xueo8qd6yl9cohmildb7xluy1xtxxowhmt8qia6g4jvvfu78xqcy9vl99fgm30clkefwn2r0ac7bpdre826 +2022/02/22 17:03:40 [DEBUG] Test: Executing step 2 +2022/02/22 17:03:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:03:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:03:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:03:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:03:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:03:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:03:40 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of description to be in the range (1 - 1000), got chhe6v460wzaa2vm1g97bd3n771pa0gi0mi6dgg7c9v97w39u9onpdqt4dm3grihlnrur11jo9qi12vi8enp1rkxfkjxjiqhnja2penww84rowcodv2630s4i1fy3obti12g9ubopl2lkin7onah0wsyq6yec3larw3wk4gwjgcr3l42trin377vsuvaax3cwdzb8lgh7pd6d1f7q4si24n149wsjdnb22dvkg2gyn9l3ixjb9ao4zn9bo799lqki2ae0j7xxbiie176f1lwrbq04au1lt12929w6nkia84kff0gj3ltzchh1t3snoehucsjh2blfxawi9wf636897ajsbrnpqq7p9hkrrnbvh1hpe2k71topp1ktirz6l8l0ngceg9kxtzl6e4o83f2xetbbfqk6whtwhbfxad2j4ue863qbb960uq7f31dtp1emlb8ljziowk672a9l2ah1v1m1xa9chazj9nl4d9hg1rbqgq2qszg3kkziwreoedpezhgf21yftwa9u2ivbj6fdv9c40qttfh62ybos7epva2q4rvnmzr4r9jnv6gkvipfisx64itns9sg3u0706vwwcodusqvchbzpk16g30jub4snfvdoiu0y4wl0afk9ztwsyx7vyhvsuoy0x4wf18fvc40m072ryt12oxvq0las0je34raaaf98avq6s4ypphcc4paqtpialhc8hhcst4zhrlm7mqw8mu0f9a12bhxvalhprodjtfkz1qdhjth1s91ksnon8t7lqx2jjx8mqoqookwe6abgapmldhuxx41s1gib3wppnr6fwfqdfjigik0rknxxbbwyjd186wpr9znvhkll4kgwrfu74xitk02m2wi4ky2bcffz8behynolhqopor8nji8gbgxcr9olp0zffrd1b8g2ku7r1m1tjt4dm9j297zxd0u8cjns6gc71l3uxrxnmvfvpkmrcn9w2khf1excdutbj9vvuyby3r6 +2022/02/22 17:03:40 [ERROR] : eval: *terraform.EvalSequence, err: expected length of description to be in the range (1 - 1000), got chhe6v460wzaa2vm1g97bd3n771pa0gi0mi6dgg7c9v97w39u9onpdqt4dm3grihlnrur11jo9qi12vi8enp1rkxfkjxjiqhnja2penww84rowcodv2630s4i1fy3obti12g9ubopl2lkin7onah0wsyq6yec3larw3wk4gwjgcr3l42trin377vsuvaax3cwdzb8lgh7pd6d1f7q4si24n149wsjdnb22dvkg2gyn9l3ixjb9ao4zn9bo799lqki2ae0j7xxbiie176f1lwrbq04au1lt12929w6nkia84kff0gj3ltzchh1t3snoehucsjh2blfxawi9wf636897ajsbrnpqq7p9hkrrnbvh1hpe2k71topp1ktirz6l8l0ngceg9kxtzl6e4o83f2xetbbfqk6whtwhbfxad2j4ue863qbb960uq7f31dtp1emlb8ljziowk672a9l2ah1v1m1xa9chazj9nl4d9hg1rbqgq2qszg3kkziwreoedpezhgf21yftwa9u2ivbj6fdv9c40qttfh62ybos7epva2q4rvnmzr4r9jnv6gkvipfisx64itns9sg3u0706vwwcodusqvchbzpk16g30jub4snfvdoiu0y4wl0afk9ztwsyx7vyhvsuoy0x4wf18fvc40m072ryt12oxvq0las0je34raaaf98avq6s4ypphcc4paqtpialhc8hhcst4zhrlm7mqw8mu0f9a12bhxvalhprodjtfkz1qdhjth1s91ksnon8t7lqx2jjx8mqoqookwe6abgapmldhuxx41s1gib3wppnr6fwfqdfjigik0rknxxbbwyjd186wpr9znvhkll4kgwrfu74xitk02m2wi4ky2bcffz8behynolhqopor8nji8gbgxcr9olp0zffrd1b8g2ku7r1m1tjt4dm9j297zxd0u8cjns6gc71l3uxrxnmvfvpkmrcn9w2khf1excdutbj9vvuyby3r6 +2022/02/22 17:03:40 [DEBUG] Test: Executing step 3 +2022/02/22 17:03:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:03:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:03:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:03:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:03:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:03:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:03:40 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "iaqlh" is not expected here. +2022/02/22 17:03:40 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "iaqlh" is not expected here. +2022/02/22 17:03:40 [DEBUG] Test: Executing step 4 +2022/02/22 17:03:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:03:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:03:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:03:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:03:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:03:40 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:03:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:03:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:03:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:03:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:03:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:03:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:03:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:03:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:03:40 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:03:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:03:40 [DEBUG] : Beginning Read +2022/02/22 17:03:40 HTTP request GET mso/api/v1/tenants +2022/02/22 17:03:40 [DEBUG] Begin Injection +2022/02/22 17:03:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:03:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:03:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:03:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:33:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f5e040 3980 [] false false map[] 0xc000bb6700 0xc000136840} +2022/02/22 17:03:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:03:40 [DEBUG] Exit from do method +2022/02/22 17:03:40 [ERROR] : eval: *terraform.EvalReadData, err: Tenant of specified name not found +2022/02/22 17:03:40 [ERROR] : eval: *terraform.EvalSequence, err: Tenant of specified name not found +2022/02/22 17:03:40 [DEBUG] New state was assigned lineage "37fec321-a1b9-2ade-b11a-474a2d16cfb4" +2022/02/22 17:03:40 [WARN] Skipping destroy test since there is no state. +2022/02/22 17:04:36 [DEBUG] Test: Executing step 0 +2022/02/22 17:04:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:04:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:04:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:04:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:04:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:04:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:04:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:04:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:04:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:04:36 [DEBUG] New state was assigned lineage "1523f98a-a686-8254-0222-2f193491d5b6" +2022/02/22 17:04:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:04:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:04:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:04:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:04:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:04:36 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:04:36 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:04:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:04:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:04:36 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "o7rq1" + tenant_id: "" => "o7rq1" + + + +STATE: + + +2022/02/22 17:04:36 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:04:36 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:04:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:04:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:04:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:04:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:04:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:04:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:04:36 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:04:36 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:04:36 [DEBUG] : Beginning Create +2022/02/22 17:04:36 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:04:36 [DEBUG] Begin Injection +2022/02/22 17:04:36 HTTP request POST /login +2022/02/22 17:04:36 HTTP request after injection POST /login +2022/02/22 17:04:36 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:04:38 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:04:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:34:38 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA4NzgsImlhdCI6MTY0NTUyOTY3OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ5emVPdUNkVGZCSmIwOXk9bGJVdHhXMmwiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.ZYnuEEo3flZKbpxrLsZa47hgCjgFHpX2HzRjS9Kq4l3mbxwlApcftSd3V0nKhd8mPiAohG4ZFWI8wty0at6F9D2Ffb8ulJzpwmPHwzqCr9RXVB5rZ3cGdbSpcOt6-S7Pu5URqNl_WSDWfcBi-I2PZzazS68N7zqS9iJ8Uud4bdw6fuOQibI42uy3li9w2EI7Ckcl97Rm41XP__HNhJmD0OqgPYI06y3CONargIRjwUVQzGPZpveoW9v4TCRi6Vu_Vy-6m9_hqOMcJ_11EQmQJAlZI9eWKJCYWNPr8RRXjrg1jdnnFb_nrbUp5Mljbtbo38fhgyN4KOgxkV2xMTJqnQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000090380 -1 [chunked] false false map[] 0xc00050a800 0xc0006820b0} +2022/02/22 17:04:38 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA4NzgsImlhdCI6MTY0NTUyOTY3OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ5emVPdUNkVGZCSmIwOXk9bGJVdHhXMmwiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.ZYnuEEo3flZKbpxrLsZa47hgCjgFHpX2HzRjS9Kq4l3mbxwlApcftSd3V0nKhd8mPiAohG4ZFWI8wty0at6F9D2Ffb8ulJzpwmPHwzqCr9RXVB5rZ3cGdbSpcOt6-S7Pu5URqNl_WSDWfcBi-I2PZzazS68N7zqS9iJ8Uud4bdw6fuOQibI42uy3li9w2EI7Ckcl97Rm41XP__HNhJmD0OqgPYI06y3CONargIRjwUVQzGPZpveoW9v4TCRi6Vu_Vy-6m9_hqOMcJ_11EQmQJAlZI9eWKJCYWNPr8RRXjrg1jdnnFb_nrbUp5Mljbtbo38fhgyN4KOgxkV2xMTJqnQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA4NzgsImlhdCI6MTY0NTUyOTY3OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ5emVPdUNkVGZCSmIwOXk9bGJVdHhXMmwiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.ZYnuEEo3flZKbpxrLsZa47hgCjgFHpX2HzRjS9Kq4l3mbxwlApcftSd3V0nKhd8mPiAohG4ZFWI8wty0at6F9D2Ffb8ulJzpwmPHwzqCr9RXVB5rZ3cGdbSpcOt6-S7Pu5URqNl_WSDWfcBi-I2PZzazS68N7zqS9iJ8Uud4bdw6fuOQibI42uy3li9w2EI7Ckcl97Rm41XP__HNhJmD0OqgPYI06y3CONargIRjwUVQzGPZpveoW9v4TCRi6Vu_Vy-6m9_hqOMcJ_11EQmQJAlZI9eWKJCYWNPr8RRXjrg1jdnnFb_nrbUp5Mljbtbo38fhgyN4KOgxkV2xMTJqnQ"} +2022/02/22 17:04:38 [DEBUG] Exit from do method +2022/02/22 17:04:38 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:04:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:04:38 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:04:38 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[97] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:34:38 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001de080 97 [] false false map[] 0xc00050a700 0xc0006820b0} +2022/02/22 17:04:38 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: The tenant with id o7rq1 is not found for the current user."} +2022/02/22 17:04:38 [DEBUG] Exit from do method +2022/02/22 17:04:38 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: The tenant with id o7rq1 is not found for the current user."{} +2022/02/22 17:04:38 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: The tenant with id o7rq1 is not found for the current user."{} +2022/02/22 17:04:38 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: The tenant with id o7rq1 is not found for the current user."{} +2022/02/22 17:04:38 [DEBUG] New state was assigned lineage "f2dbc93f-0317-28ac-2240-f1b3ca85ee94" +2022/02/22 17:04:38 [DEBUG] Test: Executing step 1 +2022/02/22 17:04:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:04:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:04:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:04:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:04:38 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:04:38 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of name to be in the range (1 - 1000), got ebxuixmln0t1lt97colre9vyzeclqfqvw77ylhv4hjz12tewj11p8gfvgxsvnu873otdpo8zx1i29jhzumfsvg6wtgh1qap244lckyutppwzxjaqjortj9r0sh8ayapyk2ik81tcdt7uppnym3njbm4mzp8hbmzxddw4xpn4auiobktok6vow28uhe0wzd4s4l3h2y919j866cv0qvg3pgud7vph1yvmmnva0m43mb3m9gxw8lblhpvf3bw7amzi4u9ci2hdtqngz8smmd7x3du4jw2hij73yc64hiipahluxnvju2fayeu0p9de6kgv9dqfemitttkb922bsu3sq32l481dq9x4mj3dwcum4wjsv9kacnitcjzbnet0veb31v0ixyqhslko9bmttv2owf98vf29t1iq0eryiyo2tpknhky9jugpzpogfmafitash63i6rus3xevhioykytop1ca6nd4dzdpayhjghh20waj9c8uojz9qk8jqlg2j4pwdwjd8nqm1epor0zemuii10d7sukrripqpht69j21ig1wkokczaifwzs07dvexc01wqmq3e31jxsk6kqw7hcn3wrece8i617jdgspg3rto1dqx1jzjxeldv1x2kkdac8jjac61xe7kd7yx0el8tbb03xwio8b9kkgkqbvgviazhk2uer2369d6rx8ldhd0ae747arfl9hvfdbpjbv8z2pioiqdfx3897zr4l4slgg629sl211jzkvwou7iz3bwydoacf0phsl4zzte3jd4cb7678x26erszvu2g1n7d6cg3qgtpajpwnmpuyczx06ljex1mams4t61eqvlxycqyfui1kb2iusav6yhivxgndbuqlbg1fjzagnsez0gt9xc8w8es6ytynfifi9r9ysd0nemz17jzt294neopbf0mnttspjgfy2er941ajd84l0fi93pamwsq348883pcmtkprdd6mmlr7cfqpfubk2rb8e2 +2022/02/22 17:04:38 [ERROR] : eval: *terraform.EvalSequence, err: expected length of name to be in the range (1 - 1000), got ebxuixmln0t1lt97colre9vyzeclqfqvw77ylhv4hjz12tewj11p8gfvgxsvnu873otdpo8zx1i29jhzumfsvg6wtgh1qap244lckyutppwzxjaqjortj9r0sh8ayapyk2ik81tcdt7uppnym3njbm4mzp8hbmzxddw4xpn4auiobktok6vow28uhe0wzd4s4l3h2y919j866cv0qvg3pgud7vph1yvmmnva0m43mb3m9gxw8lblhpvf3bw7amzi4u9ci2hdtqngz8smmd7x3du4jw2hij73yc64hiipahluxnvju2fayeu0p9de6kgv9dqfemitttkb922bsu3sq32l481dq9x4mj3dwcum4wjsv9kacnitcjzbnet0veb31v0ixyqhslko9bmttv2owf98vf29t1iq0eryiyo2tpknhky9jugpzpogfmafitash63i6rus3xevhioykytop1ca6nd4dzdpayhjghh20waj9c8uojz9qk8jqlg2j4pwdwjd8nqm1epor0zemuii10d7sukrripqpht69j21ig1wkokczaifwzs07dvexc01wqmq3e31jxsk6kqw7hcn3wrece8i617jdgspg3rto1dqx1jzjxeldv1x2kkdac8jjac61xe7kd7yx0el8tbb03xwio8b9kkgkqbvgviazhk2uer2369d6rx8ldhd0ae747arfl9hvfdbpjbv8z2pioiqdfx3897zr4l4slgg629sl211jzkvwou7iz3bwydoacf0phsl4zzte3jd4cb7678x26erszvu2g1n7d6cg3qgtpajpwnmpuyczx06ljex1mams4t61eqvlxycqyfui1kb2iusav6yhivxgndbuqlbg1fjzagnsez0gt9xc8w8es6ytynfifi9r9ysd0nemz17jzt294neopbf0mnttspjgfy2er941ajd84l0fi93pamwsq348883pcmtkprdd6mmlr7cfqpfubk2rb8e2 +2022/02/22 17:04:38 [DEBUG] Test: Executing step 2 +2022/02/22 17:04:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:04:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:04:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:04:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:04:38 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:04:38 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of description to be in the range (1 - 1000), got o7ahx42xxk9nsv2xbf4kujsjeotknten4qomxbz9h44ghnxxhhldqyrmzkk0322x84xz807jn8tfap21wb6796m896utwzpyz8z9w3tjsm292enh97cqekfyz1q8yrpsvxowzdij1rnokl986kgk8uurwjs9x78kkhvdmmmlzx6odplv3k6nu1mmpiiitrc71nqp2rwx32hfuq2b40ycepfax7rzjta4oxmtolv4um2ulfxsjb9ioxv6zxweufa2ig72keoc8pbwfbtse17ws3gkcv37v4ma9h09ezqpjhkbky4i8ltp2vixabbts09fejwurpxtrr6baljly23waaj1vuqhmsy90fzyc1goju49q68ste70pb4vojebrflpk6o6dtghd9b07zlxwdhqil61ng13wy4fpp4vwhmth9ypxdw9bh64hmfcmcs09lupo28upxic3m3n4ulw3xnolrb6jsavu9ojm6jqunfssn1w1bcuhd0ksz2qdj6r82ng1u498jdnk3bm630cnos2so63eehzncucl09clmlbj8n3syguxdmmlls2260eigx3he0v1yjasprjjhd2pg1qbaab4la7mqqaiymr43yjp89l3rg0ew2klvbkg2ij6vwgll2v1fno3w2yosftx8lhv77i4z04td0ksk3rir8vzjxewqr3hxyhslfmp24lge2zj0tsc0wb0gcm6y4tzrvoiuzlhlx64wdjxvke37e2zajwju7wu4siorh11cm26cln2fgexibsr9bm7wou3y9qdkw68scvhk04qg3ywgo0amwehgdqgmgd3rya81xazt7uja9ex7gegv2owjcjhtzrw0v9xf6c0vby9mmcv1c8rjlg96lu1rm6ynedij4uhs3s8hw8neow42hs91hur609tmf014slq0ykgxt3wvro0d0dgf0pdzjgr4k7hgrb9l1v97n1lb0o8xfmiq9y4hsl7jzol4t6rifs1eoy90ffl +2022/02/22 17:04:38 [ERROR] : eval: *terraform.EvalSequence, err: expected length of description to be in the range (1 - 1000), got o7ahx42xxk9nsv2xbf4kujsjeotknten4qomxbz9h44ghnxxhhldqyrmzkk0322x84xz807jn8tfap21wb6796m896utwzpyz8z9w3tjsm292enh97cqekfyz1q8yrpsvxowzdij1rnokl986kgk8uurwjs9x78kkhvdmmmlzx6odplv3k6nu1mmpiiitrc71nqp2rwx32hfuq2b40ycepfax7rzjta4oxmtolv4um2ulfxsjb9ioxv6zxweufa2ig72keoc8pbwfbtse17ws3gkcv37v4ma9h09ezqpjhkbky4i8ltp2vixabbts09fejwurpxtrr6baljly23waaj1vuqhmsy90fzyc1goju49q68ste70pb4vojebrflpk6o6dtghd9b07zlxwdhqil61ng13wy4fpp4vwhmth9ypxdw9bh64hmfcmcs09lupo28upxic3m3n4ulw3xnolrb6jsavu9ojm6jqunfssn1w1bcuhd0ksz2qdj6r82ng1u498jdnk3bm630cnos2so63eehzncucl09clmlbj8n3syguxdmmlls2260eigx3he0v1yjasprjjhd2pg1qbaab4la7mqqaiymr43yjp89l3rg0ew2klvbkg2ij6vwgll2v1fno3w2yosftx8lhv77i4z04td0ksk3rir8vzjxewqr3hxyhslfmp24lge2zj0tsc0wb0gcm6y4tzrvoiuzlhlx64wdjxvke37e2zajwju7wu4siorh11cm26cln2fgexibsr9bm7wou3y9qdkw68scvhk04qg3ywgo0amwehgdqgmgd3rya81xazt7uja9ex7gegv2owjcjhtzrw0v9xf6c0vby9mmcv1c8rjlg96lu1rm6ynedij4uhs3s8hw8neow42hs91hur609tmf014slq0ykgxt3wvro0d0dgf0pdzjgr4k7hgrb9l1v97n1lb0o8xfmiq9y4hsl7jzol4t6rifs1eoy90ffl +2022/02/22 17:04:38 [DEBUG] Test: Executing step 3 +2022/02/22 17:04:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:04:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:04:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:04:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:04:38 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:04:38 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "zsyav" is not expected here. +2022/02/22 17:04:38 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "zsyav" is not expected here. +2022/02/22 17:04:38 [DEBUG] Test: Executing step 4 +2022/02/22 17:04:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:04:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:04:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:04:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:04:38 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:04:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:04:38 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:04:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:04:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:04:38 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:04:38 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:04:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:04:38 [DEBUG] : Beginning Read +2022/02/22 17:04:38 HTTP request GET mso/api/v1/tenants +2022/02/22 17:04:38 [DEBUG] Begin Injection +2022/02/22 17:04:38 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:04:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:04:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:04:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:34:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000eca080 3980 [] false false map[] 0xc00000c100 0xc0006820b0} +2022/02/22 17:04:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:04:39 [DEBUG] Exit from do method +2022/02/22 17:04:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:04:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:04:39 [DEBUG] New state was assigned lineage "b6b30e95-6fad-6548-587f-76551d1238c9" +2022/02/22 17:04:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:04:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:04:39 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:04:39 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:04:39 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:04:39 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:04:39 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:04:39 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:04:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:04:39 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "o7rq1" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + id: "" => "" + name: "" => "o7rq1" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "o7rq1" + template_name: "" => "o7rq1" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "zsyav" + external_epg_name: "" => "zsyav" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "o7rq1" + vrf_name: "" => "zsyav" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "zsyav" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "zsyav" + schema_id: "" => "" + template: "" => "o7rq1" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:04:39 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:04:39 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:04:39 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:04:39 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:04:39 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:04:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 17:04:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:04:39 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:04:39 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:04:39 [DEBUG] Schema: Beginning Creation +2022/02/22 17:04:39 HTTP request POST mso/api/v1/schemas +2022/02/22 17:04:39 [DEBUG] Begin Injection +2022/02/22 17:04:39 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:04:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:04:39 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:04:39 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[376] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:34:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214ca4f1d0000a4544f9eb3] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00101f540 376 [] false false map[] 0xc00000c100 0xc0006820b0} +2022/02/22 17:04:39 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214ca4f1d0000a4544f9eb3","displayName":"o7rq1","description":"","templates":[{"name":"o7rq1","displayName":"o7rq1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:04:39 [DEBUG] Exit from do method +2022/02/22 17:04:39 [DEBUG] 6214ca4f1d0000a4544f9eb3: Schema Creation finished successfully +2022/02/22 17:04:39 [DEBUG] 6214ca4f1d0000a4544f9eb3: Beginning Read +2022/02/22 17:04:39 HTTP request GET mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 +2022/02/22 17:04:39 [DEBUG] Begin Injection +2022/02/22 17:04:39 HTTP request after injection GET mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 +2022/02/22 17:04:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 +2022/02/22 17:04:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 +2022/02/22 17:04:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[376] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:34:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dfd80 376 [] false false map[] 0xc0000bc200 0xc0006820b0} +2022/02/22 17:04:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 {"id":"6214ca4f1d0000a4544f9eb3","displayName":"o7rq1","description":"","templates":[{"name":"o7rq1","displayName":"o7rq1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:04:39 [DEBUG] Exit from do method +2022/02/22 17:04:39 [DEBUG] 6214ca4f1d0000a4544f9eb3: Read finished successfully +2022/02/22 17:04:39 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:04:39 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:04:39 HTTP request PATCH mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3?validate=false +2022/02/22 17:04:39 [DEBUG] Begin Injection +2022/02/22 17:04:39 HTTP request after injection PATCH mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3?validate=false +2022/02/22 17:04:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3?validate=false +2022/02/22 17:04:40 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3?validate=false +2022/02/22 17:04:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:34:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00050b000 0xc0006820b0} +2022/02/22 17:04:40 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3?validate=false +2022/02/22 17:04:40 [DEBUG] zsyav: Creation finished successfully +2022/02/22 17:04:40 [DEBUG] zsyav: Beginning Read +2022/02/22 17:04:40 HTTP request GET mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 +2022/02/22 17:04:40 [DEBUG] Begin Injection +2022/02/22 17:04:40 HTTP request after injection GET mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 +2022/02/22 17:04:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 +2022/02/22 17:04:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 +2022/02/22 17:04:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[712] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:34:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f8c380 712 [] false false map[] 0xc0000bc400 0xc0006820b0} +2022/02/22 17:04:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 {"id":"6214ca4f1d0000a4544f9eb3","displayName":"o7rq1","description":"","templates":[{"name":"o7rq1","displayName":"o7rq1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"zsyav","displayName":"zsyav","vrfRef":"/schemas/6214ca4f1d0000a4544f9eb3/templates/o7rq1/vrfs/zsyav","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:04:40 [DEBUG] Exit from do method +2022/02/22 17:04:40 currentvrfname zsyav +2022/02/22 17:04:40 found correct vrfname +2022/02/22 17:04:40 [DEBUG] zsyav: Read finished successfully +2022/02/22 17:04:40 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:04:40 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:04:40 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:04:40 HTTP request PATCH mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3?validate=false +2022/02/22 17:04:40 [DEBUG] Begin Injection +2022/02/22 17:04:40 HTTP request after injection PATCH mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3?validate=false +2022/02/22 17:04:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3?validate=false +2022/02/22 17:04:40 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3?validate=false +2022/02/22 17:04:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:34:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000bce00 0xc0006820b0} +2022/02/22 17:04:40 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3?validate=false +2022/02/22 17:04:40 [DEBUG] : Beginning Read +2022/02/22 17:04:40 HTTP request GET mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 +2022/02/22 17:04:40 [DEBUG] Begin Injection +2022/02/22 17:04:40 HTTP request after injection GET mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 +2022/02/22 17:04:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 +2022/02/22 17:04:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 +2022/02/22 17:04:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1043] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:34:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f8c140 1043 [] false false map[] 0xc0000bd000 0xc0006820b0} +2022/02/22 17:04:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ca4f1d0000a4544f9eb3 {"id":"6214ca4f1d0000a4544f9eb3","displayName":"o7rq1","description":"","templates":[{"name":"o7rq1","displayName":"o7rq1","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"zsyav","displayName":"zsyav","vrfRef":"/schemas/6214ca4f1d0000a4544f9eb3/templates/o7rq1/vrfs/zsyav","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"zsyav","displayName":"zsyav","extEpgType":"on-premise","vrfRef":"/schemas/6214ca4f1d0000a4544f9eb3/templates/o7rq1/vrfs/zsyav","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ca4f1d0000a4544f9eb3/templates/o7rq1/externalEpgs/zsyav","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:04:41 [DEBUG] Exit from do method +2022/02/22 17:04:41 [DEBUG] /schemas/6214ca4f1d0000a4544f9eb3/templates/o7rq1/externalEpgs/zsyav: Read finished successfully +2022/02/22 17:04:41 [ERROR] : eval: *terraform.EvalDiff, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: o7rq1 +2022/02/22 17:04:41 [ERROR] : eval: *terraform.EvalSequence, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: o7rq1 +2022/02/22 17:04:41 [DEBUG] New state was assigned lineage "b305d4d4-c16c-4f5d-e506-d72116429a51" +2022/02/22 17:04:41 [WARN] Test: Executing destroy step +2022/02/22 17:04:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:04:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:04:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:04:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:04:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:04:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:04:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:04:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:04:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:04:41 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:04:41 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:04:41 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:04:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:04:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:04:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:04:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:04:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:04:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:04:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:04:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:04:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:04:41 [DEBUG] : Beginning Read +2022/02/22 17:04:41 HTTP request GET mso/api/v1/tenants +2022/02/22 17:04:41 [DEBUG] Begin Injection +2022/02/22 17:04:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:04:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:04:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:04:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:34:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f8c040 3980 [] false false map[] 0xc000196300 0xc0006820b0} +2022/02/22 17:04:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:04:41 [DEBUG] Exit from do method +2022/02/22 17:04:41 [ERROR] : eval: *terraform.EvalReadData, err: Tenant of specified name not found +2022/02/22 17:04:41 [ERROR] : eval: *terraform.EvalSequence, err: Tenant of specified name not found +2022/02/22 17:04:41 [DEBUG] New state was assigned lineage "0aeb239e-0f88-6df4-f3b3-0a3214cb2325" +2022/02/22 17:05:39 [DEBUG] Test: Executing step 0 +2022/02/22 17:05:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:05:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:05:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:05:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:05:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:05:39 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:05:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:05:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:05:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:05:39 [DEBUG] New state was assigned lineage "42b9fedb-86d0-38f5-ffc7-70d7cf61d58a" +2022/02/22 17:05:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:05:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:05:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:05:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:05:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:05:39 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:05:39 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:05:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:05:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:05:39 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "063v9" + tenant_id: "" => "063v9" + + + +STATE: + + +2022/02/22 17:05:39 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:05:39 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:05:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:05:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:05:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:05:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:05:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:05:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:05:39 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:05:39 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:05:39 [DEBUG] : Beginning Create +2022/02/22 17:05:39 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:05:39 [DEBUG] Begin Injection +2022/02/22 17:05:39 HTTP request POST /login +2022/02/22 17:05:39 HTTP request after injection POST /login +2022/02/22 17:05:39 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:05:41 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:05:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:35:41 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA5NDEsImlhdCI6MTY0NTUyOTc0MSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJSRG4xRG5ORXJESDJIZ0pXcGZjZ2h4WnQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.GUTwzkAAVge25D7eP2peLbCtsS9NbKQsIWwjbOjhy5FmWJ3SxmFKgTF5srqgEvM69_pM1lIMOFi50DNA0a0B5VJNyesL-YRQ0gP0gWOJGCPkUtDWqKpAYI0SSVBA7xIwOtbIZX1feRPd-Uk4Ct-P9KU9c9fc_nhQPyIeOygDxNdQPVmf6TGCWya7CLFwH6ZW9bdyil_GcpheGZsgMJIbrB3RlhhWm-JGM1uI9unuA-2hhxNp3ba_u20pjc6q63vAe-i2IicgJMrl82zvuqWRgUfNhKNn8jkmoIUr_Fqx_5--lDNGCqDRajAsJl4i6dgn4S8AcIuFEnmGgEO2Li8Tbg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000506200 -1 [chunked] false false map[] 0xc00098d400 0xc0005f60b0} +2022/02/22 17:05:41 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA5NDEsImlhdCI6MTY0NTUyOTc0MSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJSRG4xRG5ORXJESDJIZ0pXcGZjZ2h4WnQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.GUTwzkAAVge25D7eP2peLbCtsS9NbKQsIWwjbOjhy5FmWJ3SxmFKgTF5srqgEvM69_pM1lIMOFi50DNA0a0B5VJNyesL-YRQ0gP0gWOJGCPkUtDWqKpAYI0SSVBA7xIwOtbIZX1feRPd-Uk4Ct-P9KU9c9fc_nhQPyIeOygDxNdQPVmf6TGCWya7CLFwH6ZW9bdyil_GcpheGZsgMJIbrB3RlhhWm-JGM1uI9unuA-2hhxNp3ba_u20pjc6q63vAe-i2IicgJMrl82zvuqWRgUfNhKNn8jkmoIUr_Fqx_5--lDNGCqDRajAsJl4i6dgn4S8AcIuFEnmGgEO2Li8Tbg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzA5NDEsImlhdCI6MTY0NTUyOTc0MSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJSRG4xRG5ORXJESDJIZ0pXcGZjZ2h4WnQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.GUTwzkAAVge25D7eP2peLbCtsS9NbKQsIWwjbOjhy5FmWJ3SxmFKgTF5srqgEvM69_pM1lIMOFi50DNA0a0B5VJNyesL-YRQ0gP0gWOJGCPkUtDWqKpAYI0SSVBA7xIwOtbIZX1feRPd-Uk4Ct-P9KU9c9fc_nhQPyIeOygDxNdQPVmf6TGCWya7CLFwH6ZW9bdyil_GcpheGZsgMJIbrB3RlhhWm-JGM1uI9unuA-2hhxNp3ba_u20pjc6q63vAe-i2IicgJMrl82zvuqWRgUfNhKNn8jkmoIUr_Fqx_5--lDNGCqDRajAsJl4i6dgn4S8AcIuFEnmGgEO2Li8Tbg"} +2022/02/22 17:05:41 [DEBUG] Exit from do method +2022/02/22 17:05:41 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:05:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:05:41 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:05:41 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[97] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:35:41 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a280 97 [] false false map[] 0xc00098d300 0xc0005f60b0} +2022/02/22 17:05:41 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: The tenant with id 063v9 is not found for the current user."} +2022/02/22 17:05:41 [DEBUG] Exit from do method +2022/02/22 17:05:41 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: The tenant with id 063v9 is not found for the current user."{} +2022/02/22 17:05:41 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: The tenant with id 063v9 is not found for the current user."{} +2022/02/22 17:05:41 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: The tenant with id 063v9 is not found for the current user."{} +2022/02/22 17:05:41 [DEBUG] New state was assigned lineage "362d4876-ec9d-f4ce-4776-cc19bcc70389" +2022/02/22 17:05:41 [DEBUG] Test: Executing step 1 +2022/02/22 17:05:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:05:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:05:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:05:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:05:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:05:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:05:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:05:41 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of name to be in the range (1 - 1000), got a9kkly9lit0cg62gzqjt1n2ebqa9a2yi1hqmkdtv22bpt6leh3gva7kyiuyufhs2pkbhrbd9k68lsxfrdn1vtf6c7qbyfbwdqvwf9x66kq0thuenz4f6qcd1hbgek6kpmaer89rxmstsiyv0e8qce0ug7unrxkd6ve0hfvifs2bbifrifksy3vi6pdsoh3tvq3qhfh328gtv7km2vkq6dnhoafo839xom4mh448w2pga8ny6uard29idh1rvjripyhnbnsqjhh4wau9iq2xyk2fibsqeyg6jslcwefeqhdsccjwz70pi49fct64nc8m4ewpvm0ocdrs2614poof0i0rtb0chmafmkr8uirfratallgpxil3m7nhmyywy09gjr4t08oqiedcsfbrky4vzebfc6z8gpfnrk3hk4ic1ickujtic4gbmzhlsoxw9avqbelrp7lulsosxeq47z3zemfrofqibgeou8fqngpjwdhknyfl998ud22hagc77daw9vybb0y6tajkmmfz21owjs0gdg4bc3bjfda6sshdcqlm96ilzttptnni1lppqb66bmfwccqh9n1d9h2g4bh6pg0denvi19rd41bcrpucdd13ipgsigtnc9b8s9m4bfmpt6cbrqrlnszrtuddzpb37yveyggxtzx47vzoq0tb1k3b2g89rippdp1x9iv0qvjaba4xbn8pwlgugurlh7khl3mq1zzsg7p7tkhxxd43g7zmqzfitt0hvqevghqylx2n7q0s0bc8zftdgc7j2je0hxl7y94y3h60sxvwf3ytevc3kyh3h177mjzwet6whl6xb8i1w1xboh4qz3z2qb3vqox7oe4omq2j6coiwkankyvujnk07x1zyw8fqw7j40m1otjtrhq4g8so8kfcyllx6r86ijnp6r8kuniwsxpatgb9umuqvyeq9tvdotmongxxj9gby77ka6v8d9b8jn4tv07xex94mrddfoqbszku76 +2022/02/22 17:05:41 [ERROR] : eval: *terraform.EvalSequence, err: expected length of name to be in the range (1 - 1000), got a9kkly9lit0cg62gzqjt1n2ebqa9a2yi1hqmkdtv22bpt6leh3gva7kyiuyufhs2pkbhrbd9k68lsxfrdn1vtf6c7qbyfbwdqvwf9x66kq0thuenz4f6qcd1hbgek6kpmaer89rxmstsiyv0e8qce0ug7unrxkd6ve0hfvifs2bbifrifksy3vi6pdsoh3tvq3qhfh328gtv7km2vkq6dnhoafo839xom4mh448w2pga8ny6uard29idh1rvjripyhnbnsqjhh4wau9iq2xyk2fibsqeyg6jslcwefeqhdsccjwz70pi49fct64nc8m4ewpvm0ocdrs2614poof0i0rtb0chmafmkr8uirfratallgpxil3m7nhmyywy09gjr4t08oqiedcsfbrky4vzebfc6z8gpfnrk3hk4ic1ickujtic4gbmzhlsoxw9avqbelrp7lulsosxeq47z3zemfrofqibgeou8fqngpjwdhknyfl998ud22hagc77daw9vybb0y6tajkmmfz21owjs0gdg4bc3bjfda6sshdcqlm96ilzttptnni1lppqb66bmfwccqh9n1d9h2g4bh6pg0denvi19rd41bcrpucdd13ipgsigtnc9b8s9m4bfmpt6cbrqrlnszrtuddzpb37yveyggxtzx47vzoq0tb1k3b2g89rippdp1x9iv0qvjaba4xbn8pwlgugurlh7khl3mq1zzsg7p7tkhxxd43g7zmqzfitt0hvqevghqylx2n7q0s0bc8zftdgc7j2je0hxl7y94y3h60sxvwf3ytevc3kyh3h177mjzwet6whl6xb8i1w1xboh4qz3z2qb3vqox7oe4omq2j6coiwkankyvujnk07x1zyw8fqw7j40m1otjtrhq4g8so8kfcyllx6r86ijnp6r8kuniwsxpatgb9umuqvyeq9tvdotmongxxj9gby77ka6v8d9b8jn4tv07xex94mrddfoqbszku76 +2022/02/22 17:05:41 [DEBUG] Test: Executing step 2 +2022/02/22 17:05:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:05:42 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:05:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:05:42 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:05:42 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of description to be in the range (1 - 1000), got euyhoz80j71zvjzjiif9ew6odncgt6hv4nlhi4jp4qjkn7z02teetlnre6xsi9pes6flog3mnc9lxdz83qbpeeemjwe1smzl4vlzwixmtl8p9ytrf160rc0goimflhjb0i0sswowzbeord7scapkw2g77li70mv197fedpl8lf842igvn9qhhh048oczbkkbmmxcbfmewxgwd7zg03ld21iw18j6wyhhzv47c63gzumc61wmewq1ov3xomndpkghg42282shu0cehm0euxkzpmyagcbldou7lood896l3s3g34q2mxa7ijiqe63t0aiixmq91diac1dbanys9y2vu9qcbofhr4n2kxhgayy66hduzc7tnsvre7y06kna0c3e7x4fmwyh8vibcntfcv1awcwmw442l8cmmnyarhuq3wult4731hucernud8kviuqoce3taxv82120x20f1cgqljieywkgmzvlebhvg02nzquubdmeqvntyq2e0he38p0f1p7w4e7syxglmy7uwoydest1gqo4f14ferniscnf3rvapsk8yc7d1u9oy4qd2gec12xo43wdn0a1i6ytqnh6ck4cou4ow8kgdyjuxsccafeerue8b19xg6pej9oaq8xf8b03yznthr8ej2faao10rce2evrqb4rcbijghr1no8ssjcji2zf3fwugdk0qywte1qjhwf3jjcojkfc8gkhxvdhags7rk84rz67cpdjlr2n2wkjymtxhoza0zk0mk9ixn8d3ln1ewyp8orcqqiwr39mik1ot9wcvkwq0j2ws1me414kw91vgbecgdenvcwzb66l9l91b9c8ziqtibjvoncso10hqpoph1vgfc83123zcdzch4z0yjytieoqi4o32ypikxchkxpsv4k1n2k99q7t42ncyr4cfm2n6hzds7twrgdoqd4g3rytf17gnz9h6ia6g4g4rot6rs8hk9o8nrl6d79orxfvmvnqtkkkr9 +2022/02/22 17:05:42 [ERROR] : eval: *terraform.EvalSequence, err: expected length of description to be in the range (1 - 1000), got euyhoz80j71zvjzjiif9ew6odncgt6hv4nlhi4jp4qjkn7z02teetlnre6xsi9pes6flog3mnc9lxdz83qbpeeemjwe1smzl4vlzwixmtl8p9ytrf160rc0goimflhjb0i0sswowzbeord7scapkw2g77li70mv197fedpl8lf842igvn9qhhh048oczbkkbmmxcbfmewxgwd7zg03ld21iw18j6wyhhzv47c63gzumc61wmewq1ov3xomndpkghg42282shu0cehm0euxkzpmyagcbldou7lood896l3s3g34q2mxa7ijiqe63t0aiixmq91diac1dbanys9y2vu9qcbofhr4n2kxhgayy66hduzc7tnsvre7y06kna0c3e7x4fmwyh8vibcntfcv1awcwmw442l8cmmnyarhuq3wult4731hucernud8kviuqoce3taxv82120x20f1cgqljieywkgmzvlebhvg02nzquubdmeqvntyq2e0he38p0f1p7w4e7syxglmy7uwoydest1gqo4f14ferniscnf3rvapsk8yc7d1u9oy4qd2gec12xo43wdn0a1i6ytqnh6ck4cou4ow8kgdyjuxsccafeerue8b19xg6pej9oaq8xf8b03yznthr8ej2faao10rce2evrqb4rcbijghr1no8ssjcji2zf3fwugdk0qywte1qjhwf3jjcojkfc8gkhxvdhags7rk84rz67cpdjlr2n2wkjymtxhoza0zk0mk9ixn8d3ln1ewyp8orcqqiwr39mik1ot9wcvkwq0j2ws1me414kw91vgbecgdenvcwzb66l9l91b9c8ziqtibjvoncso10hqpoph1vgfc83123zcdzch4z0yjytieoqi4o32ypikxchkxpsv4k1n2k99q7t42ncyr4cfm2n6hzds7twrgdoqd4g3rytf17gnz9h6ia6g4g4rot6rs8hk9o8nrl6d79orxfvmvnqtkkkr9 +2022/02/22 17:05:42 [DEBUG] Test: Executing step 3 +2022/02/22 17:05:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:05:42 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:05:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:05:42 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:05:42 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "uczei" is not expected here. +2022/02/22 17:05:42 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "uczei" is not expected here. +2022/02/22 17:05:42 [DEBUG] Test: Executing step 4 +2022/02/22 17:05:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:05:42 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:05:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:05:42 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:05:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:05:42 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:05:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:05:42 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:05:42 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:05:42 [DEBUG] : Beginning Read +2022/02/22 17:05:42 HTTP request GET mso/api/v1/tenants +2022/02/22 17:05:42 [DEBUG] Begin Injection +2022/02/22 17:05:42 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:05:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:05:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:05:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:35:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008c0b40 3980 [] false false map[] 0xc00098c200 0xc0005f60b0} +2022/02/22 17:05:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:05:42 [DEBUG] Exit from do method +2022/02/22 17:05:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:05:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:05:42 [DEBUG] New state was assigned lineage "d9f418a8-a157-8d74-895d-60e197470f8a" +2022/02/22 17:05:42 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:05:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:05:42 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:05:42 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:05:42 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:05:42 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:05:42 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:05:42 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:05:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:05:42 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "063v9" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + id: "" => "" + name: "" => "063v9" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "063v9" + template_name: "" => "063v9" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "uczei" + external_epg_name: "" => "uczei" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "063v9" + vrf_name: "" => "uczei" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "uczei" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "uczei" + schema_id: "" => "" + template: "" => "063v9" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:05:42 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:05:42 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:05:42 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:05:42 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:05:42 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:05:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test (prepare state)] +2022/02/22 17:05:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:05:42 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:05:42 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:05:42 [DEBUG] Schema: Beginning Creation +2022/02/22 17:05:42 HTTP request POST mso/api/v1/schemas +2022/02/22 17:05:42 [DEBUG] Begin Injection +2022/02/22 17:05:42 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:05:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:05:42 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:05:42 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[376] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:35:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214ca8e1d0000b3544f9eb7] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009e8100 376 [] false false map[] 0xc000498900 0xc0005f60b0} +2022/02/22 17:05:42 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214ca8e1d0000b3544f9eb7","displayName":"063v9","description":"","templates":[{"name":"063v9","displayName":"063v9","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:05:42 [DEBUG] Exit from do method +2022/02/22 17:05:42 [DEBUG] 6214ca8e1d0000b3544f9eb7: Schema Creation finished successfully +2022/02/22 17:05:42 [DEBUG] 6214ca8e1d0000b3544f9eb7: Beginning Read +2022/02/22 17:05:42 HTTP request GET mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 +2022/02/22 17:05:42 [DEBUG] Begin Injection +2022/02/22 17:05:42 HTTP request after injection GET mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 +2022/02/22 17:05:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 +2022/02/22 17:05:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 +2022/02/22 17:05:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[376] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:35:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009e8480 376 [] false false map[] 0xc00098c100 0xc0005f60b0} +2022/02/22 17:05:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 {"id":"6214ca8e1d0000b3544f9eb7","displayName":"063v9","description":"","templates":[{"name":"063v9","displayName":"063v9","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:05:43 [DEBUG] Exit from do method +2022/02/22 17:05:43 [DEBUG] 6214ca8e1d0000b3544f9eb7: Read finished successfully +2022/02/22 17:05:43 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:05:43 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:05:43 HTTP request PATCH mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7?validate=false +2022/02/22 17:05:43 [DEBUG] Begin Injection +2022/02/22 17:05:43 HTTP request after injection PATCH mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7?validate=false +2022/02/22 17:05:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7?validate=false +2022/02/22 17:05:43 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7?validate=false +2022/02/22 17:05:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:35:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000499400 0xc0005f60b0} +2022/02/22 17:05:43 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7?validate=false +2022/02/22 17:05:43 [DEBUG] uczei: Creation finished successfully +2022/02/22 17:05:43 [DEBUG] uczei: Beginning Read +2022/02/22 17:05:43 HTTP request GET mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 +2022/02/22 17:05:43 [DEBUG] Begin Injection +2022/02/22 17:05:43 HTTP request after injection GET mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 +2022/02/22 17:05:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 +2022/02/22 17:05:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 +2022/02/22 17:05:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[712] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:35:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036c4c0 712 [] false false map[] 0xc000499600 0xc0005f60b0} +2022/02/22 17:05:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 {"id":"6214ca8e1d0000b3544f9eb7","displayName":"063v9","description":"","templates":[{"name":"063v9","displayName":"063v9","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"uczei","displayName":"uczei","vrfRef":"/schemas/6214ca8e1d0000b3544f9eb7/templates/063v9/vrfs/uczei","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:05:43 [DEBUG] Exit from do method +2022/02/22 17:05:43 currentvrfname uczei +2022/02/22 17:05:43 found correct vrfname +2022/02/22 17:05:43 [DEBUG] uczei: Read finished successfully +2022/02/22 17:05:43 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:05:43 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:05:43 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:05:43 HTTP request PATCH mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7?validate=false +2022/02/22 17:05:43 [DEBUG] Begin Injection +2022/02/22 17:05:43 HTTP request after injection PATCH mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7?validate=false +2022/02/22 17:05:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7?validate=false +2022/02/22 17:05:44 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7?validate=false +2022/02/22 17:05:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:35:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00050ab00 0xc0005f60b0} +2022/02/22 17:05:44 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7?validate=false +2022/02/22 17:05:44 [DEBUG] : Beginning Read +2022/02/22 17:05:44 HTTP request GET mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 +2022/02/22 17:05:44 [DEBUG] Begin Injection +2022/02/22 17:05:44 HTTP request after injection GET mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 +2022/02/22 17:05:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 +2022/02/22 17:05:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 +2022/02/22 17:05:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1043] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:35:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000506240 1043 [] false false map[] 0xc000499700 0xc0005f60b0} +2022/02/22 17:05:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ca8e1d0000b3544f9eb7 {"id":"6214ca8e1d0000b3544f9eb7","displayName":"063v9","description":"","templates":[{"name":"063v9","displayName":"063v9","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"uczei","displayName":"uczei","vrfRef":"/schemas/6214ca8e1d0000b3544f9eb7/templates/063v9/vrfs/uczei","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"uczei","displayName":"uczei","extEpgType":"on-premise","vrfRef":"/schemas/6214ca8e1d0000b3544f9eb7/templates/063v9/vrfs/uczei","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ca8e1d0000b3544f9eb7/templates/063v9/externalEpgs/uczei","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:05:44 [DEBUG] Exit from do method +2022/02/22 17:05:44 [DEBUG] /schemas/6214ca8e1d0000b3544f9eb7/templates/063v9/externalEpgs/uczei: Read finished successfully +2022/02/22 17:05:44 [ERROR] : eval: *terraform.EvalDiff, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: 063v9 +2022/02/22 17:05:44 [ERROR] : eval: *terraform.EvalSequence, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: 063v9 +2022/02/22 17:05:44 [DEBUG] New state was assigned lineage "7301d2e5-6226-21d0-637c-844f889ee839" +2022/02/22 17:05:44 [WARN] Test: Executing destroy step +2022/02/22 17:05:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:05:44 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:05:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:05:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:05:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:05:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:05:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:05:44 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:05:44 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:05:44 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:05:44 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:05:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:05:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:05:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:05:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:05:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:05:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:05:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:05:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:05:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:05:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:05:44 [DEBUG] : Beginning Read +2022/02/22 17:05:44 HTTP request GET mso/api/v1/tenants +2022/02/22 17:05:44 [DEBUG] Begin Injection +2022/02/22 17:05:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:05:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:05:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:05:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:35:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000506240 3980 [] false false map[] 0xc000d5af00 0xc0005f60b0} +2022/02/22 17:05:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:05:44 [DEBUG] Exit from do method +2022/02/22 17:05:44 [ERROR] : eval: *terraform.EvalReadData, err: Tenant of specified name not found +2022/02/22 17:05:44 [ERROR] : eval: *terraform.EvalSequence, err: Tenant of specified name not found +2022/02/22 17:05:44 [DEBUG] New state was assigned lineage "2e4c7398-9eec-3b5c-e95b-59ac5d081983" +2022/02/22 17:07:34 [DEBUG] Test: Executing step 0 +2022/02/22 17:07:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:34 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:07:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:07:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:07:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:34 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:07:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:34 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:07:34 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:07:34 [DEBUG] New state was assigned lineage "062c8d59-66ae-3388-505d-b305fd70437b" +2022/02/22 17:07:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:07:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:07:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:07:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:07:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:34 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:07:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:07:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:07:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:34 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "0tf6r" + tenant_id: "" => "0tf6r" + + + +STATE: + + +2022/02/22 17:07:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:07:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:07:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:07:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:07:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:07:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:07:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:07:34 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:07:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:07:34 [DEBUG] : Beginning Create +2022/02/22 17:07:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:07:34 [DEBUG] Begin Injection +2022/02/22 17:07:34 HTTP request POST /login +2022/02/22 17:07:34 HTTP request after injection POST /login +2022/02/22 17:07:34 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:07:36 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:07:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:37:36 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzEwNTYsImlhdCI6MTY0NTUyOTg1NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJsZjY9enF4TEtLWUF3SFppS1FkcDl3TWMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.dv0rQqqB0WsOXN8c3ZQSakyypfW9PoA6Ds0TjeX7Rh1YKfjpowO7Pdvyu-RYxfXzOnft9zbx_NHJmIyLH7G8cIh4xSQpBN9tB7qP9Foa87Zt_FUkGYWgLyW7cJw8pK-Ck5ILAqxXaJZ7SX-w3CRfUssGmmaa6pB--tUGW_60bF7BSuuUMd5z3W1S79NiSB0oRhlbDj9mtU_vvq4GNDZX8MeVz7rtmZwQl41Y3HwMjh6w5UleCpV2YygSsPUmmIqa568OcbbzcWImi5RgirytifCmE-yjliJkcNYOoat6MfDpY1bY1sIrM0PwwAYNL5CCPO5g4Yh3rmdDA13GODtBjw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000218780 -1 [chunked] false false map[] 0xc0006b8300 0xc000164370} +2022/02/22 17:07:36 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzEwNTYsImlhdCI6MTY0NTUyOTg1NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJsZjY9enF4TEtLWUF3SFppS1FkcDl3TWMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.dv0rQqqB0WsOXN8c3ZQSakyypfW9PoA6Ds0TjeX7Rh1YKfjpowO7Pdvyu-RYxfXzOnft9zbx_NHJmIyLH7G8cIh4xSQpBN9tB7qP9Foa87Zt_FUkGYWgLyW7cJw8pK-Ck5ILAqxXaJZ7SX-w3CRfUssGmmaa6pB--tUGW_60bF7BSuuUMd5z3W1S79NiSB0oRhlbDj9mtU_vvq4GNDZX8MeVz7rtmZwQl41Y3HwMjh6w5UleCpV2YygSsPUmmIqa568OcbbzcWImi5RgirytifCmE-yjliJkcNYOoat6MfDpY1bY1sIrM0PwwAYNL5CCPO5g4Yh3rmdDA13GODtBjw","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzEwNTYsImlhdCI6MTY0NTUyOTg1NiwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJsZjY9enF4TEtLWUF3SFppS1FkcDl3TWMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.dv0rQqqB0WsOXN8c3ZQSakyypfW9PoA6Ds0TjeX7Rh1YKfjpowO7Pdvyu-RYxfXzOnft9zbx_NHJmIyLH7G8cIh4xSQpBN9tB7qP9Foa87Zt_FUkGYWgLyW7cJw8pK-Ck5ILAqxXaJZ7SX-w3CRfUssGmmaa6pB--tUGW_60bF7BSuuUMd5z3W1S79NiSB0oRhlbDj9mtU_vvq4GNDZX8MeVz7rtmZwQl41Y3HwMjh6w5UleCpV2YygSsPUmmIqa568OcbbzcWImi5RgirytifCmE-yjliJkcNYOoat6MfDpY1bY1sIrM0PwwAYNL5CCPO5g4Yh3rmdDA13GODtBjw"} +2022/02/22 17:07:36 [DEBUG] Exit from do method +2022/02/22 17:07:36 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:07:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:07:37 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:07:37 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[97] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:37:37 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000900c0 97 [] false false map[] 0xc0006b8200 0xc000164370} +2022/02/22 17:07:37 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: The tenant with id 0tf6r is not found for the current user."} +2022/02/22 17:07:37 [DEBUG] Exit from do method +2022/02/22 17:07:37 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: The tenant with id 0tf6r is not found for the current user."{} +2022/02/22 17:07:37 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: The tenant with id 0tf6r is not found for the current user."{} +2022/02/22 17:07:37 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: The tenant with id 0tf6r is not found for the current user."{} +2022/02/22 17:07:37 [DEBUG] New state was assigned lineage "5bf46ead-1e65-e1e7-254b-6aa30a66178a" +2022/02/22 17:07:37 [DEBUG] Test: Executing step 1 +2022/02/22 17:07:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:07:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:07:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:07:37 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of name to be in the range (1 - 1000), got knp76r3p1e0in768bljhoxej2hlimrlbzdp1pcqq72zcwl8g8i7h4wcqr40lyueo3qfw4xxmu3rlfkm8uesma1zdk46r1rxkzcemsdimyu6ihighb3ojo066nr1o8ror3x03nbj2d7do7f3favrzimqxycdzj2r1pl0dxr26bgqc8n7rs4xtoa8cxk3n4d27jibh3lq4aiyh209a6onntpcv9vwzph9n4pi4py7jslfns8uajoud7393d3j72xtrssyjljxsxo2wbhey9wjcfbyyxq3hf6zl0unycjqvegllg9g3crcbdsn4qc160ld16dtjrov9w00mjmsvanjuyiy0dvmpx2z001jo2v2mklqlwud408lyvik4bnd4h17a10gbbh7ki3bio3khu6uuryrszeqaltlkx2q43inshbv2jce9tkiomvmtucukfumh6wa7zmygjtrc17aigv8zex6w9zvnf2vigxxcc9rnvu09cwb14rcasyw211kwlz87nwfdade1i60bt3asnaw7g1gxgp01nkoafo9q3ppk7ar1ol9wihb34cmx7bztwhpaqr8bwso2fqkn7jqvqvvj1ja7sn4wrsh292lfc6x36h4cz6e1ob9yd7h8t86f39v38hzeddbuaeqdsfkhuckcxdbosmgzg4uebz42iropytqvkxs7otr3x7lxzq4zw7mgbywe4ulberxfsl1nbw60y9vcank16so37kpxeo2mtprt4ll83yzj14wh2ylm27orq8804yvblv4jauirfot6e9f1ocv9fy0w11hqvx9g66x7tywwp4f4ijbp6td7aob4d2c2s2mh9o1ushib0o8iivy3wpodcqdaerhjtq2amyn64whh2v42s1ulxz1ml1i4z1zcl64lf6kcqnfaynuf939s9fahpwkglrm13koxsjyqpbr74kktbkj4bbmq1npwbalkp2j8lg2slzepezzvyr2z1uy4j2y7qubjk8j4j +2022/02/22 17:07:37 [ERROR] : eval: *terraform.EvalSequence, err: expected length of name to be in the range (1 - 1000), got knp76r3p1e0in768bljhoxej2hlimrlbzdp1pcqq72zcwl8g8i7h4wcqr40lyueo3qfw4xxmu3rlfkm8uesma1zdk46r1rxkzcemsdimyu6ihighb3ojo066nr1o8ror3x03nbj2d7do7f3favrzimqxycdzj2r1pl0dxr26bgqc8n7rs4xtoa8cxk3n4d27jibh3lq4aiyh209a6onntpcv9vwzph9n4pi4py7jslfns8uajoud7393d3j72xtrssyjljxsxo2wbhey9wjcfbyyxq3hf6zl0unycjqvegllg9g3crcbdsn4qc160ld16dtjrov9w00mjmsvanjuyiy0dvmpx2z001jo2v2mklqlwud408lyvik4bnd4h17a10gbbh7ki3bio3khu6uuryrszeqaltlkx2q43inshbv2jce9tkiomvmtucukfumh6wa7zmygjtrc17aigv8zex6w9zvnf2vigxxcc9rnvu09cwb14rcasyw211kwlz87nwfdade1i60bt3asnaw7g1gxgp01nkoafo9q3ppk7ar1ol9wihb34cmx7bztwhpaqr8bwso2fqkn7jqvqvvj1ja7sn4wrsh292lfc6x36h4cz6e1ob9yd7h8t86f39v38hzeddbuaeqdsfkhuckcxdbosmgzg4uebz42iropytqvkxs7otr3x7lxzq4zw7mgbywe4ulberxfsl1nbw60y9vcank16so37kpxeo2mtprt4ll83yzj14wh2ylm27orq8804yvblv4jauirfot6e9f1ocv9fy0w11hqvx9g66x7tywwp4f4ijbp6td7aob4d2c2s2mh9o1ushib0o8iivy3wpodcqdaerhjtq2amyn64whh2v42s1ulxz1ml1i4z1zcl64lf6kcqnfaynuf939s9fahpwkglrm13koxsjyqpbr74kktbkj4bbmq1npwbalkp2j8lg2slzepezzvyr2z1uy4j2y7qubjk8j4j +2022/02/22 17:07:37 [DEBUG] Test: Executing step 2 +2022/02/22 17:07:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:07:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:07:37 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of description to be in the range (1 - 1000), got b9c8h0mzs4kz9j4qb12ph8l1l7urfnhi137oj6l1yzkzhigd7imgn1rqflkvff1mje0jrk8ic3mrrklj4vfzr83lqkh30awnw6s7nsizgg7srvfakbplrr9yj49lno7d02l7oaqb1poc0qmqdr0sjayv1cci9ormf4gylpqodv8fa62zi28k7o949pha09r9jt736udfj1qo3u8on6h9x430sqzqcffciecm6r3bby0u91g7im93j7cwghgb0oggiainunwa0abnln1t1ef86x2ovxq2e08ojxd3lrn6vg7sffqadr24epkm1g7iovma0peb9dgfnimjiusfabbkxxhubc9dk3he1orqo224czcd3k3ybabpxi9ta8cvqs7di6cb6lwnjg983fgly0kmanevjvnoo7zuqbnqsjp71xxlw1lo2dhuzssv37rd3h6hr2ls49sn2hxgyv9j0z807jzvnsl7u4791w1gshxp8ma4no2i3vphuei9eqbxpxkoux2nmwvqumgmmjomt21hxeyen63mfmioju7t13tpzrb0c9fm0c22v8tzh69zeqrxg9gt9u6bcn61nen7y8y8cju0gxtl4d4ufcmuoaocpy2kmsxi68hyp07re9hu2b68s91lm9mbjxaw4w9hm7d1go2ez61fp84pppa1wk9gp8d6czhuh8eipmvihl40mwflllmvelvc20pab9itvkf3a3a1v1tb79yzdo9nd0w3oe8d0jxnq6sngtg23a8mk6d9pbkdwntxvc8nuvosh4kcelruiez7m3vy73wy11jk63ka7d09l3u7o97d729e6uco2gpclqm8p8393lzdmfg13oudivpwgtw98kmwlyjy1in4baaxbwmujhpm07r7ol8jjmettg9txbrz0komqmgidwmfht6puuaz9r9oim6tmcra08e432dbqh6bv1bzdj4lmy14cvua9woycsmhym0b3p68mhni6lp2qbmcr9ik9 +2022/02/22 17:07:37 [ERROR] : eval: *terraform.EvalSequence, err: expected length of description to be in the range (1 - 1000), got b9c8h0mzs4kz9j4qb12ph8l1l7urfnhi137oj6l1yzkzhigd7imgn1rqflkvff1mje0jrk8ic3mrrklj4vfzr83lqkh30awnw6s7nsizgg7srvfakbplrr9yj49lno7d02l7oaqb1poc0qmqdr0sjayv1cci9ormf4gylpqodv8fa62zi28k7o949pha09r9jt736udfj1qo3u8on6h9x430sqzqcffciecm6r3bby0u91g7im93j7cwghgb0oggiainunwa0abnln1t1ef86x2ovxq2e08ojxd3lrn6vg7sffqadr24epkm1g7iovma0peb9dgfnimjiusfabbkxxhubc9dk3he1orqo224czcd3k3ybabpxi9ta8cvqs7di6cb6lwnjg983fgly0kmanevjvnoo7zuqbnqsjp71xxlw1lo2dhuzssv37rd3h6hr2ls49sn2hxgyv9j0z807jzvnsl7u4791w1gshxp8ma4no2i3vphuei9eqbxpxkoux2nmwvqumgmmjomt21hxeyen63mfmioju7t13tpzrb0c9fm0c22v8tzh69zeqrxg9gt9u6bcn61nen7y8y8cju0gxtl4d4ufcmuoaocpy2kmsxi68hyp07re9hu2b68s91lm9mbjxaw4w9hm7d1go2ez61fp84pppa1wk9gp8d6czhuh8eipmvihl40mwflllmvelvc20pab9itvkf3a3a1v1tb79yzdo9nd0w3oe8d0jxnq6sngtg23a8mk6d9pbkdwntxvc8nuvosh4kcelruiez7m3vy73wy11jk63ka7d09l3u7o97d729e6uco2gpclqm8p8393lzdmfg13oudivpwgtw98kmwlyjy1in4baaxbwmujhpm07r7ol8jjmettg9txbrz0komqmgidwmfht6puuaz9r9oim6tmcra08e432dbqh6bv1bzdj4lmy14cvua9woycsmhym0b3p68mhni6lp2qbmcr9ik9 +2022/02/22 17:07:37 [DEBUG] Test: Executing step 3 +2022/02/22 17:07:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:07:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:07:37 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "mutwm" is not expected here. +2022/02/22 17:07:37 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "mutwm" is not expected here. +2022/02/22 17:07:37 [DEBUG] Test: Executing step 4 +2022/02/22 17:07:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:07:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:07:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:07:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:07:37 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:07:37 [DEBUG] : Beginning Read +2022/02/22 17:07:37 HTTP request GET mso/api/v1/tenants +2022/02/22 17:07:37 [DEBUG] Begin Injection +2022/02/22 17:07:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:07:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:07:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:07:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:37:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000234f80 3980 [] false false map[] 0xc0000a6200 0xc000164370} +2022/02/22 17:07:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:07:37 [DEBUG] Exit from do method +2022/02/22 17:07:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:07:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:37 [DEBUG] New state was assigned lineage "8e40c774-378c-cb9e-db75-4dc914584d89" +2022/02/22 17:07:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:07:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:07:37 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:07:37 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:07:37 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:07:37 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:07:37 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:07:37 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:07:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:37 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "0tf6r" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + id: "" => "" + name: "" => "0tf6r" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "0tf6r" + template_name: "" => "0tf6r" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "mutwm" + external_epg_name: "" => "mutwm" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "0tf6r" + vrf_name: "" => "mutwm" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "mutwm" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "mutwm" + schema_id: "" => "" + template: "" => "0tf6r" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:07:37 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:07:37 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:07:37 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:07:37 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:07:37 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:07:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 17:07:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:37 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:07:37 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:07:37 [DEBUG] Schema: Beginning Creation +2022/02/22 17:07:37 HTTP request POST mso/api/v1/schemas +2022/02/22 17:07:37 [DEBUG] Begin Injection +2022/02/22 17:07:37 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:07:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:07:38 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:07:38 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[376] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:37:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214cb011d0000c6544f9ebb] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058ea40 376 [] false false map[] 0xc000e0c700 0xc000164370} +2022/02/22 17:07:38 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214cb011d0000c6544f9ebb","displayName":"0tf6r","description":"","templates":[{"name":"0tf6r","displayName":"0tf6r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:07:38 [DEBUG] Exit from do method +2022/02/22 17:07:38 [DEBUG] 6214cb011d0000c6544f9ebb: Schema Creation finished successfully +2022/02/22 17:07:38 [DEBUG] 6214cb011d0000c6544f9ebb: Beginning Read +2022/02/22 17:07:38 HTTP request GET mso/api/v1/schemas/6214cb011d0000c6544f9ebb +2022/02/22 17:07:38 [DEBUG] Begin Injection +2022/02/22 17:07:38 HTTP request after injection GET mso/api/v1/schemas/6214cb011d0000c6544f9ebb +2022/02/22 17:07:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb +2022/02/22 17:07:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb +2022/02/22 17:07:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[376] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:37:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00058ec00 376 [] false false map[] 0xc000cd6a00 0xc000164370} +2022/02/22 17:07:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb {"id":"6214cb011d0000c6544f9ebb","displayName":"0tf6r","description":"","templates":[{"name":"0tf6r","displayName":"0tf6r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:07:38 [DEBUG] Exit from do method +2022/02/22 17:07:38 [DEBUG] 6214cb011d0000c6544f9ebb: Read finished successfully +2022/02/22 17:07:38 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:07:38 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:07:38 HTTP request PATCH mso/api/v1/schemas/6214cb011d0000c6544f9ebb?validate=false +2022/02/22 17:07:38 [DEBUG] Begin Injection +2022/02/22 17:07:38 HTTP request after injection PATCH mso/api/v1/schemas/6214cb011d0000c6544f9ebb?validate=false +2022/02/22 17:07:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb?validate=false +2022/02/22 17:07:38 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb?validate=false +2022/02/22 17:07:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:37:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000cd6f00 0xc000164370} +2022/02/22 17:07:38 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb?validate=false +2022/02/22 17:07:38 [DEBUG] mutwm: Creation finished successfully +2022/02/22 17:07:38 [DEBUG] mutwm: Beginning Read +2022/02/22 17:07:38 HTTP request GET mso/api/v1/schemas/6214cb011d0000c6544f9ebb +2022/02/22 17:07:38 [DEBUG] Begin Injection +2022/02/22 17:07:38 HTTP request after injection GET mso/api/v1/schemas/6214cb011d0000c6544f9ebb +2022/02/22 17:07:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb +2022/02/22 17:07:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb +2022/02/22 17:07:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[712] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:37:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007a1940 712 [] false false map[] 0xc0006b8800 0xc000164370} +2022/02/22 17:07:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb {"id":"6214cb011d0000c6544f9ebb","displayName":"0tf6r","description":"","templates":[{"name":"0tf6r","displayName":"0tf6r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"mutwm","displayName":"mutwm","vrfRef":"/schemas/6214cb011d0000c6544f9ebb/templates/0tf6r/vrfs/mutwm","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:07:39 [DEBUG] Exit from do method +2022/02/22 17:07:39 currentvrfname mutwm +2022/02/22 17:07:39 found correct vrfname +2022/02/22 17:07:39 [DEBUG] mutwm: Read finished successfully +2022/02/22 17:07:39 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:07:39 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:07:39 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:07:39 HTTP request PATCH mso/api/v1/schemas/6214cb011d0000c6544f9ebb?validate=false +2022/02/22 17:07:39 [DEBUG] Begin Injection +2022/02/22 17:07:39 HTTP request after injection PATCH mso/api/v1/schemas/6214cb011d0000c6544f9ebb?validate=false +2022/02/22 17:07:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb?validate=false +2022/02/22 17:07:39 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb?validate=false +2022/02/22 17:07:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:37:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000e0d500 0xc000164370} +2022/02/22 17:07:39 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb?validate=false +2022/02/22 17:07:39 [DEBUG] : Beginning Read +2022/02/22 17:07:39 HTTP request GET mso/api/v1/schemas/6214cb011d0000c6544f9ebb +2022/02/22 17:07:39 [DEBUG] Begin Injection +2022/02/22 17:07:39 HTTP request after injection GET mso/api/v1/schemas/6214cb011d0000c6544f9ebb +2022/02/22 17:07:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb +2022/02/22 17:07:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb +2022/02/22 17:07:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1043] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:37:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000218800 1043 [] false false map[] 0xc0006b8900 0xc000164370} +2022/02/22 17:07:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214cb011d0000c6544f9ebb {"id":"6214cb011d0000c6544f9ebb","displayName":"0tf6r","description":"","templates":[{"name":"0tf6r","displayName":"0tf6r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"mutwm","displayName":"mutwm","vrfRef":"/schemas/6214cb011d0000c6544f9ebb/templates/0tf6r/vrfs/mutwm","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"mutwm","displayName":"mutwm","extEpgType":"on-premise","vrfRef":"/schemas/6214cb011d0000c6544f9ebb/templates/0tf6r/vrfs/mutwm","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214cb011d0000c6544f9ebb/templates/0tf6r/externalEpgs/mutwm","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:07:39 [DEBUG] Exit from do method +2022/02/22 17:07:39 [DEBUG] /schemas/6214cb011d0000c6544f9ebb/templates/0tf6r/externalEpgs/mutwm: Read finished successfully +2022/02/22 17:07:39 [ERROR] : eval: *terraform.EvalDiff, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: 0tf6r +2022/02/22 17:07:39 [ERROR] : eval: *terraform.EvalSequence, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: 0tf6r +2022/02/22 17:07:39 [DEBUG] New state was assigned lineage "325c1db1-3157-3baf-2edd-6acdc5d83378" +2022/02/22 17:07:39 [DEBUG] Test: Executing step 5 +2022/02/22 17:07:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:07:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:07:39 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:07:39 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "mutwm" is not expected here. +2022/02/22 17:07:39 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "mutwm" is not expected here. +2022/02/22 17:07:39 [DEBUG] Test: Executing step 6 +2022/02/22 17:07:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:07:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:39 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:07:39 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:07:39 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:07:39 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:07:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:07:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:07:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:07:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:07:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:07:39 [DEBUG] : Beginning Read +2022/02/22 17:07:39 HTTP request GET mso/api/v1/tenants +2022/02/22 17:07:39 [DEBUG] Begin Injection +2022/02/22 17:07:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:07:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:07:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:07:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:37:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007a0040 3980 [] false false map[] 0xc0000a7400 0xc000164370} +2022/02/22 17:07:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:07:40 [DEBUG] Exit from do method +2022/02/22 17:07:40 [ERROR] : eval: *terraform.EvalReadData, err: Tenant of specified name not found +2022/02/22 17:07:40 [ERROR] : eval: *terraform.EvalSequence, err: Tenant of specified name not found +2022/02/22 17:07:40 [DEBUG] New state was assigned lineage "8a7159f9-cf35-e0b0-9d04-43b498d9c05d" +2022/02/22 17:07:40 [WARN] Skipping destroy test since there is no state. +2022/02/22 17:08:34 [DEBUG] Test: Executing step 0 +2022/02/22 17:08:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:34 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:08:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:08:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:34 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:08:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:34 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:08:34 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:08:34 [DEBUG] New state was assigned lineage "f1bb9885-31e2-a340-1103-517dd5cd1cf5" +2022/02/22 17:08:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:08:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:08:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:08:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:34 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:08:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:08:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:08:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:34 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "2j46h" + tenant_id: "" => "2j46h" + + + +STATE: + + +2022/02/22 17:08:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:08:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:08:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:08:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:08:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:08:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:08:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:08:34 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:08:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:08:34 [DEBUG] : Beginning Create +2022/02/22 17:08:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:08:34 [DEBUG] Begin Injection +2022/02/22 17:08:34 HTTP request POST /login +2022/02/22 17:08:34 HTTP request after injection POST /login +2022/02/22 17:08:34 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:08:37 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:08:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:37 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzExMTcsImlhdCI6MTY0NTUyOTkxNywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJkMnp1OHlaSGxMTG5oelMxNGVXbVZyOEkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.V81YHIdMv6JdmIsLZyvWrz6fG3wAcXi8fvIYF132z_FHfBHUjh8ETLx-O7y0eeYIHTq8B6Mnu4euzRpTiaVlQO6FZvHK0GhzK5g_TI176aEW6g1ZFiBMYEuXFDuOXkr2GJNAUS9Rx3JlOXN4CfkYoaTpR_i3YhtIyLMmdmMwb_xCr9N-Vgk6rDqKLHsbcbSiKkalZT2mkyskXVHxcHKeVbc4YZ6JZS8aAS34VcgjbO8uORKA4WJJCS11KtXm0XTf8ru6_xwtHyzizhKBZu0H5lCKWO-x1ZqUmAJZ9ZP8_ppVfPliV9P_UAFIuAiHW0mJrJ3Kb3wEZI3AHpbdqmrxrg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000538380 -1 [chunked] false false map[] 0xc000554c00 0xc0006a8000} +2022/02/22 17:08:37 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzExMTcsImlhdCI6MTY0NTUyOTkxNywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJkMnp1OHlaSGxMTG5oelMxNGVXbVZyOEkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.V81YHIdMv6JdmIsLZyvWrz6fG3wAcXi8fvIYF132z_FHfBHUjh8ETLx-O7y0eeYIHTq8B6Mnu4euzRpTiaVlQO6FZvHK0GhzK5g_TI176aEW6g1ZFiBMYEuXFDuOXkr2GJNAUS9Rx3JlOXN4CfkYoaTpR_i3YhtIyLMmdmMwb_xCr9N-Vgk6rDqKLHsbcbSiKkalZT2mkyskXVHxcHKeVbc4YZ6JZS8aAS34VcgjbO8uORKA4WJJCS11KtXm0XTf8ru6_xwtHyzizhKBZu0H5lCKWO-x1ZqUmAJZ9ZP8_ppVfPliV9P_UAFIuAiHW0mJrJ3Kb3wEZI3AHpbdqmrxrg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzExMTcsImlhdCI6MTY0NTUyOTkxNywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJkMnp1OHlaSGxMTG5oelMxNGVXbVZyOEkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.V81YHIdMv6JdmIsLZyvWrz6fG3wAcXi8fvIYF132z_FHfBHUjh8ETLx-O7y0eeYIHTq8B6Mnu4euzRpTiaVlQO6FZvHK0GhzK5g_TI176aEW6g1ZFiBMYEuXFDuOXkr2GJNAUS9Rx3JlOXN4CfkYoaTpR_i3YhtIyLMmdmMwb_xCr9N-Vgk6rDqKLHsbcbSiKkalZT2mkyskXVHxcHKeVbc4YZ6JZS8aAS34VcgjbO8uORKA4WJJCS11KtXm0XTf8ru6_xwtHyzizhKBZu0H5lCKWO-x1ZqUmAJZ9ZP8_ppVfPliV9P_UAFIuAiHW0mJrJ3Kb3wEZI3AHpbdqmrxrg"} +2022/02/22 17:08:37 [DEBUG] Exit from do method +2022/02/22 17:08:37 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:08:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:08:37 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:08:37 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[97] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:37 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000538100 97 [] false false map[] 0xc000554b00 0xc0006a8000} +2022/02/22 17:08:37 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: The tenant with id 2j46h is not found for the current user."} +2022/02/22 17:08:37 [DEBUG] Exit from do method +2022/02/22 17:08:37 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: The tenant with id 2j46h is not found for the current user."{} +2022/02/22 17:08:37 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: The tenant with id 2j46h is not found for the current user."{} +2022/02/22 17:08:37 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: The tenant with id 2j46h is not found for the current user."{} +2022/02/22 17:08:37 [DEBUG] New state was assigned lineage "fb3883b9-aa93-6a39-6512-2f0fd2521549" +2022/02/22 17:08:37 [DEBUG] Test: Executing step 1 +2022/02/22 17:08:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:08:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:08:37 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of name to be in the range (1 - 1000), got xzqbfdzngwm3xngon8se8mb1s9plq8j1i3b3v01utwbaiqo2zune6ujkmozc8p2p14nck3riqn69qo41znujq9e7iffz4n9bgbtvboz4jze3ytqxwf8ufz32ae4gbs94qxgq1ssxhamerzw0yq28yo18izujniod83a4g90j09danitq3ti71ysxqqje8m8hleyqwm0zvssw2s09p2nmjh6jvezzwf41rjtr8zzj3uchfhq7d4wk86gnaxmsi236zr73z68erzws9cqbmmxcry120dkftg7t0pinllv7i7execfl6sehvgoz3zb28h0l9gm4lb68b9vwq133axnn9243hpqxfaec3iz09688og4oprklqdi4kihghahq3vrc8nxojcdzl40m3if1b4lfakpzoq32rw2l3rpc4mn7lfwhuumisay623v7s3uhl42ly1z9ofmds1pkk6icinjhfkzpp4k3dcz61qm7vlgy6qiidtzimyql2mmn0hmjgxono13fdmb82d80qzrnaaa9kdfp67l7q4407zrygmuzf8eruo4qtcw3muf84cb1xfuyo03t6osjbexjmzkkob9silwsd616rm947qz6qcsnquvfnmo4myzxdnb2844mycj6rs839o2egua17j0ixysu96m1qokcewa8wpjwm3s6qk2kizp6y107cmkwp26486v6wo9dksc4xayj02sp29z6bi8nuok2gjeb003bcbkk1fa2u02oyupblzj1orz833wyonuwk78dz3tzrdqu8ac938arocujeo72scq9yof0l0tq1uhwtkod7cwh46a1x1hncd7v7o3a4jwslqcxucn21pf68zwjdgwmex4b1gqfjc1ellzmtv6uuu6wrecgxl6skvdombwj0c4m04ogowc7mnex4hzlay8don63vi4n0db0gl3bvnfj1ty0x7kklz1ke1s0gakb2luymjhd94wvl4cjhhqthj43frnlkekwj +2022/02/22 17:08:37 [ERROR] : eval: *terraform.EvalSequence, err: expected length of name to be in the range (1 - 1000), got xzqbfdzngwm3xngon8se8mb1s9plq8j1i3b3v01utwbaiqo2zune6ujkmozc8p2p14nck3riqn69qo41znujq9e7iffz4n9bgbtvboz4jze3ytqxwf8ufz32ae4gbs94qxgq1ssxhamerzw0yq28yo18izujniod83a4g90j09danitq3ti71ysxqqje8m8hleyqwm0zvssw2s09p2nmjh6jvezzwf41rjtr8zzj3uchfhq7d4wk86gnaxmsi236zr73z68erzws9cqbmmxcry120dkftg7t0pinllv7i7execfl6sehvgoz3zb28h0l9gm4lb68b9vwq133axnn9243hpqxfaec3iz09688og4oprklqdi4kihghahq3vrc8nxojcdzl40m3if1b4lfakpzoq32rw2l3rpc4mn7lfwhuumisay623v7s3uhl42ly1z9ofmds1pkk6icinjhfkzpp4k3dcz61qm7vlgy6qiidtzimyql2mmn0hmjgxono13fdmb82d80qzrnaaa9kdfp67l7q4407zrygmuzf8eruo4qtcw3muf84cb1xfuyo03t6osjbexjmzkkob9silwsd616rm947qz6qcsnquvfnmo4myzxdnb2844mycj6rs839o2egua17j0ixysu96m1qokcewa8wpjwm3s6qk2kizp6y107cmkwp26486v6wo9dksc4xayj02sp29z6bi8nuok2gjeb003bcbkk1fa2u02oyupblzj1orz833wyonuwk78dz3tzrdqu8ac938arocujeo72scq9yof0l0tq1uhwtkod7cwh46a1x1hncd7v7o3a4jwslqcxucn21pf68zwjdgwmex4b1gqfjc1ellzmtv6uuu6wrecgxl6skvdombwj0c4m04ogowc7mnex4hzlay8don63vi4n0db0gl3bvnfj1ty0x7kklz1ke1s0gakb2luymjhd94wvl4cjhhqthj43frnlkekwj +2022/02/22 17:08:37 [DEBUG] Test: Executing step 2 +2022/02/22 17:08:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:08:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:08:37 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of description to be in the range (1 - 1000), got y1enmog7oigxs0bdw931zca7exlnya78cbxshpsbdv027438kn6vlprnamqfhosvgy4gyrrt1k9vog888vwssq9e7umpd0tapqqlna6os10lj27tit2s04320h2r3nkajqdl7t9nrwsq79zo79ulscapcwo7gxbu9wxute18kp19ra3yeh4rlufjuhlliar163ccwlyez7fgv1kv4ltqgg03yj9mx7fxkpbwduf9328ehgu6yak09fz9kyvbfaigia0g8rttyozia6ec60jeoko8hbubh0tm7jhuive1accaby203k9trpcjbtjj4e44xteyrdiqejnyquak7m6qwzuvzgna7y9dkegzyjf7uk6dcisnd0llld0vaspaknsdekcjamfh4zneryey7s84u0pchqlkwawq9nefsg8x3s6r6zsj80k1fjhi6jzsf44elasl7mri9z902eki0fjvympmm1bxa0nmzmwhs60mzjh6ilpj02dm4viepvfa03jxdbdrrr6ynhblgf4pjumpecij16nkd0aie98u8pj1p2grzkpr9t8jy4dik1ioldsqysav18p86x6elrmcxi107ljdhpu4mehbcn0i429m4746e828cf7jfysw7iy8qagv00j4d3ehi0yyhfl2qmjzysdgtmiutnkxo1cwzdkimtdd3u8vd8jw9sliih8au20l0opy2ny0m9uald0dxfswhegi12i3rdq6bhrgsa08mii89cgkylxgktlflfsotwipj00xraus7tuaavsz496pcxd3iztjyy7ewmwadgs9sko9czyitbpq1yjko0f4oilz7btbhhhjcji1u7ltr9j9d37z93ybq7a8oo0du2h8r7a7ertqfxsf4jesz29oxywciwcr4krtc9jcxjeaj0ldlges1snufcmaz8o02kmtp8oys6xtbwvyzwbb0ztm23bvcwb8jrpisfwmues3cd0d17ayv1ahn3g4oc1tlzlbl +2022/02/22 17:08:37 [ERROR] : eval: *terraform.EvalSequence, err: expected length of description to be in the range (1 - 1000), got y1enmog7oigxs0bdw931zca7exlnya78cbxshpsbdv027438kn6vlprnamqfhosvgy4gyrrt1k9vog888vwssq9e7umpd0tapqqlna6os10lj27tit2s04320h2r3nkajqdl7t9nrwsq79zo79ulscapcwo7gxbu9wxute18kp19ra3yeh4rlufjuhlliar163ccwlyez7fgv1kv4ltqgg03yj9mx7fxkpbwduf9328ehgu6yak09fz9kyvbfaigia0g8rttyozia6ec60jeoko8hbubh0tm7jhuive1accaby203k9trpcjbtjj4e44xteyrdiqejnyquak7m6qwzuvzgna7y9dkegzyjf7uk6dcisnd0llld0vaspaknsdekcjamfh4zneryey7s84u0pchqlkwawq9nefsg8x3s6r6zsj80k1fjhi6jzsf44elasl7mri9z902eki0fjvympmm1bxa0nmzmwhs60mzjh6ilpj02dm4viepvfa03jxdbdrrr6ynhblgf4pjumpecij16nkd0aie98u8pj1p2grzkpr9t8jy4dik1ioldsqysav18p86x6elrmcxi107ljdhpu4mehbcn0i429m4746e828cf7jfysw7iy8qagv00j4d3ehi0yyhfl2qmjzysdgtmiutnkxo1cwzdkimtdd3u8vd8jw9sliih8au20l0opy2ny0m9uald0dxfswhegi12i3rdq6bhrgsa08mii89cgkylxgktlflfsotwipj00xraus7tuaavsz496pcxd3iztjyy7ewmwadgs9sko9czyitbpq1yjko0f4oilz7btbhhhjcji1u7ltr9j9d37z93ybq7a8oo0du2h8r7a7ertqfxsf4jesz29oxywciwcr4krtc9jcxjeaj0ldlges1snufcmaz8o02kmtp8oys6xtbwvyzwbb0ztm23bvcwb8jrpisfwmues3cd0d17ayv1ahn3g4oc1tlzlbl +2022/02/22 17:08:37 [DEBUG] Test: Executing step 3 +2022/02/22 17:08:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:08:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:08:37 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "loxvo" is not expected here. +2022/02/22 17:08:37 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "loxvo" is not expected here. +2022/02/22 17:08:37 [DEBUG] Test: Executing step 4 +2022/02/22 17:08:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:08:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:08:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:08:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:08:37 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:37 [DEBUG] : Beginning Read +2022/02/22 17:08:37 HTTP request GET mso/api/v1/tenants +2022/02/22 17:08:37 [DEBUG] Begin Injection +2022/02/22 17:08:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:08:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:08:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:08:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000538400 3980 [] false false map[] 0xc000318f00 0xc0006a8000} +2022/02/22 17:08:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:08:37 [DEBUG] Exit from do method +2022/02/22 17:08:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:08:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:37 [DEBUG] New state was assigned lineage "e48fd5e5-0d50-ffcf-4f3d-91dcbabc9ae9" +2022/02/22 17:08:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:08:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:08:37 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:37 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:08:37 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:08:37 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:08:37 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:08:37 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:08:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:37 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "2j46h" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + id: "" => "" + name: "" => "2j46h" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "2j46h" + template_name: "" => "2j46h" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "loxvo" + external_epg_name: "" => "loxvo" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "2j46h" + vrf_name: "" => "loxvo" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "loxvo" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "loxvo" + schema_id: "" => "" + template: "" => "2j46h" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:08:37 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:08:37 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:08:37 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:08:37 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:08:37 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:08:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:08:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 17:08:37 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:08:37 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:08:37 [DEBUG] Schema: Beginning Creation +2022/02/22 17:08:37 HTTP request POST mso/api/v1/schemas +2022/02/22 17:08:37 [DEBUG] Begin Injection +2022/02/22 17:08:37 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:08:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:08:38 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:08:38 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[376] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214cb3e1d0000e4544f9ebf] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f22040 376 [] false false map[] 0xc000318800 0xc0006a8000} +2022/02/22 17:08:38 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214cb3e1d0000e4544f9ebf","displayName":"2j46h","description":"","templates":[{"name":"2j46h","displayName":"2j46h","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:08:38 [DEBUG] Exit from do method +2022/02/22 17:08:38 [DEBUG] 6214cb3e1d0000e4544f9ebf: Schema Creation finished successfully +2022/02/22 17:08:38 [DEBUG] 6214cb3e1d0000e4544f9ebf: Beginning Read +2022/02/22 17:08:38 HTTP request GET mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:38 [DEBUG] Begin Injection +2022/02/22 17:08:38 HTTP request after injection GET mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[376] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a5c0 376 [] false false map[] 0xc000276000 0xc0006a8000} +2022/02/22 17:08:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf {"id":"6214cb3e1d0000e4544f9ebf","displayName":"2j46h","description":"","templates":[{"name":"2j46h","displayName":"2j46h","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:08:38 [DEBUG] Exit from do method +2022/02/22 17:08:38 [DEBUG] 6214cb3e1d0000e4544f9ebf: Read finished successfully +2022/02/22 17:08:38 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:08:38 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:08:38 HTTP request PATCH mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:38 [DEBUG] Begin Injection +2022/02/22 17:08:38 HTTP request after injection PATCH mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:38 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:38:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000319300 0xc0006a8000} +2022/02/22 17:08:39 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:39 [DEBUG] loxvo: Creation finished successfully +2022/02/22 17:08:39 [DEBUG] loxvo: Beginning Read +2022/02/22 17:08:39 HTTP request GET mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:39 [DEBUG] Begin Injection +2022/02/22 17:08:39 HTTP request after injection GET mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[712] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073f9c0 712 [] false false map[] 0xc0004ac000 0xc0006a8000} +2022/02/22 17:08:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf {"id":"6214cb3e1d0000e4544f9ebf","displayName":"2j46h","description":"","templates":[{"name":"2j46h","displayName":"2j46h","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"loxvo","displayName":"loxvo","vrfRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/vrfs/loxvo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:08:39 [DEBUG] Exit from do method +2022/02/22 17:08:39 currentvrfname loxvo +2022/02/22 17:08:39 found correct vrfname +2022/02/22 17:08:39 [DEBUG] loxvo: Read finished successfully +2022/02/22 17:08:39 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:08:39 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:08:39 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:08:39 HTTP request PATCH mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:39 [DEBUG] Begin Injection +2022/02/22 17:08:39 HTTP request after injection PATCH mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:39 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:38:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001c6900 0xc0006a8000} +2022/02/22 17:08:39 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:39 [DEBUG] : Beginning Read +2022/02/22 17:08:39 HTTP request GET mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:39 [DEBUG] Begin Injection +2022/02/22 17:08:39 HTTP request after injection GET mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1043] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a080 1043 [] false false map[] 0xc0004ac100 0xc0006a8000} +2022/02/22 17:08:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf {"id":"6214cb3e1d0000e4544f9ebf","displayName":"2j46h","description":"","templates":[{"name":"2j46h","displayName":"2j46h","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"loxvo","displayName":"loxvo","vrfRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/vrfs/loxvo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"loxvo","displayName":"loxvo","extEpgType":"on-premise","vrfRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/vrfs/loxvo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/externalEpgs/loxvo","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:08:39 [DEBUG] Exit from do method +2022/02/22 17:08:39 [DEBUG] /schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/externalEpgs/loxvo: Read finished successfully +2022/02/22 17:08:39 [ERROR] : eval: *terraform.EvalDiff, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: 2j46h +2022/02/22 17:08:39 [ERROR] : eval: *terraform.EvalSequence, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: 2j46h +2022/02/22 17:08:39 [DEBUG] New state was assigned lineage "838b50a8-ae9e-bcb6-5023-b9e03b8a8f5a" +2022/02/22 17:08:39 [DEBUG] Test: Executing step 5 +2022/02/22 17:08:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:08:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:08:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:08:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:08:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:08:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:08:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:39 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:08:39 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "loxvo" is not expected here. +2022/02/22 17:08:39 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "loxvo" is not expected here. +2022/02/22 17:08:39 [DEBUG] Test: Executing step 6 +2022/02/22 17:08:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:08:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:08:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:08:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:08:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:08:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:08:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:08:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:08:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:08:39 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:08:40 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:08:40 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:08:40 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:08:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:08:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:08:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:08:40 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:08:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:08:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:08:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:08:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:08:40 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:08:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:08:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:08:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:40 [DEBUG] : Beginning Read +2022/02/22 17:08:40 HTTP request GET mso/api/v1/tenants +2022/02/22 17:08:40 [DEBUG] Begin Injection +2022/02/22 17:08:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:08:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:08:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:08:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091e80 3980 [] false false map[] 0xc000318500 0xc0006a8000} +2022/02/22 17:08:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:08:40 [DEBUG] Exit from do method +2022/02/22 17:08:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:08:40 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:08:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:08:40 [DEBUG] 6214cb3e1d0000e4544f9ebf: Beginning Read +2022/02/22 17:08:40 HTTP request GET mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:40 [DEBUG] Begin Injection +2022/02/22 17:08:40 HTTP request after injection GET mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1043] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a080 1043 [] false false map[] 0xc000eb9500 0xc0006a8000} +2022/02/22 17:08:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf {"id":"6214cb3e1d0000e4544f9ebf","displayName":"2j46h","description":"","templates":[{"name":"2j46h","displayName":"2j46h","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"loxvo","displayName":"loxvo","vrfRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/vrfs/loxvo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"loxvo","displayName":"loxvo","extEpgType":"on-premise","vrfRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/vrfs/loxvo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/externalEpgs/loxvo","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:08:40 [DEBUG] Exit from do method +2022/02/22 17:08:40 [DEBUG] 6214cb3e1d0000e4544f9ebf: Read finished successfully +2022/02/22 17:08:40 [DEBUG] loxvo: Beginning Read +2022/02/22 17:08:40 HTTP request GET mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:40 [DEBUG] Begin Injection +2022/02/22 17:08:40 HTTP request after injection GET mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1043] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005060c0 1043 [] false false map[] 0xc001090500 0xc0006a8000} +2022/02/22 17:08:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf {"id":"6214cb3e1d0000e4544f9ebf","displayName":"2j46h","description":"","templates":[{"name":"2j46h","displayName":"2j46h","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"loxvo","displayName":"loxvo","vrfRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/vrfs/loxvo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"loxvo","displayName":"loxvo","extEpgType":"on-premise","vrfRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/vrfs/loxvo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/externalEpgs/loxvo","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:08:40 [DEBUG] Exit from do method +2022/02/22 17:08:40 currentvrfname loxvo +2022/02/22 17:08:40 found correct vrfname +2022/02/22 17:08:40 [DEBUG] loxvo: Read finished successfully +2022/02/22 17:08:40 [DEBUG] /schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/externalEpgs/loxvo: Beginning Read +2022/02/22 17:08:40 HTTP request GET mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:40 [DEBUG] Begin Injection +2022/02/22 17:08:40 HTTP request after injection GET mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1043] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073e040 1043 [] false false map[] 0xc001090a00 0xc0006a8000} +2022/02/22 17:08:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf {"id":"6214cb3e1d0000e4544f9ebf","displayName":"2j46h","description":"","templates":[{"name":"2j46h","displayName":"2j46h","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"loxvo","displayName":"loxvo","vrfRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/vrfs/loxvo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"loxvo","displayName":"loxvo","extEpgType":"on-premise","vrfRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/vrfs/loxvo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/externalEpgs/loxvo","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:08:41 [DEBUG] Exit from do method +2022/02/22 17:08:41 [DEBUG] /schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/externalEpgs/loxvo: Read finished successfully +2022/02/22 17:08:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:41 [DEBUG] New state was assigned lineage "4f5ca589-9f9e-277d-8521-f18247068491" +2022/02/22 17:08:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:08:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:41 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:08:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:41 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "2j46h" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214cb3e1d0000e4544f9ebf" => "" + name: "2j46h" => "" + template_name: "2j46h" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "loxvo" => "" + external_epg_name: "loxvo" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/externalEpgs/loxvo" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214cb3e1d0000e4544f9ebf" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "2j46h" => "" + vrf_name: "loxvo" => "" + vrf_schema_id: "6214cb3e1d0000e4544f9ebf" => "" + vrf_template_name: "2j46h" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "loxvo" => "" + id: "loxvo" => "" + layer3_multicast: "false" => "" + name: "loxvo" => "" + schema_id: "6214cb3e1d0000e4544f9ebf" => "" + template: "2j46h" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_schema.test: + ID = 6214cb3e1d0000e4544f9ebf + provider = provider.mso + name = 2j46h + template_name = 2j46h + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214cb3e1d0000e4544f9ebf/templates/2j46h/externalEpgs/loxvo + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = loxvo + external_epg_name = loxvo + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214cb3e1d0000e4544f9ebf + selector_ip = + selector_name = + template_name = 2j46h + vrf_name = loxvo + vrf_schema_id = 6214cb3e1d0000e4544f9ebf + vrf_template_name = 2j46h + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = loxvo + provider = provider.mso + display_name = loxvo + layer3_multicast = false + name = loxvo + schema_id = 6214cb3e1d0000e4544f9ebf + template = 2j46h + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:08:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:08:41 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:08:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:08:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:08:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:08:41 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:08:41 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:08:41 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:08:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:08:41 HTTP request PATCH mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:41 [DEBUG] Begin Injection +2022/02/22 17:08:41 HTTP request after injection PATCH mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:41 [DEBUG] : Beginning Create +2022/02/22 17:08:41 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:08:41 [DEBUG] Begin Injection +2022/02/22 17:08:41 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:08:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:08:41 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:38:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000888600 0xc0006a8000} +2022/02/22 17:08:41 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:41 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:08:41 [DEBUG] loxvo: Beginning Destroy +2022/02/22 17:08:41 HTTP request PATCH mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:41 [DEBUG] Begin Injection +2022/02/22 17:08:41 HTTP request after injection PATCH mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:41 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:08:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[152] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001a0dc0 152 [] false false map[] 0xc001140500 0xc0006a8000} +2022/02/22 17:08:41 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214cb411b0000e37efd0669","name":"2j46h","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:08:41 [DEBUG] Exit from do method +2022/02/22 17:08:41 [DEBUG] 6214cb411b0000e37efd0669: Creation finished successfully +2022/02/22 17:08:41 [DEBUG] 6214cb411b0000e37efd0669: Beginning Read +2022/02/22 17:08:41 id: 6214cb411b0000e37efd0669 +2022/02/22 17:08:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:41 [DEBUG] Begin Injection +2022/02/22 17:08:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:38:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000318b00 0xc0006a8000} +2022/02/22 17:08:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf?validate=false +2022/02/22 17:08:42 [DEBUG] loxvo: Destroy finished successfully +2022/02/22 17:08:42 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:08:42 [DEBUG] 6214cb3e1d0000e4544f9ebf: Beginning Destroy +2022/02/22 17:08:42 HTTP request DELETE mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:42 [DEBUG] Begin Injection +2022/02/22 17:08:42 HTTP request after injection DELETE mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[152] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000506d80 152 [] false false map[] 0xc000172000 0xc0006a80b0} +2022/02/22 17:08:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 {"id":"6214cb411b0000e37efd0669","name":"2j46h","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:08:42 [DEBUG] Exit from do method +2022/02/22 17:08:42 [DEBUG] 6214cb411b0000e37efd0669: Read finished successfully +2022/02/22 17:08:42 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:38:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000560400 0xc0006a8000} +2022/02/22 17:08:42 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214cb3e1d0000e4544f9ebf +2022/02/22 17:08:42 [DEBUG] 6214cb3e1d0000e4544f9ebf: Destroy finished successfully +2022/02/22 17:08:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:42 [DEBUG] New state was assigned lineage "ae9f6c07-bbd0-ebb8-a6ce-4309f05bda8a" +2022/02/22 17:08:42 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:08:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:08:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:08:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:08:42 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:08:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:08:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:42 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:08:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:08:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:08:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:08:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:42 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:08:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:42 [DEBUG] : Beginning Read +2022/02/22 17:08:42 HTTP request GET mso/api/v1/tenants +2022/02/22 17:08:42 [DEBUG] Begin Injection +2022/02/22 17:08:42 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:08:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:08:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:08:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b780 3980 [] false false map[] 0xc001091a00 0xc0000f4420} +2022/02/22 17:08:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:08:42 [DEBUG] Exit from do method +2022/02/22 17:08:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:08:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:08:42 [DEBUG] 6214cb411b0000e37efd0669: Beginning Read +2022/02/22 17:08:42 id: 6214cb411b0000e37efd0669 +2022/02/22 17:08:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:42 [DEBUG] Begin Injection +2022/02/22 17:08:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[152] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000538100 152 [] false false map[] 0xc001091e00 0xc0006a8840} +2022/02/22 17:08:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 {"id":"6214cb411b0000e37efd0669","name":"2j46h","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:08:43 [DEBUG] Exit from do method +2022/02/22 17:08:43 [DEBUG] 6214cb411b0000e37efd0669: Read finished successfully +2022/02/22 17:08:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:43 [DEBUG] New state was assigned lineage "3bbbb839-774e-94fa-4fcd-f1d81a346b1f" +2022/02/22 17:08:43 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:08:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:43 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:08:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:43 [WARN] Test: Executing destroy step +2022/02/22 17:08:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:43 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:08:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:43 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:08:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:08:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:43 [DEBUG] : Beginning Read +2022/02/22 17:08:43 HTTP request GET mso/api/v1/tenants +2022/02/22 17:08:43 [DEBUG] Begin Injection +2022/02/22 17:08:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:08:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:08:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:08:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001a1a40 3980 [] false false map[] 0xc0014a0100 0xc0006a8840} +2022/02/22 17:08:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:08:43 [DEBUG] Exit from do method +2022/02/22 17:08:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:08:43 [DEBUG] 6214cb411b0000e37efd0669: Beginning Read +2022/02/22 17:08:43 id: 6214cb411b0000e37efd0669 +2022/02/22 17:08:43 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:43 [DEBUG] Begin Injection +2022/02/22 17:08:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[152] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000538100 152 [] false false map[] 0xc0014a0600 0xc0006a8840} +2022/02/22 17:08:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 {"id":"6214cb411b0000e37efd0669","name":"2j46h","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:08:43 [DEBUG] Exit from do method +2022/02/22 17:08:43 [DEBUG] 6214cb411b0000e37efd0669: Read finished successfully +2022/02/22 17:08:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:43 [DEBUG] New state was assigned lineage "b16db94b-b813-c6c5-f709-f43adc8c37c9" +2022/02/22 17:08:43 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:08:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:08:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:08:43 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:08:43 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214cb411b0000e37efd0669" => "" + name: "2j46h" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214cb411b0000e37efd0669 + provider = provider.mso + description = + name = 2j46h + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:08:43 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:08:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:08:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:08:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:43 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:08:43 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:08:43 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:08:43 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:08:43 [DEBUG] 6214cb411b0000e37efd0669: Beginning Read +2022/02/22 17:08:43 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:43 [DEBUG] Begin Injection +2022/02/22 17:08:43 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:44 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:38:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001090a00 0xc0006a8840} +2022/02/22 17:08:44 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:44 [DEBUG] : Read finished successfully +2022/02/22 17:08:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:44 [DEBUG] New state was assigned lineage "48b74f3a-546a-c68e-cc8f-266671f09281" +2022/02/22 17:08:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:44 [DEBUG] Begin Injection +2022/02/22 17:08:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 +2022/02/22 17:08:44 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:44 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000538180 86 [] false false map[] 0xc000318300 0xc0006a8840} +2022/02/22 17:08:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cb411b0000e37efd0669 {"code":141,"message":"Resource Not Found: Policy 6214cb411b0000e37efd0669 not found"} +2022/02/22 17:08:44 [DEBUG] Exit from do method +2022/02/22 17:08:44 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:08:44 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:08:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:08:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:08:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:08:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:08:44 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:08:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:44 [DEBUG] : Beginning Read +2022/02/22 17:08:44 HTTP request GET mso/api/v1/tenants +2022/02/22 17:08:44 [DEBUG] Begin Injection +2022/02/22 17:08:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:08:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:08:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:08:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:38:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00073e0c0 3980 [] false false map[] 0xc001090200 0xc0006a8840} +2022/02/22 17:08:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:08:44 [DEBUG] Exit from do method +2022/02/22 17:08:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:08:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:08:44 [DEBUG] New state was assigned lineage "32de4fc9-3064-0535-a97d-4203c1a52b78" +2022/02/22 17:08:44 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:08:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:08:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:08:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:08:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:08:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:08:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:08:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:08:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:08:44 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:10:04 [DEBUG] Test: Executing step 0 +2022/02/22 17:10:04 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:04 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:10:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:10:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:10:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:10:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:10:04 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:10:04 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:04 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:10:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:10:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:10:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:04 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:10:04 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:10:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:04 [DEBUG] : Beginning Read +2022/02/22 17:10:04 HTTP request GET mso/api/v1/tenants +2022/02/22 17:10:04 [DEBUG] Begin Injection +2022/02/22 17:10:04 HTTP request POST /login +2022/02/22 17:10:04 HTTP request after injection POST /login +2022/02/22 17:10:04 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:10:05 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:10:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:05 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzEyMDUsImlhdCI6MTY0NTUzMDAwNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI4aEVZREFRRGJtZjJEcEt2Q1A2V3VWclEiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.XiKmV1rxptzs0SWXqTKAIvNxuLnkeCYr9G1FC8eKy31fL1PVScqffixrxvNLdlAP-JmhWyUlxWHtxABeUGKxaeDpxFDcEbHsUjwf05oe6b_iPMsdV2QfALU8WrtTxQLzaxJbtJo2eoqsgHLOSG7aP38HQNuH7Ut-5W6qJJgCkU8JouXcE2LELxIoRu75Nx-cB_38HSlf0W29xi9Isg6OYYM-P8bZaeFD5YK4SIZsvZQpGqhy7PI4wjOl6BPgdRENlQe-8zNAWwRyB-diaB5esBy01TZ1M-y144VS4SvaXoyqOm1OrHtY2mPvqTQU_bJqw6LLlkjq9JwZtwrCy06iEQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0001a0440 -1 [chunked] false false map[] 0xc000a7c200 0xc0004ca840} +2022/02/22 17:10:05 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzEyMDUsImlhdCI6MTY0NTUzMDAwNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI4aEVZREFRRGJtZjJEcEt2Q1A2V3VWclEiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.XiKmV1rxptzs0SWXqTKAIvNxuLnkeCYr9G1FC8eKy31fL1PVScqffixrxvNLdlAP-JmhWyUlxWHtxABeUGKxaeDpxFDcEbHsUjwf05oe6b_iPMsdV2QfALU8WrtTxQLzaxJbtJo2eoqsgHLOSG7aP38HQNuH7Ut-5W6qJJgCkU8JouXcE2LELxIoRu75Nx-cB_38HSlf0W29xi9Isg6OYYM-P8bZaeFD5YK4SIZsvZQpGqhy7PI4wjOl6BPgdRENlQe-8zNAWwRyB-diaB5esBy01TZ1M-y144VS4SvaXoyqOm1OrHtY2mPvqTQU_bJqw6LLlkjq9JwZtwrCy06iEQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzEyMDUsImlhdCI6MTY0NTUzMDAwNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI4aEVZREFRRGJtZjJEcEt2Q1A2V3VWclEiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.XiKmV1rxptzs0SWXqTKAIvNxuLnkeCYr9G1FC8eKy31fL1PVScqffixrxvNLdlAP-JmhWyUlxWHtxABeUGKxaeDpxFDcEbHsUjwf05oe6b_iPMsdV2QfALU8WrtTxQLzaxJbtJo2eoqsgHLOSG7aP38HQNuH7Ut-5W6qJJgCkU8JouXcE2LELxIoRu75Nx-cB_38HSlf0W29xi9Isg6OYYM-P8bZaeFD5YK4SIZsvZQpGqhy7PI4wjOl6BPgdRENlQe-8zNAWwRyB-diaB5esBy01TZ1M-y144VS4SvaXoyqOm1OrHtY2mPvqTQU_bJqw6LLlkjq9JwZtwrCy06iEQ"} +2022/02/22 17:10:05 [DEBUG] Exit from do method +2022/02/22 17:10:05 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:10:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:10:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:10:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000214880 3980 [] false false map[] 0xc000a7c100 0xc0004ca840} +2022/02/22 17:10:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:10:06 [DEBUG] Exit from do method +2022/02/22 17:10:06 [ERROR] : eval: *terraform.EvalReadData, err: Tenant of specified name not found +2022/02/22 17:10:06 [ERROR] : eval: *terraform.EvalSequence, err: Tenant of specified name not found +2022/02/22 17:10:06 [DEBUG] New state was assigned lineage "e9a37e8d-9285-4bff-4d39-edbc9c3a8556" +2022/02/22 17:10:06 [WARN] Skipping destroy test since there is no state. +2022/02/22 17:10:51 [DEBUG] Test: Executing step 0 +2022/02/22 17:10:51 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:51 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:10:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:10:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:10:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:10:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:10:51 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:10:51 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:51 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:10:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:10:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:10:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:51 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:10:51 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:10:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:51 [DEBUG] : Beginning Read +2022/02/22 17:10:51 HTTP request GET mso/api/v1/tenants +2022/02/22 17:10:51 [DEBUG] Begin Injection +2022/02/22 17:10:51 HTTP request POST /login +2022/02/22 17:10:51 HTTP request after injection POST /login +2022/02/22 17:10:51 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:10:53 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:10:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:53 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzEyNTMsImlhdCI6MTY0NTUzMDA1MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJWTUZoc0pqYW1mbElHVmVMa0tZa1BMSDEiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.UKbUuI2gOj-ao39Fw8F0krh5Q_rtWdbi1iPCEa2UOkbvkIqhN_iFBRK4vPlSAVMspeFYhwHTnVDCAsZsZvsICgMluJ7F_PMorlqIJSXewle2pX2rLWQ5MZgpHI84JUFRPKNfYlajK1ggWMvW_CxdKtdyI7H2uXzgO6JKdWv53UkgO5e-AOYhuihhUA9PF7LsK6azBEGwnNwCDqfycm3in99mNqeM2f49eI0R6E-oI5DigndrEj31kAqn1x9UEN5Qan-uqw2ElWhgmUgN-P8YqM-tkmUGI78L00hjJdFaPqrWNrRbRYcCWJFm-_AcvSjGA2AJfW84gWXd91e0gbUBvw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0006483c0 -1 [chunked] false false map[] 0xc000ac0700 0xc0001642c0} +2022/02/22 17:10:53 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzEyNTMsImlhdCI6MTY0NTUzMDA1MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJWTUZoc0pqYW1mbElHVmVMa0tZa1BMSDEiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.UKbUuI2gOj-ao39Fw8F0krh5Q_rtWdbi1iPCEa2UOkbvkIqhN_iFBRK4vPlSAVMspeFYhwHTnVDCAsZsZvsICgMluJ7F_PMorlqIJSXewle2pX2rLWQ5MZgpHI84JUFRPKNfYlajK1ggWMvW_CxdKtdyI7H2uXzgO6JKdWv53UkgO5e-AOYhuihhUA9PF7LsK6azBEGwnNwCDqfycm3in99mNqeM2f49eI0R6E-oI5DigndrEj31kAqn1x9UEN5Qan-uqw2ElWhgmUgN-P8YqM-tkmUGI78L00hjJdFaPqrWNrRbRYcCWJFm-_AcvSjGA2AJfW84gWXd91e0gbUBvw","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzEyNTMsImlhdCI6MTY0NTUzMDA1MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJWTUZoc0pqYW1mbElHVmVMa0tZa1BMSDEiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.UKbUuI2gOj-ao39Fw8F0krh5Q_rtWdbi1iPCEa2UOkbvkIqhN_iFBRK4vPlSAVMspeFYhwHTnVDCAsZsZvsICgMluJ7F_PMorlqIJSXewle2pX2rLWQ5MZgpHI84JUFRPKNfYlajK1ggWMvW_CxdKtdyI7H2uXzgO6JKdWv53UkgO5e-AOYhuihhUA9PF7LsK6azBEGwnNwCDqfycm3in99mNqeM2f49eI0R6E-oI5DigndrEj31kAqn1x9UEN5Qan-uqw2ElWhgmUgN-P8YqM-tkmUGI78L00hjJdFaPqrWNrRbRYcCWJFm-_AcvSjGA2AJfW84gWXd91e0gbUBvw"} +2022/02/22 17:10:53 [DEBUG] Exit from do method +2022/02/22 17:10:53 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:10:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:10:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:10:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000218b80 3980 [] false false map[] 0xc000ac0600 0xc0001642c0} +2022/02/22 17:10:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:10:53 [DEBUG] Exit from do method +2022/02/22 17:10:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:10:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:53 [DEBUG] New state was assigned lineage "202e84c6-9d3f-ef6b-8b10-fb5494bdb703" +2022/02/22 17:10:53 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:10:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:10:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:10:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:53 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:53 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[3]", instance mso_dhcp_relay_policy.test[3] +2022/02/22 17:10:53 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[4]", instance mso_dhcp_relay_policy.test[4] +2022/02/22 17:10:53 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[0]", instance mso_dhcp_relay_policy.test[0] +2022/02/22 17:10:53 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[1]", instance mso_dhcp_relay_policy.test[1] +2022/02/22 17:10:53 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[2]", instance mso_dhcp_relay_policy.test[2] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:10:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:53 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test[0] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_b6lvl0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test[1] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_b6lvl1" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test[2] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_b6lvl2" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test[3] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_b6lvl3" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test[4] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_b6lvl4" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:10:53 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:10:53 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[1]", instance mso_dhcp_relay_policy.test[1] +2022/02/22 17:10:53 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[2]", instance mso_dhcp_relay_policy.test[2] +2022/02/22 17:10:53 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[3]", instance mso_dhcp_relay_policy.test[3] +2022/02/22 17:10:53 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[0]", instance mso_dhcp_relay_policy.test[0] +2022/02/22 17:10:53 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[4]", instance mso_dhcp_relay_policy.test[4] +2022/02/22 17:10:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test[0] +2022/02/22 17:10:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:10:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:10:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:10:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:10:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:10:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:10:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:10:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:10:53 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:10:53 [DEBUG] mso_dhcp_relay_policy.test[0]: applying the planned Create change +2022/02/22 17:10:53 [DEBUG] mso_dhcp_relay_policy.test[3]: applying the planned Create change +2022/02/22 17:10:53 [DEBUG] mso_dhcp_relay_policy.test[2]: applying the planned Create change +2022/02/22 17:10:53 [DEBUG] mso_dhcp_relay_policy.test[1]: applying the planned Create change +2022/02/22 17:10:53 [DEBUG] mso_dhcp_relay_policy.test[4]: applying the planned Create change +2022/02/22 17:10:53 [DEBUG] : Beginning Create +2022/02/22 17:10:53 [DEBUG] : Beginning Create +2022/02/22 17:10:53 [DEBUG] : Beginning Create +2022/02/22 17:10:53 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 [DEBUG] : Beginning Create +2022/02/22 17:10:53 [DEBUG] : Beginning Create +2022/02/22 17:10:53 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 [DEBUG] Begin Injection +2022/02/22 17:10:53 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 [DEBUG] Begin Injection +2022/02/22 17:10:53 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 [DEBUG] Begin Injection +2022/02/22 17:10:53 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 [DEBUG] Begin Injection +2022/02/22 17:10:53 [DEBUG] Begin Injection +2022/02/22 17:10:53 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00014bfc0 161 [] false false map[] 0xc00067c800 0xc0001642c0} +2022/02/22 17:10:53 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214cbc51b0000017ffd066a","name":"acctest_b6lvl1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:53 [DEBUG] Exit from do method +2022/02/22 17:10:53 [DEBUG] 6214cbc51b0000017ffd066a: Creation finished successfully +2022/02/22 17:10:53 [DEBUG] 6214cbc51b0000017ffd066a: Beginning Read +2022/02/22 17:10:53 id: 6214cbc51b0000017ffd066a +2022/02/22 17:10:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:53 [DEBUG] Begin Injection +2022/02/22 17:10:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:54 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b7c0 161 [] false false map[] 0xc00067c600 0xc0001642c0} +2022/02/22 17:10:54 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214cbc61b0000017ffd066b","name":"acctest_b6lvl2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:54 [DEBUG] Exit from do method +2022/02/22 17:10:54 [DEBUG] 6214cbc61b0000017ffd066b: Creation finished successfully +2022/02/22 17:10:54 [DEBUG] 6214cbc61b0000017ffd066b: Beginning Read +2022/02/22 17:10:54 id: 6214cbc61b0000017ffd066b +2022/02/22 17:10:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:54 [DEBUG] Begin Injection +2022/02/22 17:10:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:54 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008920c0 161 [] false false map[] 0xc0006b4700 0xc0001642c0} +2022/02/22 17:10:54 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214cbc61b0000ff7efd066c","name":"acctest_b6lvl0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:54 [DEBUG] Exit from do method +2022/02/22 17:10:54 [DEBUG] 6214cbc61b0000ff7efd066c: Creation finished successfully +2022/02/22 17:10:54 [DEBUG] 6214cbc61b0000ff7efd066c: Beginning Read +2022/02/22 17:10:54 id: 6214cbc61b0000ff7efd066c +2022/02/22 17:10:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:54 [DEBUG] Begin Injection +2022/02/22 17:10:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:54 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00042a140 161 [] false false map[] 0xc0001b8600 0xc000858580} +2022/02/22 17:10:54 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214cbc61b0000057ffd066d","name":"acctest_b6lvl4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:54 [DEBUG] Exit from do method +2022/02/22 17:10:54 [DEBUG] 6214cbc61b0000057ffd066d: Creation finished successfully +2022/02/22 17:10:54 [DEBUG] 6214cbc61b0000057ffd066d: Beginning Read +2022/02/22 17:10:54 id: 6214cbc61b0000057ffd066d +2022/02/22 17:10:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:54 [DEBUG] Begin Injection +2022/02/22 17:10:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000892280 161 [] false false map[] 0xc0001b8e00 0xc0002388f0} +2022/02/22 17:10:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a {"id":"6214cbc51b0000017ffd066a","name":"acctest_b6lvl1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:54 [DEBUG] Exit from do method +2022/02/22 17:10:54 [DEBUG] 6214cbc51b0000017ffd066a: Read finished successfully +2022/02/22 17:10:54 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:10:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000892780 161 [] false false map[] 0xc000894900 0xc0009a0580} +2022/02/22 17:10:54 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214cbc61b0000077ffd066e","name":"acctest_b6lvl3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:54 [DEBUG] Exit from do method +2022/02/22 17:10:54 [DEBUG] 6214cbc61b0000077ffd066e: Creation finished successfully +2022/02/22 17:10:54 [DEBUG] 6214cbc61b0000077ffd066e: Beginning Read +2022/02/22 17:10:54 id: 6214cbc61b0000077ffd066e +2022/02/22 17:10:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:54 [DEBUG] Begin Injection +2022/02/22 17:10:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069a300 161 [] false false map[] 0xc0006b4900 0xc0009a0630} +2022/02/22 17:10:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b {"id":"6214cbc61b0000017ffd066b","name":"acctest_b6lvl2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:54 [DEBUG] Exit from do method +2022/02/22 17:10:54 [DEBUG] 6214cbc61b0000017ffd066b: Read finished successfully +2022/02/22 17:10:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00042a340 161 [] false false map[] 0xc00080e000 0xc0001642c0} +2022/02/22 17:10:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c {"id":"6214cbc61b0000ff7efd066c","name":"acctest_b6lvl0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:54 [DEBUG] Exit from do method +2022/02/22 17:10:54 [DEBUG] 6214cbc61b0000ff7efd066c: Read finished successfully +2022/02/22 17:10:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069a7c0 161 [] false false map[] 0xc000894000 0xc000858580} +2022/02/22 17:10:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d {"id":"6214cbc61b0000057ffd066d","name":"acctest_b6lvl4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:55 [DEBUG] Exit from do method +2022/02/22 17:10:55 [DEBUG] 6214cbc61b0000057ffd066d: Read finished successfully +2022/02/22 17:10:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069a840 161 [] false false map[] 0xc000334000 0xc0008580b0} +2022/02/22 17:10:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e {"id":"6214cbc61b0000077ffd066e","name":"acctest_b6lvl3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:55 [DEBUG] Exit from do method +2022/02/22 17:10:55 [DEBUG] 6214cbc61b0000077ffd066e: Read finished successfully +2022/02/22 17:10:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:55 [DEBUG] New state was assigned lineage "4e7c9306-bd28-d1bd-0d78-464467093851" +2022/02/22 17:10:55 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:10:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:10:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:10:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:55 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:10:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:55 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:10:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:10:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:10:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:10:55 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:55 [DEBUG] : Beginning Read +2022/02/22 17:10:55 HTTP request GET mso/api/v1/tenants +2022/02/22 17:10:55 [DEBUG] Begin Injection +2022/02/22 17:10:55 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:10:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:10:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:10:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069bc80 3980 [] false false map[] 0xc00067c600 0xc0009a0630} +2022/02/22 17:10:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:10:55 [DEBUG] Exit from do method +2022/02/22 17:10:55 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:10:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:10:55 [DEBUG] 6214cbc61b0000077ffd066e: Beginning Read +2022/02/22 17:10:55 id: 6214cbc61b0000077ffd066e +2022/02/22 17:10:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:55 [DEBUG] Begin Injection +2022/02/22 17:10:55 [DEBUG] 6214cbc61b0000017ffd066b: Beginning Read +2022/02/22 17:10:55 id: 6214cbc61b0000017ffd066b +2022/02/22 17:10:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:55 [DEBUG] Begin Injection +2022/02/22 17:10:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:55 [DEBUG] 6214cbc61b0000057ffd066d: Beginning Read +2022/02/22 17:10:55 id: 6214cbc61b0000057ffd066d +2022/02/22 17:10:55 [DEBUG] 6214cbc51b0000017ffd066a: Beginning Read +2022/02/22 17:10:55 id: 6214cbc51b0000017ffd066a +2022/02/22 17:10:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:55 [DEBUG] Begin Injection +2022/02/22 17:10:55 [DEBUG] 6214cbc61b0000ff7efd066c: Beginning Read +2022/02/22 17:10:55 id: 6214cbc61b0000ff7efd066c +2022/02/22 17:10:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:55 [DEBUG] Begin Injection +2022/02/22 17:10:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:55 [DEBUG] Begin Injection +2022/02/22 17:10:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000648d40 161 [] false false map[] 0xc00067d400 0xc0002388f0} +2022/02/22 17:10:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e {"id":"6214cbc61b0000077ffd066e","name":"acctest_b6lvl3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:55 [DEBUG] Exit from do method +2022/02/22 17:10:55 [DEBUG] 6214cbc61b0000077ffd066e: Read finished successfully +2022/02/22 17:10:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000649200 161 [] false false map[] 0xc0001b8600 0xc0009a0630} +2022/02/22 17:10:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b {"id":"6214cbc61b0000017ffd066b","name":"acctest_b6lvl2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:55 [DEBUG] Exit from do method +2022/02/22 17:10:55 [DEBUG] 6214cbc61b0000017ffd066b: Read finished successfully +2022/02/22 17:10:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000892300 161 [] false false map[] 0xc000912100 0xc0002388f0} +2022/02/22 17:10:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a {"id":"6214cbc51b0000017ffd066a","name":"acctest_b6lvl1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:56 [DEBUG] Exit from do method +2022/02/22 17:10:56 [DEBUG] 6214cbc51b0000017ffd066a: Read finished successfully +2022/02/22 17:10:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000648140 161 [] false false map[] 0xc0001b8700 0xc0009a0630} +2022/02/22 17:10:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c {"id":"6214cbc61b0000ff7efd066c","name":"acctest_b6lvl0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:56 [DEBUG] Exit from do method +2022/02/22 17:10:56 [DEBUG] 6214cbc61b0000ff7efd066c: Read finished successfully +2022/02/22 17:10:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00042a140 161 [] false false map[] 0xc00067d500 0xc0002388f0} +2022/02/22 17:10:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d {"id":"6214cbc61b0000057ffd066d","name":"acctest_b6lvl4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:56 [DEBUG] Exit from do method +2022/02/22 17:10:56 [DEBUG] 6214cbc61b0000057ffd066d: Read finished successfully +2022/02/22 17:10:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:56 [DEBUG] New state was assigned lineage "7f457aad-0250-1e3c-ff4d-bbfd56a0aca0" +2022/02/22 17:10:56 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:10:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:10:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:10:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:56 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:10:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:56 [WARN] Test: Executing destroy step +2022/02/22 17:10:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:10:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:10:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:10:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:56 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:10:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:56 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:10:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:10:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:10:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:56 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:56 [DEBUG] : Beginning Read +2022/02/22 17:10:56 HTTP request GET mso/api/v1/tenants +2022/02/22 17:10:56 [DEBUG] Begin Injection +2022/02/22 17:10:56 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:10:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:10:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:10:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069bb00 3980 [] false false map[] 0xc0001b8500 0xc00072c0b0} +2022/02/22 17:10:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:10:56 [DEBUG] Exit from do method +2022/02/22 17:10:56 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:10:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:10:56 [DEBUG] 6214cbc61b0000ff7efd066c: Beginning Read +2022/02/22 17:10:56 id: 6214cbc61b0000ff7efd066c +2022/02/22 17:10:56 [DEBUG] 6214cbc51b0000017ffd066a: Beginning Read +2022/02/22 17:10:56 id: 6214cbc51b0000017ffd066a +2022/02/22 17:10:56 [DEBUG] 6214cbc61b0000057ffd066d: Beginning Read +2022/02/22 17:10:56 id: 6214cbc61b0000057ffd066d +2022/02/22 17:10:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:56 [DEBUG] Begin Injection +2022/02/22 17:10:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:56 [DEBUG] Begin Injection +2022/02/22 17:10:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:56 [DEBUG] 6214cbc61b0000077ffd066e: Beginning Read +2022/02/22 17:10:56 id: 6214cbc61b0000077ffd066e +2022/02/22 17:10:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:56 [DEBUG] Begin Injection +2022/02/22 17:10:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:56 [DEBUG] 6214cbc61b0000017ffd066b: Beginning Read +2022/02/22 17:10:56 id: 6214cbc61b0000017ffd066b +2022/02/22 17:10:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:56 [DEBUG] Begin Injection +2022/02/22 17:10:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:56 [DEBUG] Begin Injection +2022/02/22 17:10:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a080 161 [] false false map[] 0xc0006ca200 0xc0009a0630} +2022/02/22 17:10:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e {"id":"6214cbc61b0000077ffd066e","name":"acctest_b6lvl3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:57 [DEBUG] Exit from do method +2022/02/22 17:10:57 [DEBUG] 6214cbc61b0000077ffd066e: Read finished successfully +2022/02/22 17:10:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000648200 161 [] false false map[] 0xc000906100 0xc00072c0b0} +2022/02/22 17:10:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d {"id":"6214cbc61b0000057ffd066d","name":"acctest_b6lvl4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:57 [DEBUG] Exit from do method +2022/02/22 17:10:57 [DEBUG] 6214cbc61b0000057ffd066d: Read finished successfully +2022/02/22 17:10:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004aec0 161 [] false false map[] 0xc000334b00 0xc0009a0630} +2022/02/22 17:10:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b {"id":"6214cbc61b0000017ffd066b","name":"acctest_b6lvl2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:57 [DEBUG] Exit from do method +2022/02/22 17:10:57 [DEBUG] 6214cbc61b0000017ffd066b: Read finished successfully +2022/02/22 17:10:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b340 161 [] false false map[] 0xc000334a00 0xc00072c0b0} +2022/02/22 17:10:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c {"id":"6214cbc61b0000ff7efd066c","name":"acctest_b6lvl0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:57 [DEBUG] Exit from do method +2022/02/22 17:10:57 [DEBUG] 6214cbc61b0000ff7efd066c: Read finished successfully +2022/02/22 17:10:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ca100 161 [] false false map[] 0xc0009ba700 0xc0009a0630} +2022/02/22 17:10:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a {"id":"6214cbc51b0000017ffd066a","name":"acctest_b6lvl1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:10:57 [DEBUG] Exit from do method +2022/02/22 17:10:57 [DEBUG] 6214cbc51b0000017ffd066a: Read finished successfully +2022/02/22 17:10:57 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:57 [DEBUG] New state was assigned lineage "b469e1a6-6ba8-cf15-cabd-aefa10fc7dc8" +2022/02/22 17:10:57 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:10:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:10:57 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test[0] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214cbc61b0000ff7efd066c" => "" + name: "acctest_b6lvl0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test[1] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214cbc51b0000017ffd066a" => "" + name: "acctest_b6lvl1" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test[2] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214cbc61b0000017ffd066b" => "" + name: "acctest_b6lvl2" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test[3] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214cbc61b0000077ffd066e" => "" + name: "acctest_b6lvl3" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test[4] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214cbc61b0000057ffd066d" => "" + name: "acctest_b6lvl4" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test.0: + ID = 6214cbc61b0000ff7efd066c + provider = provider.mso + description = + name = acctest_b6lvl0 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test.1: + ID = 6214cbc51b0000017ffd066a + provider = provider.mso + description = + name = acctest_b6lvl1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test.2: + ID = 6214cbc61b0000017ffd066b + provider = provider.mso + description = + name = acctest_b6lvl2 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test.3: + ID = 6214cbc61b0000077ffd066e + provider = provider.mso + description = + name = acctest_b6lvl3 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test.4: + ID = 6214cbc61b0000057ffd066d + provider = provider.mso + description = + name = acctest_b6lvl4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:10:57 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:10:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test[4] (destroy) +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:10:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test[4] (destroy) +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" references: [] +2022/02/22 17:10:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:10:57 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:10:57 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:10:57 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:10:57 [DEBUG] mso_dhcp_relay_policy.test[0]: applying the planned Delete change +2022/02/22 17:10:57 [DEBUG] mso_dhcp_relay_policy.test[4]: applying the planned Delete change +2022/02/22 17:10:57 [DEBUG] mso_dhcp_relay_policy.test[1]: applying the planned Delete change +2022/02/22 17:10:57 [DEBUG] mso_dhcp_relay_policy.test[2]: applying the planned Delete change +2022/02/22 17:10:57 [DEBUG] 6214cbc61b0000ff7efd066c: Beginning Read +2022/02/22 17:10:57 [DEBUG] 6214cbc61b0000057ffd066d: Beginning Read +2022/02/22 17:10:57 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:57 [DEBUG] Begin Injection +2022/02/22 17:10:57 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:57 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:57 [DEBUG] Begin Injection +2022/02/22 17:10:57 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:57 [DEBUG] 6214cbc51b0000017ffd066a: Beginning Read +2022/02/22 17:10:57 [DEBUG] 6214cbc61b0000017ffd066b: Beginning Read +2022/02/22 17:10:57 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:57 [DEBUG] Begin Injection +2022/02/22 17:10:57 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:57 [DEBUG] mso_dhcp_relay_policy.test[3]: applying the planned Delete change +2022/02/22 17:10:57 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:57 [DEBUG] Begin Injection +2022/02/22 17:10:57 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:57 [DEBUG] 6214cbc61b0000077ffd066e: Beginning Read +2022/02/22 17:10:57 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:57 [DEBUG] Begin Injection +2022/02/22 17:10:57 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:58 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:40:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000a82100 0xc00072c0b0} +2022/02/22 17:10:58 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:58 [DEBUG] : Read finished successfully +2022/02/22 17:10:58 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:40:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000982400 0xc00040b4a0} +2022/02/22 17:10:58 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:58 [DEBUG] : Read finished successfully +2022/02/22 17:10:58 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:40:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0001b8c00 0xc00040b4a0} +2022/02/22 17:10:58 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:58 [DEBUG] : Read finished successfully +2022/02/22 17:10:58 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:40:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000982700 0xc00072c0b0} +2022/02/22 17:10:58 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:58 [DEBUG] : Read finished successfully +2022/02/22 17:10:58 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:40:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0001b8f00 0xc00040b4a0} +2022/02/22 17:10:58 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:58 [DEBUG] : Read finished successfully +2022/02/22 17:10:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:10:58 [DEBUG] New state was assigned lineage "de331b38-14f4-ec5b-c60b-9a62e6620bab" +2022/02/22 17:10:58 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:58 [DEBUG] Begin Injection +2022/02/22 17:10:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a +2022/02/22 17:10:59 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:58 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000732200 86 [] false false map[] 0xc000936000 0xc000a80000} +2022/02/22 17:10:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc51b0000017ffd066a {"code":141,"message":"Resource Not Found: Policy 6214cbc51b0000017ffd066a not found"} +2022/02/22 17:10:59 [DEBUG] Exit from do method +2022/02/22 17:10:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:59 [DEBUG] Begin Injection +2022/02/22 17:10:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b +2022/02/22 17:10:59 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:59 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069a040 86 [] false false map[] 0xc000982000 0xc000a80000} +2022/02/22 17:10:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000017ffd066b {"code":141,"message":"Resource Not Found: Policy 6214cbc61b0000017ffd066b not found"} +2022/02/22 17:10:59 [DEBUG] Exit from do method +2022/02/22 17:10:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:59 [DEBUG] Begin Injection +2022/02/22 17:10:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e +2022/02/22 17:10:59 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:59 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000732080 86 [] false false map[] 0xc000936000 0xc000a80000} +2022/02/22 17:10:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000077ffd066e {"code":141,"message":"Resource Not Found: Policy 6214cbc61b0000077ffd066e not found"} +2022/02/22 17:10:59 [DEBUG] Exit from do method +2022/02/22 17:10:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:59 [DEBUG] Begin Injection +2022/02/22 17:10:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d +2022/02/22 17:10:59 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:40:59 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069a340 86 [] false false map[] 0xc000982200 0xc000a80000} +2022/02/22 17:10:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000057ffd066d {"code":141,"message":"Resource Not Found: Policy 6214cbc61b0000057ffd066d not found"} +2022/02/22 17:10:59 [DEBUG] Exit from do method +2022/02/22 17:10:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:59 [DEBUG] Begin Injection +2022/02/22 17:10:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:10:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:11:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c +2022/02/22 17:11:00 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:41:00 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00069a400 86 [] false false map[] 0xc000982300 0xc000a80000} +2022/02/22 17:11:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214cbc61b0000ff7efd066c {"code":141,"message":"Resource Not Found: Policy 6214cbc61b0000ff7efd066c not found"} +2022/02/22 17:11:00 [DEBUG] Exit from do method +2022/02/22 17:11:00 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:11:00 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:11:00 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:11:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:11:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:11:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:11:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:11:00 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:11:00 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:11:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:11:00 [DEBUG] : Beginning Read +2022/02/22 17:11:00 HTTP request GET mso/api/v1/tenants +2022/02/22 17:11:00 [DEBUG] Begin Injection +2022/02/22 17:11:00 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:11:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:11:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:11:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:41:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b000 3980 [] false false map[] 0xc000936100 0xc000a80000} +2022/02/22 17:11:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:11:00 [DEBUG] Exit from do method +2022/02/22 17:11:00 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:11:00 [DEBUG] provider has no plugin.Client +2022/02/22 17:11:00 [DEBUG] New state was assigned lineage "afa67b94-0b8a-80ea-aa19-abf359fed6c9" +2022/02/22 17:11:00 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:11:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:11:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:11:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:11:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:11:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:11:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:11:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:11:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:11:00 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:14:47 [DEBUG] Test: Executing step 0 +2022/02/22 17:14:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:47 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:14:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:14:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:14:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:47 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:14:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:47 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:14:47 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:14:47 [DEBUG] New state was assigned lineage "f45db94e-c3df-f57a-b8fe-50ec6c3b2161" +2022/02/22 17:14:47 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:14:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:14:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:14:47 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:14:47 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:14:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:14:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:47 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "twdkj" + tenant_id: "" => "twdkj" + + + +STATE: + + +2022/02/22 17:14:47 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:14:47 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:14:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:14:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:14:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:14:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:14:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:14:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:47 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:14:47 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:14:47 [DEBUG] : Beginning Create +2022/02/22 17:14:47 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:14:47 [DEBUG] Begin Injection +2022/02/22 17:14:47 HTTP request POST /login +2022/02/22 17:14:47 HTTP request after injection POST /login +2022/02/22 17:14:47 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:14:48 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:14:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:48 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzE0ODgsImlhdCI6MTY0NTUzMDI4OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJlaD1NV1B1TzRIeFhSMjVWRXM5cVFmNT0iLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.aEe6NCgJ_OlUz9xj6VbpynbdBgLow24CQYCnvbzLSOqi4DkBwYpPDCb9wz0WQyfwTEC5OL4Vq89CivhBVsLXlxVg5nPOx7juOyFI-3Y3dUb5UWUcgGyCQe0OFQsHch5wonONvyiEPgIOwf7Aeoy4_1YLPhCeLSNfKeXITPrG3dMRbFdHBpWMt9nBEoYeqbd67-vIQCanfwslA7FuIzZQWGaw5KTzjpl8xVjvbVrub8-UXZMEJA7HCGcHFyRobFtnQk4T1n166Ob-0-kix7JMmSBGtg35HoAUtlZLrtSl44g_qQTuY2UbAxCHKpokDc62R7xUgCc_fQx2cZcJRqTQ0g; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0007e4a40 -1 [chunked] false false map[] 0xc0000a8700 0xc00040b550} +2022/02/22 17:14:48 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzE0ODgsImlhdCI6MTY0NTUzMDI4OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJlaD1NV1B1TzRIeFhSMjVWRXM5cVFmNT0iLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.aEe6NCgJ_OlUz9xj6VbpynbdBgLow24CQYCnvbzLSOqi4DkBwYpPDCb9wz0WQyfwTEC5OL4Vq89CivhBVsLXlxVg5nPOx7juOyFI-3Y3dUb5UWUcgGyCQe0OFQsHch5wonONvyiEPgIOwf7Aeoy4_1YLPhCeLSNfKeXITPrG3dMRbFdHBpWMt9nBEoYeqbd67-vIQCanfwslA7FuIzZQWGaw5KTzjpl8xVjvbVrub8-UXZMEJA7HCGcHFyRobFtnQk4T1n166Ob-0-kix7JMmSBGtg35HoAUtlZLrtSl44g_qQTuY2UbAxCHKpokDc62R7xUgCc_fQx2cZcJRqTQ0g","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzE0ODgsImlhdCI6MTY0NTUzMDI4OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJlaD1NV1B1TzRIeFhSMjVWRXM5cVFmNT0iLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.aEe6NCgJ_OlUz9xj6VbpynbdBgLow24CQYCnvbzLSOqi4DkBwYpPDCb9wz0WQyfwTEC5OL4Vq89CivhBVsLXlxVg5nPOx7juOyFI-3Y3dUb5UWUcgGyCQe0OFQsHch5wonONvyiEPgIOwf7Aeoy4_1YLPhCeLSNfKeXITPrG3dMRbFdHBpWMt9nBEoYeqbd67-vIQCanfwslA7FuIzZQWGaw5KTzjpl8xVjvbVrub8-UXZMEJA7HCGcHFyRobFtnQk4T1n166Ob-0-kix7JMmSBGtg35HoAUtlZLrtSl44g_qQTuY2UbAxCHKpokDc62R7xUgCc_fQx2cZcJRqTQ0g"} +2022/02/22 17:14:48 [DEBUG] Exit from do method +2022/02/22 17:14:48 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:14:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:14:48 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:14:48 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[97] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:48 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a700 97 [] false false map[] 0xc0000a8600 0xc00040b550} +2022/02/22 17:14:48 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: The tenant with id twdkj is not found for the current user."} +2022/02/22 17:14:48 [DEBUG] Exit from do method +2022/02/22 17:14:48 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: The tenant with id twdkj is not found for the current user."{} +2022/02/22 17:14:48 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: The tenant with id twdkj is not found for the current user."{} +2022/02/22 17:14:48 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: The tenant with id twdkj is not found for the current user."{} +2022/02/22 17:14:48 [DEBUG] New state was assigned lineage "41f1ab84-653d-e9ef-6205-16bb39373e21" +2022/02/22 17:14:48 [DEBUG] Test: Executing step 1 +2022/02/22 17:14:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:48 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:14:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:48 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:14:48 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of name to be in the range (1 - 1000), got 6nxc2ln3hhsjouszjsesi13t099b7uo6s9u3bn9f3sdymqaa9laso3okm1dxxzbdxqkdxcm7igjqzrnmj04eyg4g1jxtrf2o2kng0df2z2dbhtb4w7a0essgtnibdbll3cw61jftkobbn1ux4rwm6pcwfssqz69dnoun3ndb8x0q1pk6k837ez6yatub21ituun7ld4qw6gzmdkzx7hxytik6p2dp82j0csmgkpkrjqm0rrwldybyyvs12lzp2plookiu41cs09fe033f703lnqb1tncuhiuh2uumisidf9cfp6a0rb3wcz18oxu322ua2nm7d3nspbbel3kn8ez97iufojjkhi6wjjncdevc0ntihm824za0fx4kyujtb1v8egcgcmcju7g1fxzlfh9l9r8elantj6c2oomy8nuvinyr0r1ao4mnstv6kgpcqu3xquj3rf6g1cys82bffru2kcr7isqf7jd6qxp3dbvnwr4xdlgensl7vpy7tnpgzas6w0fd1vyvq6uirazkbgx0zthcikoyqwh0c3qxdwddyq18vunnh2wjdjch4a8oope21c0mc6ah9aiu8pdk6bpkl36m6qp922cbnb7oneq1bax337sp0fsr69hvb2lr9qhjnc0zdw3zno8c6cdklx8i7nbgnu8jgixt9iibyicene0478rgxtq4trghwe44lskdnvvqslvpmyzmqmheatb2nbcjoggz3jae2nj38gyi8kiu0uqusg7470sqipte9sb8b0nzm9ozybr4r8k3dui4aqwvh4yz2cvlb9s08stqu9a3mgkel04m6zss72700hx2itm7cn1lah1qicdu3f1q87x24cqnnj4s7e9xoomwmb8h2a9l1izw4p6mrdvhc0fxnx40aqcn7q80nahckicgq47volid6rp6xa7bpkiqu1zkdq9wxcuskv03z9p9eguepn86mgu7vgzpuvmsfnyeqnvlmvieepxyxo0qr2ka +2022/02/22 17:14:48 [ERROR] : eval: *terraform.EvalSequence, err: expected length of name to be in the range (1 - 1000), got 6nxc2ln3hhsjouszjsesi13t099b7uo6s9u3bn9f3sdymqaa9laso3okm1dxxzbdxqkdxcm7igjqzrnmj04eyg4g1jxtrf2o2kng0df2z2dbhtb4w7a0essgtnibdbll3cw61jftkobbn1ux4rwm6pcwfssqz69dnoun3ndb8x0q1pk6k837ez6yatub21ituun7ld4qw6gzmdkzx7hxytik6p2dp82j0csmgkpkrjqm0rrwldybyyvs12lzp2plookiu41cs09fe033f703lnqb1tncuhiuh2uumisidf9cfp6a0rb3wcz18oxu322ua2nm7d3nspbbel3kn8ez97iufojjkhi6wjjncdevc0ntihm824za0fx4kyujtb1v8egcgcmcju7g1fxzlfh9l9r8elantj6c2oomy8nuvinyr0r1ao4mnstv6kgpcqu3xquj3rf6g1cys82bffru2kcr7isqf7jd6qxp3dbvnwr4xdlgensl7vpy7tnpgzas6w0fd1vyvq6uirazkbgx0zthcikoyqwh0c3qxdwddyq18vunnh2wjdjch4a8oope21c0mc6ah9aiu8pdk6bpkl36m6qp922cbnb7oneq1bax337sp0fsr69hvb2lr9qhjnc0zdw3zno8c6cdklx8i7nbgnu8jgixt9iibyicene0478rgxtq4trghwe44lskdnvvqslvpmyzmqmheatb2nbcjoggz3jae2nj38gyi8kiu0uqusg7470sqipte9sb8b0nzm9ozybr4r8k3dui4aqwvh4yz2cvlb9s08stqu9a3mgkel04m6zss72700hx2itm7cn1lah1qicdu3f1q87x24cqnnj4s7e9xoomwmb8h2a9l1izw4p6mrdvhc0fxnx40aqcn7q80nahckicgq47volid6rp6xa7bpkiqu1zkdq9wxcuskv03z9p9eguepn86mgu7vgzpuvmsfnyeqnvlmvieepxyxo0qr2ka +2022/02/22 17:14:48 [DEBUG] Test: Executing step 2 +2022/02/22 17:14:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:48 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:14:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:48 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:14:48 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of description to be in the range (1 - 1000), got tvlx078fxezvxjwavl3s3g0hli46u4yeh88lv1sq2oq7v96yiqq9px810mpdni90y6nx64uefv2ffq1e9cejdpc02088o4erme2mokycxu28n0lxbp032el0mmjtoasrz2wk0d77b8hbtv2ukddoha1orvjfw9sv3wotf2ryrak8boa7z64zs4fafc8ecqp7w96ttafljqlj6xxfkb04dr3my8q9wdz13o3via8xk964hu18cjby724dujpf1lqmclyfttz9zvaxgsabvr4r7pq807g0h0nneytdqmmp1eeo0dclvo3v4ji7o1haui0vn92jxa2km2sfeq3n7i9ij6lzr12dl3z0ph9i47m87d94bkyn87i2iqu0fowgk13mbtli2d80x8tvnn90z1sqzz0liubgtdootw81urfpfm9f6r311ezg028zvgjyxfdbr3yq19qmsj46bdww9pmvg04p1ufcaulmsivt6pgw80vy06qui2vjnoxlyrcjxk8cobm0cqigywq6ncj4ax0ua9po9wx19ol82x1lkipqam12m87qn7abvc2f3zaqvlbb4lhoht1nwe6xzt6eh9djzlcqzpjm9p2o9i7crtoa4hnqnlhxpv020wfag2l6cd06yji4ue7nrwxjrh2d3r4dj0izqeb83zfaae1omk367ncgwmin3b7oi9jkgex0nbat7v2f21hwlor92afe3iy4upzfy1gwju8mpw0dypa7navzbgg82ww2ua3yuh7ixv4xixmdp6psx91qxyta9w0hwtrzvw16nfl63ihl8fwb4witqa7v9tt6ff8qp3xpjp0e4ttjbudpqz7ibzwqw6netdxnxpvalhj91ira2qw1cceq4l2o6hdg494gjokuudyynlcuspojfltcafonxs4pe2byfy9jsj2tca1sqcc7s9vg0beojlynxynxacrnnyqavfkfl78torlbbd1lqrocvnszc9v1ewzhar23ksh0d +2022/02/22 17:14:48 [ERROR] : eval: *terraform.EvalSequence, err: expected length of description to be in the range (1 - 1000), got tvlx078fxezvxjwavl3s3g0hli46u4yeh88lv1sq2oq7v96yiqq9px810mpdni90y6nx64uefv2ffq1e9cejdpc02088o4erme2mokycxu28n0lxbp032el0mmjtoasrz2wk0d77b8hbtv2ukddoha1orvjfw9sv3wotf2ryrak8boa7z64zs4fafc8ecqp7w96ttafljqlj6xxfkb04dr3my8q9wdz13o3via8xk964hu18cjby724dujpf1lqmclyfttz9zvaxgsabvr4r7pq807g0h0nneytdqmmp1eeo0dclvo3v4ji7o1haui0vn92jxa2km2sfeq3n7i9ij6lzr12dl3z0ph9i47m87d94bkyn87i2iqu0fowgk13mbtli2d80x8tvnn90z1sqzz0liubgtdootw81urfpfm9f6r311ezg028zvgjyxfdbr3yq19qmsj46bdww9pmvg04p1ufcaulmsivt6pgw80vy06qui2vjnoxlyrcjxk8cobm0cqigywq6ncj4ax0ua9po9wx19ol82x1lkipqam12m87qn7abvc2f3zaqvlbb4lhoht1nwe6xzt6eh9djzlcqzpjm9p2o9i7crtoa4hnqnlhxpv020wfag2l6cd06yji4ue7nrwxjrh2d3r4dj0izqeb83zfaae1omk367ncgwmin3b7oi9jkgex0nbat7v2f21hwlor92afe3iy4upzfy1gwju8mpw0dypa7navzbgg82ww2ua3yuh7ixv4xixmdp6psx91qxyta9w0hwtrzvw16nfl63ihl8fwb4witqa7v9tt6ff8qp3xpjp0e4ttjbudpqz7ibzwqw6netdxnxpvalhj91ira2qw1cceq4l2o6hdg494gjokuudyynlcuspojfltcafonxs4pe2byfy9jsj2tca1sqcc7s9vg0beojlynxynxacrnnyqavfkfl78torlbbd1lqrocvnszc9v1ewzhar23ksh0d +2022/02/22 17:14:48 [DEBUG] Test: Executing step 3 +2022/02/22 17:14:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:48 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:14:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:48 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:14:48 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "hjdwf" is not expected here. +2022/02/22 17:14:48 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "hjdwf" is not expected here. +2022/02/22 17:14:48 [DEBUG] Test: Executing step 4 +2022/02/22 17:14:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:48 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:14:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test1 +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:48 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:14:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:48 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:14:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:14:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:48 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:14:48 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:14:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:48 [DEBUG] : Beginning Read +2022/02/22 17:14:48 HTTP request GET mso/api/v1/tenants +2022/02/22 17:14:48 [DEBUG] Begin Injection +2022/02/22 17:14:48 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:14:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:14:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:14:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a800 3980 [] false false map[] 0xc000c1e200 0xc00040b550} +2022/02/22 17:14:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:14:49 [DEBUG] Exit from do method +2022/02/22 17:14:49 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:14:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:49 [DEBUG] New state was assigned lineage "cbb6b25a-930d-68bd-0304-2a6a2121acfd" +2022/02/22 17:14:49 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:14:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:14:49 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:49 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:14:49 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:14:49 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:14:49 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 17:14:49 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:14:49 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:14:49 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:14:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:49 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "2" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.57.213" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + dhcp_relay_policy_provider.1.dhcp_server_address: "" => "1.2.57.213" + dhcp_relay_policy_provider.1.external_epg: "" => "" + dhcp_relay_policy_provider.1.tenant_id: "" => "" + id: "" => "" + name: "" => "acctest_bhzrc" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_czy9b" + template_name: "" => "acctest_yculq" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_zsic7" + external_epg_name: "" => "acctest_zsic7" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_yculq" + vrf_name: "" => "acctest_zsic7" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_external_epg.test1 + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_zsic7" + external_epg_name: "" => "acctest_zsic7" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_yculq" + vrf_name: "" => "acctest_zsic7" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_zsic7" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_zsic7" + schema_id: "" => "" + template: "" => "acctest_yculq" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:14:49 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:14:49 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:14:49 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:14:49 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:14:49 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 17:14:49 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:14:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test1 (prepare state) +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1 mso_schema_template_external_epg.test1 mso_schema_template_external_epg.test1 (prepare state)] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (prepare state)" references: [] +2022/02/22 17:14:49 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:14:49 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:14:49 [DEBUG] Schema: Beginning Creation +2022/02/22 17:14:49 HTTP request POST mso/api/v1/schemas +2022/02/22 17:14:49 [DEBUG] Begin Injection +2022/02/22 17:14:49 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:14:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:14:49 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:14:49 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214ccb11d00000e554f9ec7] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a6c240 400 [] false false map[] 0xc000f20300 0xc00040b550} +2022/02/22 17:14:49 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214ccb11d00000e554f9ec7","displayName":"acctest_czy9b","description":"","templates":[{"name":"acctest_yculq","displayName":"acctest_yculq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:14:49 [DEBUG] Exit from do method +2022/02/22 17:14:49 [DEBUG] 6214ccb11d00000e554f9ec7: Schema Creation finished successfully +2022/02/22 17:14:49 [DEBUG] 6214ccb11d00000e554f9ec7: Beginning Read +2022/02/22 17:14:49 HTTP request GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:49 [DEBUG] Begin Injection +2022/02/22 17:14:49 HTTP request after injection GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00060ea80 400 [] false false map[] 0xc0009d8300 0xc00040b550} +2022/02/22 17:14:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 {"id":"6214ccb11d00000e554f9ec7","displayName":"acctest_czy9b","description":"","templates":[{"name":"acctest_yculq","displayName":"acctest_yculq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:14:50 [DEBUG] Exit from do method +2022/02/22 17:14:50 [DEBUG] 6214ccb11d00000e554f9ec7: Read finished successfully +2022/02/22 17:14:50 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:14:50 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:14:50 HTTP request PATCH mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:50 [DEBUG] Begin Injection +2022/02/22 17:14:50 HTTP request after injection PATCH mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:44:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00105a500 0xc00040b550} +2022/02/22 17:14:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:50 [DEBUG] acctest_zsic7: Creation finished successfully +2022/02/22 17:14:50 [DEBUG] acctest_zsic7: Beginning Read +2022/02/22 17:14:50 HTTP request GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:50 [DEBUG] Begin Injection +2022/02/22 17:14:50 HTTP request after injection GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a6de00 768 [] false false map[] 0xc00105a700 0xc00040b550} +2022/02/22 17:14:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 {"id":"6214ccb11d00000e554f9ec7","displayName":"acctest_czy9b","description":"","templates":[{"name":"acctest_yculq","displayName":"acctest_yculq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:14:50 [DEBUG] Exit from do method +2022/02/22 17:14:50 currentvrfname acctest_zsic7 +2022/02/22 17:14:50 found correct vrfname +2022/02/22 17:14:50 [DEBUG] acctest_zsic7: Read finished successfully +2022/02/22 17:14:50 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:14:50 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:14:50 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:14:50 [DEBUG] mso_schema_template_external_epg.test1: applying the planned Create change +2022/02/22 17:14:50 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:14:50 HTTP request PATCH mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:50 [DEBUG] Begin Injection +2022/02/22 17:14:50 HTTP request after injection PATCH mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:50 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:14:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:50 HTTP request PATCH mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:50 [DEBUG] Begin Injection +2022/02/22 17:14:50 HTTP request after injection PATCH mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:51 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:44:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0000a8600 0xc00040b550} +2022/02/22 17:14:51 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:51 [DEBUG] : Beginning Read +2022/02/22 17:14:51 HTTP request GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:51 [DEBUG] Begin Injection +2022/02/22 17:14:51 HTTP request after injection GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:51 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:44:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0009d8500 0xc00040b550} +2022/02/22 17:14:51 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7?validate=false +2022/02/22 17:14:51 [DEBUG] : Beginning Read +2022/02/22 17:14:51 HTTP request GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:51 [DEBUG] Begin Injection +2022/02/22 17:14:51 HTTP request after injection GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e4ac0 1527 [] false false map[] 0xc001198300 0xc00040b550} +2022/02/22 17:14:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 {"id":"6214ccb11d00000e554f9ec7","displayName":"acctest_czy9b","description":"","templates":[{"name":"acctest_yculq","displayName":"acctest_yculq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","extEpgType":"on-premise","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7","anpRef":"","description":""},{"name":"acctest_zsic7","displayName":"acctest_zsic7","extEpgType":"on-premise","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:14:51 [DEBUG] Exit from do method +2022/02/22 17:14:51 [DEBUG] /schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7: Read finished successfully +2022/02/22 17:14:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a6c040 1527 [] false false map[] 0xc00105a100 0xc0001e8160} +2022/02/22 17:14:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 {"id":"6214ccb11d00000e554f9ec7","displayName":"acctest_czy9b","description":"","templates":[{"name":"acctest_yculq","displayName":"acctest_yculq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","extEpgType":"on-premise","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7","anpRef":"","description":""},{"name":"acctest_zsic7","displayName":"acctest_zsic7","extEpgType":"on-premise","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:14:51 [DEBUG] Exit from do method +2022/02/22 17:14:51 [DEBUG] /schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7: Read finished successfully +2022/02/22 17:14:51 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:14:51 [DEBUG] : Beginning Create +2022/02/22 17:14:51 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:14:51 [DEBUG] Begin Injection +2022/02/22 17:14:51 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:14:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:14:52 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:14:52 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[74] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:52 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a6c100 74 [] false false map[] 0xc00105ac00 0xc0001e8160} +2022/02/22 17:14:52 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: externalEpgRef cannot be duplicated."} +2022/02/22 17:14:52 [DEBUG] Exit from do method +2022/02/22 17:14:52 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 17:14:52 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 17:14:52 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 17:14:52 [DEBUG] New state was assigned lineage "47daa155-53c5-4429-6079-00452130513a" +2022/02/22 17:14:52 [DEBUG] Test: Executing step 5 +2022/02/22 17:14:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:14:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:14:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:14:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:52 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:14:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:52 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test1 because it has no config +2022/02/22 17:14:52 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:14:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:14:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:14:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:14:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:14:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:14:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:14:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:14:52 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:52 [DEBUG] : Beginning Read +2022/02/22 17:14:52 HTTP request GET mso/api/v1/tenants +2022/02/22 17:14:52 [DEBUG] Begin Injection +2022/02/22 17:14:52 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:14:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:14:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:14:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e5280 3980 [] false false map[] 0xc00105a500 0xc000ef4000} +2022/02/22 17:14:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:14:52 [DEBUG] Exit from do method +2022/02/22 17:14:52 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:14:52 [DEBUG] 6214ccb11d00000e554f9ec7: Beginning Read +2022/02/22 17:14:52 HTTP request GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:52 [DEBUG] Begin Injection +2022/02/22 17:14:52 HTTP request after injection GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000218440 1527 [] false false map[] 0xc0009d9d00 0xc00060cc60} +2022/02/22 17:14:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 {"id":"6214ccb11d00000e554f9ec7","displayName":"acctest_czy9b","description":"","templates":[{"name":"acctest_yculq","displayName":"acctest_yculq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","extEpgType":"on-premise","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7","anpRef":"","description":""},{"name":"acctest_zsic7","displayName":"acctest_zsic7","extEpgType":"on-premise","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:14:52 [DEBUG] Exit from do method +2022/02/22 17:14:52 [DEBUG] 6214ccb11d00000e554f9ec7: Read finished successfully +2022/02/22 17:14:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:14:52 [DEBUG] acctest_zsic7: Beginning Read +2022/02/22 17:14:52 HTTP request GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:52 [DEBUG] Begin Injection +2022/02/22 17:14:52 HTTP request after injection GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011b0580 1527 [] false false map[] 0xc0009d8300 0xc00060cc60} +2022/02/22 17:14:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 {"id":"6214ccb11d00000e554f9ec7","displayName":"acctest_czy9b","description":"","templates":[{"name":"acctest_yculq","displayName":"acctest_yculq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","extEpgType":"on-premise","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7","anpRef":"","description":""},{"name":"acctest_zsic7","displayName":"acctest_zsic7","extEpgType":"on-premise","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:14:53 [DEBUG] Exit from do method +2022/02/22 17:14:53 currentvrfname acctest_zsic7 +2022/02/22 17:14:53 found correct vrfname +2022/02/22 17:14:53 [DEBUG] acctest_zsic7: Read finished successfully +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:14:53 [DEBUG] /schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7: Beginning Read +2022/02/22 17:14:53 HTTP request GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:53 [DEBUG] Begin Injection +2022/02/22 17:14:53 HTTP request after injection GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:53 [DEBUG] /schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7: Beginning Read +2022/02/22 17:14:53 HTTP request GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:53 [DEBUG] Begin Injection +2022/02/22 17:14:53 HTTP request after injection GET mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000218a40 1527 [] false false map[] 0xc00105a200 0xc00040b550} +2022/02/22 17:14:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 {"id":"6214ccb11d00000e554f9ec7","displayName":"acctest_czy9b","description":"","templates":[{"name":"acctest_yculq","displayName":"acctest_yculq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","extEpgType":"on-premise","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7","anpRef":"","description":""},{"name":"acctest_zsic7","displayName":"acctest_zsic7","extEpgType":"on-premise","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:14:53 [DEBUG] Exit from do method +2022/02/22 17:14:53 [DEBUG] /schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7: Read finished successfully +2022/02/22 17:14:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 +2022/02/22 17:14:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b0c0 1527 [] false false map[] 0xc0000a8600 0xc00060cc60} +2022/02/22 17:14:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214ccb11d00000e554f9ec7 {"id":"6214ccb11d00000e554f9ec7","displayName":"acctest_czy9b","description":"","templates":[{"name":"acctest_yculq","displayName":"acctest_yculq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_zsic7","displayName":"acctest_zsic7","extEpgType":"on-premise","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7","anpRef":"","description":""},{"name":"acctest_zsic7","displayName":"acctest_zsic7","extEpgType":"on-premise","vrfRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/vrfs/acctest_zsic7","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:14:53 [DEBUG] Exit from do method +2022/02/22 17:14:53 [DEBUG] /schemas/6214ccb11d00000e554f9ec7/templates/acctest_yculq/externalEpgs/acctest_zsic7: Read finished successfully +2022/02/22 17:14:53 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:14:53 [ERROR] : eval: *terraform.EvalDiff, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: twdkj +2022/02/22 17:14:53 [ERROR] : eval: *terraform.EvalSequence, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: twdkj +2022/02/22 17:14:53 [DEBUG] New state was assigned lineage "3776206d-b5b0-6b84-2939-8e0f0555bd45" +2022/02/22 17:14:53 [DEBUG] Test: Executing step 6 +2022/02/22 17:14:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:53 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:14:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:53 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:14:53 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "hjdwf" is not expected here. +2022/02/22 17:14:53 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "hjdwf" is not expected here. +2022/02/22 17:14:53 [DEBUG] Test: Executing step 7 +2022/02/22 17:14:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:53 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:14:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:53 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:14:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:53 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:14:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:53 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:14:53 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:53 [DEBUG] : Beginning Read +2022/02/22 17:14:53 HTTP request GET mso/api/v1/tenants +2022/02/22 17:14:53 [DEBUG] Begin Injection +2022/02/22 17:14:53 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:14:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:14:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:14:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00060e0c0 3980 [] false false map[] 0xc000d13700 0xc00060cc60} +2022/02/22 17:14:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:14:53 [DEBUG] Exit from do method +2022/02/22 17:14:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:14:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:53 [DEBUG] New state was assigned lineage "01c09db9-2443-d1d4-e0ac-abefdcde95ca" +2022/02/22 17:14:53 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:14:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:53 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:53 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:14:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:53 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "twdkj" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:14:53 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:14:53 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:14:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:14:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:53 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:14:53 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:14:53 [DEBUG] : Beginning Create +2022/02/22 17:14:53 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:14:53 [DEBUG] Begin Injection +2022/02/22 17:14:53 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:14:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:14:54 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:14:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[152] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00060e0c0 152 [] false false map[] 0xc000d12500 0xc00060cc60} +2022/02/22 17:14:54 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214ccb61b0000407ffd0670","name":"twdkj","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:14:54 [DEBUG] Exit from do method +2022/02/22 17:14:54 [DEBUG] 6214ccb61b0000407ffd0670: Creation finished successfully +2022/02/22 17:14:54 [DEBUG] 6214ccb61b0000407ffd0670: Beginning Read +2022/02/22 17:14:54 id: 6214ccb61b0000407ffd0670 +2022/02/22 17:14:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:54 [DEBUG] Begin Injection +2022/02/22 17:14:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[152] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e4100 152 [] false false map[] 0xc0000a8100 0xc00060cc60} +2022/02/22 17:14:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 {"id":"6214ccb61b0000407ffd0670","name":"twdkj","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:14:54 [DEBUG] Exit from do method +2022/02/22 17:14:54 [DEBUG] 6214ccb61b0000407ffd0670: Read finished successfully +2022/02/22 17:14:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:54 [DEBUG] New state was assigned lineage "9aa9f44c-a27b-01a3-51e0-17d27ebba702" +2022/02/22 17:14:54 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:14:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:14:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:14:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:54 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:14:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:14:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:54 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:14:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:14:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:14:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:14:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:14:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:54 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:14:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:54 [DEBUG] : Beginning Read +2022/02/22 17:14:54 HTTP request GET mso/api/v1/tenants +2022/02/22 17:14:54 [DEBUG] Begin Injection +2022/02/22 17:14:54 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:14:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:14:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:14:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e4800 3980 [] false false map[] 0xc000f1a100 0xc00060cc60} +2022/02/22 17:14:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:14:55 [DEBUG] Exit from do method +2022/02/22 17:14:55 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:14:55 [DEBUG] 6214ccb61b0000407ffd0670: Beginning Read +2022/02/22 17:14:55 id: 6214ccb61b0000407ffd0670 +2022/02/22 17:14:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:55 [DEBUG] Begin Injection +2022/02/22 17:14:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[152] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005e4980 152 [] false false map[] 0xc0009d9b00 0xc00060cc60} +2022/02/22 17:14:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 {"id":"6214ccb61b0000407ffd0670","name":"twdkj","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:14:55 [DEBUG] Exit from do method +2022/02/22 17:14:55 [DEBUG] 6214ccb61b0000407ffd0670: Read finished successfully +2022/02/22 17:14:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:55 [DEBUG] New state was assigned lineage "7faabc9b-60fb-fa34-d49c-9901017cc04d" +2022/02/22 17:14:55 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:14:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:14:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:55 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:14:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:55 [WARN] Test: Executing destroy step +2022/02/22 17:14:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:55 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:14:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:14:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:55 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:14:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:55 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:14:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:14:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:14:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:55 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:55 [DEBUG] : Beginning Read +2022/02/22 17:14:55 HTTP request GET mso/api/v1/tenants +2022/02/22 17:14:55 [DEBUG] Begin Injection +2022/02/22 17:14:55 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:14:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:14:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:14:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b18040 3980 [] false false map[] 0xc0015e0300 0xc00060cc60} +2022/02/22 17:14:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:14:55 [DEBUG] Exit from do method +2022/02/22 17:14:55 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:14:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:14:55 [DEBUG] 6214ccb61b0000407ffd0670: Beginning Read +2022/02/22 17:14:55 id: 6214ccb61b0000407ffd0670 +2022/02/22 17:14:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:55 [DEBUG] Begin Injection +2022/02/22 17:14:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[152] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a6db00 152 [] false false map[] 0xc0015e0800 0xc00060cc60} +2022/02/22 17:14:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 {"id":"6214ccb61b0000407ffd0670","name":"twdkj","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:14:56 [DEBUG] Exit from do method +2022/02/22 17:14:56 [DEBUG] 6214ccb61b0000407ffd0670: Read finished successfully +2022/02/22 17:14:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:56 [DEBUG] New state was assigned lineage "130b1584-f496-5e86-836c-269874a44313" +2022/02/22 17:14:56 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:14:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:14:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:56 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:14:56 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214ccb61b0000407ffd0670" => "" + name: "twdkj" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214ccb61b0000407ffd0670 + provider = provider.mso + description = + name = twdkj + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:14:56 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:14:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:14:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:56 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:14:56 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:14:56 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:14:56 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:14:56 [DEBUG] 6214ccb61b0000407ffd0670: Beginning Read +2022/02/22 17:14:56 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:56 [DEBUG] Begin Injection +2022/02/22 17:14:56 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:56 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:56 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:44:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0015e1800 0xc00060cc60} +2022/02/22 17:14:56 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:56 [DEBUG] : Read finished successfully +2022/02/22 17:14:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:56 [DEBUG] New state was assigned lineage "1fc2b405-5572-842d-3c6e-72147f5cee6a" +2022/02/22 17:14:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:56 [DEBUG] Begin Injection +2022/02/22 17:14:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 +2022/02/22 17:14:56 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:56 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a6c880 86 [] false false map[] 0xc0000a8200 0xc00060cc60} +2022/02/22 17:14:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214ccb61b0000407ffd0670 {"code":141,"message":"Resource Not Found: Policy 6214ccb61b0000407ffd0670 not found"} +2022/02/22 17:14:56 [DEBUG] Exit from do method +2022/02/22 17:14:56 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:14:56 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:14:56 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:14:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:14:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:56 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:14:56 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:14:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:56 [DEBUG] : Beginning Read +2022/02/22 17:14:56 HTTP request GET mso/api/v1/tenants +2022/02/22 17:14:56 [DEBUG] Begin Injection +2022/02/22 17:14:56 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:14:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:14:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:14:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:44:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007e4380 3980 [] false false map[] 0xc0009d9c00 0xc00060cc60} +2022/02/22 17:14:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:14:57 [DEBUG] Exit from do method +2022/02/22 17:14:57 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:14:57 [DEBUG] provider has no plugin.Client +2022/02/22 17:14:57 [DEBUG] New state was assigned lineage "8d585e11-6abc-32c1-be27-7fda5ad33d0c" +2022/02/22 17:14:57 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:14:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:14:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:14:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:14:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:14:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:14:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:14:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:14:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:14:57 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:29:41 [DEBUG] Test: Executing step 0 +2022/02/22 17:29:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:29:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:29:41 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 17:29:41 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 17:29:41 [DEBUG] Test: Executing step 1 +2022/02/22 17:29:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:29:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:29:41 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:29:41 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:29:41 [DEBUG] Test: Executing step 2 +2022/02/22 17:29:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:29:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:29:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:29:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:29:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:29:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:29:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:29:41 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:29:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:41 [DEBUG] : Beginning Read +2022/02/22 17:29:41 HTTP request GET mso/api/v1/tenants +2022/02/22 17:29:41 [DEBUG] Begin Injection +2022/02/22 17:29:41 HTTP request POST /login +2022/02/22 17:29:41 HTTP request after injection POST /login +2022/02/22 17:29:41 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:29:44 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:29:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:43 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzIzODMsImlhdCI6MTY0NTUzMTE4MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJma041VUZMeVRFQU9MN3RpbWpKdlN0eVIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Vsk7KSe_UfOXyXpj8vzg85jMvbchsnTll56kNG0susIH4OK9YjmCtn3Sz5ga39Jk400ccqWePSa0Nw-2_wPn7tJ1IlGAwYERn6gT2YXxCwkvTIVqwImOJnXaqQR-o4m4KxrorR4P3FIlAWI7WvORV5OEVRY3p9nDt4U2KRWujZt4BQ7FSv6M5N3SOac2Ja5AVwcPOK9SL6u5ASy-7X3bHUwTJRyNbLl-aCBTqxwZL6o1-i5y2xDiu2Vg80TcDcoAL0RXSClF7u1LccA4AMC96H_THcFunnaj7DafmL5Ptib0vyIsZ8O5xk7zc0Iu0NYeCQW_ck-pEZcce_tA6_LCjQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000216180 -1 [chunked] false false map[] 0xc000c66400 0xc000014000} +2022/02/22 17:29:44 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzIzODMsImlhdCI6MTY0NTUzMTE4MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJma041VUZMeVRFQU9MN3RpbWpKdlN0eVIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Vsk7KSe_UfOXyXpj8vzg85jMvbchsnTll56kNG0susIH4OK9YjmCtn3Sz5ga39Jk400ccqWePSa0Nw-2_wPn7tJ1IlGAwYERn6gT2YXxCwkvTIVqwImOJnXaqQR-o4m4KxrorR4P3FIlAWI7WvORV5OEVRY3p9nDt4U2KRWujZt4BQ7FSv6M5N3SOac2Ja5AVwcPOK9SL6u5ASy-7X3bHUwTJRyNbLl-aCBTqxwZL6o1-i5y2xDiu2Vg80TcDcoAL0RXSClF7u1LccA4AMC96H_THcFunnaj7DafmL5Ptib0vyIsZ8O5xk7zc0Iu0NYeCQW_ck-pEZcce_tA6_LCjQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzIzODMsImlhdCI6MTY0NTUzMTE4MywiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJma041VUZMeVRFQU9MN3RpbWpKdlN0eVIiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.Vsk7KSe_UfOXyXpj8vzg85jMvbchsnTll56kNG0susIH4OK9YjmCtn3Sz5ga39Jk400ccqWePSa0Nw-2_wPn7tJ1IlGAwYERn6gT2YXxCwkvTIVqwImOJnXaqQR-o4m4KxrorR4P3FIlAWI7WvORV5OEVRY3p9nDt4U2KRWujZt4BQ7FSv6M5N3SOac2Ja5AVwcPOK9SL6u5ASy-7X3bHUwTJRyNbLl-aCBTqxwZL6o1-i5y2xDiu2Vg80TcDcoAL0RXSClF7u1LccA4AMC96H_THcFunnaj7DafmL5Ptib0vyIsZ8O5xk7zc0Iu0NYeCQW_ck-pEZcce_tA6_LCjQ"} +2022/02/22 17:29:44 [DEBUG] Exit from do method +2022/02/22 17:29:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:29:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000be080 3980 [] false false map[] 0xc000c66300 0xc000014000} +2022/02/22 17:29:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:29:44 [DEBUG] Exit from do method +2022/02/22 17:29:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:29:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:44 [DEBUG] New state was assigned lineage "b6588223-28e4-2a39-c0c6-0ccabfa4b735" +2022/02/22 17:29:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:29:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:44 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:29:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:44 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:29:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:44 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_v4b1s" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:29:44 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:29:44 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:29:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:29:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:29:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:29:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:29:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:29:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:44 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:29:44 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:29:44 [DEBUG] : Beginning Create +2022/02/22 17:29:44 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:29:44 [DEBUG] Begin Injection +2022/02/22 17:29:44 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:29:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:29:44 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:29:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091680 160 [] false false map[] 0xc00047e700 0xc000014000} +2022/02/22 17:29:44 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:29:44 [DEBUG] Exit from do method +2022/02/22 17:29:44 [DEBUG] 6214d0301b00000680fd0671: Creation finished successfully +2022/02/22 17:29:44 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:29:44 id: 6214d0301b00000680fd0671 +2022/02/22 17:29:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:44 [DEBUG] Begin Injection +2022/02/22 17:29:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000bfcc0 160 [] false false map[] 0xc0001b6600 0xc000014000} +2022/02/22 17:29:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:29:45 [DEBUG] Exit from do method +2022/02/22 17:29:45 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:29:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:45 [DEBUG] New state was assigned lineage "525db103-0750-1518-1797-09a01f1871e0" +2022/02/22 17:29:45 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:45 [DEBUG] Begin Injection +2022/02/22 17:29:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a15580 160 [] false false map[] 0xc00007e200 0xc000014000} +2022/02/22 17:29:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:29:45 [DEBUG] Exit from do method +2022/02/22 17:29:45 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:29:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:45 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:29:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:45 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:29:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:29:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:45 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:29:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:45 [DEBUG] : Beginning Read +2022/02/22 17:29:45 HTTP request GET mso/api/v1/tenants +2022/02/22 17:29:45 [DEBUG] Begin Injection +2022/02/22 17:29:45 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:29:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a200 3980 [] false false map[] 0xc00007e400 0xc000014000} +2022/02/22 17:29:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:29:45 [DEBUG] Exit from do method +2022/02/22 17:29:45 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:29:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:45 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:29:45 id: 6214d0301b00000680fd0671 +2022/02/22 17:29:45 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:45 [DEBUG] Begin Injection +2022/02/22 17:29:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000bf880 160 [] false false map[] 0xc0009b4400 0xc000014000} +2022/02/22 17:29:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:29:46 [DEBUG] Exit from do method +2022/02/22 17:29:46 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:29:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:46 [DEBUG] New state was assigned lineage "ce1babee-e2cd-d2df-30b5-21e895a206dd" +2022/02/22 17:29:46 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:29:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:46 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:46 [DEBUG] Test: Executing step 3 +2022/02/22 17:29:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:46 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:29:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:46 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:29:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:46 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:29:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:46 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:46 [DEBUG] : Beginning Read +2022/02/22 17:29:46 HTTP request GET mso/api/v1/tenants +2022/02/22 17:29:46 [DEBUG] Begin Injection +2022/02/22 17:29:46 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:29:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a01280 3980 [] false false map[] 0xc0001b6f00 0xc000014000} +2022/02/22 17:29:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:29:46 [DEBUG] Exit from do method +2022/02/22 17:29:46 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:46 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:29:46 id: 6214d0301b00000680fd0671 +2022/02/22 17:29:46 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:46 [DEBUG] Begin Injection +2022/02/22 17:29:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00040 160 [] false false map[] 0xc000554200 0xc000014000} +2022/02/22 17:29:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:29:46 [DEBUG] Exit from do method +2022/02/22 17:29:46 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:29:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:46 [DEBUG] New state was assigned lineage "099dab47-3673-aed2-3b3d-4bbf432a1d1d" +2022/02/22 17:29:46 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:29:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:46 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:46 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.101.135" + id: "6214d0301b00000680fd0671" => "6214d0301b00000680fd0671" + name: "acctest_v4b1s" => "acctest_v4b1s" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0301b00000680fd0671 + provider = provider.mso + description = + name = acctest_v4b1s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:29:46 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:29:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:29:46 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:29:46 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:29:46 [DEBUG] 6214d0301b00000680fd0671: Beginning Policy Update +2022/02/22 17:29:46 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: expected any one of the epg or external_epg. +2022/02/22 17:29:46 [ERROR] : eval: *terraform.EvalApplyPost, err: expected any one of the epg or external_epg. +2022/02/22 17:29:46 [ERROR] : eval: *terraform.EvalSequence, err: expected any one of the epg or external_epg. +2022/02/22 17:29:46 [DEBUG] New state was assigned lineage "5ecb8418-8105-040d-05da-d4386963ecc2" +2022/02/22 17:29:46 [DEBUG] Test: Executing step 4 +2022/02/22 17:29:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:46 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:29:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:46 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:29:46 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 17:29:46 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 17:29:46 [DEBUG] Test: Executing step 5 +2022/02/22 17:29:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:46 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:29:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:46 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:29:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:46 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:29:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:46 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:29:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:46 [DEBUG] : Beginning Read +2022/02/22 17:29:46 HTTP request GET mso/api/v1/tenants +2022/02/22 17:29:46 [DEBUG] Begin Injection +2022/02/22 17:29:46 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:29:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a900 3980 [] false false map[] 0xc0001b6e00 0xc000014000} +2022/02/22 17:29:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:29:47 [DEBUG] Exit from do method +2022/02/22 17:29:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:29:47 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:47 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:29:47 id: 6214d0301b00000680fd0671 +2022/02/22 17:29:47 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:47 [DEBUG] Begin Injection +2022/02/22 17:29:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:47 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:29:47 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:29:47 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:29:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006d0e80 160 [] false false map[] 0xc00047eb00 0xc000014000} +2022/02/22 17:29:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:29:47 [DEBUG] Exit from do method +2022/02/22 17:29:47 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:29:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:47 [DEBUG] New state was assigned lineage "c95b5ecc-801a-d401-26a5-b73645237cc6" +2022/02/22 17:29:47 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:29:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:47 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:47 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:29:47 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:29:47 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:29:47 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:29:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:47 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.101.135" + id: "6214d0301b00000680fd0671" => "6214d0301b00000680fd0671" + name: "acctest_v4b1s" => "acctest_v4b1s" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_8bnat" + template_name: "" => "acctest_wj3jv" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_pg9s9" + external_epg_name: "" => "acctest_pg9s9" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_wj3jv" + vrf_name: "" => "acctest_pg9s9" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_pg9s9" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_pg9s9" + schema_id: "" => "" + template: "" => "acctest_wj3jv" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0301b00000680fd0671 + provider = provider.mso + description = + name = acctest_v4b1s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:29:47 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:29:47 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:29:47 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:29:47 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:29:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:29:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:29:47 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:29:47 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:29:47 [DEBUG] Schema: Beginning Creation +2022/02/22 17:29:47 HTTP request POST mso/api/v1/schemas +2022/02/22 17:29:47 [DEBUG] Begin Injection +2022/02/22 17:29:47 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:29:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:29:47 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:29:47 [DEBUG] 6214d0301b00000680fd0671: Beginning Policy Update +2022/02/22 17:29:47 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: expected any one of the epg or external_epg. +2022/02/22 17:29:47 [ERROR] : eval: *terraform.EvalApplyPost, err: expected any one of the epg or external_epg. +2022/02/22 17:29:47 [ERROR] : eval: *terraform.EvalSequence, err: expected any one of the epg or external_epg. +2022/02/22 17:29:48 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:29:48 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d0331d0000b8554f9ecf] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bd40 400 [] false false map[] 0xc0001b6400 0xc000014000} +2022/02/22 17:29:48 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d0331d0000b8554f9ecf","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:29:48 [DEBUG] Exit from do method +2022/02/22 17:29:48 [DEBUG] 6214d0331d0000b8554f9ecf: Schema Creation finished successfully +2022/02/22 17:29:48 [DEBUG] 6214d0331d0000b8554f9ecf: Beginning Read +2022/02/22 17:29:48 HTTP request GET mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:48 [DEBUG] Begin Injection +2022/02/22 17:29:48 HTTP request after injection GET mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004be80 400 [] false false map[] 0xc0001b6700 0xc000014000} +2022/02/22 17:29:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf {"id":"6214d0331d0000b8554f9ecf","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:29:48 [DEBUG] Exit from do method +2022/02/22 17:29:48 [DEBUG] 6214d0331d0000b8554f9ecf: Read finished successfully +2022/02/22 17:29:48 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:29:48 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:29:48 HTTP request PATCH mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:48 [DEBUG] Begin Injection +2022/02/22 17:29:48 HTTP request after injection PATCH mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:48 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:48 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:59:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001b7100 0xc000014000} +2022/02/22 17:29:48 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:48 [DEBUG] acctest_pg9s9: Creation finished successfully +2022/02/22 17:29:48 [DEBUG] acctest_pg9s9: Beginning Read +2022/02/22 17:29:48 HTTP request GET mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:48 [DEBUG] Begin Injection +2022/02/22 17:29:48 HTTP request after injection GET mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091140 768 [] false false map[] 0xc0001b6000 0xc000014000} +2022/02/22 17:29:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf {"id":"6214d0331d0000b8554f9ecf","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:29:49 [DEBUG] Exit from do method +2022/02/22 17:29:49 currentvrfname acctest_pg9s9 +2022/02/22 17:29:49 found correct vrfname +2022/02/22 17:29:49 [DEBUG] acctest_pg9s9: Read finished successfully +2022/02/22 17:29:49 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:29:49 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:29:49 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:29:49 HTTP request PATCH mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:49 [DEBUG] Begin Injection +2022/02/22 17:29:49 HTTP request after injection PATCH mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:49 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:59:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00049ca00 0xc000014000} +2022/02/22 17:29:49 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:49 [DEBUG] : Beginning Read +2022/02/22 17:29:49 HTTP request GET mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:49 [DEBUG] Begin Injection +2022/02/22 17:29:49 HTTP request after injection GET mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a540 1147 [] false false map[] 0xc00049cc00 0xc000014000} +2022/02/22 17:29:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf {"id":"6214d0331d0000b8554f9ecf","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","extEpgType":"on-premise","vrfRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/vrfs/acctest_pg9s9","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:29:49 [DEBUG] Exit from do method +2022/02/22 17:29:49 [DEBUG] /schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9: Read finished successfully +2022/02/22 17:29:49 [DEBUG] New state was assigned lineage "5e784258-2da1-cdea-cd4b-ea6a3371402b" +2022/02/22 17:29:49 [DEBUG] Test: Executing step 6 +2022/02/22 17:29:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:49 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:29:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:29:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:29:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:29:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:49 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:29:49 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:29:49 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:29:49 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:29:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:49 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:29:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:29:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:29:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:29:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:29:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:49 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:29:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:49 [DEBUG] : Beginning Read +2022/02/22 17:29:49 HTTP request GET mso/api/v1/tenants +2022/02/22 17:29:49 [DEBUG] Begin Injection +2022/02/22 17:29:49 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:29:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00100 3980 [] false false map[] 0xc00055cd00 0xc000014000} +2022/02/22 17:29:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:29:50 [DEBUG] Exit from do method +2022/02/22 17:29:50 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:29:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:50 [DEBUG] 6214d0331d0000b8554f9ecf: Beginning Read +2022/02/22 17:29:50 HTTP request GET mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:50 [DEBUG] Begin Injection +2022/02/22 17:29:50 HTTP request after injection GET mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:50 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:29:50 id: 6214d0301b00000680fd0671 +2022/02/22 17:29:50 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:50 [DEBUG] Begin Injection +2022/02/22 17:29:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00059c7c0 1147 [] false false map[] 0xc000ffe100 0xc000014000} +2022/02/22 17:29:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf {"id":"6214d0331d0000b8554f9ecf","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","extEpgType":"on-premise","vrfRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/vrfs/acctest_pg9s9","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:29:50 [DEBUG] Exit from do method +2022/02/22 17:29:50 [DEBUG] 6214d0331d0000b8554f9ecf: Read finished successfully +2022/02/22 17:29:50 [DEBUG] acctest_pg9s9: Beginning Read +2022/02/22 17:29:50 HTTP request GET mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:50 [DEBUG] Begin Injection +2022/02/22 17:29:50 HTTP request after injection GET mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a140 160 [] false false map[] 0xc00055c300 0xc000014000} +2022/02/22 17:29:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:29:50 [DEBUG] Exit from do method +2022/02/22 17:29:50 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:29:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000be680 1147 [] false false map[] 0xc0001b6c00 0xc000014000} +2022/02/22 17:29:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf {"id":"6214d0331d0000b8554f9ecf","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","extEpgType":"on-premise","vrfRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/vrfs/acctest_pg9s9","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:29:50 [DEBUG] Exit from do method +2022/02/22 17:29:50 currentvrfname acctest_pg9s9 +2022/02/22 17:29:50 found correct vrfname +2022/02/22 17:29:50 [DEBUG] acctest_pg9s9: Read finished successfully +2022/02/22 17:29:50 [DEBUG] /schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9: Beginning Read +2022/02/22 17:29:50 HTTP request GET mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:50 [DEBUG] Begin Injection +2022/02/22 17:29:50 HTTP request after injection GET mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091d40 1147 [] false false map[] 0xc000ffe700 0xc000014000} +2022/02/22 17:29:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf {"id":"6214d0331d0000b8554f9ecf","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","extEpgType":"on-premise","vrfRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/vrfs/acctest_pg9s9","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:29:51 [DEBUG] Exit from do method +2022/02/22 17:29:51 [DEBUG] /schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9: Read finished successfully +2022/02/22 17:29:51 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:51 [DEBUG] New state was assigned lineage "bad88fa7-f43f-495d-d88f-93d0b6a54cb5" +2022/02/22 17:29:51 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:29:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:29:51 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:51 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:51 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.101.135" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214d0301b00000680fd0671" => "6214d0301b00000680fd0671" + name: "acctest_v4b1s" => "acctest_v4b1s" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d0331d0000b8554f9ecf" => "" + name: "acctest_8bnat" => "" + template_name: "acctest_wj3jv" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_pg9s9" => "" + external_epg_name: "acctest_pg9s9" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d0331d0000b8554f9ecf" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_wj3jv" => "" + vrf_name: "acctest_pg9s9" => "" + vrf_schema_id: "6214d0331d0000b8554f9ecf" => "" + vrf_template_name: "acctest_wj3jv" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_pg9s9" => "" + id: "acctest_pg9s9" => "" + layer3_multicast: "false" => "" + name: "acctest_pg9s9" => "" + schema_id: "6214d0331d0000b8554f9ecf" => "" + template: "acctest_wj3jv" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0301b00000680fd0671 + provider = provider.mso + description = + name = acctest_v4b1s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 6214d0331d0000b8554f9ecf + provider = provider.mso + name = acctest_8bnat + template_name = acctest_wj3jv + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d0331d0000b8554f9ecf/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9 + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_pg9s9 + external_epg_name = acctest_pg9s9 + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d0331d0000b8554f9ecf + selector_ip = + selector_name = + template_name = acctest_wj3jv + vrf_name = acctest_pg9s9 + vrf_schema_id = 6214d0331d0000b8554f9ecf + vrf_template_name = acctest_wj3jv + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_pg9s9 + provider = provider.mso + display_name = acctest_pg9s9 + layer3_multicast = false + name = acctest_pg9s9 + schema_id = 6214d0331d0000b8554f9ecf + template = acctest_wj3jv + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:29:51 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:29:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (clean up state) +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:29:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:29:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:51 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:29:51 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:29:51 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:29:51 HTTP request PATCH mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:51 [DEBUG] Begin Injection +2022/02/22 17:29:51 HTTP request after injection PATCH mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:51 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:29:51 [DEBUG] 6214d0301b00000680fd0671: Beginning Policy Update +2022/02/22 17:29:51 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:51 [DEBUG] Begin Injection +2022/02/22 17:29:51 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:51 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:59:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001b6d00 0xc000828160} +2022/02/22 17:29:51 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:51 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:29:51 [DEBUG] acctest_pg9s9: Beginning Destroy +2022/02/22 17:29:51 HTTP request PATCH mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:51 [DEBUG] Begin Injection +2022/02/22 17:29:51 HTTP request after injection PATCH mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:51 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006d01c0 357 [] false false map[] 0xc000c0c600 0xc0001662c0} +2022/02/22 17:29:51 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:29:51 [DEBUG] Exit from do method +2022/02/22 17:29:51 [DEBUG] Policy Update finished successfully: 6214d0301b00000680fd0671 +2022/02/22 17:29:51 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:29:51 id: 6214d0301b00000680fd0671 +2022/02/22 17:29:51 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:51 [DEBUG] Begin Injection +2022/02/22 17:29:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004acc0 357 [] false false map[] 0xc000f64000 0xc0001662c0} +2022/02/22 17:29:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:29:51 [DEBUG] Exit from do method +2022/02/22 17:29:51 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:29:51 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 17:29:51 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:59:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00047e700 0xc000828160} +2022/02/22 17:29:51 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf?validate=false +2022/02/22 17:29:51 [DEBUG] acctest_pg9s9: Destroy finished successfully +2022/02/22 17:29:51 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:29:51 [DEBUG] 6214d0331d0000b8554f9ecf: Beginning Destroy +2022/02/22 17:29:51 HTTP request DELETE mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:51 [DEBUG] Begin Injection +2022/02/22 17:29:51 HTTP request after injection DELETE mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:52 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:59:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000f64800 0xc000828160} +2022/02/22 17:29:52 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d0331d0000b8554f9ecf +2022/02/22 17:29:52 [DEBUG] 6214d0331d0000b8554f9ecf: Destroy finished successfully +2022/02/22 17:29:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:52 [DEBUG] New state was assigned lineage "2000ae49-3dd7-76c4-3fb7-5338707676aa" +2022/02/22 17:29:52 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:52 [DEBUG] Begin Injection +2022/02/22 17:29:52 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090840 357 [] false false map[] 0xc0001b6300 0xc000828160} +2022/02/22 17:29:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:29:52 [DEBUG] Exit from do method +2022/02/22 17:29:52 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:29:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:52 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:29:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:52 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:29:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:29:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:52 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:29:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:52 [DEBUG] : Beginning Read +2022/02/22 17:29:52 HTTP request GET mso/api/v1/tenants +2022/02/22 17:29:52 [DEBUG] Begin Injection +2022/02/22 17:29:52 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:29:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a5880 3980 [] false false map[] 0xc00047ef00 0xc000828160} +2022/02/22 17:29:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:29:52 [DEBUG] Exit from do method +2022/02/22 17:29:52 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:29:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:53 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:29:53 id: 6214d0301b00000680fd0671 +2022/02/22 17:29:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:53 [DEBUG] Begin Injection +2022/02/22 17:29:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00059c6c0 357 [] false false map[] 0xc00047f200 0xc000828160} +2022/02/22 17:29:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:29:53 [DEBUG] Exit from do method +2022/02/22 17:29:53 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:29:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:53 [DEBUG] New state was assigned lineage "9f20b340-51a4-80ff-f6a9-56f4c6b7995f" +2022/02/22 17:29:53 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:29:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:53 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:53 [DEBUG] Test: Executing step 7 +2022/02/22 17:29:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:53 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:29:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:29:53 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:53 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:53 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:29:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:53 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:29:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:29:53 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:53 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:53 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:53 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:53 [DEBUG] : Beginning Read +2022/02/22 17:29:53 HTTP request GET mso/api/v1/tenants +2022/02/22 17:29:53 [DEBUG] Begin Injection +2022/02/22 17:29:53 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:29:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00059c1c0 3980 [] false false map[] 0xc000d1a000 0xc000828160} +2022/02/22 17:29:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:29:53 [DEBUG] Exit from do method +2022/02/22 17:29:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:29:53 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:29:53 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:29:53 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:29:53 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:29:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:53 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:29:53 id: 6214d0301b00000680fd0671 +2022/02/22 17:29:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:53 [DEBUG] Begin Injection +2022/02/22 17:29:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000bf080 357 [] false false map[] 0xc0001b6700 0xc000828160} +2022/02/22 17:29:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:29:54 [DEBUG] Exit from do method +2022/02/22 17:29:54 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:29:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:54 [DEBUG] New state was assigned lineage "3529027b-d674-8469-ada5-8ff279b80fb5" +2022/02/22 17:29:54 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:29:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:54 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:54 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:29:54 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:29:54 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:29:54 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:54 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.101.135" => "1.2.101.135" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214d0301b00000680fd0671" => "6214d0301b00000680fd0671" + name: "acctest_v4b1s" => "acctest_v4b1s" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_8bnat" + template_name: "" => "acctest_wj3jv" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_pg9s9" + external_epg_name: "" => "acctest_pg9s9" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_wj3jv" + vrf_name: "" => "acctest_pg9s9" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_pg9s9" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_pg9s9" + schema_id: "" => "" + template: "" => "acctest_wj3jv" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0301b00000680fd0671 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.101.135 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_v4b1s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:29:54 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:29:54 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:29:54 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:29:54 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:29:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test (prepare state)] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:54 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:29:54 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:29:54 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:29:54 [DEBUG] Schema: Beginning Creation +2022/02/22 17:29:54 HTTP request POST mso/api/v1/schemas +2022/02/22 17:29:54 [DEBUG] Begin Injection +2022/02/22 17:29:54 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:29:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:29:54 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:29:54 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d03a1d0000c4554f9ed5] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0016069c0 400 [] false false map[] 0xc00047e200 0xc000828160} +2022/02/22 17:29:54 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d03a1d0000c4554f9ed5","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:29:54 [DEBUG] Exit from do method +2022/02/22 17:29:54 [DEBUG] 6214d03a1d0000c4554f9ed5: Schema Creation finished successfully +2022/02/22 17:29:54 [DEBUG] 6214d03a1d0000c4554f9ed5: Beginning Read +2022/02/22 17:29:54 HTTP request GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:54 [DEBUG] Begin Injection +2022/02/22 17:29:54 HTTP request after injection GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001606a80 400 [] false false map[] 0xc0004e6100 0xc000828160} +2022/02/22 17:29:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 {"id":"6214d03a1d0000c4554f9ed5","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:29:54 [DEBUG] Exit from do method +2022/02/22 17:29:54 [DEBUG] 6214d03a1d0000c4554f9ed5: Read finished successfully +2022/02/22 17:29:54 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:29:54 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:29:54 HTTP request PATCH mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:54 [DEBUG] Begin Injection +2022/02/22 17:29:54 HTTP request after injection PATCH mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:55 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:55 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:59:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004e6600 0xc000828160} +2022/02/22 17:29:55 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:55 [DEBUG] acctest_pg9s9: Creation finished successfully +2022/02/22 17:29:55 [DEBUG] acctest_pg9s9: Beginning Read +2022/02/22 17:29:55 HTTP request GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:55 [DEBUG] Begin Injection +2022/02/22 17:29:55 HTTP request after injection GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d16040 768 [] false false map[] 0xc0004e6800 0xc000828160} +2022/02/22 17:29:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 {"id":"6214d03a1d0000c4554f9ed5","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:29:55 [DEBUG] Exit from do method +2022/02/22 17:29:55 currentvrfname acctest_pg9s9 +2022/02/22 17:29:55 found correct vrfname +2022/02/22 17:29:55 [DEBUG] acctest_pg9s9: Read finished successfully +2022/02/22 17:29:55 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:29:55 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:29:55 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:29:55 HTTP request PATCH mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:55 [DEBUG] Begin Injection +2022/02/22 17:29:55 HTTP request after injection PATCH mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:55 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:55 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 11:59:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0004e6c00 0xc000828160} +2022/02/22 17:29:55 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:55 [DEBUG] : Beginning Read +2022/02/22 17:29:55 HTTP request GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:55 [DEBUG] Begin Injection +2022/02/22 17:29:55 HTTP request after injection GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d161c0 1147 [] false false map[] 0xc000d1a000 0xc000828160} +2022/02/22 17:29:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 {"id":"6214d03a1d0000c4554f9ed5","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","extEpgType":"on-premise","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:29:56 [DEBUG] Exit from do method +2022/02/22 17:29:56 [DEBUG] /schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9: Read finished successfully +2022/02/22 17:29:56 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:29:56 [DEBUG] 6214d0301b00000680fd0671: Beginning Policy Update +2022/02/22 17:29:56 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:56 [DEBUG] Begin Injection +2022/02/22 17:29:56 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:56 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00059c040 361 [] false false map[] 0xc0001b6c00 0xc000828160} +2022/02/22 17:29:56 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"","externalEpgRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:29:56 [DEBUG] Exit from do method +2022/02/22 17:29:56 [DEBUG] Policy Update finished successfully: 6214d0301b00000680fd0671 +2022/02/22 17:29:56 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:29:56 id: 6214d0301b00000680fd0671 +2022/02/22 17:29:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:56 [DEBUG] Begin Injection +2022/02/22 17:29:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000be100 361 [] false false map[] 0xc0001b6000 0xc000828160} +2022/02/22 17:29:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"","externalEpgRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:29:56 [DEBUG] Exit from do method +2022/02/22 17:29:56 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:29:56 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 17:29:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:56 [DEBUG] New state was assigned lineage "21b3d4e8-dca1-0b3e-187e-381d1d34b9e0" +2022/02/22 17:29:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:56 [DEBUG] Begin Injection +2022/02/22 17:29:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00059c2c0 361 [] false false map[] 0xc0001b6200 0xc000828160} +2022/02/22 17:29:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"","externalEpgRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:29:57 [DEBUG] Exit from do method +2022/02/22 17:29:57 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:29:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:29:57 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:29:57 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:57 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:57 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:29:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:29:57 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:29:57 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:57 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:57 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:57 [DEBUG] : Beginning Read +2022/02/22 17:29:57 HTTP request GET mso/api/v1/tenants +2022/02/22 17:29:57 [DEBUG] Begin Injection +2022/02/22 17:29:57 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:29:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d16700 3980 [] false false map[] 0xc000d1a700 0xc000828160} +2022/02/22 17:29:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:29:57 [DEBUG] Exit from do method +2022/02/22 17:29:57 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:29:57 [DEBUG] 6214d03a1d0000c4554f9ed5: Beginning Read +2022/02/22 17:29:57 HTTP request GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:57 [DEBUG] Begin Injection +2022/02/22 17:29:57 HTTP request after injection GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00d40 1147 [] false false map[] 0xc000dda800 0xc000828160} +2022/02/22 17:29:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 {"id":"6214d03a1d0000c4554f9ed5","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","extEpgType":"on-premise","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:29:57 [DEBUG] Exit from do method +2022/02/22 17:29:57 [DEBUG] 6214d03a1d0000c4554f9ed5: Read finished successfully +2022/02/22 17:29:57 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:29:57 [DEBUG] acctest_pg9s9: Beginning Read +2022/02/22 17:29:57 HTTP request GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:57 [DEBUG] Begin Injection +2022/02/22 17:29:57 HTTP request after injection GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bf80 1147 [] false false map[] 0xc000d1ac00 0xc000828160} +2022/02/22 17:29:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 {"id":"6214d03a1d0000c4554f9ed5","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","extEpgType":"on-premise","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:29:58 [DEBUG] Exit from do method +2022/02/22 17:29:58 currentvrfname acctest_pg9s9 +2022/02/22 17:29:58 found correct vrfname +2022/02/22 17:29:58 [DEBUG] acctest_pg9s9: Read finished successfully +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:29:58 [DEBUG] /schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9: Beginning Read +2022/02/22 17:29:58 HTTP request GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:58 [DEBUG] Begin Injection +2022/02/22 17:29:58 HTTP request after injection GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d16040 1147 [] false false map[] 0xc000ddac00 0xc000828160} +2022/02/22 17:29:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 {"id":"6214d03a1d0000c4554f9ed5","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","extEpgType":"on-premise","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:29:58 [DEBUG] Exit from do method +2022/02/22 17:29:58 [DEBUG] /schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9: Read finished successfully +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:58 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:29:58 id: 6214d0301b00000680fd0671 +2022/02/22 17:29:58 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:58 [DEBUG] Begin Injection +2022/02/22 17:29:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00240 361 [] false false map[] 0xc000d1aa00 0xc000828160} +2022/02/22 17:29:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"","externalEpgRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:29:58 [DEBUG] Exit from do method +2022/02/22 17:29:58 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:29:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:58 [DEBUG] New state was assigned lineage "b882491f-e273-182d-76b7-5288fd613de4" +2022/02/22 17:29:58 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:29:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:58 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:58 [DEBUG] Test: Executing step 8 +2022/02/22 17:29:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:58 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:29:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:29:58 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:29:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:58 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:29:58 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:29:58 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:29:58 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:29:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:58 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:29:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:58 [DEBUG] : Beginning Read +2022/02/22 17:29:58 HTTP request GET mso/api/v1/tenants +2022/02/22 17:29:58 [DEBUG] Begin Injection +2022/02/22 17:29:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:29:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:29:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00059dcc0 3980 [] false false map[] 0xc0001b6800 0xc000828160} +2022/02/22 17:29:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:29:59 [DEBUG] Exit from do method +2022/02/22 17:29:59 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:59 [DEBUG] 6214d03a1d0000c4554f9ed5: Beginning Read +2022/02/22 17:29:59 HTTP request GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:59 [DEBUG] Begin Injection +2022/02/22 17:29:59 HTTP request after injection GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:59 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:29:59 id: 6214d0301b00000680fd0671 +2022/02/22 17:29:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:59 [DEBUG] Begin Injection +2022/02/22 17:29:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001606040 1147 [] false false map[] 0xc000f44d00 0xc000828160} +2022/02/22 17:29:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 {"id":"6214d03a1d0000c4554f9ed5","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","extEpgType":"on-premise","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:29:59 [DEBUG] Exit from do method +2022/02/22 17:29:59 [DEBUG] 6214d03a1d0000c4554f9ed5: Read finished successfully +2022/02/22 17:29:59 [DEBUG] acctest_pg9s9: Beginning Read +2022/02/22 17:29:59 HTTP request GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:59 [DEBUG] Begin Injection +2022/02/22 17:29:59 HTTP request after injection GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000216440 361 [] false false map[] 0xc000d1b600 0xc0001662c0} +2022/02/22 17:29:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"","externalEpgRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:29:59 [DEBUG] Exit from do method +2022/02/22 17:29:59 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:29:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006700c0 1147 [] false false map[] 0xc0001b6500 0xc000828160} +2022/02/22 17:29:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 {"id":"6214d03a1d0000c4554f9ed5","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","extEpgType":"on-premise","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:29:59 [DEBUG] Exit from do method +2022/02/22 17:29:59 currentvrfname acctest_pg9s9 +2022/02/22 17:29:59 found correct vrfname +2022/02/22 17:29:59 [DEBUG] acctest_pg9s9: Read finished successfully +2022/02/22 17:29:59 [DEBUG] /schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9: Beginning Read +2022/02/22 17:29:59 HTTP request GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:59 [DEBUG] Begin Injection +2022/02/22 17:29:59 HTTP request after injection GET mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:29:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 11:59:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a4040 1147 [] false false map[] 0xc0007b6500 0xc000828160} +2022/02/22 17:29:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 {"id":"6214d03a1d0000c4554f9ed5","displayName":"acctest_8bnat","description":"","templates":[{"name":"acctest_wj3jv","displayName":"acctest_wj3jv","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pg9s9","displayName":"acctest_pg9s9","extEpgType":"on-premise","vrfRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/vrfs/acctest_pg9s9","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:29:59 [DEBUG] Exit from do method +2022/02/22 17:29:59 [DEBUG] /schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9: Read finished successfully +2022/02/22 17:29:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:59 [DEBUG] New state was assigned lineage "25d9a968-0a77-5d7a-2b94-4e322aecb756" +2022/02/22 17:29:59 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:29:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:29:59 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:29:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:29:59 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "test description" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.101.135" => "1.2.101.135" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214d0301b00000680fd0671" => "6214d0301b00000680fd0671" + name: "acctest_v4b1s" => "acctest_v4b1s" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d03a1d0000c4554f9ed5" => "" + name: "acctest_8bnat" => "" + template_name: "acctest_wj3jv" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_pg9s9" => "" + external_epg_name: "acctest_pg9s9" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d03a1d0000c4554f9ed5" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_wj3jv" => "" + vrf_name: "acctest_pg9s9" => "" + vrf_schema_id: "6214d03a1d0000c4554f9ed5" => "" + vrf_template_name: "acctest_wj3jv" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_pg9s9" => "" + id: "acctest_pg9s9" => "" + layer3_multicast: "false" => "" + name: "acctest_pg9s9" => "" + schema_id: "6214d03a1d0000c4554f9ed5" => "" + template: "acctest_wj3jv" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0301b00000680fd0671 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.101.135 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9 + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_v4b1s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214d03a1d0000c4554f9ed5 + provider = provider.mso + name = acctest_8bnat + template_name = acctest_wj3jv + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d03a1d0000c4554f9ed5/templates/acctest_wj3jv/externalEpgs/acctest_pg9s9 + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_pg9s9 + external_epg_name = acctest_pg9s9 + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d03a1d0000c4554f9ed5 + selector_ip = + selector_name = + template_name = acctest_wj3jv + vrf_name = acctest_pg9s9 + vrf_schema_id = 6214d03a1d0000c4554f9ed5 + vrf_template_name = acctest_wj3jv + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_pg9s9 + provider = provider.mso + display_name = acctest_pg9s9 + layer3_multicast = false + name = acctest_pg9s9 + schema_id = 6214d03a1d0000c4554f9ed5 + template = acctest_wj3jv + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:29:59 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:29:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:29:59 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:29:59 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:29:59 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:29:59 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:29:59 HTTP request PATCH mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:59 [DEBUG] Begin Injection +2022/02/22 17:29:59 HTTP request after injection PATCH mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:29:59 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:29:59 [DEBUG] 6214d0301b00000680fd0671: Beginning Policy Update +2022/02/22 17:29:59 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:59 [DEBUG] Begin Injection +2022/02/22 17:29:59 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:29:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:00 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:30:00 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001606480 373 [] false false map[] 0xc000d6c800 0xc0001662c0} +2022/02/22 17:30:00 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:30:00 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:00:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0007b6400 0xc000828160} +2022/02/22 17:30:00 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:30:00 [DEBUG] Exit from do method +2022/02/22 17:30:00 [DEBUG] Policy Update finished successfully: 6214d0301b00000680fd0671 +2022/02/22 17:30:00 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:30:00 id: 6214d0301b00000680fd0671 +2022/02/22 17:30:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:00 [DEBUG] Begin Injection +2022/02/22 17:30:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:00 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:30:00 [DEBUG] acctest_pg9s9: Beginning Destroy +2022/02/22 17:30:00 HTTP request PATCH mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:30:00 [DEBUG] Begin Injection +2022/02/22 17:30:00 HTTP request after injection PATCH mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:30:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:30:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a480 373 [] false false map[] 0xc000d1a700 0xc0001662c0} +2022/02/22 17:30:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:30:00 [DEBUG] Exit from do method +2022/02/22 17:30:00 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:30:00 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 17:30:00 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:30:00 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:00:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d1ac00 0xc000828160} +2022/02/22 17:30:00 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5?validate=false +2022/02/22 17:30:00 [DEBUG] acctest_pg9s9: Destroy finished successfully +2022/02/22 17:30:00 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:30:00 [DEBUG] 6214d03a1d0000c4554f9ed5: Beginning Destroy +2022/02/22 17:30:00 HTTP request DELETE mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:30:00 [DEBUG] Begin Injection +2022/02/22 17:30:00 HTTP request after injection DELETE mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:30:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:30:00 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:30:00 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:00:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d1b800 0xc000828160} +2022/02/22 17:30:00 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d03a1d0000c4554f9ed5 +2022/02/22 17:30:00 [DEBUG] 6214d03a1d0000c4554f9ed5: Destroy finished successfully +2022/02/22 17:30:00 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:00 [DEBUG] New state was assigned lineage "d21be4f1-4492-e525-5fbf-7177ee7a977f" +2022/02/22 17:30:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:00 [DEBUG] Begin Injection +2022/02/22 17:30:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a000c0 373 [] false false map[] 0xc000701300 0xc000828160} +2022/02/22 17:30:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:30:01 [DEBUG] Exit from do method +2022/02/22 17:30:01 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:30:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:01 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:30:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:01 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:01 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:30:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:30:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:30:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:01 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:30:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:01 [DEBUG] : Beginning Read +2022/02/22 17:30:01 HTTP request GET mso/api/v1/tenants +2022/02/22 17:30:01 [DEBUG] Begin Injection +2022/02/22 17:30:01 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:30:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006d0f00 3980 [] false false map[] 0xc0001b6d00 0xc000828160} +2022/02/22 17:30:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:30:01 [DEBUG] Exit from do method +2022/02/22 17:30:01 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:30:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:01 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:30:01 id: 6214d0301b00000680fd0671 +2022/02/22 17:30:01 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:01 [DEBUG] Begin Injection +2022/02/22 17:30:01 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0016060c0 373 [] false false map[] 0xc0007b6e00 0xc000828160} +2022/02/22 17:30:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:30:02 [DEBUG] Exit from do method +2022/02/22 17:30:02 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:30:02 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:02 [DEBUG] New state was assigned lineage "bfee33a7-e87f-a781-ae52-15c439a13694" +2022/02/22 17:30:02 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:30:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:02 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:02 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:02 [DEBUG] Test: Executing step 9 +2022/02/22 17:30:02 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (import id \"6214d0301b00000680fd0671\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (import id \"6214d0301b00000680fd0671\")" references: [] +2022/02/22 17:30:02 [DEBUG] Starting graph walk: walkImport +2022/02/22 17:30:02 [DEBUG] 6214d0301b00000680fd0671: Beginning Import +2022/02/22 17:30:02 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:02 [DEBUG] Begin Injection +2022/02/22 17:30:02 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001606240 373 [] false false map[] 0xc0001b6b00 0xc000828160} +2022/02/22 17:30:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:30:02 [DEBUG] Exit from do method +2022/02/22 17:30:02 [DEBUG] 6214d0301b00000680fd0671: Import finished successfully +2022/02/22 17:30:02 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:30:02 id: 6214d0301b00000680fd0671 +2022/02/22 17:30:02 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:02 [DEBUG] Begin Injection +2022/02/22 17:30:02 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000670500 373 [] false false map[] 0xc0001b6f00 0xc000828160} +2022/02/22 17:30:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:30:02 [DEBUG] Exit from do method +2022/02/22 17:30:02 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:30:02 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:02 [DEBUG] New state was assigned lineage "f6bbbcdf-43ea-069c-9608-2ac2d3a9b347" +2022/02/22 17:30:02 [DEBUG] Test: Executing step 10 +2022/02/22 17:30:02 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:02 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:30:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:30:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:02 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:30:02 [ERROR] : eval: *terraform.EvalValidateResource, err: 2 problems: + +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +- Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:30:02 [ERROR] : eval: *terraform.EvalSequence, err: 2 problems: + +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +- Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:30:02 [DEBUG] Test: Executing step 11 +2022/02/22 17:30:02 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:02 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:30:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:30:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:02 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:30:02 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:02 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:30:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:30:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:02 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:30:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:02 [DEBUG] : Beginning Read +2022/02/22 17:30:02 HTTP request GET mso/api/v1/tenants +2022/02/22 17:30:02 [DEBUG] Begin Injection +2022/02/22 17:30:02 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:30:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006d0f80 3980 [] false false map[] 0xc001256200 0xc000828160} +2022/02/22 17:30:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:30:03 [DEBUG] Exit from do method +2022/02/22 17:30:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:03 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:30:03 id: 6214d0301b00000680fd0671 +2022/02/22 17:30:03 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:03 [DEBUG] Begin Injection +2022/02/22 17:30:03 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00059d400 373 [] false false map[] 0xc00151a400 0xc000828160} +2022/02/22 17:30:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 {"id":"6214d0301b00000680fd0671","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.101.135","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:30:03 [DEBUG] Exit from do method +2022/02/22 17:30:03 [DEBUG] 6214d0301b00000680fd0671: Read finished successfully +2022/02/22 17:30:03 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:03 [DEBUG] New state was assigned lineage "a926fad9-846c-dc58-8e9f-8deb01739cca" +2022/02/22 17:30:03 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:30:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:03 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:03 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:03 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "test description" => "" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.101.135" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214d0301b00000680fd0671" => "" + name: "acctest_v4b1s" => "acctest_brrry" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0301b00000680fd0671 + provider = provider.mso + description = test description + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.101.135 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_v4b1s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:30:03 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:30:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 17:30:03 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:30:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:30:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:30:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:03 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:30:03 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:30:03 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:03 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:30:03 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:30:03 [DEBUG] 6214d0301b00000680fd0671: Beginning Read +2022/02/22 17:30:03 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:03 [DEBUG] Begin Injection +2022/02/22 17:30:03 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:03 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:03 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:00:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0007b6300 0xc000828160} +2022/02/22 17:30:03 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0301b00000680fd0671 +2022/02/22 17:30:03 [DEBUG] : Read finished successfully +2022/02/22 17:30:03 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:30:03 [DEBUG] : Beginning Create +2022/02/22 17:30:03 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:30:03 [DEBUG] Begin Injection +2022/02/22 17:30:03 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:30:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:30:04 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:30:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014e99c0 160 [] false false map[] 0xc001596900 0xc000828160} +2022/02/22 17:30:04 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d0441b00001580fd0672","name":"acctest_brrry","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:30:04 [DEBUG] Exit from do method +2022/02/22 17:30:04 [DEBUG] 6214d0441b00001580fd0672: Creation finished successfully +2022/02/22 17:30:04 [DEBUG] 6214d0441b00001580fd0672: Beginning Read +2022/02/22 17:30:04 id: 6214d0441b00001580fd0672 +2022/02/22 17:30:04 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:04 [DEBUG] Begin Injection +2022/02/22 17:30:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00059ca40 160 [] false false map[] 0xc0001b6400 0xc000828160} +2022/02/22 17:30:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 {"id":"6214d0441b00001580fd0672","name":"acctest_brrry","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:30:04 [DEBUG] Exit from do method +2022/02/22 17:30:04 [DEBUG] 6214d0441b00001580fd0672: Read finished successfully +2022/02/22 17:30:04 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:04 [DEBUG] New state was assigned lineage "1b7d9cf5-7f75-4628-4983-7645ad4533ff" +2022/02/22 17:30:04 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:04 [DEBUG] Begin Injection +2022/02/22 17:30:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00059c280 160 [] false false map[] 0xc0001b6000 0xc000828160} +2022/02/22 17:30:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 {"id":"6214d0441b00001580fd0672","name":"acctest_brrry","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:30:04 [DEBUG] Exit from do method +2022/02/22 17:30:04 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:30:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:04 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:30:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:04 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:04 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:30:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:30:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:30:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:04 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:30:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:04 [DEBUG] : Beginning Read +2022/02/22 17:30:04 HTTP request GET mso/api/v1/tenants +2022/02/22 17:30:04 [DEBUG] Begin Injection +2022/02/22 17:30:04 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:30:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00fc0 3980 [] false false map[] 0xc0007b6a00 0xc000828160} +2022/02/22 17:30:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:30:05 [DEBUG] Exit from do method +2022/02/22 17:30:05 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:05 [DEBUG] 6214d0441b00001580fd0672: Beginning Read +2022/02/22 17:30:05 id: 6214d0441b00001580fd0672 +2022/02/22 17:30:05 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:05 [DEBUG] Begin Injection +2022/02/22 17:30:05 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090840 160 [] false false map[] 0xc001256100 0xc000828160} +2022/02/22 17:30:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 {"id":"6214d0441b00001580fd0672","name":"acctest_brrry","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:30:05 [DEBUG] Exit from do method +2022/02/22 17:30:05 [DEBUG] 6214d0441b00001580fd0672: Read finished successfully +2022/02/22 17:30:05 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:05 [DEBUG] New state was assigned lineage "40e3cf34-b2cc-6b59-3660-2bbddcfc5759" +2022/02/22 17:30:05 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:30:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:05 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:05 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:05 [DEBUG] Test: Executing step 12 +2022/02/22 17:30:05 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:05 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:30:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:30:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:05 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:30:05 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:05 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:30:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:30:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:30:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:05 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:05 [DEBUG] : Beginning Read +2022/02/22 17:30:05 HTTP request GET mso/api/v1/tenants +2022/02/22 17:30:05 [DEBUG] Begin Injection +2022/02/22 17:30:05 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:30:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0014e8180 3980 [] false false map[] 0xc001543500 0xc000828160} +2022/02/22 17:30:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:30:05 [DEBUG] Exit from do method +2022/02/22 17:30:05 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:30:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:05 [DEBUG] 6214d0441b00001580fd0672: Beginning Read +2022/02/22 17:30:05 id: 6214d0441b00001580fd0672 +2022/02/22 17:30:05 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:05 [DEBUG] Begin Injection +2022/02/22 17:30:05 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a4240 160 [] false false map[] 0xc001256600 0xc000828160} +2022/02/22 17:30:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 {"id":"6214d0441b00001580fd0672","name":"acctest_brrry","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:30:06 [DEBUG] Exit from do method +2022/02/22 17:30:06 [DEBUG] 6214d0441b00001580fd0672: Read finished successfully +2022/02/22 17:30:06 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:06 [DEBUG] New state was assigned lineage "e29c30d3-02c2-7161-415a-c34bf0f2b8eb" +2022/02/22 17:30:06 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:30:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:06 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:06 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:06 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "0" + id: "6214d0441b00001580fd0672" => "" + name: "acctest_brrry" => "acctest_v4b1s" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0441b00001580fd0672 + provider = provider.mso + description = + name = acctest_brrry + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:30:06 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:30:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:30:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:30:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:30:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:30:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:30:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:30:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:06 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:30:06 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:30:06 [DEBUG] 6214d0441b00001580fd0672: Beginning Read +2022/02/22 17:30:06 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:06 [DEBUG] Begin Injection +2022/02/22 17:30:06 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:06 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:00:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0004e4400 0xc000828160} +2022/02/22 17:30:06 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0441b00001580fd0672 +2022/02/22 17:30:06 [DEBUG] : Read finished successfully +2022/02/22 17:30:06 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:30:06 [DEBUG] : Beginning Create +2022/02/22 17:30:06 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:30:06 [DEBUG] Begin Injection +2022/02/22 17:30:06 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:30:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:30:06 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:30:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00d00 160 [] false false map[] 0xc0004e4800 0xc000828160} +2022/02/22 17:30:06 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d0461b00000c80fd0673","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:30:06 [DEBUG] Exit from do method +2022/02/22 17:30:06 [DEBUG] 6214d0461b00000c80fd0673: Creation finished successfully +2022/02/22 17:30:06 [DEBUG] 6214d0461b00000c80fd0673: Beginning Read +2022/02/22 17:30:06 id: 6214d0461b00000c80fd0673 +2022/02/22 17:30:06 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:06 [DEBUG] Begin Injection +2022/02/22 17:30:06 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a280 160 [] false false map[] 0xc0001b6500 0xc000828160} +2022/02/22 17:30:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 {"id":"6214d0461b00000c80fd0673","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:30:07 [DEBUG] Exit from do method +2022/02/22 17:30:07 [DEBUG] 6214d0461b00000c80fd0673: Read finished successfully +2022/02/22 17:30:07 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:07 [DEBUG] New state was assigned lineage "ac57704d-112e-ce3c-6ec7-42e80ffa273e" +2022/02/22 17:30:07 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:07 [DEBUG] Begin Injection +2022/02/22 17:30:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00e40 160 [] false false map[] 0xc000f1a000 0xc000828160} +2022/02/22 17:30:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 {"id":"6214d0461b00000c80fd0673","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:30:07 [DEBUG] Exit from do method +2022/02/22 17:30:07 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:30:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:07 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:30:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:07 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:07 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:30:07 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:07 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:30:07 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:30:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:07 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:07 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:30:07 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:07 [DEBUG] : Beginning Read +2022/02/22 17:30:07 HTTP request GET mso/api/v1/tenants +2022/02/22 17:30:07 [DEBUG] Begin Injection +2022/02/22 17:30:07 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:30:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a00140 3980 [] false false map[] 0xc001256100 0xc000828160} +2022/02/22 17:30:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:30:07 [DEBUG] Exit from do method +2022/02/22 17:30:07 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:30:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:07 [DEBUG] 6214d0461b00000c80fd0673: Beginning Read +2022/02/22 17:30:07 id: 6214d0461b00000c80fd0673 +2022/02/22 17:30:07 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:07 [DEBUG] Begin Injection +2022/02/22 17:30:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000670140 160 [] false false map[] 0xc000f0c700 0xc000828160} +2022/02/22 17:30:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 {"id":"6214d0461b00000c80fd0673","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:30:08 [DEBUG] Exit from do method +2022/02/22 17:30:08 [DEBUG] 6214d0461b00000c80fd0673: Read finished successfully +2022/02/22 17:30:08 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:08 [DEBUG] New state was assigned lineage "6fea10de-aa5b-f61a-2dd1-b47715659340" +2022/02/22 17:30:08 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:30:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:08 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:08 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:08 [WARN] Test: Executing destroy step +2022/02/22 17:30:08 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:08 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:30:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:08 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:30:08 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:08 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:30:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:08 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:08 [DEBUG] : Beginning Read +2022/02/22 17:30:08 HTTP request GET mso/api/v1/tenants +2022/02/22 17:30:08 [DEBUG] Begin Injection +2022/02/22 17:30:08 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:30:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a004c0 3980 [] false false map[] 0xc0001b6700 0xc000828160} +2022/02/22 17:30:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:30:08 [DEBUG] Exit from do method +2022/02/22 17:30:08 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:30:08 [DEBUG] 6214d0461b00000c80fd0673: Beginning Read +2022/02/22 17:30:08 id: 6214d0461b00000c80fd0673 +2022/02/22 17:30:08 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:08 [DEBUG] Begin Injection +2022/02/22 17:30:08 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000be100 160 [] false false map[] 0xc0001b6b00 0xc000828160} +2022/02/22 17:30:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 {"id":"6214d0461b00000c80fd0673","name":"acctest_v4b1s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:30:08 [DEBUG] Exit from do method +2022/02/22 17:30:08 [DEBUG] 6214d0461b00000c80fd0673: Read finished successfully +2022/02/22 17:30:08 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:08 [DEBUG] New state was assigned lineage "1cf7dae8-aa6c-9fc2-55f0-743044c99415" +2022/02/22 17:30:08 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:30:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:30:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:30:08 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:30:08 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d0461b00000c80fd0673" => "" + name: "acctest_v4b1s" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0461b00000c80fd0673 + provider = provider.mso + description = + name = acctest_v4b1s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:30:08 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:30:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:30:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:08 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:30:08 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:30:08 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:30:08 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:30:08 [DEBUG] 6214d0461b00000c80fd0673: Beginning Read +2022/02/22 17:30:08 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:08 [DEBUG] Begin Injection +2022/02/22 17:30:08 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:09 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:09 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:00:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000ff2000 0xc000828160} +2022/02/22 17:30:09 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:09 [DEBUG] : Read finished successfully +2022/02/22 17:30:09 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:09 [DEBUG] New state was assigned lineage "66b0dd74-445b-7fe9-bd71-b015c110c0cf" +2022/02/22 17:30:09 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:09 [DEBUG] Begin Injection +2022/02/22 17:30:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 +2022/02/22 17:30:09 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:09 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001606440 86 [] false false map[] 0xc0001b6200 0xc000828160} +2022/02/22 17:30:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0461b00000c80fd0673 {"code":141,"message":"Resource Not Found: Policy 6214d0461b00000c80fd0673 not found"} +2022/02/22 17:30:09 [DEBUG] Exit from do method +2022/02/22 17:30:09 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:30:09 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:30:09 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:30:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:30:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:30:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:09 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:30:09 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:30:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:09 [DEBUG] : Beginning Read +2022/02/22 17:30:09 HTTP request GET mso/api/v1/tenants +2022/02/22 17:30:09 [DEBUG] Begin Injection +2022/02/22 17:30:09 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:30:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:30:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:00:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001606380 3980 [] false false map[] 0xc0001b7a00 0xc000828160} +2022/02/22 17:30:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:30:09 [DEBUG] Exit from do method +2022/02/22 17:30:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:30:09 [DEBUG] provider has no plugin.Client +2022/02/22 17:30:09 [DEBUG] New state was assigned lineage "394f5d4f-bf97-bf1a-b532-fc905ce4618d" +2022/02/22 17:30:09 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:30:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:30:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:30:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:30:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:30:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:30:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:30:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:30:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:30:09 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:32:36 [DEBUG] Test: Executing step 0 +2022/02/22 17:32:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:32:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:32:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 17:32:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 17:32:36 [DEBUG] Test: Executing step 1 +2022/02/22 17:32:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:32:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:32:36 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:32:36 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:32:36 [DEBUG] Test: Executing step 2 +2022/02/22 17:32:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:32:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:32:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:32:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:36 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:32:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:36 [DEBUG] : Beginning Read +2022/02/22 17:32:36 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:36 [DEBUG] Begin Injection +2022/02/22 17:32:36 HTTP request POST /login +2022/02/22 17:32:36 HTTP request after injection POST /login +2022/02/22 17:32:36 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:32:38 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:32:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:38 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzI1NTgsImlhdCI6MTY0NTUzMTM1OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJnQ1FjUHhqM1NnbEJJcGNsWE9zZ1F0OTQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.gKHNmep3K9GZho_b8vgoC9cfbvzRrig5Zm-HZDIPFcJtj9j4Tqf9YkEiZTdHspp8m6l0xvBkxb_p_vEND9gCpHlSDbsYQFW6qCE_8tkgdW0UKluSTKE73lWz0C_Zm0w8MHOtZXR2HYJ01kWh-Uf9Z7eE_8veD7IgstLzmiDyWt72ASLHA5qD_fRlhzO6dyQCkyIzZ7yVuI1WwLYhL4QH4oel3erBo3TLPPdZYrmEMvqftrwT2Tj01UDmJh8KcLTVXdiLuTAK4_TeHIgQYOb3owHYOlJlS2XuIiD7ULoHP8xadogBbMPPTJPRGBgKxCAwR33he2fz3J-3JO40-EdPXA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0001dcb80 -1 [chunked] false false map[] 0xc000a80700 0xc000a46000} +2022/02/22 17:32:38 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzI1NTgsImlhdCI6MTY0NTUzMTM1OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJnQ1FjUHhqM1NnbEJJcGNsWE9zZ1F0OTQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.gKHNmep3K9GZho_b8vgoC9cfbvzRrig5Zm-HZDIPFcJtj9j4Tqf9YkEiZTdHspp8m6l0xvBkxb_p_vEND9gCpHlSDbsYQFW6qCE_8tkgdW0UKluSTKE73lWz0C_Zm0w8MHOtZXR2HYJ01kWh-Uf9Z7eE_8veD7IgstLzmiDyWt72ASLHA5qD_fRlhzO6dyQCkyIzZ7yVuI1WwLYhL4QH4oel3erBo3TLPPdZYrmEMvqftrwT2Tj01UDmJh8KcLTVXdiLuTAK4_TeHIgQYOb3owHYOlJlS2XuIiD7ULoHP8xadogBbMPPTJPRGBgKxCAwR33he2fz3J-3JO40-EdPXA","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzI1NTgsImlhdCI6MTY0NTUzMTM1OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJnQ1FjUHhqM1NnbEJJcGNsWE9zZ1F0OTQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.gKHNmep3K9GZho_b8vgoC9cfbvzRrig5Zm-HZDIPFcJtj9j4Tqf9YkEiZTdHspp8m6l0xvBkxb_p_vEND9gCpHlSDbsYQFW6qCE_8tkgdW0UKluSTKE73lWz0C_Zm0w8MHOtZXR2HYJ01kWh-Uf9Z7eE_8veD7IgstLzmiDyWt72ASLHA5qD_fRlhzO6dyQCkyIzZ7yVuI1WwLYhL4QH4oel3erBo3TLPPdZYrmEMvqftrwT2Tj01UDmJh8KcLTVXdiLuTAK4_TeHIgQYOb3owHYOlJlS2XuIiD7ULoHP8xadogBbMPPTJPRGBgKxCAwR33he2fz3J-3JO40-EdPXA"} +2022/02/22 17:32:38 [DEBUG] Exit from do method +2022/02/22 17:32:38 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001941c0 3980 [] false false map[] 0xc000a80600 0xc000a46000} +2022/02/22 17:32:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:38 [DEBUG] Exit from do method +2022/02/22 17:32:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:38 [DEBUG] New state was assigned lineage "e8d4b1e2-87c3-2cba-5e61-06aa13354b10" +2022/02/22 17:32:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:38 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:38 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:32:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:38 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_kqx2s" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:32:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:32:38 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:32:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:32:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:32:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:32:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:32:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:38 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:32:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:32:38 [DEBUG] : Beginning Create +2022/02/22 17:32:38 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:32:38 [DEBUG] Begin Injection +2022/02/22 17:32:38 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:32:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:32:39 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:32:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000194080 160 [] false false map[] 0xc000594600 0xc000a46000} +2022/02/22 17:32:39 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:32:39 [DEBUG] Exit from do method +2022/02/22 17:32:39 [DEBUG] 6214d0de1b00003480fd0674: Creation finished successfully +2022/02/22 17:32:39 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:39 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:39 [DEBUG] Begin Injection +2022/02/22 17:32:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000311480 160 [] false false map[] 0xc000594800 0xc000a46000} +2022/02/22 17:32:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:32:39 [DEBUG] Exit from do method +2022/02/22 17:32:39 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:39 [DEBUG] New state was assigned lineage "b9f3c753-a5c0-7936-2d2f-a2ba6f6cf67f" +2022/02/22 17:32:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:39 [DEBUG] Begin Injection +2022/02/22 17:32:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005842c0 160 [] false false map[] 0xc000544000 0xc000a46000} +2022/02/22 17:32:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:32:39 [DEBUG] Exit from do method +2022/02/22 17:32:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:39 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:39 [DEBUG] : Beginning Read +2022/02/22 17:32:39 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:39 [DEBUG] Begin Injection +2022/02/22 17:32:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d3e680 3980 [] false false map[] 0xc0008e6500 0xc000a46000} +2022/02/22 17:32:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:40 [DEBUG] Exit from do method +2022/02/22 17:32:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:40 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:40 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:40 [DEBUG] Begin Injection +2022/02/22 17:32:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000390b00 160 [] false false map[] 0xc000a80500 0xc000a46000} +2022/02/22 17:32:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:32:40 [DEBUG] Exit from do method +2022/02/22 17:32:40 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:40 [DEBUG] New state was assigned lineage "b31ebd3e-ff08-eade-66d9-0c80cdbea4ed" +2022/02/22 17:32:40 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:40 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:40 [DEBUG] Test: Executing step 3 +2022/02/22 17:32:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:32:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:32:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:40 [DEBUG] : Beginning Read +2022/02/22 17:32:40 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:40 [DEBUG] Begin Injection +2022/02/22 17:32:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000195140 3980 [] false false map[] 0xc000594700 0xc000a46000} +2022/02/22 17:32:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:40 [DEBUG] Exit from do method +2022/02/22 17:32:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:40 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:40 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:40 [DEBUG] Begin Injection +2022/02/22 17:32:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000195240 160 [] false false map[] 0xc000a80500 0xc000a46000} +2022/02/22 17:32:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:32:41 [DEBUG] Exit from do method +2022/02/22 17:32:41 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:41 [DEBUG] New state was assigned lineage "ef77c535-3cae-d115-9a4f-42c9496a07d7" +2022/02/22 17:32:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:41 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.39.214" + id: "6214d0de1b00003480fd0674" => "6214d0de1b00003480fd0674" + name: "acctest_kqx2s" => "acctest_kqx2s" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0de1b00003480fd0674 + provider = provider.mso + description = + name = acctest_kqx2s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:32:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:32:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:32:41 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:32:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:32:41 [DEBUG] 6214d0de1b00003480fd0674: Beginning Policy Update +2022/02/22 17:32:41 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: expected any one of the epg or external_epg. +2022/02/22 17:32:41 [ERROR] : eval: *terraform.EvalApplyPost, err: expected any one of the epg or external_epg. +2022/02/22 17:32:41 [ERROR] : eval: *terraform.EvalSequence, err: expected any one of the epg or external_epg. +2022/02/22 17:32:41 [DEBUG] New state was assigned lineage "37c2b826-c5ed-9724-88e4-6f44fff41e19" +2022/02/22 17:32:41 [DEBUG] Test: Executing step 4 +2022/02/22 17:32:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:32:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:32:41 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 17:32:41 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 17:32:41 [DEBUG] Test: Executing step 5 +2022/02/22 17:32:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:32:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:32:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:41 [DEBUG] : Beginning Read +2022/02/22 17:32:41 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:41 [DEBUG] Begin Injection +2022/02/22 17:32:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000194040 3980 [] false false map[] 0xc000594500 0xc000a46000} +2022/02/22 17:32:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:41 [DEBUG] Exit from do method +2022/02/22 17:32:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:41 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:41 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:41 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:41 [DEBUG] Begin Injection +2022/02/22 17:32:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:41 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:32:41 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:32:41 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:32:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000585440 160 [] false false map[] 0xc000f16500 0xc000a46000} +2022/02/22 17:32:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:32:41 [DEBUG] Exit from do method +2022/02/22 17:32:41 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:41 [DEBUG] New state was assigned lineage "ff90e539-7737-5b61-2864-dfb5e92ac974" +2022/02/22 17:32:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:41 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:32:41 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:32:41 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:32:41 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:32:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:41 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.39.214" + id: "6214d0de1b00003480fd0674" => "6214d0de1b00003480fd0674" + name: "acctest_kqx2s" => "acctest_kqx2s" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_oq0ec" + template_name: "" => "acctest_6qpbs" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_9kff2" + external_epg_name: "" => "acctest_9kff2" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_6qpbs" + vrf_name: "" => "acctest_9kff2" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_9kff2" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_9kff2" + schema_id: "" => "" + template: "" => "acctest_6qpbs" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0de1b00003480fd0674 + provider = provider.mso + description = + name = acctest_kqx2s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:32:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:32:41 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:32:41 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:32:41 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:32:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (prepare state) +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:32:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:32:41 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:32:41 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:32:41 [DEBUG] Schema: Beginning Creation +2022/02/22 17:32:41 HTTP request POST mso/api/v1/schemas +2022/02/22 17:32:41 [DEBUG] Begin Injection +2022/02/22 17:32:41 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:32:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:32:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:32:41 [DEBUG] 6214d0de1b00003480fd0674: Beginning Policy Update +2022/02/22 17:32:41 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: expected any one of the epg or external_epg. +2022/02/22 17:32:41 [ERROR] : eval: *terraform.EvalApplyPost, err: expected any one of the epg or external_epg. +2022/02/22 17:32:41 [ERROR] : eval: *terraform.EvalSequence, err: expected any one of the epg or external_epg. +2022/02/22 17:32:42 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:32:42 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d0e21d0000f6554f9edb] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000194040 400 [] false false map[] 0xc000d85300 0xc000a46000} +2022/02/22 17:32:42 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d0e21d0000f6554f9edb","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:32:42 [DEBUG] Exit from do method +2022/02/22 17:32:42 [DEBUG] 6214d0e21d0000f6554f9edb: Schema Creation finished successfully +2022/02/22 17:32:42 [DEBUG] 6214d0e21d0000f6554f9edb: Beginning Read +2022/02/22 17:32:42 HTTP request GET mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:42 [DEBUG] Begin Injection +2022/02/22 17:32:42 HTTP request after injection GET mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000390540 400 [] false false map[] 0xc000594100 0xc000a46000} +2022/02/22 17:32:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb {"id":"6214d0e21d0000f6554f9edb","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:32:42 [DEBUG] Exit from do method +2022/02/22 17:32:42 [DEBUG] 6214d0e21d0000f6554f9edb: Read finished successfully +2022/02/22 17:32:42 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:32:42 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:32:42 HTTP request PATCH mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:42 [DEBUG] Begin Injection +2022/02/22 17:32:42 HTTP request after injection PATCH mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:43 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:02:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000d84a00 0xc000a46000} +2022/02/22 17:32:43 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:43 [DEBUG] acctest_9kff2: Creation finished successfully +2022/02/22 17:32:43 [DEBUG] acctest_9kff2: Beginning Read +2022/02/22 17:32:43 HTTP request GET mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:43 [DEBUG] Begin Injection +2022/02/22 17:32:43 HTTP request after injection GET mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a7a100 768 [] false false map[] 0xc000d84000 0xc000a46000} +2022/02/22 17:32:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb {"id":"6214d0e21d0000f6554f9edb","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:32:43 [DEBUG] Exit from do method +2022/02/22 17:32:43 currentvrfname acctest_9kff2 +2022/02/22 17:32:43 found correct vrfname +2022/02/22 17:32:43 [DEBUG] acctest_9kff2: Read finished successfully +2022/02/22 17:32:43 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:32:43 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:32:43 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:32:43 HTTP request PATCH mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:43 [DEBUG] Begin Injection +2022/02/22 17:32:43 HTTP request after injection PATCH mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:43 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:02:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a80800 0xc000a46000} +2022/02/22 17:32:43 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:43 [DEBUG] : Beginning Read +2022/02/22 17:32:43 HTTP request GET mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:43 [DEBUG] Begin Injection +2022/02/22 17:32:43 HTTP request after injection GET mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00007e6c0 1147 [] false false map[] 0xc000a80a00 0xc000a46000} +2022/02/22 17:32:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb {"id":"6214d0e21d0000f6554f9edb","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","extEpgType":"on-premise","vrfRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/vrfs/acctest_9kff2","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:32:43 [DEBUG] Exit from do method +2022/02/22 17:32:43 [DEBUG] /schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/externalEpgs/acctest_9kff2: Read finished successfully +2022/02/22 17:32:43 [DEBUG] New state was assigned lineage "cf66b6cd-b190-67e7-833b-6af74de545ef" +2022/02/22 17:32:43 [DEBUG] Test: Executing step 6 +2022/02/22 17:32:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:44 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:32:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:44 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:32:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:44 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:32:44 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:32:44 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:32:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:32:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:32:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:32:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:44 [DEBUG] : Beginning Read +2022/02/22 17:32:44 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:44 [DEBUG] Begin Injection +2022/02/22 17:32:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d3f340 3980 [] false false map[] 0xc000ce2e00 0xc000a46000} +2022/02/22 17:32:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:44 [DEBUG] Exit from do method +2022/02/22 17:32:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:44 [DEBUG] 6214d0e21d0000f6554f9edb: Beginning Read +2022/02/22 17:32:44 HTTP request GET mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:44 [DEBUG] Begin Injection +2022/02/22 17:32:44 HTTP request after injection GET mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:44 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:44 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:44 [DEBUG] Begin Injection +2022/02/22 17:32:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00007e180 1147 [] false false map[] 0xc000f16400 0xc000a46000} +2022/02/22 17:32:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb {"id":"6214d0e21d0000f6554f9edb","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","extEpgType":"on-premise","vrfRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/vrfs/acctest_9kff2","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:32:44 [DEBUG] Exit from do method +2022/02/22 17:32:44 [DEBUG] 6214d0e21d0000f6554f9edb: Read finished successfully +2022/02/22 17:32:44 [DEBUG] acctest_9kff2: Beginning Read +2022/02/22 17:32:44 HTTP request GET mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:44 [DEBUG] Begin Injection +2022/02/22 17:32:44 HTTP request after injection GET mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d3ed80 160 [] false false map[] 0xc000594300 0xc000a46000} +2022/02/22 17:32:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:32:44 [DEBUG] Exit from do method +2022/02/22 17:32:44 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00007f340 1147 [] false false map[] 0xc000ce2400 0xc000a46000} +2022/02/22 17:32:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb {"id":"6214d0e21d0000f6554f9edb","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","extEpgType":"on-premise","vrfRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/vrfs/acctest_9kff2","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:32:45 [DEBUG] Exit from do method +2022/02/22 17:32:45 currentvrfname acctest_9kff2 +2022/02/22 17:32:45 found correct vrfname +2022/02/22 17:32:45 [DEBUG] acctest_9kff2: Read finished successfully +2022/02/22 17:32:45 [DEBUG] /schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/externalEpgs/acctest_9kff2: Beginning Read +2022/02/22 17:32:45 HTTP request GET mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:45 [DEBUG] Begin Injection +2022/02/22 17:32:45 HTTP request after injection GET mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000310ec0 1147 [] false false map[] 0xc000ce2a00 0xc000a46000} +2022/02/22 17:32:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb {"id":"6214d0e21d0000f6554f9edb","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","extEpgType":"on-premise","vrfRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/vrfs/acctest_9kff2","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:32:45 [DEBUG] Exit from do method +2022/02/22 17:32:45 [DEBUG] /schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/externalEpgs/acctest_9kff2: Read finished successfully +2022/02/22 17:32:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:45 [DEBUG] New state was assigned lineage "d8426944-57ba-7754-0ad3-ce94d0a63ae3" +2022/02/22 17:32:45 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:32:45 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:45 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.39.214" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214d0de1b00003480fd0674" => "6214d0de1b00003480fd0674" + name: "acctest_kqx2s" => "acctest_kqx2s" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d0e21d0000f6554f9edb" => "" + name: "acctest_oq0ec" => "" + template_name: "acctest_6qpbs" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_9kff2" => "" + external_epg_name: "acctest_9kff2" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/externalEpgs/acctest_9kff2" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d0e21d0000f6554f9edb" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_6qpbs" => "" + vrf_name: "acctest_9kff2" => "" + vrf_schema_id: "6214d0e21d0000f6554f9edb" => "" + vrf_template_name: "acctest_6qpbs" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_9kff2" => "" + id: "acctest_9kff2" => "" + layer3_multicast: "false" => "" + name: "acctest_9kff2" => "" + schema_id: "6214d0e21d0000f6554f9edb" => "" + template: "acctest_6qpbs" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0de1b00003480fd0674 + provider = provider.mso + description = + name = acctest_kqx2s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 6214d0e21d0000f6554f9edb + provider = provider.mso + name = acctest_oq0ec + template_name = acctest_6qpbs + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d0e21d0000f6554f9edb/templates/acctest_6qpbs/externalEpgs/acctest_9kff2 + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_9kff2 + external_epg_name = acctest_9kff2 + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d0e21d0000f6554f9edb + selector_ip = + selector_name = + template_name = acctest_6qpbs + vrf_name = acctest_9kff2 + vrf_schema_id = 6214d0e21d0000f6554f9edb + vrf_template_name = acctest_6qpbs + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_9kff2 + provider = provider.mso + display_name = acctest_9kff2 + layer3_multicast = false + name = acctest_9kff2 + schema_id = 6214d0e21d0000f6554f9edb + template = acctest_6qpbs + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:32:45 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:32:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:32:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:32:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:45 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:32:45 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:32:45 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:32:45 HTTP request PATCH mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:45 [DEBUG] Begin Injection +2022/02/22 17:32:45 HTTP request after injection PATCH mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:45 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:32:45 [DEBUG] 6214d0de1b00003480fd0674: Beginning Policy Update +2022/02/22 17:32:45 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:45 [DEBUG] Begin Injection +2022/02/22 17:32:45 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:45 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000668740 356 [] false false map[] 0xc000d00200 0xc000f180b0} +2022/02/22 17:32:45 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:32:45 [DEBUG] Exit from do method +2022/02/22 17:32:45 [DEBUG] Policy Update finished successfully: 6214d0de1b00003480fd0674 +2022/02/22 17:32:45 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:45 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:45 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:45 [DEBUG] Begin Injection +2022/02/22 17:32:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:46 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:02:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f16300 0xc000a46160} +2022/02/22 17:32:46 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:46 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:32:46 [DEBUG] acctest_9kff2: Beginning Destroy +2022/02/22 17:32:46 HTTP request PATCH mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:46 [DEBUG] Begin Injection +2022/02/22 17:32:46 HTTP request after injection PATCH mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000668c40 356 [] false false map[] 0xc000594100 0xc000f180b0} +2022/02/22 17:32:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:32:46 [DEBUG] Exit from do method +2022/02/22 17:32:46 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:46 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 17:32:46 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:02:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f16900 0xc000a46160} +2022/02/22 17:32:46 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb?validate=false +2022/02/22 17:32:46 [DEBUG] acctest_9kff2: Destroy finished successfully +2022/02/22 17:32:46 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:32:46 [DEBUG] 6214d0e21d0000f6554f9edb: Beginning Destroy +2022/02/22 17:32:46 HTTP request DELETE mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:46 [DEBUG] Begin Injection +2022/02/22 17:32:46 HTTP request after injection DELETE mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:46 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:02:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000594a00 0xc000a46160} +2022/02/22 17:32:46 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d0e21d0000f6554f9edb +2022/02/22 17:32:46 [DEBUG] 6214d0e21d0000f6554f9edb: Destroy finished successfully +2022/02/22 17:32:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:46 [DEBUG] New state was assigned lineage "ca693ac1-b3bf-774b-a208-d6a9f991451f" +2022/02/22 17:32:46 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:46 [DEBUG] Begin Injection +2022/02/22 17:32:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000194580 356 [] false false map[] 0xc000d00500 0xc000a46160} +2022/02/22 17:32:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:32:46 [DEBUG] Exit from do method +2022/02/22 17:32:46 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:46 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:47 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:47 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:47 [DEBUG] : Beginning Read +2022/02/22 17:32:47 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:47 [DEBUG] Begin Injection +2022/02/22 17:32:47 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000585ac0 3980 [] false false map[] 0xc000594700 0xc000a46160} +2022/02/22 17:32:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:47 [DEBUG] Exit from do method +2022/02/22 17:32:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:47 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:47 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:47 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:47 [DEBUG] Begin Injection +2022/02/22 17:32:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000194240 356 [] false false map[] 0xc0015f4600 0xc000a46160} +2022/02/22 17:32:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:32:47 [DEBUG] Exit from do method +2022/02/22 17:32:47 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:47 [DEBUG] New state was assigned lineage "1912e3c6-1b8a-e6ff-b7b5-a8256e738fe2" +2022/02/22 17:32:47 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:47 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:47 [DEBUG] Test: Executing step 7 +2022/02/22 17:32:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:47 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:32:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:47 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:32:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:47 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:47 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:47 [DEBUG] : Beginning Read +2022/02/22 17:32:47 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:47 [DEBUG] Begin Injection +2022/02/22 17:32:47 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007bc9c0 3980 [] false false map[] 0xc000f26200 0xc000a46160} +2022/02/22 17:32:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:48 [DEBUG] Exit from do method +2022/02/22 17:32:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:48 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:32:48 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:32:48 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:32:48 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:48 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:48 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:48 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:48 [DEBUG] Begin Injection +2022/02/22 17:32:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000390200 356 [] false false map[] 0xc000594300 0xc000a46160} +2022/02/22 17:32:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:32:48 [DEBUG] Exit from do method +2022/02/22 17:32:48 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:48 [DEBUG] New state was assigned lineage "28f9215e-b6de-b99d-3928-c9200f4795ce" +2022/02/22 17:32:48 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:48 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:48 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:32:48 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:32:48 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:32:48 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:48 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.39.214" => "1.2.39.214" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214d0de1b00003480fd0674" => "6214d0de1b00003480fd0674" + name: "acctest_kqx2s" => "acctest_kqx2s" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_oq0ec" + template_name: "" => "acctest_6qpbs" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_9kff2" + external_epg_name: "" => "acctest_9kff2" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_6qpbs" + vrf_name: "" => "acctest_9kff2" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_9kff2" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_9kff2" + schema_id: "" => "" + template: "" => "acctest_6qpbs" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0de1b00003480fd0674 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.39.214 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_kqx2s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:32:48 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:32:48 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:32:48 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:32:48 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:32:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:32:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:48 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:32:48 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:32:48 [DEBUG] Schema: Beginning Creation +2022/02/22 17:32:48 HTTP request POST mso/api/v1/schemas +2022/02/22 17:32:48 [DEBUG] Begin Injection +2022/02/22 17:32:48 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:32:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:32:48 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:32:48 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d0e81d0000f2554f9ee1] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000668980 400 [] false false map[] 0xc0015f5b00 0xc000a46160} +2022/02/22 17:32:48 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d0e81d0000f2554f9ee1","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:32:48 [DEBUG] Exit from do method +2022/02/22 17:32:48 [DEBUG] 6214d0e81d0000f2554f9ee1: Schema Creation finished successfully +2022/02/22 17:32:48 [DEBUG] 6214d0e81d0000f2554f9ee1: Beginning Read +2022/02/22 17:32:48 HTTP request GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:48 [DEBUG] Begin Injection +2022/02/22 17:32:48 HTTP request after injection GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00007e040 400 [] false false map[] 0xc000bf0000 0xc000a46160} +2022/02/22 17:32:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 {"id":"6214d0e81d0000f2554f9ee1","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:32:49 [DEBUG] Exit from do method +2022/02/22 17:32:49 [DEBUG] 6214d0e81d0000f2554f9ee1: Read finished successfully +2022/02/22 17:32:49 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:32:49 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:32:49 HTTP request PATCH mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:49 [DEBUG] Begin Injection +2022/02/22 17:32:49 HTTP request after injection PATCH mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:49 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:49 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:02:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f16500 0xc000a46160} +2022/02/22 17:32:49 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:49 [DEBUG] acctest_9kff2: Creation finished successfully +2022/02/22 17:32:49 [DEBUG] acctest_9kff2: Beginning Read +2022/02/22 17:32:49 HTTP request GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:49 [DEBUG] Begin Injection +2022/02/22 17:32:49 HTTP request after injection GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00007f8c0 768 [] false false map[] 0xc000f16700 0xc000a46160} +2022/02/22 17:32:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 {"id":"6214d0e81d0000f2554f9ee1","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:32:49 [DEBUG] Exit from do method +2022/02/22 17:32:49 currentvrfname acctest_9kff2 +2022/02/22 17:32:49 found correct vrfname +2022/02/22 17:32:49 [DEBUG] acctest_9kff2: Read finished successfully +2022/02/22 17:32:49 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:32:49 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:32:49 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:32:49 HTTP request PATCH mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:49 [DEBUG] Begin Injection +2022/02/22 17:32:49 HTTP request after injection PATCH mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:02:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f17100 0xc000a46160} +2022/02/22 17:32:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:50 [DEBUG] : Beginning Read +2022/02/22 17:32:50 HTTP request GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:50 [DEBUG] Begin Injection +2022/02/22 17:32:50 HTTP request after injection GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dcb80 1147 [] false false map[] 0xc0015f4100 0xc000a46160} +2022/02/22 17:32:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 {"id":"6214d0e81d0000f2554f9ee1","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","extEpgType":"on-premise","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:32:50 [DEBUG] Exit from do method +2022/02/22 17:32:50 [DEBUG] /schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2: Read finished successfully +2022/02/22 17:32:50 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:32:50 [DEBUG] 6214d0de1b00003480fd0674: Beginning Policy Update +2022/02/22 17:32:50 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:50 [DEBUG] Begin Injection +2022/02/22 17:32:50 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:50 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00007e440 360 [] false false map[] 0xc000bf0800 0xc000a46160} +2022/02/22 17:32:50 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"","externalEpgRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:32:50 [DEBUG] Exit from do method +2022/02/22 17:32:50 [DEBUG] Policy Update finished successfully: 6214d0de1b00003480fd0674 +2022/02/22 17:32:50 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:50 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:50 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:50 [DEBUG] Begin Injection +2022/02/22 17:32:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f9a300 360 [] false false map[] 0xc000f16900 0xc000a46160} +2022/02/22 17:32:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"","externalEpgRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:32:50 [DEBUG] Exit from do method +2022/02/22 17:32:50 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:50 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 17:32:50 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:50 [DEBUG] New state was assigned lineage "952bf335-5013-098e-ce61-82672b4694f8" +2022/02/22 17:32:51 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:51 [DEBUG] Begin Injection +2022/02/22 17:32:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000194c80 360 [] false false map[] 0xc0015f4100 0xc000a46160} +2022/02/22 17:32:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"","externalEpgRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:32:51 [DEBUG] Exit from do method +2022/02/22 17:32:51 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:32:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:32:51 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:51 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:51 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:32:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:51 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:51 [DEBUG] : Beginning Read +2022/02/22 17:32:51 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:51 [DEBUG] Begin Injection +2022/02/22 17:32:51 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011da040 3980 [] false false map[] 0xc00074ce00 0xc000a46160} +2022/02/22 17:32:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:51 [DEBUG] Exit from do method +2022/02/22 17:32:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:32:51 [DEBUG] 6214d0e81d0000f2554f9ee1: Beginning Read +2022/02/22 17:32:51 HTTP request GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:51 [DEBUG] Begin Injection +2022/02/22 17:32:51 HTTP request after injection GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011dbb80 1147 [] false false map[] 0xc000ec4500 0xc000a46160} +2022/02/22 17:32:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 {"id":"6214d0e81d0000f2554f9ee1","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","extEpgType":"on-premise","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:32:51 [DEBUG] Exit from do method +2022/02/22 17:32:51 [DEBUG] 6214d0e81d0000f2554f9ee1: Read finished successfully +2022/02/22 17:32:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:32:51 [DEBUG] acctest_9kff2: Beginning Read +2022/02/22 17:32:51 HTTP request GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:51 [DEBUG] Begin Injection +2022/02/22 17:32:51 HTTP request after injection GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007bc100 1147 [] false false map[] 0xc000594600 0xc000a46160} +2022/02/22 17:32:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 {"id":"6214d0e81d0000f2554f9ee1","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","extEpgType":"on-premise","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:32:52 [DEBUG] Exit from do method +2022/02/22 17:32:52 currentvrfname acctest_9kff2 +2022/02/22 17:32:52 found correct vrfname +2022/02/22 17:32:52 [DEBUG] acctest_9kff2: Read finished successfully +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:32:52 [DEBUG] /schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2: Beginning Read +2022/02/22 17:32:52 HTTP request GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:52 [DEBUG] Begin Injection +2022/02/22 17:32:52 HTTP request after injection GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00007e200 1147 [] false false map[] 0xc00074c400 0xc000a46160} +2022/02/22 17:32:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 {"id":"6214d0e81d0000f2554f9ee1","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","extEpgType":"on-premise","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:32:52 [DEBUG] Exit from do method +2022/02/22 17:32:52 [DEBUG] /schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2: Read finished successfully +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:52 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:52 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:52 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:52 [DEBUG] Begin Injection +2022/02/22 17:32:52 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000194a00 360 [] false false map[] 0xc0015f4500 0xc000a46160} +2022/02/22 17:32:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"","externalEpgRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:32:52 [DEBUG] Exit from do method +2022/02/22 17:32:52 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:52 [DEBUG] New state was assigned lineage "142dada9-9cfe-94b4-d4a7-42ccc12e0993" +2022/02/22 17:32:52 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:52 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:52 [DEBUG] Test: Executing step 8 +2022/02/22 17:32:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:32:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:52 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:32:52 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:32:52 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:32:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:52 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:32:52 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:32:52 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:52 [DEBUG] : Beginning Read +2022/02/22 17:32:52 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:52 [DEBUG] Begin Injection +2022/02/22 17:32:52 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000390400 3980 [] false false map[] 0xc000594800 0xc000a46160} +2022/02/22 17:32:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:53 [DEBUG] Exit from do method +2022/02/22 17:32:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:53 [DEBUG] 6214d0e81d0000f2554f9ee1: Beginning Read +2022/02/22 17:32:53 HTTP request GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:53 [DEBUG] Begin Injection +2022/02/22 17:32:53 HTTP request after injection GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:53 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:53 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:53 [DEBUG] Begin Injection +2022/02/22 17:32:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a2bc0 360 [] false false map[] 0xc00123e500 0xc000f180b0} +2022/02/22 17:32:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"","externalEpgRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:32:53 [DEBUG] Exit from do method +2022/02/22 17:32:53 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011da580 1147 [] false false map[] 0xc000f16300 0xc000a46160} +2022/02/22 17:32:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 {"id":"6214d0e81d0000f2554f9ee1","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","extEpgType":"on-premise","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:32:53 [DEBUG] Exit from do method +2022/02/22 17:32:53 [DEBUG] 6214d0e81d0000f2554f9ee1: Read finished successfully +2022/02/22 17:32:53 [DEBUG] acctest_9kff2: Beginning Read +2022/02/22 17:32:53 HTTP request GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:53 [DEBUG] Begin Injection +2022/02/22 17:32:53 HTTP request after injection GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011dae00 1147 [] false false map[] 0xc0001f2300 0xc000a46160} +2022/02/22 17:32:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 {"id":"6214d0e81d0000f2554f9ee1","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","extEpgType":"on-premise","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:32:53 [DEBUG] Exit from do method +2022/02/22 17:32:53 currentvrfname acctest_9kff2 +2022/02/22 17:32:53 found correct vrfname +2022/02/22 17:32:53 [DEBUG] acctest_9kff2: Read finished successfully +2022/02/22 17:32:53 [DEBUG] /schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2: Beginning Read +2022/02/22 17:32:53 HTTP request GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:53 [DEBUG] Begin Injection +2022/02/22 17:32:53 HTTP request after injection GET mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000668700 1147 [] false false map[] 0xc0001f2800 0xc000a46160} +2022/02/22 17:32:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 {"id":"6214d0e81d0000f2554f9ee1","displayName":"acctest_oq0ec","description":"","templates":[{"name":"acctest_6qpbs","displayName":"acctest_6qpbs","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9kff2","displayName":"acctest_9kff2","extEpgType":"on-premise","vrfRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/vrfs/acctest_9kff2","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:32:54 [DEBUG] Exit from do method +2022/02/22 17:32:54 [DEBUG] /schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2: Read finished successfully +2022/02/22 17:32:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:54 [DEBUG] New state was assigned lineage "e3e787a8-741c-1a0d-e83a-bbc7b39f710f" +2022/02/22 17:32:54 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:54 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:54 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "test description" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.39.214" => "1.2.39.214" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214d0de1b00003480fd0674" => "6214d0de1b00003480fd0674" + name: "acctest_kqx2s" => "acctest_kqx2s" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d0e81d0000f2554f9ee1" => "" + name: "acctest_oq0ec" => "" + template_name: "acctest_6qpbs" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_9kff2" => "" + external_epg_name: "acctest_9kff2" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d0e81d0000f2554f9ee1" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_6qpbs" => "" + vrf_name: "acctest_9kff2" => "" + vrf_schema_id: "6214d0e81d0000f2554f9ee1" => "" + vrf_template_name: "acctest_6qpbs" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_9kff2" => "" + id: "acctest_9kff2" => "" + layer3_multicast: "false" => "" + name: "acctest_9kff2" => "" + schema_id: "6214d0e81d0000f2554f9ee1" => "" + template: "acctest_6qpbs" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0de1b00003480fd0674 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.39.214 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2 + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_kqx2s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214d0e81d0000f2554f9ee1 + provider = provider.mso + name = acctest_oq0ec + template_name = acctest_6qpbs + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d0e81d0000f2554f9ee1/templates/acctest_6qpbs/externalEpgs/acctest_9kff2 + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_9kff2 + external_epg_name = acctest_9kff2 + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d0e81d0000f2554f9ee1 + selector_ip = + selector_name = + template_name = acctest_6qpbs + vrf_name = acctest_9kff2 + vrf_schema_id = 6214d0e81d0000f2554f9ee1 + vrf_template_name = acctest_6qpbs + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_9kff2 + provider = provider.mso + display_name = acctest_9kff2 + layer3_multicast = false + name = acctest_9kff2 + schema_id = 6214d0e81d0000f2554f9ee1 + template = acctest_6qpbs + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:32:54 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:32:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:32:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:54 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:32:54 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:32:54 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:32:54 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:32:54 HTTP request PATCH mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:54 [DEBUG] Begin Injection +2022/02/22 17:32:54 HTTP request after injection PATCH mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:54 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:32:54 [DEBUG] 6214d0de1b00003480fd0674: Beginning Policy Update +2022/02/22 17:32:54 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:54 [DEBUG] Begin Injection +2022/02/22 17:32:54 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:54 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00007e4c0 372 [] false false map[] 0xc000f16a00 0xc000f180b0} +2022/02/22 17:32:54 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:32:54 [DEBUG] Exit from do method +2022/02/22 17:32:54 [DEBUG] Policy Update finished successfully: 6214d0de1b00003480fd0674 +2022/02/22 17:32:54 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:54 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:54 [DEBUG] Begin Injection +2022/02/22 17:32:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:54 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:54 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:02:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001438200 0xc000a46160} +2022/02/22 17:32:54 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:54 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:32:54 [DEBUG] acctest_9kff2: Beginning Destroy +2022/02/22 17:32:54 HTTP request PATCH mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:54 [DEBUG] Begin Injection +2022/02/22 17:32:54 HTTP request after injection PATCH mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011db040 372 [] false false map[] 0xc0001f2200 0xc000f180b0} +2022/02/22 17:32:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:32:54 [DEBUG] Exit from do method +2022/02/22 17:32:54 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:54 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 17:32:54 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:54 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:02:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001f2a00 0xc000a46160} +2022/02/22 17:32:54 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1?validate=false +2022/02/22 17:32:54 [DEBUG] acctest_9kff2: Destroy finished successfully +2022/02/22 17:32:54 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:32:54 [DEBUG] 6214d0e81d0000f2554f9ee1: Beginning Destroy +2022/02/22 17:32:54 HTTP request DELETE mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:54 [DEBUG] Begin Injection +2022/02/22 17:32:54 HTTP request after injection DELETE mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:55 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:55 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:02:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000f17100 0xc000a46160} +2022/02/22 17:32:55 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d0e81d0000f2554f9ee1 +2022/02/22 17:32:55 [DEBUG] 6214d0e81d0000f2554f9ee1: Destroy finished successfully +2022/02/22 17:32:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:55 [DEBUG] New state was assigned lineage "7b0eac2b-306c-d5c5-1c31-72cfba63973b" +2022/02/22 17:32:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:55 [DEBUG] Begin Injection +2022/02/22 17:32:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011db200 372 [] false false map[] 0xc001438000 0xc000a46160} +2022/02/22 17:32:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:32:55 [DEBUG] Exit from do method +2022/02/22 17:32:55 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:55 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:55 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:55 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:55 [DEBUG] : Beginning Read +2022/02/22 17:32:55 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:55 [DEBUG] Begin Injection +2022/02/22 17:32:55 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011da040 3980 [] false false map[] 0xc000594900 0xc000a46160} +2022/02/22 17:32:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:55 [DEBUG] Exit from do method +2022/02/22 17:32:55 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:55 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:55 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:55 [DEBUG] Begin Injection +2022/02/22 17:32:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a20c0 372 [] false false map[] 0xc000f16600 0xc000a46160} +2022/02/22 17:32:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:32:56 [DEBUG] Exit from do method +2022/02/22 17:32:56 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:56 [DEBUG] New state was assigned lineage "8f4d01dc-c742-bc76-ab05-f8e0b26260a9" +2022/02/22 17:32:56 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:56 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:56 [DEBUG] Test: Executing step 9 +2022/02/22 17:32:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (import id \"6214d0de1b00003480fd0674\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (import id \"6214d0de1b00003480fd0674\")" references: [] +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:56 [DEBUG] Starting graph walk: walkImport +2022/02/22 17:32:56 [DEBUG] 6214d0de1b00003480fd0674: Beginning Import +2022/02/22 17:32:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:56 [DEBUG] Begin Injection +2022/02/22 17:32:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bcc0 372 [] false false map[] 0xc000594300 0xc000a46160} +2022/02/22 17:32:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:32:56 [DEBUG] Exit from do method +2022/02/22 17:32:56 [DEBUG] 6214d0de1b00003480fd0674: Import finished successfully +2022/02/22 17:32:56 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:56 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:56 [DEBUG] Begin Injection +2022/02/22 17:32:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00007e040 372 [] false false map[] 0xc000508400 0xc000a46160} +2022/02/22 17:32:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:32:56 [DEBUG] Exit from do method +2022/02/22 17:32:56 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:56 [DEBUG] New state was assigned lineage "cfb0434d-42f6-ac92-6985-48304fa31d27" +2022/02/22 17:32:56 [DEBUG] Test: Executing step 10 +2022/02/22 17:32:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:32:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:56 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:32:56 [ERROR] : eval: *terraform.EvalValidateResource, err: 2 problems: + +- Missing required argument: The argument "name" is required, but no definition was found. +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 17:32:56 [ERROR] : eval: *terraform.EvalSequence, err: 2 problems: + +- Missing required argument: The argument "name" is required, but no definition was found. +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 17:32:56 [DEBUG] Test: Executing step 11 +2022/02/22 17:32:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:32:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:56 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:32:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:56 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:56 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:56 [DEBUG] : Beginning Read +2022/02/22 17:32:56 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:56 [DEBUG] Begin Injection +2022/02/22 17:32:56 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000390840 3980 [] false false map[] 0xc000508200 0xc000a46160} +2022/02/22 17:32:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:57 [DEBUG] Exit from do method +2022/02/22 17:32:57 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:57 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:57 id: 6214d0de1b00003480fd0674 +2022/02/22 17:32:57 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:57 [DEBUG] Begin Injection +2022/02/22 17:32:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009a21c0 372 [] false false map[] 0xc000f16600 0xc000a46160} +2022/02/22 17:32:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 {"id":"6214d0de1b00003480fd0674","name":"acctest_kqx2s","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.39.214","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:32:57 [DEBUG] Exit from do method +2022/02/22 17:32:57 [DEBUG] 6214d0de1b00003480fd0674: Read finished successfully +2022/02/22 17:32:57 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:57 [DEBUG] New state was assigned lineage "c3c42487-bf7e-2d9c-9479-a35d226affd8" +2022/02/22 17:32:57 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:57 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:57 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:57 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "test description" => "" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.39.214" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214d0de1b00003480fd0674" => "" + name: "acctest_kqx2s" => "acctest_h9ekh" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0de1b00003480fd0674 + provider = provider.mso + description = test description + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.39.214 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_kqx2s + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:32:57 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:32:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 17:32:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:32:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:32:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:32:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:32:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:32:57 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:32:57 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:32:57 [DEBUG] 6214d0de1b00003480fd0674: Beginning Read +2022/02/22 17:32:57 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:57 [DEBUG] Begin Injection +2022/02/22 17:32:57 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:57 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:02:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000595a00 0xc000a46160} +2022/02/22 17:32:57 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0de1b00003480fd0674 +2022/02/22 17:32:57 [DEBUG] : Read finished successfully +2022/02/22 17:32:57 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:32:57 [DEBUG] : Beginning Create +2022/02/22 17:32:57 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:32:57 [DEBUG] Begin Injection +2022/02/22 17:32:57 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:32:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:32:58 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:32:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011da180 160 [] false false map[] 0xc000594500 0xc000a46160} +2022/02/22 17:32:58 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d0f21b00002c80fd0675","name":"acctest_h9ekh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:32:58 [DEBUG] Exit from do method +2022/02/22 17:32:58 [DEBUG] 6214d0f21b00002c80fd0675: Creation finished successfully +2022/02/22 17:32:58 [DEBUG] 6214d0f21b00002c80fd0675: Beginning Read +2022/02/22 17:32:58 id: 6214d0f21b00002c80fd0675 +2022/02/22 17:32:58 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:58 [DEBUG] Begin Injection +2022/02/22 17:32:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d3fcc0 160 [] false false map[] 0xc000508100 0xc000a46160} +2022/02/22 17:32:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 {"id":"6214d0f21b00002c80fd0675","name":"acctest_h9ekh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:32:58 [DEBUG] Exit from do method +2022/02/22 17:32:58 [DEBUG] 6214d0f21b00002c80fd0675: Read finished successfully +2022/02/22 17:32:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:58 [DEBUG] New state was assigned lineage "4fa38cad-e814-9737-3b37-3f75cdc3dfc1" +2022/02/22 17:32:58 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:58 [DEBUG] Begin Injection +2022/02/22 17:32:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bd40 160 [] false false map[] 0xc000594700 0xc000a46160} +2022/02/22 17:32:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 {"id":"6214d0f21b00002c80fd0675","name":"acctest_h9ekh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:32:58 [DEBUG] Exit from do method +2022/02/22 17:32:58 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:58 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:58 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:58 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:58 [DEBUG] : Beginning Read +2022/02/22 17:32:58 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:58 [DEBUG] Begin Injection +2022/02/22 17:32:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000310700 3980 [] false false map[] 0xc000f16200 0xc000a46160} +2022/02/22 17:32:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:59 [DEBUG] Exit from do method +2022/02/22 17:32:59 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:59 [DEBUG] 6214d0f21b00002c80fd0675: Beginning Read +2022/02/22 17:32:59 id: 6214d0f21b00002c80fd0675 +2022/02/22 17:32:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:59 [DEBUG] Begin Injection +2022/02/22 17:32:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000584380 160 [] false false map[] 0xc000472300 0xc000a46160} +2022/02/22 17:32:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 {"id":"6214d0f21b00002c80fd0675","name":"acctest_h9ekh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:32:59 [DEBUG] Exit from do method +2022/02/22 17:32:59 [DEBUG] 6214d0f21b00002c80fd0675: Read finished successfully +2022/02/22 17:32:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:59 [DEBUG] New state was assigned lineage "b8a8fc21-edda-5267-6349-bc80199cf29e" +2022/02/22 17:32:59 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:32:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:59 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:59 [WARN] Test: Executing destroy step +2022/02/22 17:32:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:59 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:32:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:59 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:32:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:32:59 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:32:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:32:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:32:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:32:59 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:32:59 [DEBUG] : Beginning Read +2022/02/22 17:32:59 HTTP request GET mso/api/v1/tenants +2022/02/22 17:32:59 [DEBUG] Begin Injection +2022/02/22 17:32:59 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:32:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:32:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:02:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000584240 3980 [] false false map[] 0xc00076e200 0xc000a46160} +2022/02/22 17:32:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:32:59 [DEBUG] Exit from do method +2022/02/22 17:32:59 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:32:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:32:59 [DEBUG] 6214d0f21b00002c80fd0675: Beginning Read +2022/02/22 17:32:59 id: 6214d0f21b00002c80fd0675 +2022/02/22 17:32:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:59 [DEBUG] Begin Injection +2022/02/22 17:32:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:32:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:33:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:33:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:03:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000585f00 160 [] false false map[] 0xc000594200 0xc000a46160} +2022/02/22 17:33:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 {"id":"6214d0f21b00002c80fd0675","name":"acctest_h9ekh","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:33:00 [DEBUG] Exit from do method +2022/02/22 17:33:00 [DEBUG] 6214d0f21b00002c80fd0675: Read finished successfully +2022/02/22 17:33:00 [DEBUG] provider has no plugin.Client +2022/02/22 17:33:00 [DEBUG] New state was assigned lineage "d390aa13-6824-9393-b4cc-7ea354fa19ba" +2022/02/22 17:33:00 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:33:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:33:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:33:00 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:33:00 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d0f21b00002c80fd0675" => "" + name: "acctest_h9ekh" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d0f21b00002c80fd0675 + provider = provider.mso + description = + name = acctest_h9ekh + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:33:00 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:33:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:33:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:33:00 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:33:00 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:33:00 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:33:00 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:33:00 [DEBUG] 6214d0f21b00002c80fd0675: Beginning Read +2022/02/22 17:33:00 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:33:00 [DEBUG] Begin Injection +2022/02/22 17:33:00 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:33:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:33:00 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:33:00 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:03:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00047cf00 0xc000a46160} +2022/02/22 17:33:00 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:33:00 [DEBUG] : Read finished successfully +2022/02/22 17:33:00 [DEBUG] provider has no plugin.Client +2022/02/22 17:33:00 [DEBUG] New state was assigned lineage "56bb5d83-7a8e-f3c4-b77e-2f82a77cc2f3" +2022/02/22 17:33:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:33:00 [DEBUG] Begin Injection +2022/02/22 17:33:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:33:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:33:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 +2022/02/22 17:33:00 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:03:00 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011da040 86 [] false false map[] 0xc000f16200 0xc000a46160} +2022/02/22 17:33:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d0f21b00002c80fd0675 {"code":141,"message":"Resource Not Found: Policy 6214d0f21b00002c80fd0675 not found"} +2022/02/22 17:33:00 [DEBUG] Exit from do method +2022/02/22 17:33:00 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:33:00 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:33:00 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:33:00 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:33:00 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:33:00 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:33:00 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:33:00 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:33:00 [DEBUG] : Beginning Read +2022/02/22 17:33:00 HTTP request GET mso/api/v1/tenants +2022/02/22 17:33:00 [DEBUG] Begin Injection +2022/02/22 17:33:00 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:33:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:33:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:33:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:03:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000f4a9c0 3980 [] false false map[] 0xc00076e100 0xc000a46160} +2022/02/22 17:33:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:33:01 [DEBUG] Exit from do method +2022/02/22 17:33:01 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:33:01 [DEBUG] provider has no plugin.Client +2022/02/22 17:33:01 [DEBUG] New state was assigned lineage "834676da-2df9-ea09-8f24-8b7f28ce4776" +2022/02/22 17:33:01 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:33:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:33:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:33:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:33:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:33:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:33:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:33:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:33:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:33:01 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:45:09 [DEBUG] Test: Executing step 0 +2022/02/22 17:45:09 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:09 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:45:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:45:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:09 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:45:09 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:09 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:45:09 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:45:09 [DEBUG] New state was assigned lineage "27b52c1a-0f03-80c7-9cc4-2e48fc05c249" +2022/02/22 17:45:09 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:45:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:45:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:09 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:45:09 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:45:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:45:09 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:09 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_j6o9k" + tenant_id: "" => "x71x2" + + + +STATE: + + +2022/02/22 17:45:09 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:45:09 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:45:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:45:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:45:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:45:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:45:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:09 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:45:09 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:45:09 [DEBUG] : Beginning Create +2022/02/22 17:45:09 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:45:09 [DEBUG] Begin Injection +2022/02/22 17:45:09 HTTP request POST /login +2022/02/22 17:45:09 HTTP request after injection POST /login +2022/02/22 17:45:09 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:45:11 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:45:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:11 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzMzMTEsImlhdCI6MTY0NTUzMjExMSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI5UD1RaFBacE9LUFptTk5PODZGSVFJVGEiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.E58qcZAt2S8eyOixXsU-oPdK8R2bnD02FxopwoRn1q_qWqYk0QYR9ZHpIwwvzWzwXQktzJmlekC-D4gJLRWnDFAtTjK00DgQx6tugdd0iQTx6kSezWqbHFb49MGhayVVpXAVdh81PJD8VytpMJtBkJXxXW0BXQf5Rb0aEvJZmoeyFDKqonRAGDZlP7Pv9s8JqHrsUx2KXHV80ZYKDW1AELDxVkBXDJFLnlINM_p7qF7kGlh7G0C3zFogDTZPHs2GWRoIJY_AU30NzU0I6WeEq5qtiR1ISewbraKIgrHIXT8XcamACE54pAuY72VYYXVOQ7LOgEOkcIg2Qy5DDbLSPg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000314180 -1 [chunked] false false map[] 0xc00042ef00 0xc000415ce0} +2022/02/22 17:45:11 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzMzMTEsImlhdCI6MTY0NTUzMjExMSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI5UD1RaFBacE9LUFptTk5PODZGSVFJVGEiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.E58qcZAt2S8eyOixXsU-oPdK8R2bnD02FxopwoRn1q_qWqYk0QYR9ZHpIwwvzWzwXQktzJmlekC-D4gJLRWnDFAtTjK00DgQx6tugdd0iQTx6kSezWqbHFb49MGhayVVpXAVdh81PJD8VytpMJtBkJXxXW0BXQf5Rb0aEvJZmoeyFDKqonRAGDZlP7Pv9s8JqHrsUx2KXHV80ZYKDW1AELDxVkBXDJFLnlINM_p7qF7kGlh7G0C3zFogDTZPHs2GWRoIJY_AU30NzU0I6WeEq5qtiR1ISewbraKIgrHIXT8XcamACE54pAuY72VYYXVOQ7LOgEOkcIg2Qy5DDbLSPg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzMzMTEsImlhdCI6MTY0NTUzMjExMSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI5UD1RaFBacE9LUFptTk5PODZGSVFJVGEiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.E58qcZAt2S8eyOixXsU-oPdK8R2bnD02FxopwoRn1q_qWqYk0QYR9ZHpIwwvzWzwXQktzJmlekC-D4gJLRWnDFAtTjK00DgQx6tugdd0iQTx6kSezWqbHFb49MGhayVVpXAVdh81PJD8VytpMJtBkJXxXW0BXQf5Rb0aEvJZmoeyFDKqonRAGDZlP7Pv9s8JqHrsUx2KXHV80ZYKDW1AELDxVkBXDJFLnlINM_p7qF7kGlh7G0C3zFogDTZPHs2GWRoIJY_AU30NzU0I6WeEq5qtiR1ISewbraKIgrHIXT8XcamACE54pAuY72VYYXVOQ7LOgEOkcIg2Qy5DDbLSPg"} +2022/02/22 17:45:11 [DEBUG] Exit from do method +2022/02/22 17:45:11 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:45:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:45:12 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:45:12 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[97] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:12 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d80c0 97 [] false false map[] 0xc00042ee00 0xc000415ce0} +2022/02/22 17:45:12 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: The tenant with id x71x2 is not found for the current user."} +2022/02/22 17:45:12 [DEBUG] Exit from do method +2022/02/22 17:45:12 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: The tenant with id x71x2 is not found for the current user."{} +2022/02/22 17:45:12 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: The tenant with id x71x2 is not found for the current user."{} +2022/02/22 17:45:12 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: The tenant with id x71x2 is not found for the current user."{} +2022/02/22 17:45:12 [DEBUG] New state was assigned lineage "a3fc5039-fa5f-82d7-3113-4e63c458a2b8" +2022/02/22 17:45:12 [DEBUG] Test: Executing step 1 +2022/02/22 17:45:12 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:12 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:45:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:12 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:45:12 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of name to be in the range (1 - 1000), got bfc0ampg99x4yvmy4o9c40d4tukk4jmeir3dqyiq6sk9swzf9xlbfad2wln7kns03u9nhdmuob473enky63xsfskqe79qgaptw8y64skjh7aopmn3ym78xnk0n93kqoiysqcky84z692vp40hsb4qov3zxey262m7e38bjqdzgxywidoi71i2trauv27imydkjfc9z4daqgke6fco0hx3oeka6z4rlmk2yt0f7spqqf12cdc2mtjb617yeva9l9vkpwl1wguxh7gftqplf0d2suhzpzm6wjykbxn8ggn7bnbufxro2astljpzx83o6xvc7zofv8u8z49txssx7khm1tflxbos3dktkhslasnmoaomwxi6nu8kwcyrrstlhzgguhxzdfvqas9rnb8s8mllkxakmgijx197s3haaex3ujz9dbmefbww71ipzeimsevijz0gm39ioche0o7bbbbqyhj3czpx0fcw9hfex27emgsxwszaw7ih8pq7qfzfw62ow2nz8zjjftv4pumgucfakvdwh90mhf1ll7x6kv9pbk9amim17cqo86ekheqcawioaz14gq0amo9eturv09l21lwxk8rp9sux0bx6e9sqa4dahtly4mcvp6o8wyhyzdjdcrcw6p8ueqotcnyhr8yx2i1k48gybe643yu0b6obrknnwk3hesmz4l8f1t079679c3jsfto2m0saz79wugypux7nhjzx6app3eycotjffhxhtry8xgy6cs67unlo3mqg3784yns9vs1ljnqzh4w7hkwiodflut4vm9chiovu23exsvustm0omu8ir7fkmxcnlau07onu1974gpp78j1bwpsi8y0lefhkvpd9mzl4vrpbjphz143sqmz9gze0k74yzjxvff21ybvmmt3dq8n0jxgvtlilhx297ielwotrf4sgu7f3sbnnlhupp7gi2jgfpw4zjiayfh7z8u1lunrjuhn6xjodzidt4iifuse8 +2022/02/22 17:45:12 [ERROR] : eval: *terraform.EvalSequence, err: expected length of name to be in the range (1 - 1000), got bfc0ampg99x4yvmy4o9c40d4tukk4jmeir3dqyiq6sk9swzf9xlbfad2wln7kns03u9nhdmuob473enky63xsfskqe79qgaptw8y64skjh7aopmn3ym78xnk0n93kqoiysqcky84z692vp40hsb4qov3zxey262m7e38bjqdzgxywidoi71i2trauv27imydkjfc9z4daqgke6fco0hx3oeka6z4rlmk2yt0f7spqqf12cdc2mtjb617yeva9l9vkpwl1wguxh7gftqplf0d2suhzpzm6wjykbxn8ggn7bnbufxro2astljpzx83o6xvc7zofv8u8z49txssx7khm1tflxbos3dktkhslasnmoaomwxi6nu8kwcyrrstlhzgguhxzdfvqas9rnb8s8mllkxakmgijx197s3haaex3ujz9dbmefbww71ipzeimsevijz0gm39ioche0o7bbbbqyhj3czpx0fcw9hfex27emgsxwszaw7ih8pq7qfzfw62ow2nz8zjjftv4pumgucfakvdwh90mhf1ll7x6kv9pbk9amim17cqo86ekheqcawioaz14gq0amo9eturv09l21lwxk8rp9sux0bx6e9sqa4dahtly4mcvp6o8wyhyzdjdcrcw6p8ueqotcnyhr8yx2i1k48gybe643yu0b6obrknnwk3hesmz4l8f1t079679c3jsfto2m0saz79wugypux7nhjzx6app3eycotjffhxhtry8xgy6cs67unlo3mqg3784yns9vs1ljnqzh4w7hkwiodflut4vm9chiovu23exsvustm0omu8ir7fkmxcnlau07onu1974gpp78j1bwpsi8y0lefhkvpd9mzl4vrpbjphz143sqmz9gze0k74yzjxvff21ybvmmt3dq8n0jxgvtlilhx297ielwotrf4sgu7f3sbnnlhupp7gi2jgfpw4zjiayfh7z8u1lunrjuhn6xjodzidt4iifuse8 +2022/02/22 17:45:12 [DEBUG] Test: Executing step 2 +2022/02/22 17:45:12 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:12 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:45:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:12 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:45:12 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of description to be in the range (1 - 1000), got jt1dz44o2sp9d0hwyorxa61i16tbndnqsknp2gqvuruiwjfjd36l1hv02kolettcl9t6cr779z1e0suaxv4h2uj6cb2ptkcxob713oxcx7ust0xhd4f6094ccmmd0jzxeuuhiqmendqn7pm4hn3xtbesa1dff2edjfzrmabe1hxvsjpn7rd9a8943ufthbb4n4p2icw7kjbi9wd42wxrzf8j4hksy3x7lt8o2q9n34vwvbtaom69fixhfaanyserzdg2q127r6icnn2mi1u2u9dydzj34s2zkceelgd71rvomljrnkiymzs623mcecpsm939i04sjrcl9oj1lbwqirj1nxetbba0ilfoc44kd086kptwc010ewu498evjdzkz4gojibo8cwtnosq1j7reecbe1lyf6ngzlnzjf6x4dgqdeb8mo2pr0zzqml7mihimgmjpqhjq8vfazjaufg6kqnimouz8lsbyjb7k8izqcz1ho3hxqwvxagc9420212ubncvtamrg40wc4ry2k0orv1zg9ii38h9t0lfddfvdrpubplvw2k80rx66whixnb0cwmswropjwekjsld21c7uyxces9a4qmsxeqzxdjdk3xilibcrcmrw3pxsw2m9bid8ptvj8vfmtg16pmgqvt9wi93cyndpk2gpyslacncd67dudjbeu6tk6o9cy60efe2lktw3r2o9ci4xbpkd3ceuk4k92nzoconufy1mavdyffsglsz06juko2isuti7lsqz0k98cr8va3mnifcdfmot44scm1kxp06tvpa2rsdmtht4jfb8hvclbmm3nmf1cnwr7hqo0isdswfju01e8ws1xb6pwb220bnt9v6znwg9m8znyfuxjkob02n27b4de9lfwtxyddhrrosaut8zsril23omc9lhxlzglu1d3ejmfazrzdfhpr03wg1duq8q8g3yjm8ogg3dm7hsxeh7eoyw1n2near90xgswvyzwbgm +2022/02/22 17:45:12 [ERROR] : eval: *terraform.EvalSequence, err: expected length of description to be in the range (1 - 1000), got jt1dz44o2sp9d0hwyorxa61i16tbndnqsknp2gqvuruiwjfjd36l1hv02kolettcl9t6cr779z1e0suaxv4h2uj6cb2ptkcxob713oxcx7ust0xhd4f6094ccmmd0jzxeuuhiqmendqn7pm4hn3xtbesa1dff2edjfzrmabe1hxvsjpn7rd9a8943ufthbb4n4p2icw7kjbi9wd42wxrzf8j4hksy3x7lt8o2q9n34vwvbtaom69fixhfaanyserzdg2q127r6icnn2mi1u2u9dydzj34s2zkceelgd71rvomljrnkiymzs623mcecpsm939i04sjrcl9oj1lbwqirj1nxetbba0ilfoc44kd086kptwc010ewu498evjdzkz4gojibo8cwtnosq1j7reecbe1lyf6ngzlnzjf6x4dgqdeb8mo2pr0zzqml7mihimgmjpqhjq8vfazjaufg6kqnimouz8lsbyjb7k8izqcz1ho3hxqwvxagc9420212ubncvtamrg40wc4ry2k0orv1zg9ii38h9t0lfddfvdrpubplvw2k80rx66whixnb0cwmswropjwekjsld21c7uyxces9a4qmsxeqzxdjdk3xilibcrcmrw3pxsw2m9bid8ptvj8vfmtg16pmgqvt9wi93cyndpk2gpyslacncd67dudjbeu6tk6o9cy60efe2lktw3r2o9ci4xbpkd3ceuk4k92nzoconufy1mavdyffsglsz06juko2isuti7lsqz0k98cr8va3mnifcdfmot44scm1kxp06tvpa2rsdmtht4jfb8hvclbmm3nmf1cnwr7hqo0isdswfju01e8ws1xb6pwb220bnt9v6znwg9m8znyfuxjkob02n27b4de9lfwtxyddhrrosaut8zsril23omc9lhxlzglu1d3ejmfazrzdfhpr03wg1duq8q8g3yjm8ogg3dm7hsxeh7eoyw1n2near90xgswvyzwbgm +2022/02/22 17:45:12 [DEBUG] Test: Executing step 3 +2022/02/22 17:45:12 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:12 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:45:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:12 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:45:12 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "zchsf" is not expected here. +2022/02/22 17:45:12 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "zchsf" is not expected here. +2022/02/22 17:45:12 [DEBUG] Test: Executing step 4 +2022/02/22 17:45:12 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:12 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:45:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:12 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:45:12 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:12 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:45:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:12 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:45:12 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:12 [DEBUG] : Beginning Read +2022/02/22 17:45:12 HTTP request GET mso/api/v1/tenants +2022/02/22 17:45:12 [DEBUG] Begin Injection +2022/02/22 17:45:12 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:45:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:45:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:45:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001a1d00 3980 [] false false map[] 0xc000dee300 0xc000415ce0} +2022/02/22 17:45:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:45:12 [DEBUG] Exit from do method +2022/02/22 17:45:12 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:45:12 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:12 [DEBUG] New state was assigned lineage "1947078b-6446-d6d9-a725-f84891fd1d2d" +2022/02/22 17:45:12 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:45:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:12 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:12 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:45:12 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:45:12 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 17:45:12 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:45:12 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:45:12 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:45:12 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:45:12 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:12 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "2" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.226.104" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + dhcp_relay_policy_provider.1.dhcp_server_address: "" => "1.2.226.104" + dhcp_relay_policy_provider.1.external_epg: "" => "" + dhcp_relay_policy_provider.1.tenant_id: "" => "" + id: "" => "" + name: "" => "acctest_j6o9k" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_vyx0a" + template_name: "" => "acctest_ijqo4" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_9lbjo" + external_epg_name: "" => "acctest_9lbjo" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_ijqo4" + vrf_name: "" => "acctest_9lbjo" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_external_epg.test1 + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_9lbjo" + external_epg_name: "" => "acctest_9lbjo" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_ijqo4" + vrf_name: "" => "acctest_9lbjo" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_9lbjo" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_9lbjo" + schema_id: "" => "" + template: "" => "acctest_ijqo4" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:45:12 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:45:12 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:45:12 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:45:12 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:45:12 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 17:45:12 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:45:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (prepare state)" references: [] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1 mso_schema_template_external_epg.test1 mso_schema_template_external_epg.test1 (prepare state)] +2022/02/22 17:45:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:12 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:45:12 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:45:12 [DEBUG] Schema: Beginning Creation +2022/02/22 17:45:12 HTTP request POST mso/api/v1/schemas +2022/02/22 17:45:12 [DEBUG] Begin Injection +2022/02/22 17:45:12 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:45:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:45:13 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:45:13 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d3d11d000098564f9ee7] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004af40 400 [] false false map[] 0xc00042e400 0xc000415ce0} +2022/02/22 17:45:13 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d3d11d000098564f9ee7","displayName":"acctest_vyx0a","description":"","templates":[{"name":"acctest_ijqo4","displayName":"acctest_ijqo4","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:45:13 [DEBUG] Exit from do method +2022/02/22 17:45:13 [DEBUG] 6214d3d11d000098564f9ee7: Schema Creation finished successfully +2022/02/22 17:45:13 [DEBUG] 6214d3d11d000098564f9ee7: Beginning Read +2022/02/22 17:45:13 HTTP request GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:13 [DEBUG] Begin Injection +2022/02/22 17:45:13 HTTP request after injection GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000794280 400 [] false false map[] 0xc000d9a000 0xc000415ce0} +2022/02/22 17:45:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 {"id":"6214d3d11d000098564f9ee7","displayName":"acctest_vyx0a","description":"","templates":[{"name":"acctest_ijqo4","displayName":"acctest_ijqo4","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:45:13 [DEBUG] Exit from do method +2022/02/22 17:45:13 [DEBUG] 6214d3d11d000098564f9ee7: Read finished successfully +2022/02/22 17:45:13 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:45:13 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:45:13 HTTP request PATCH mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:13 [DEBUG] Begin Injection +2022/02/22 17:45:13 HTTP request after injection PATCH mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:15:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00042e900 0xc000415ce0} +2022/02/22 17:45:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:13 [DEBUG] acctest_9lbjo: Creation finished successfully +2022/02/22 17:45:13 [DEBUG] acctest_9lbjo: Beginning Read +2022/02/22 17:45:13 HTTP request GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:13 [DEBUG] Begin Injection +2022/02/22 17:45:13 HTTP request after injection GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000314400 768 [] false false map[] 0xc000d9a300 0xc000415ce0} +2022/02/22 17:45:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 {"id":"6214d3d11d000098564f9ee7","displayName":"acctest_vyx0a","description":"","templates":[{"name":"acctest_ijqo4","displayName":"acctest_ijqo4","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:45:14 [DEBUG] Exit from do method +2022/02/22 17:45:14 currentvrfname acctest_9lbjo +2022/02/22 17:45:14 found correct vrfname +2022/02/22 17:45:14 [DEBUG] acctest_9lbjo: Read finished successfully +2022/02/22 17:45:14 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:45:14 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:45:14 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:45:14 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:45:14 HTTP request PATCH mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:14 [DEBUG] Begin Injection +2022/02/22 17:45:14 HTTP request after injection PATCH mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:14 [DEBUG] mso_schema_template_external_epg.test1: applying the planned Create change +2022/02/22 17:45:14 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:45:14 HTTP request PATCH mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:14 [DEBUG] Begin Injection +2022/02/22 17:45:14 HTTP request after injection PATCH mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:14 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:15:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0006f6000 0xc000415ce0} +2022/02/22 17:45:14 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:14 [DEBUG] : Beginning Read +2022/02/22 17:45:14 HTTP request GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:14 [DEBUG] Begin Injection +2022/02/22 17:45:14 HTTP request after injection GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:14 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:15:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000074a00 0xc000415ce0} +2022/02/22 17:45:14 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7?validate=false +2022/02/22 17:45:14 [DEBUG] : Beginning Read +2022/02/22 17:45:14 HTTP request GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:14 [DEBUG] Begin Injection +2022/02/22 17:45:14 HTTP request after injection GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a680 1527 [] false false map[] 0xc000074e00 0xc000415ce0} +2022/02/22 17:45:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 {"id":"6214d3d11d000098564f9ee7","displayName":"acctest_vyx0a","description":"","templates":[{"name":"acctest_ijqo4","displayName":"acctest_ijqo4","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","extEpgType":"on-premise","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo","anpRef":"","description":""},{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","extEpgType":"on-premise","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:45:15 [DEBUG] Exit from do method +2022/02/22 17:45:15 [DEBUG] /schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo: Read finished successfully +2022/02/22 17:45:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b940 1527 [] false false map[] 0xc00042e000 0xc000c74160} +2022/02/22 17:45:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 {"id":"6214d3d11d000098564f9ee7","displayName":"acctest_vyx0a","description":"","templates":[{"name":"acctest_ijqo4","displayName":"acctest_ijqo4","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","extEpgType":"on-premise","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo","anpRef":"","description":""},{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","extEpgType":"on-premise","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:45:15 [DEBUG] Exit from do method +2022/02/22 17:45:15 [DEBUG] /schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo: Read finished successfully +2022/02/22 17:45:15 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:45:15 [DEBUG] : Beginning Create +2022/02/22 17:45:15 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:45:15 [DEBUG] Begin Injection +2022/02/22 17:45:15 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:45:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:45:15 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:45:15 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[74] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:15 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000314280 74 [] false false map[] 0xc0006f6400 0xc000c74210} +2022/02/22 17:45:15 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: externalEpgRef cannot be duplicated."} +2022/02/22 17:45:15 [DEBUG] Exit from do method +2022/02/22 17:45:15 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 17:45:15 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 17:45:15 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 17:45:15 [DEBUG] New state was assigned lineage "88ddd2d7-74b3-687f-a9e6-6cfd89b6da25" +2022/02/22 17:45:15 [DEBUG] Test: Executing step 5 +2022/02/22 17:45:15 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:45:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:45:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:15 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:15 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:45:15 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:45:15 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test1 because it has no config +2022/02/22 17:45:15 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:15 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:45:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:15 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:45:15 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:45:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:45:15 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:45:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:45:15 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:15 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:45:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:15 [DEBUG] : Beginning Read +2022/02/22 17:45:15 HTTP request GET mso/api/v1/tenants +2022/02/22 17:45:15 [DEBUG] Begin Injection +2022/02/22 17:45:15 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:45:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:45:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:45:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0011b88c0 3980 [] false false map[] 0xc000074800 0xc000554160} +2022/02/22 17:45:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:45:16 [DEBUG] Exit from do method +2022/02/22 17:45:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:45:16 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:45:16 [DEBUG] 6214d3d11d000098564f9ee7: Beginning Read +2022/02/22 17:45:16 HTTP request GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 [DEBUG] Begin Injection +2022/02/22 17:45:16 HTTP request after injection GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00076c380 1527 [] false false map[] 0xc000772100 0xc000554160} +2022/02/22 17:45:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 {"id":"6214d3d11d000098564f9ee7","displayName":"acctest_vyx0a","description":"","templates":[{"name":"acctest_ijqo4","displayName":"acctest_ijqo4","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","extEpgType":"on-premise","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo","anpRef":"","description":""},{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","extEpgType":"on-premise","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:45:16 [DEBUG] Exit from do method +2022/02/22 17:45:16 [DEBUG] 6214d3d11d000098564f9ee7: Read finished successfully +2022/02/22 17:45:16 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:45:16 [DEBUG] acctest_9lbjo: Beginning Read +2022/02/22 17:45:16 HTTP request GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 [DEBUG] Begin Injection +2022/02/22 17:45:16 HTTP request after injection GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000aea480 1527 [] false false map[] 0xc000defa00 0xc000554160} +2022/02/22 17:45:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 {"id":"6214d3d11d000098564f9ee7","displayName":"acctest_vyx0a","description":"","templates":[{"name":"acctest_ijqo4","displayName":"acctest_ijqo4","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","extEpgType":"on-premise","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo","anpRef":"","description":""},{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","extEpgType":"on-premise","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:45:16 [DEBUG] Exit from do method +2022/02/22 17:45:16 currentvrfname acctest_9lbjo +2022/02/22 17:45:16 found correct vrfname +2022/02/22 17:45:16 [DEBUG] acctest_9lbjo: Read finished successfully +2022/02/22 17:45:16 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:45:16 [DEBUG] /schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo: Beginning Read +2022/02/22 17:45:16 HTTP request GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 [DEBUG] Begin Injection +2022/02/22 17:45:16 HTTP request after injection GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 [DEBUG] /schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo: Beginning Read +2022/02/22 17:45:16 HTTP request GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 [DEBUG] Begin Injection +2022/02/22 17:45:16 HTTP request after injection GET mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000aea5c0 1527 [] false false map[] 0xc000074600 0xc000415ce0} +2022/02/22 17:45:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 {"id":"6214d3d11d000098564f9ee7","displayName":"acctest_vyx0a","description":"","templates":[{"name":"acctest_ijqo4","displayName":"acctest_ijqo4","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","extEpgType":"on-premise","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo","anpRef":"","description":""},{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","extEpgType":"on-premise","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:45:17 [DEBUG] Exit from do method +2022/02/22 17:45:17 [DEBUG] /schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo: Read finished successfully +2022/02/22 17:45:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 +2022/02/22 17:45:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002d8040 1527 [] false false map[] 0xc001098000 0xc000554160} +2022/02/22 17:45:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d3d11d000098564f9ee7 {"id":"6214d3d11d000098564f9ee7","displayName":"acctest_vyx0a","description":"","templates":[{"name":"acctest_ijqo4","displayName":"acctest_ijqo4","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","extEpgType":"on-premise","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo","anpRef":"","description":""},{"name":"acctest_9lbjo","displayName":"acctest_9lbjo","extEpgType":"on-premise","vrfRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/vrfs/acctest_9lbjo","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:45:17 [DEBUG] Exit from do method +2022/02/22 17:45:17 [DEBUG] /schemas/6214d3d11d000098564f9ee7/templates/acctest_ijqo4/externalEpgs/acctest_9lbjo: Read finished successfully +2022/02/22 17:45:17 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:45:17 [ERROR] : eval: *terraform.EvalDiff, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: x71x2 +2022/02/22 17:45:17 [ERROR] : eval: *terraform.EvalSequence, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: x71x2 +2022/02/22 17:45:17 [DEBUG] New state was assigned lineage "28aa0fd4-b2ce-f0a1-0d09-237b19146dbc" +2022/02/22 17:45:17 [DEBUG] Test: Executing step 6 +2022/02/22 17:45:17 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:45:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:17 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:45:17 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "zchsf" is not expected here. +2022/02/22 17:45:17 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "zchsf" is not expected here. +2022/02/22 17:45:17 [DEBUG] Test: Executing step 7 +2022/02/22 17:45:17 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:17 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:45:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:17 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:45:17 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:17 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:45:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:17 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:45:17 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:17 [DEBUG] : Beginning Read +2022/02/22 17:45:17 HTTP request GET mso/api/v1/tenants +2022/02/22 17:45:17 [DEBUG] Begin Injection +2022/02/22 17:45:17 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:45:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:45:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:45:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000315280 3980 [] false false map[] 0xc0010d2200 0xc000554160} +2022/02/22 17:45:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:45:17 [DEBUG] Exit from do method +2022/02/22 17:45:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:45:17 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:17 [DEBUG] New state was assigned lineage "dbcc519c-b4fb-221f-21c2-0200b4072bee" +2022/02/22 17:45:17 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:45:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:45:17 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:17 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:45:17 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:17 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_j6o9k" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:45:17 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:45:17 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:45:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:45:17 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:45:17 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:45:17 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:45:17 [DEBUG] : Beginning Create +2022/02/22 17:45:17 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:45:17 [DEBUG] Begin Injection +2022/02/22 17:45:17 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:45:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:45:18 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:45:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b90480 160 [] false false map[] 0xc000dee500 0xc000554160} +2022/02/22 17:45:18 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d3d51b0000d080fd0679","name":"acctest_j6o9k","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:45:18 [DEBUG] Exit from do method +2022/02/22 17:45:18 [DEBUG] 6214d3d51b0000d080fd0679: Creation finished successfully +2022/02/22 17:45:18 [DEBUG] 6214d3d51b0000d080fd0679: Beginning Read +2022/02/22 17:45:18 id: 6214d3d51b0000d080fd0679 +2022/02/22 17:45:18 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:18 [DEBUG] Begin Injection +2022/02/22 17:45:18 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005b1980 160 [] false false map[] 0xc000074c00 0xc000554160} +2022/02/22 17:45:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 {"id":"6214d3d51b0000d080fd0679","name":"acctest_j6o9k","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:45:18 [DEBUG] Exit from do method +2022/02/22 17:45:18 [DEBUG] 6214d3d51b0000d080fd0679: Read finished successfully +2022/02/22 17:45:18 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:18 [DEBUG] New state was assigned lineage "fd61e525-f031-1e5e-fc87-2dac41ae811e" +2022/02/22 17:45:18 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:45:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:45:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:18 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:45:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:45:18 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:18 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:45:18 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:18 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:45:18 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:45:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:45:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:18 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:18 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:45:18 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:18 [DEBUG] : Beginning Read +2022/02/22 17:45:18 HTTP request GET mso/api/v1/tenants +2022/02/22 17:45:18 [DEBUG] Begin Injection +2022/02/22 17:45:18 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:45:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:45:18 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:45:18 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001a0b40 3980 [] false false map[] 0xc000074700 0xc000554160} +2022/02/22 17:45:18 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:45:18 [DEBUG] Exit from do method +2022/02/22 17:45:18 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:45:18 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:45:18 [DEBUG] 6214d3d51b0000d080fd0679: Beginning Read +2022/02/22 17:45:18 id: 6214d3d51b0000d080fd0679 +2022/02/22 17:45:18 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:18 [DEBUG] Begin Injection +2022/02/22 17:45:18 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:18 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:18 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091d40 160 [] false false map[] 0xc0019ee200 0xc000554160} +2022/02/22 17:45:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 {"id":"6214d3d51b0000d080fd0679","name":"acctest_j6o9k","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:45:19 [DEBUG] Exit from do method +2022/02/22 17:45:19 [DEBUG] 6214d3d51b0000d080fd0679: Read finished successfully +2022/02/22 17:45:19 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:19 [DEBUG] New state was assigned lineage "c05f8957-cdc1-6441-70ed-6f22c0683a1a" +2022/02/22 17:45:19 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:45:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:19 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:45:19 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:19 [WARN] Test: Executing destroy step +2022/02/22 17:45:19 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:19 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:45:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:19 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:45:19 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:19 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:45:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:45:19 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:19 [DEBUG] : Beginning Read +2022/02/22 17:45:19 HTTP request GET mso/api/v1/tenants +2022/02/22 17:45:19 [DEBUG] Begin Injection +2022/02/22 17:45:19 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:45:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:45:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:45:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000314dc0 3980 [] false false map[] 0xc001130200 0xc000554160} +2022/02/22 17:45:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:45:19 [DEBUG] Exit from do method +2022/02/22 17:45:19 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:45:19 [DEBUG] 6214d3d51b0000d080fd0679: Beginning Read +2022/02/22 17:45:19 id: 6214d3d51b0000d080fd0679 +2022/02/22 17:45:19 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:19 [DEBUG] Begin Injection +2022/02/22 17:45:19 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:19 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:19 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:19 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000314140 160 [] false false map[] 0xc0019eed00 0xc000554160} +2022/02/22 17:45:19 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 {"id":"6214d3d51b0000d080fd0679","name":"acctest_j6o9k","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:45:19 [DEBUG] Exit from do method +2022/02/22 17:45:19 [DEBUG] 6214d3d51b0000d080fd0679: Read finished successfully +2022/02/22 17:45:19 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:19 [DEBUG] New state was assigned lineage "ccc52c80-38d6-d807-ec49-6ee5462ecdcf" +2022/02/22 17:45:19 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:45:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:45:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:45:19 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:45:19 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d3d51b0000d080fd0679" => "" + name: "acctest_j6o9k" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d3d51b0000d080fd0679 + provider = provider.mso + description = + name = acctest_j6o9k + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:45:19 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:45:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:19 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:45:19 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:19 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:45:19 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:45:19 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:45:19 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:45:19 [DEBUG] 6214d3d51b0000d080fd0679: Beginning Read +2022/02/22 17:45:19 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:19 [DEBUG] Begin Injection +2022/02/22 17:45:19 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:19 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:20 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:20 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:15:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0015e2200 0xc000554160} +2022/02/22 17:45:20 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:20 [DEBUG] : Read finished successfully +2022/02/22 17:45:20 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:20 [DEBUG] New state was assigned lineage "1a02d3d7-fcb0-3649-cc94-d9f9493c6e01" +2022/02/22 17:45:20 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:20 [DEBUG] Begin Injection +2022/02/22 17:45:20 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 +2022/02/22 17:45:20 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:20 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b2c0 86 [] false false map[] 0xc0019ee900 0xc000554160} +2022/02/22 17:45:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d3d51b0000d080fd0679 {"code":141,"message":"Resource Not Found: Policy 6214d3d51b0000d080fd0679 not found"} +2022/02/22 17:45:20 [DEBUG] Exit from do method +2022/02/22 17:45:20 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:45:20 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:45:20 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:45:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:45:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:45:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:20 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:45:20 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:45:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:20 [DEBUG] : Beginning Read +2022/02/22 17:45:20 HTTP request GET mso/api/v1/tenants +2022/02/22 17:45:20 [DEBUG] Begin Injection +2022/02/22 17:45:20 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:45:20 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:45:20 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:45:20 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:15:20 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000aea040 3980 [] false false map[] 0xc000def500 0xc000554160} +2022/02/22 17:45:20 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:45:20 [DEBUG] Exit from do method +2022/02/22 17:45:20 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:45:20 [DEBUG] provider has no plugin.Client +2022/02/22 17:45:20 [DEBUG] New state was assigned lineage "8becf16c-7ef3-578e-39f1-e60834402da7" +2022/02/22 17:45:20 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:45:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:45:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:45:20 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:45:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:45:20 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:45:20 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:45:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:45:20 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:45:20 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:49:52 [DEBUG] Test: Executing step 0 +2022/02/22 17:49:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:49:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 17:49:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:52 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:52 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:52 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:49:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:49:52 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:49:52 [DEBUG] Test: Executing step 1 +2022/02/22 17:49:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:49:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:49:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:52 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:52 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:49:52 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "cwezf" is not expected here. +2022/02/22 17:49:52 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "cwezf" is not expected here. +2022/02/22 17:49:52 [DEBUG] Test: Executing step 2 +2022/02/22 17:49:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:49:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:49:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:52 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:52 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:49:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:52 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:49:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:49:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:49:52 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:52 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:49:52 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:52 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:49:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:52 [DEBUG] : Beginning Read +2022/02/22 17:49:52 HTTP request GET mso/api/v1/tenants +2022/02/22 17:49:52 [DEBUG] Begin Injection +2022/02/22 17:49:52 HTTP request POST /login +2022/02/22 17:49:52 HTTP request after injection POST /login +2022/02/22 17:49:52 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:49:54 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:49:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:54 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM1OTQsImlhdCI6MTY0NTUzMjM5NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiIyQ01mT2xWUGx6SUM2Z3pFSlNnU3RkM1ciLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.FxDu1_srR80wbBf0XZlgJZgzcS7cQTi3mTOpqjvfRS0l1LXbU3bwN7G2hfPikQWDvZvqFbUaqJrXi1Ra6-f0YWDixbwpXz3A_5y6bCrzAbop5VGnsoh7V9GpECCVyxWIPjTgbS2eow7a0M9hWcyMXdHTkJ-CQ2hOKBNT2bfVp535LUcgz7s3E9Qulhgl9qfdax4GoRj650ud67bECjlE_edOQ0YXjZJ0GQJp7oAkq7z4bLnSxLPSNcsy024xR9AKkm4jicGHKCL6Xw0r5JcAZURgQKOrBCiqMVhkbFv0JQW7Poh8zerjqOARcqC4KrYkJ-bVOgjnF3od8RLvcYLDdQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc00004a180 -1 [chunked] false false map[] 0xc00089c300 0xc000488000} +2022/02/22 17:49:54 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM1OTQsImlhdCI6MTY0NTUzMjM5NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiIyQ01mT2xWUGx6SUM2Z3pFSlNnU3RkM1ciLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.FxDu1_srR80wbBf0XZlgJZgzcS7cQTi3mTOpqjvfRS0l1LXbU3bwN7G2hfPikQWDvZvqFbUaqJrXi1Ra6-f0YWDixbwpXz3A_5y6bCrzAbop5VGnsoh7V9GpECCVyxWIPjTgbS2eow7a0M9hWcyMXdHTkJ-CQ2hOKBNT2bfVp535LUcgz7s3E9Qulhgl9qfdax4GoRj650ud67bECjlE_edOQ0YXjZJ0GQJp7oAkq7z4bLnSxLPSNcsy024xR9AKkm4jicGHKCL6Xw0r5JcAZURgQKOrBCiqMVhkbFv0JQW7Poh8zerjqOARcqC4KrYkJ-bVOgjnF3od8RLvcYLDdQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM1OTQsImlhdCI6MTY0NTUzMjM5NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiIyQ01mT2xWUGx6SUM2Z3pFSlNnU3RkM1ciLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.FxDu1_srR80wbBf0XZlgJZgzcS7cQTi3mTOpqjvfRS0l1LXbU3bwN7G2hfPikQWDvZvqFbUaqJrXi1Ra6-f0YWDixbwpXz3A_5y6bCrzAbop5VGnsoh7V9GpECCVyxWIPjTgbS2eow7a0M9hWcyMXdHTkJ-CQ2hOKBNT2bfVp535LUcgz7s3E9Qulhgl9qfdax4GoRj650ud67bECjlE_edOQ0YXjZJ0GQJp7oAkq7z4bLnSxLPSNcsy024xR9AKkm4jicGHKCL6Xw0r5JcAZURgQKOrBCiqMVhkbFv0JQW7Poh8zerjqOARcqC4KrYkJ-bVOgjnF3od8RLvcYLDdQ"} +2022/02/22 17:49:54 [DEBUG] Exit from do method +2022/02/22 17:49:54 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:49:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:49:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:49:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090200 3980 [] false false map[] 0xc00089c200 0xc000488000} +2022/02/22 17:49:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:49:54 [DEBUG] Exit from do method +2022/02/22 17:49:54 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:49:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:54 [DEBUG] New state was assigned lineage "c3ea0b72-f26e-2887-c68b-6b27ef2cea3a" +2022/02/22 17:49:54 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:49:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:49:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:49:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:49:54 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:54 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:54 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:54 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:54 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_x11k0_invalid" + tenant_id: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_x11k0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:49:54 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:49:54 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:49:54 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:49:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 17:49:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:49:54 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:49:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:49:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:49:54 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:49:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:54 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:49:54 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:49:54 [DEBUG] : Beginning Create +2022/02/22 17:49:54 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:54 [DEBUG] Begin Injection +2022/02/22 17:49:54 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:54 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005fa440 160 [] false false map[] 0xc000828600 0xc000488000} +2022/02/22 17:49:54 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:49:54 [DEBUG] Exit from do method +2022/02/22 17:49:54 [DEBUG] 6214d4ea1b00000e81fd067a: Creation finished successfully +2022/02/22 17:49:54 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Read +2022/02/22 17:49:54 id: 6214d4ea1b00000e81fd067a +2022/02/22 17:49:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:54 [DEBUG] Begin Injection +2022/02/22 17:49:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000219ec0 160 [] false false map[] 0xc0000a4700 0xc000488000} +2022/02/22 17:49:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:49:55 [DEBUG] Exit from do method +2022/02/22 17:49:55 [DEBUG] 6214d4ea1b00000e81fd067a: Read finished successfully +2022/02/22 17:49:55 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:49:55 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:55 [DEBUG] Begin Injection +2022/02/22 17:49:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1415] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005fa580 1415 [] false false map[] 0xc000928900 0xc000488000} +2022/02/22 17:49:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 17:49:55 [DEBUG] Exit from do method +2022/02/22 17:49:55 [ERROR] : eval: *terraform.EvalReadData, err: DHCP Relay Policy with name: acctest_x11k0_invalid not found +2022/02/22 17:49:55 [ERROR] : eval: *terraform.EvalSequence, err: DHCP Relay Policy with name: acctest_x11k0_invalid not found +2022/02/22 17:49:55 [DEBUG] New state was assigned lineage "fe81d44a-7fc0-b707-cccb-167ae9fdf377" +2022/02/22 17:49:55 [DEBUG] Test: Executing step 3 +2022/02/22 17:49:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:55 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:49:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:49:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:55 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:49:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:55 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:49:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:55 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:49:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:55 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:49:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:49:55 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:49:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:49:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:49:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:49:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:55 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:49:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:55 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:49:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:55 [DEBUG] : Beginning Read +2022/02/22 17:49:55 HTTP request GET mso/api/v1/tenants +2022/02/22 17:49:55 [DEBUG] Begin Injection +2022/02/22 17:49:55 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:49:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:49:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:49:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021aec0 3980 [] false false map[] 0xc0000a4300 0xc000488000} +2022/02/22 17:49:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:49:55 [DEBUG] Exit from do method +2022/02/22 17:49:55 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:49:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:55 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Read +2022/02/22 17:49:55 id: 6214d4ea1b00000e81fd067a +2022/02/22 17:49:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:55 [DEBUG] Begin Injection +2022/02/22 17:49:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004ac40 160 [] false false map[] 0xc000928800 0xc000488000} +2022/02/22 17:49:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:49:56 [DEBUG] Exit from do method +2022/02/22 17:49:56 [DEBUG] 6214d4ea1b00000e81fd067a: Read finished successfully +2022/02/22 17:49:56 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:56 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:49:56 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:56 [DEBUG] Begin Injection +2022/02/22 17:49:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1415] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000218440 1415 [] false false map[] 0xc000929000 0xc000488000} +2022/02/22 17:49:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 17:49:56 [DEBUG] Exit from do method +2022/02/22 17:49:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:56 [DEBUG] Begin Injection +2022/02/22 17:49:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005fa380 160 [] false false map[] 0xc000929100 0xc000488000} +2022/02/22 17:49:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:49:56 [DEBUG] Exit from do method +2022/02/22 17:49:56 [DEBUG] 6214d4ea1b00000e81fd067a: Import finished successfully +2022/02/22 17:49:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:56 [DEBUG] New state was assigned lineage "3aab4bd0-83c3-334b-1358-1e9a48dc03cf" +2022/02/22 17:49:56 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:49:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:49:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:49:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:49:56 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:56 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:56 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_x11k0" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.11.6" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214d4ea1b00000e81fd067a" => "6214d4ea1b00000e81fd067a" + name: "acctest_x11k0" => "acctest_x11k0" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 6214d4ea1b00000e81fd067a + provider = provider.mso + description = + name = acctest_x11k0 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d4ea1b00000e81fd067a + provider = provider.mso + description = + name = acctest_x11k0 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:49:56 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:49:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:49:56 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:49:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:49:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:49:56 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:49:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:49:56 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:49:56 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:49:56 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Policy Update +2022/02/22 17:49:56 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:56 [DEBUG] Begin Injection +2022/02/22 17:49:56 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:57 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[354] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00014bc80 354 [] false false map[] 0xc00089c800 0xc000488000} +2022/02/22 17:49:57 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:49:57 [DEBUG] Exit from do method +2022/02/22 17:49:57 [DEBUG] Policy Update finished successfully: 6214d4ea1b00000e81fd067a +2022/02/22 17:49:57 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Read +2022/02/22 17:49:57 id: 6214d4ea1b00000e81fd067a +2022/02/22 17:49:57 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:57 [DEBUG] Begin Injection +2022/02/22 17:49:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[354] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009f8140 354 [] false false map[] 0xc000bf6700 0xc000488000} +2022/02/22 17:49:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:49:57 [DEBUG] Exit from do method +2022/02/22 17:49:57 [DEBUG] 6214d4ea1b00000e81fd067a: Read finished successfully +2022/02/22 17:49:57 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 17:49:57 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:49:57 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:57 [DEBUG] Begin Injection +2022/02/22 17:49:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1609] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009f8040 1609 [] false false map[] 0xc000bf6e00 0xc000488000} +2022/02/22 17:49:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 17:49:57 [DEBUG] Exit from do method +2022/02/22 17:49:57 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:57 [DEBUG] Begin Injection +2022/02/22 17:49:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[354] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000218400 354 [] false false map[] 0xc00089c100 0xc000488000} +2022/02/22 17:49:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:49:58 [DEBUG] Exit from do method +2022/02/22 17:49:58 [DEBUG] 6214d4ea1b00000e81fd067a: Import finished successfully +2022/02/22 17:49:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:58 [DEBUG] New state was assigned lineage "4bb2f205-5f99-a14e-620d-51dfff818f4a" +2022/02/22 17:49:58 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:58 [DEBUG] Begin Injection +2022/02/22 17:49:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[354] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005fb380 354 [] false false map[] 0xc00089c200 0xc000488000} +2022/02/22 17:49:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:49:58 [DEBUG] Exit from do method +2022/02/22 17:49:58 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:49:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:49:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:49:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:49:58 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:58 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:58 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:49:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:49:58 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:49:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:49:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:58 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:58 [DEBUG] : Beginning Read +2022/02/22 17:49:58 HTTP request GET mso/api/v1/tenants +2022/02/22 17:49:58 [DEBUG] Begin Injection +2022/02/22 17:49:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:49:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:49:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:49:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bcbec0 3980 [] false false map[] 0xc000928200 0xc000488000} +2022/02/22 17:49:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:49:58 [DEBUG] Exit from do method +2022/02/22 17:49:58 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:49:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:58 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Read +2022/02/22 17:49:58 id: 6214d4ea1b00000e81fd067a +2022/02/22 17:49:58 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:58 [DEBUG] Begin Injection +2022/02/22 17:49:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[354] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021b040 354 [] false false map[] 0xc000bf6500 0xc000488000} +2022/02/22 17:49:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:49:59 [DEBUG] Exit from do method +2022/02/22 17:49:59 [DEBUG] 6214d4ea1b00000e81fd067a: Read finished successfully +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:59 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:49:59 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:59 [DEBUG] Begin Injection +2022/02/22 17:49:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:49:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1609] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00062bbc0 1609 [] false false map[] 0xc000bf6a00 0xc000488000} +2022/02/22 17:49:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 17:49:59 [DEBUG] Exit from do method +2022/02/22 17:49:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:59 [DEBUG] Begin Injection +2022/02/22 17:49:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:49:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[354] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:19:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d187c0 354 [] false false map[] 0xc000bf6b00 0xc000488000} +2022/02/22 17:49:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:49:59 [DEBUG] Exit from do method +2022/02/22 17:49:59 [DEBUG] 6214d4ea1b00000e81fd067a: Import finished successfully +2022/02/22 17:49:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:59 [DEBUG] New state was assigned lineage "800e7ba3-fa94-2be0-f68a-15567debc590" +2022/02/22 17:49:59 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:49:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:49:59 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:49:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:59 [DEBUG] Test: Executing step 4 +2022/02/22 17:49:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:59 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:49:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:59 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:49:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:49:59 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:49:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:59 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:49:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:49:59 [DEBUG] : Beginning Read +2022/02/22 17:49:59 HTTP request GET mso/api/v1/tenants +2022/02/22 17:49:59 [DEBUG] Begin Injection +2022/02/22 17:49:59 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:49:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021a740 3980 [] false false map[] 0xc000f10500 0xc000488000} +2022/02/22 17:50:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:50:00 [DEBUG] Exit from do method +2022/02/22 17:50:00 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:50:00 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:50:00 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:50:00 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:50:00 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:50:00 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:50:00 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:50:00 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:50:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:00 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Read +2022/02/22 17:50:00 id: 6214d4ea1b00000e81fd067a +2022/02/22 17:50:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:00 [DEBUG] Begin Injection +2022/02/22 17:50:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[354] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a100 354 [] false false map[] 0xc0000a5b00 0xc000488000} +2022/02/22 17:50:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:50:00 [DEBUG] Exit from do method +2022/02/22 17:50:00 [DEBUG] 6214d4ea1b00000e81fd067a: Read finished successfully +2022/02/22 17:50:00 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:00 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:50:00 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:00 [DEBUG] Begin Injection +2022/02/22 17:50:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1609] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090600 1609 [] false false map[] 0xc0000a5e00 0xc000488000} +2022/02/22 17:50:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 17:50:00 [DEBUG] Exit from do method +2022/02/22 17:50:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:00 [DEBUG] Begin Injection +2022/02/22 17:50:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[354] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090040 354 [] false false map[] 0xc000bf6100 0xc000488000} +2022/02/22 17:50:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:50:01 [DEBUG] Exit from do method +2022/02/22 17:50:01 [DEBUG] 6214d4ea1b00000e81fd067a: Import finished successfully +2022/02/22 17:50:01 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:01 [DEBUG] New state was assigned lineage "371c7744-fc88-fbce-25b2-d7706b8b4517" +2022/02/22 17:50:01 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:50:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:50:01 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:01 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:50:01 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:50:01 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:50:01 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:01 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:01 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_x11k0" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.11.6" => "1.2.11.6" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214d4ea1b00000e81fd067a" => "6214d4ea1b00000e81fd067a" + name: "acctest_x11k0" => "acctest_x11k0" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_9cd1g" + template_name: "" => "acctest_av2uc" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_t360f" + external_epg_name: "" => "acctest_t360f" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_av2uc" + vrf_name: "" => "acctest_t360f" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_t360f" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_t360f" + schema_id: "" => "" + template: "" => "acctest_av2uc" + vzany: "" => "" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 6214d4ea1b00000e81fd067a + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.11.6 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_x11k0 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d4ea1b00000e81fd067a + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.11.6 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_x11k0 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:50:01 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:50:01 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:50:01 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:50:01 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:50:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (prepare state) +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:50:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:01 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:50:01 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:50:01 [DEBUG] Schema: Beginning Creation +2022/02/22 17:50:01 HTTP request POST mso/api/v1/schemas +2022/02/22 17:50:01 [DEBUG] Begin Injection +2022/02/22 17:50:01 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:50:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:50:01 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:50:01 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d4f11d0000d0564f9eec] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00062be00 400 [] false false map[] 0xc000bf6700 0xc000488000} +2022/02/22 17:50:01 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d4f11d0000d0564f9eec","displayName":"acctest_9cd1g","description":"","templates":[{"name":"acctest_av2uc","displayName":"acctest_av2uc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:50:01 [DEBUG] Exit from do method +2022/02/22 17:50:01 [DEBUG] 6214d4f11d0000d0564f9eec: Schema Creation finished successfully +2022/02/22 17:50:01 [DEBUG] 6214d4f11d0000d0564f9eec: Beginning Read +2022/02/22 17:50:01 HTTP request GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:01 [DEBUG] Begin Injection +2022/02/22 17:50:01 HTTP request after injection GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090100 400 [] false false map[] 0xc000f10300 0xc000488000} +2022/02/22 17:50:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec {"id":"6214d4f11d0000d0564f9eec","displayName":"acctest_9cd1g","description":"","templates":[{"name":"acctest_av2uc","displayName":"acctest_av2uc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:50:01 [DEBUG] Exit from do method +2022/02/22 17:50:01 [DEBUG] 6214d4f11d0000d0564f9eec: Read finished successfully +2022/02/22 17:50:01 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:50:01 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:50:01 HTTP request PATCH mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:01 [DEBUG] Begin Injection +2022/02/22 17:50:01 HTTP request after injection PATCH mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:02 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:02 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:20:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00089cc00 0xc000488000} +2022/02/22 17:50:02 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:02 [DEBUG] acctest_t360f: Creation finished successfully +2022/02/22 17:50:02 [DEBUG] acctest_t360f: Beginning Read +2022/02/22 17:50:02 HTTP request GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:02 [DEBUG] Begin Injection +2022/02/22 17:50:02 HTTP request after injection GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090040 768 [] false false map[] 0xc000f10500 0xc000488000} +2022/02/22 17:50:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec {"id":"6214d4f11d0000d0564f9eec","displayName":"acctest_9cd1g","description":"","templates":[{"name":"acctest_av2uc","displayName":"acctest_av2uc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_t360f","displayName":"acctest_t360f","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:50:02 [DEBUG] Exit from do method +2022/02/22 17:50:02 currentvrfname acctest_t360f +2022/02/22 17:50:02 found correct vrfname +2022/02/22 17:50:02 [DEBUG] acctest_t360f: Read finished successfully +2022/02/22 17:50:02 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:50:02 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:50:02 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:50:02 HTTP request PATCH mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:02 [DEBUG] Begin Injection +2022/02/22 17:50:02 HTTP request after injection PATCH mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:02 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:02 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:20:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000bf6a00 0xc000488000} +2022/02/22 17:50:02 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:02 [DEBUG] : Beginning Read +2022/02/22 17:50:02 HTTP request GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:02 [DEBUG] Begin Injection +2022/02/22 17:50:02 HTTP request after injection GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090200 1147 [] false false map[] 0xc000f10000 0xc000488000} +2022/02/22 17:50:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec {"id":"6214d4f11d0000d0564f9eec","displayName":"acctest_9cd1g","description":"","templates":[{"name":"acctest_av2uc","displayName":"acctest_av2uc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_t360f","displayName":"acctest_t360f","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_t360f","displayName":"acctest_t360f","extEpgType":"on-premise","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:50:03 [DEBUG] Exit from do method +2022/02/22 17:50:03 [DEBUG] /schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f: Read finished successfully +2022/02/22 17:50:03 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:50:03 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Policy Update +2022/02/22 17:50:03 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:03 [DEBUG] Begin Injection +2022/02/22 17:50:03 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:03 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[358] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d10fc0 358 [] false false map[] 0xc00089d300 0xc000488000} +2022/02/22 17:50:03 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"","externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:50:03 [DEBUG] Exit from do method +2022/02/22 17:50:03 [DEBUG] Policy Update finished successfully: 6214d4ea1b00000e81fd067a +2022/02/22 17:50:03 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Read +2022/02/22 17:50:03 id: 6214d4ea1b00000e81fd067a +2022/02/22 17:50:03 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:03 [DEBUG] Begin Injection +2022/02/22 17:50:03 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[358] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d183c0 358 [] false false map[] 0xc000bf6d00 0xc000488000} +2022/02/22 17:50:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"","externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:50:03 [DEBUG] Exit from do method +2022/02/22 17:50:03 [DEBUG] 6214d4ea1b00000e81fd067a: Read finished successfully +2022/02/22 17:50:03 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 17:50:03 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:50:03 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:03 [DEBUG] Begin Injection +2022/02/22 17:50:03 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1613] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005fa140 1613 [] false false map[] 0xc000f10200 0xc000488000} +2022/02/22 17:50:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"","externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3}]} +2022/02/22 17:50:04 [DEBUG] Exit from do method +2022/02/22 17:50:04 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:04 [DEBUG] Begin Injection +2022/02/22 17:50:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[358] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d18040 358 [] false false map[] 0xc00089c000 0xc000488000} +2022/02/22 17:50:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"","externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:50:04 [DEBUG] Exit from do method +2022/02/22 17:50:04 [DEBUG] 6214d4ea1b00000e81fd067a: Import finished successfully +2022/02/22 17:50:04 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:04 [DEBUG] New state was assigned lineage "b29bcede-b23c-b117-6f32-5248377ae546" +2022/02/22 17:50:04 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:04 [DEBUG] Begin Injection +2022/02/22 17:50:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[358] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009f80c0 358 [] false false map[] 0xc0000a4200 0xc000488000} +2022/02/22 17:50:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"","externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:50:04 [DEBUG] Exit from do method +2022/02/22 17:50:04 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:50:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:50:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:04 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:04 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:04 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:04 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:50:04 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:04 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:04 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:50:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:50:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:04 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:04 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:50:04 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:50:04 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:50:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:04 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:50:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:04 [DEBUG] : Beginning Read +2022/02/22 17:50:04 HTTP request GET mso/api/v1/tenants +2022/02/22 17:50:04 [DEBUG] Begin Injection +2022/02/22 17:50:04 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:50:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021a1c0 3980 [] false false map[] 0xc0008f8e00 0xc000488000} +2022/02/22 17:50:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:50:05 [DEBUG] Exit from do method +2022/02/22 17:50:05 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:50:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:50:05 [DEBUG] 6214d4f11d0000d0564f9eec: Beginning Read +2022/02/22 17:50:05 HTTP request GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:05 [DEBUG] Begin Injection +2022/02/22 17:50:05 HTTP request after injection GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005fa200 1147 [] false false map[] 0xc0000a4c00 0xc000488000} +2022/02/22 17:50:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec {"id":"6214d4f11d0000d0564f9eec","displayName":"acctest_9cd1g","description":"","templates":[{"name":"acctest_av2uc","displayName":"acctest_av2uc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_t360f","displayName":"acctest_t360f","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_t360f","displayName":"acctest_t360f","extEpgType":"on-premise","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:50:05 [DEBUG] Exit from do method +2022/02/22 17:50:05 [DEBUG] 6214d4f11d0000d0564f9eec: Read finished successfully +2022/02/22 17:50:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:50:05 [DEBUG] acctest_t360f: Beginning Read +2022/02/22 17:50:05 HTTP request GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:05 [DEBUG] Begin Injection +2022/02/22 17:50:05 HTTP request after injection GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d18080 1147 [] false false map[] 0xc000bf6400 0xc000488000} +2022/02/22 17:50:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec {"id":"6214d4f11d0000d0564f9eec","displayName":"acctest_9cd1g","description":"","templates":[{"name":"acctest_av2uc","displayName":"acctest_av2uc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_t360f","displayName":"acctest_t360f","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_t360f","displayName":"acctest_t360f","extEpgType":"on-premise","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:50:05 [DEBUG] Exit from do method +2022/02/22 17:50:05 currentvrfname acctest_t360f +2022/02/22 17:50:05 found correct vrfname +2022/02/22 17:50:05 [DEBUG] acctest_t360f: Read finished successfully +2022/02/22 17:50:05 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:50:05 [DEBUG] /schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f: Beginning Read +2022/02/22 17:50:05 HTTP request GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:05 [DEBUG] Begin Injection +2022/02/22 17:50:05 HTTP request after injection GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005fb9c0 1147 [] false false map[] 0xc0000a4f00 0xc000488000} +2022/02/22 17:50:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec {"id":"6214d4f11d0000d0564f9eec","displayName":"acctest_9cd1g","description":"","templates":[{"name":"acctest_av2uc","displayName":"acctest_av2uc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_t360f","displayName":"acctest_t360f","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_t360f","displayName":"acctest_t360f","extEpgType":"on-premise","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:50:06 [DEBUG] Exit from do method +2022/02/22 17:50:06 [DEBUG] /schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f: Read finished successfully +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:06 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Read +2022/02/22 17:50:06 id: 6214d4ea1b00000e81fd067a +2022/02/22 17:50:06 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:06 [DEBUG] Begin Injection +2022/02/22 17:50:06 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[358] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b300 358 [] false false map[] 0xc000f10700 0xc000488000} +2022/02/22 17:50:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"","externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:50:06 [DEBUG] Exit from do method +2022/02/22 17:50:06 [DEBUG] 6214d4ea1b00000e81fd067a: Read finished successfully +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:06 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:50:06 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:06 [DEBUG] Begin Injection +2022/02/22 17:50:06 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1613] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009f8e40 1613 [] false false map[] 0xc000f10e00 0xc000488000} +2022/02/22 17:50:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"","externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3}]} +2022/02/22 17:50:06 [DEBUG] Exit from do method +2022/02/22 17:50:06 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:06 [DEBUG] Begin Injection +2022/02/22 17:50:06 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[358] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009f8fc0 358 [] false false map[] 0xc000f10f00 0xc000488000} +2022/02/22 17:50:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"","externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:50:06 [DEBUG] Exit from do method +2022/02/22 17:50:06 [DEBUG] 6214d4ea1b00000e81fd067a: Import finished successfully +2022/02/22 17:50:06 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:06 [DEBUG] New state was assigned lineage "e12be793-2845-7954-e334-be67ee535d3a" +2022/02/22 17:50:06 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:50:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:06 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:06 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:06 [DEBUG] Test: Executing step 5 +2022/02/22 17:50:06 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:06 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:50:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:50:06 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:50:06 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:50:06 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:50:06 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:50:06 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:06 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:50:06 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:06 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:50:06 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:06 [DEBUG] : Beginning Read +2022/02/22 17:50:06 HTTP request GET mso/api/v1/tenants +2022/02/22 17:50:06 [DEBUG] Begin Injection +2022/02/22 17:50:06 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:50:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d10080 3980 [] false false map[] 0xc000bf6700 0xc000488000} +2022/02/22 17:50:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:50:07 [DEBUG] Exit from do method +2022/02/22 17:50:07 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:50:07 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:07 [DEBUG] 6214d4f11d0000d0564f9eec: Beginning Read +2022/02/22 17:50:07 HTTP request GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:07 [DEBUG] Begin Injection +2022/02/22 17:50:07 HTTP request after injection GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:07 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Read +2022/02/22 17:50:07 id: 6214d4ea1b00000e81fd067a +2022/02/22 17:50:07 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:07 [DEBUG] Begin Injection +2022/02/22 17:50:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a340 1147 [] false false map[] 0xc0000a4700 0xc000488000} +2022/02/22 17:50:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec {"id":"6214d4f11d0000d0564f9eec","displayName":"acctest_9cd1g","description":"","templates":[{"name":"acctest_av2uc","displayName":"acctest_av2uc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_t360f","displayName":"acctest_t360f","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_t360f","displayName":"acctest_t360f","extEpgType":"on-premise","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:50:07 [DEBUG] Exit from do method +2022/02/22 17:50:07 [DEBUG] 6214d4f11d0000d0564f9eec: Read finished successfully +2022/02/22 17:50:07 [DEBUG] acctest_t360f: Beginning Read +2022/02/22 17:50:07 HTTP request GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:07 [DEBUG] Begin Injection +2022/02/22 17:50:07 HTTP request after injection GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[358] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bec0 358 [] false false map[] 0xc000f10600 0xc000488000} +2022/02/22 17:50:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.11.6","epgRef":"","externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:50:07 [DEBUG] Exit from do method +2022/02/22 17:50:07 [DEBUG] 6214d4ea1b00000e81fd067a: Read finished successfully +2022/02/22 17:50:07 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021a3c0 1147 [] false false map[] 0xc000f10e00 0xc000488000} +2022/02/22 17:50:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec {"id":"6214d4f11d0000d0564f9eec","displayName":"acctest_9cd1g","description":"","templates":[{"name":"acctest_av2uc","displayName":"acctest_av2uc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_t360f","displayName":"acctest_t360f","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_t360f","displayName":"acctest_t360f","extEpgType":"on-premise","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:50:08 [DEBUG] Exit from do method +2022/02/22 17:50:08 currentvrfname acctest_t360f +2022/02/22 17:50:08 found correct vrfname +2022/02/22 17:50:08 [DEBUG] acctest_t360f: Read finished successfully +2022/02/22 17:50:08 [DEBUG] /schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f: Beginning Read +2022/02/22 17:50:08 HTTP request GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:08 [DEBUG] Begin Injection +2022/02/22 17:50:08 HTTP request after injection GET mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bca140 1147 [] false false map[] 0xc000f10400 0xc000488000} +2022/02/22 17:50:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec {"id":"6214d4f11d0000d0564f9eec","displayName":"acctest_9cd1g","description":"","templates":[{"name":"acctest_av2uc","displayName":"acctest_av2uc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_t360f","displayName":"acctest_t360f","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_t360f","displayName":"acctest_t360f","extEpgType":"on-premise","vrfRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/vrfs/acctest_t360f","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:50:08 [DEBUG] Exit from do method +2022/02/22 17:50:08 [DEBUG] /schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f: Read finished successfully +2022/02/22 17:50:08 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:08 [DEBUG] New state was assigned lineage "c80b72ab-82b1-ef93-2106-8d44ef986b19" +2022/02/22 17:50:08 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:50:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (orphan) +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:08 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:08 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:08 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:08 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_x11k0" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "w1bg4" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.11.6" => "" + dhcp_relay_policy_provider.0.epg: "" => "" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214d4ea1b00000e81fd067a" => "6214d4ea1b00000e81fd067a" + name: "acctest_x11k0" => "acctest_x11k0" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d4f11d0000d0564f9eec" => "" + name: "acctest_9cd1g" => "" + template_name: "acctest_av2uc" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_t360f" => "" + external_epg_name: "acctest_t360f" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d4f11d0000d0564f9eec" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_av2uc" => "" + vrf_name: "acctest_t360f" => "" + vrf_schema_id: "6214d4f11d0000d0564f9eec" => "" + vrf_template_name: "acctest_av2uc" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_t360f" => "" + id: "acctest_t360f" => "" + layer3_multicast: "false" => "" + name: "acctest_t360f" => "" + schema_id: "6214d4f11d0000d0564f9eec" => "" + template: "acctest_av2uc" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d4ea1b00000e81fd067a + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.11.6 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_x11k0 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214d4f11d0000d0564f9eec + provider = provider.mso + name = acctest_9cd1g + template_name = acctest_av2uc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d4f11d0000d0564f9eec/templates/acctest_av2uc/externalEpgs/acctest_t360f + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_t360f + external_epg_name = acctest_t360f + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d4f11d0000d0564f9eec + selector_ip = + selector_name = + template_name = acctest_av2uc + vrf_name = acctest_t360f + vrf_schema_id = 6214d4f11d0000d0564f9eec + vrf_template_name = acctest_av2uc + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_t360f + provider = provider.mso + display_name = acctest_t360f + layer3_multicast = false + name = acctest_t360f + schema_id = 6214d4f11d0000d0564f9eec + template = acctest_av2uc + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:50:08 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:50:08 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:50:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:08 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:08 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:50:08 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:50:08 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:50:08 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:50:08 HTTP request PATCH mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:08 [DEBUG] Begin Injection +2022/02/22 17:50:08 HTTP request after injection PATCH mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:08 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:50:08 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Policy Update +2022/02/22 17:50:08 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:08 [DEBUG] Begin Injection +2022/02/22 17:50:08 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:08 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:08 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000f10600 0xc0004880b0} +2022/02/22 17:50:08 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:08 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:50:08 [DEBUG] acctest_t360f: Beginning Destroy +2022/02/22 17:50:08 HTTP request PATCH mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:08 [DEBUG] Begin Injection +2022/02/22 17:50:08 HTTP request after injection PATCH mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:08 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bcaa40 165 [] false false map[] 0xc0000a4800 0xc000786000} +2022/02/22 17:50:08 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"w1bg4","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:50:08 [DEBUG] Exit from do method +2022/02/22 17:50:08 [DEBUG] Policy Update finished successfully: 6214d4ea1b00000e81fd067a +2022/02/22 17:50:08 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Read +2022/02/22 17:50:08 id: 6214d4ea1b00000e81fd067a +2022/02/22 17:50:08 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:08 [DEBUG] Begin Injection +2022/02/22 17:50:08 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b6b600 165 [] false false map[] 0xc0000a4d00 0xc000786000} +2022/02/22 17:50:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"w1bg4","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:50:09 [DEBUG] Exit from do method +2022/02/22 17:50:09 [DEBUG] 6214d4ea1b00000e81fd067a: Read finished successfully +2022/02/22 17:50:09 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:50:09 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:09 [DEBUG] Begin Injection +2022/02/22 17:50:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:09 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:09 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:20:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000faec00 0xc0004880b0} +2022/02/22 17:50:09 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec?validate=false +2022/02/22 17:50:09 [DEBUG] acctest_t360f: Destroy finished successfully +2022/02/22 17:50:09 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:50:09 [DEBUG] 6214d4f11d0000d0564f9eec: Beginning Destroy +2022/02/22 17:50:09 HTTP request DELETE mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:09 [DEBUG] Begin Injection +2022/02/22 17:50:09 HTTP request after injection DELETE mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1420] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00014a5c0 1420 [] false false map[] 0xc000faf000 0xc000786000} +2022/02/22 17:50:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"w1bg4","tenantId":"620cf5ad1d0000ab504f9a3d","version":4}]} +2022/02/22 17:50:09 [DEBUG] Exit from do method +2022/02/22 17:50:09 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:09 [DEBUG] Begin Injection +2022/02/22 17:50:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:09 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:09 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:20:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000d52700 0xc0004880b0} +2022/02/22 17:50:09 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d4f11d0000d0564f9eec +2022/02/22 17:50:09 [DEBUG] 6214d4f11d0000d0564f9eec: Destroy finished successfully +2022/02/22 17:50:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00021a500 165 [] false false map[] 0xc000bf6100 0xc000786000} +2022/02/22 17:50:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"w1bg4","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:50:09 [DEBUG] Exit from do method +2022/02/22 17:50:09 [DEBUG] 6214d4ea1b00000e81fd067a: Import finished successfully +2022/02/22 17:50:09 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:09 [DEBUG] New state was assigned lineage "74d6f3a2-1fae-5644-7c13-0fce74ae257b" +2022/02/22 17:50:09 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:09 [DEBUG] Begin Injection +2022/02/22 17:50:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005fa480 165 [] false false map[] 0xc000f10100 0xc000786000} +2022/02/22 17:50:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"w1bg4","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:50:10 [DEBUG] Exit from do method +2022/02/22 17:50:10 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:50:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:10 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:10 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:10 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:50:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:10 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:10 [DEBUG] : Beginning Read +2022/02/22 17:50:10 HTTP request GET mso/api/v1/tenants +2022/02/22 17:50:10 [DEBUG] Begin Injection +2022/02/22 17:50:10 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:50:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005fa200 3980 [] false false map[] 0xc000f11800 0xc000786000} +2022/02/22 17:50:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:50:10 [DEBUG] Exit from do method +2022/02/22 17:50:10 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:10 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Read +2022/02/22 17:50:10 id: 6214d4ea1b00000e81fd067a +2022/02/22 17:50:10 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:10 [DEBUG] Begin Injection +2022/02/22 17:50:10 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005fae00 165 [] false false map[] 0xc000d52500 0xc000786000} +2022/02/22 17:50:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"w1bg4","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:50:10 [DEBUG] Exit from do method +2022/02/22 17:50:10 [DEBUG] 6214d4ea1b00000e81fd067a: Read finished successfully +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:10 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:10 [DEBUG] New state was assigned lineage "370ad4a6-e88f-cacc-00af-bb3a7b4afdb0" +2022/02/22 17:50:10 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:50:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:10 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:10 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:10 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:10 [WARN] Test: Executing destroy step +2022/02/22 17:50:10 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:10 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:50:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:10 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:50:10 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:10 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:50:10 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:10 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:50:10 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:10 [DEBUG] : Beginning Read +2022/02/22 17:50:10 HTTP request GET mso/api/v1/tenants +2022/02/22 17:50:10 [DEBUG] Begin Injection +2022/02/22 17:50:10 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:50:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000bca0c0 3980 [] false false map[] 0xc0012fa500 0xc000786000} +2022/02/22 17:50:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:50:11 [DEBUG] Exit from do method +2022/02/22 17:50:11 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:11 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Read +2022/02/22 17:50:11 id: 6214d4ea1b00000e81fd067a +2022/02/22 17:50:11 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:11 [DEBUG] Begin Injection +2022/02/22 17:50:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005fbd80 165 [] false false map[] 0xc0012fa800 0xc000786000} +2022/02/22 17:50:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"id":"6214d4ea1b00000e81fd067a","name":"acctest_x11k0","policyType":"dhcp","policySubtype":"relay","desc":"w1bg4","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:50:11 [DEBUG] Exit from do method +2022/02/22 17:50:11 [DEBUG] 6214d4ea1b00000e81fd067a: Read finished successfully +2022/02/22 17:50:11 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:11 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:11 [DEBUG] New state was assigned lineage "42a86e7b-f902-5d87-851a-ad6c83fdcb8d" +2022/02/22 17:50:11 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:50:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:50:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:11 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:50:11 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "w1bg4" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d4ea1b00000e81fd067a" => "" + name: "acctest_x11k0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d4ea1b00000e81fd067a + provider = provider.mso + description = w1bg4 + name = acctest_x11k0 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:50:11 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:50:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:50:11 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:50:11 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:50:11 DestroyEdgeTransformer: pruning unused resource node data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:50:11 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:50:11 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:50:11 [DEBUG] 6214d4ea1b00000e81fd067a: Beginning Read +2022/02/22 17:50:11 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:11 [DEBUG] Begin Injection +2022/02/22 17:50:11 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:11 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:11 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:20:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000bf6a00 0xc000786000} +2022/02/22 17:50:11 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:11 [DEBUG] : Read finished successfully +2022/02/22 17:50:11 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:11 [DEBUG] New state was assigned lineage "ac935729-bc22-77ff-a6d6-a6903ce52388" +2022/02/22 17:50:11 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:11 [DEBUG] Begin Injection +2022/02/22 17:50:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a +2022/02/22 17:50:12 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:12 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d10840 86 [] false false map[] 0xc000d52400 0xc000786000} +2022/02/22 17:50:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d4ea1b00000e81fd067a {"code":141,"message":"Resource Not Found: Policy 6214d4ea1b00000e81fd067a not found"} +2022/02/22 17:50:12 [DEBUG] Exit from do method +2022/02/22 17:50:12 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:50:12 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:50:12 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:12 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:12 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:12 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:50:12 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:12 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:50:12 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:12 [DEBUG] : Beginning Read +2022/02/22 17:50:12 HTTP request GET mso/api/v1/tenants +2022/02/22 17:50:12 [DEBUG] Begin Injection +2022/02/22 17:50:12 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:50:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0005fa480 3980 [] false false map[] 0xc0000a4d00 0xc000786000} +2022/02/22 17:50:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:50:12 [DEBUG] Exit from do method +2022/02/22 17:50:12 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:50:12 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:12 [DEBUG] New state was assigned lineage "8db5c2ed-8bc3-5b5a-7040-9f7dde4bb140" +2022/02/22 17:50:12 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:50:12 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:50:12 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:50:12 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:12 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:50:12 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:50:56 [DEBUG] Test: Executing step 0 +2022/02/22 17:50:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:50:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:50:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:56 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:56 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:56 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:50:56 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:50:56 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:50:56 [DEBUG] Test: Executing step 1 +2022/02/22 17:50:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:50:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:50:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:56 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:56 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:50:56 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "fmshn" is not expected here. +2022/02/22 17:50:56 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "fmshn" is not expected here. +2022/02/22 17:50:56 [DEBUG] Test: Executing step 2 +2022/02/22 17:50:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:50:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:50:56 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:56 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:50:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:56 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:50:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:50:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:56 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:56 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:50:56 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:56 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:50:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:56 [DEBUG] : Beginning Read +2022/02/22 17:50:56 HTTP request GET mso/api/v1/tenants +2022/02/22 17:50:56 [DEBUG] Begin Injection +2022/02/22 17:50:56 HTTP request POST /login +2022/02/22 17:50:56 HTTP request after injection POST /login +2022/02/22 17:50:56 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:50:58 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:50:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:58 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM2NTgsImlhdCI6MTY0NTUzMjQ1OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ5Z3laWnFac0NmZ0kxQVZEUnBTPUplbnQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.LI3ouEsXFACyhk9sUpsslK29PFSQ4uN_NnZSAxgoloAw24BVWaRp1tEkk7BbdMVAnHc327G8J3nI4GqrHAhF0UAzL9nTMqOJbdJ5blSRoG4KlfeI1CVGMy6MTfo1pvKZ3N4N3iE3GaKYPSL78iqqzNcSMe9NUM4RPSxgz0wqTosIMZQm59ynczjo-FD6QasIP-NivZWki6kjXV054aV8BkQntmYx3wdXDx1lFvlg0CT5ybVzKvfzTEwMT-KtwDU6IXnggKb92aTiyWvpXcJ0RA7mTLv-67HEpofRKfUQiLwkPGRV8bqoy9Qx9di0Fs1uerciQxH00CLkOjacad866w; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0000903c0 -1 [chunked] false false map[] 0xc0000a6f00 0xc0000e0000} +2022/02/22 17:50:58 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM2NTgsImlhdCI6MTY0NTUzMjQ1OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ5Z3laWnFac0NmZ0kxQVZEUnBTPUplbnQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.LI3ouEsXFACyhk9sUpsslK29PFSQ4uN_NnZSAxgoloAw24BVWaRp1tEkk7BbdMVAnHc327G8J3nI4GqrHAhF0UAzL9nTMqOJbdJ5blSRoG4KlfeI1CVGMy6MTfo1pvKZ3N4N3iE3GaKYPSL78iqqzNcSMe9NUM4RPSxgz0wqTosIMZQm59ynczjo-FD6QasIP-NivZWki6kjXV054aV8BkQntmYx3wdXDx1lFvlg0CT5ybVzKvfzTEwMT-KtwDU6IXnggKb92aTiyWvpXcJ0RA7mTLv-67HEpofRKfUQiLwkPGRV8bqoy9Qx9di0Fs1uerciQxH00CLkOjacad866w","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM2NTgsImlhdCI6MTY0NTUzMjQ1OCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ5Z3laWnFac0NmZ0kxQVZEUnBTPUplbnQiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.LI3ouEsXFACyhk9sUpsslK29PFSQ4uN_NnZSAxgoloAw24BVWaRp1tEkk7BbdMVAnHc327G8J3nI4GqrHAhF0UAzL9nTMqOJbdJ5blSRoG4KlfeI1CVGMy6MTfo1pvKZ3N4N3iE3GaKYPSL78iqqzNcSMe9NUM4RPSxgz0wqTosIMZQm59ynczjo-FD6QasIP-NivZWki6kjXV054aV8BkQntmYx3wdXDx1lFvlg0CT5ybVzKvfzTEwMT-KtwDU6IXnggKb92aTiyWvpXcJ0RA7mTLv-67HEpofRKfUQiLwkPGRV8bqoy9Qx9di0Fs1uerciQxH00CLkOjacad866w"} +2022/02/22 17:50:58 [DEBUG] Exit from do method +2022/02/22 17:50:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:50:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:50:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dec40 3980 [] false false map[] 0xc0000a6e00 0xc0000e0000} +2022/02/22 17:50:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:50:58 [DEBUG] Exit from do method +2022/02/22 17:50:58 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:50:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:58 [DEBUG] New state was assigned lineage "77be4581-9eed-483e-6b05-09b73f4b28b1" +2022/02/22 17:50:58 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:50:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:50:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:58 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:58 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:58 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:58 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:50:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:58 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_kwaqy_invalid" + tenant_id: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_kwaqy" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:50:58 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:50:58 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:50:58 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:50:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:50:58 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:50:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:58 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:50:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:50:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:50:58 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:50:58 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:50:58 [DEBUG] : Beginning Create +2022/02/22 17:50:58 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:58 [DEBUG] Begin Injection +2022/02/22 17:50:58 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:59 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000751bc0 160 [] false false map[] 0xc0000a6f00 0xc0000e0000} +2022/02/22 17:50:59 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:50:59 [DEBUG] Exit from do method +2022/02/22 17:50:59 [DEBUG] 6214d52b1b00002381fd067b: Creation finished successfully +2022/02/22 17:50:59 [DEBUG] 6214d52b1b00002381fd067b: Beginning Read +2022/02/22 17:50:59 id: 6214d52b1b00002381fd067b +2022/02/22 17:50:59 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:50:59 [DEBUG] Begin Injection +2022/02/22 17:50:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:50:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:50:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:50:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000751e40 160 [] false false map[] 0xc0005c6000 0xc0000e0000} +2022/02/22 17:50:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:50:59 [DEBUG] Exit from do method +2022/02/22 17:50:59 [DEBUG] 6214d52b1b00002381fd067b: Read finished successfully +2022/02/22 17:50:59 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:50:59 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:59 [DEBUG] Begin Injection +2022/02/22 17:50:59 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:50:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1415] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:20:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090200 1415 [] false false map[] 0xc0000a7600 0xc0000e0000} +2022/02/22 17:50:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 17:50:59 [DEBUG] Exit from do method +2022/02/22 17:50:59 [ERROR] : eval: *terraform.EvalReadData, err: DHCP Relay Policy with name: acctest_kwaqy_invalid not found +2022/02/22 17:50:59 [ERROR] : eval: *terraform.EvalSequence, err: DHCP Relay Policy with name: acctest_kwaqy_invalid not found +2022/02/22 17:50:59 [DEBUG] New state was assigned lineage "083d7f55-0c69-c2af-07ca-af5fb034f57b" +2022/02/22 17:50:59 [DEBUG] Test: Executing step 3 +2022/02/22 17:50:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:59 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:50:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:50:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:59 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:50:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:59 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:50:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:59 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:50:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:50:59 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:50:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:50:59 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:50:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:59 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:50:59 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:50:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:59 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:50:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:50:59 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:50:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:50:59 [DEBUG] : Beginning Read +2022/02/22 17:50:59 HTTP request GET mso/api/v1/tenants +2022/02/22 17:50:59 [DEBUG] Begin Injection +2022/02/22 17:50:59 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:50:59 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048d440 3980 [] false false map[] 0xc0000a6800 0xc0000e0000} +2022/02/22 17:51:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:51:00 [DEBUG] Exit from do method +2022/02/22 17:51:00 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:51:00 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:00 [DEBUG] 6214d52b1b00002381fd067b: Beginning Read +2022/02/22 17:51:00 id: 6214d52b1b00002381fd067b +2022/02/22 17:51:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:00 [DEBUG] Begin Injection +2022/02/22 17:51:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000224300 160 [] false false map[] 0xc000782700 0xc0000e0000} +2022/02/22 17:51:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:51:00 [DEBUG] Exit from do method +2022/02/22 17:51:00 [DEBUG] 6214d52b1b00002381fd067b: Read finished successfully +2022/02/22 17:51:00 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:51:00 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:00 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:51:00 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:00 [DEBUG] Begin Injection +2022/02/22 17:51:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:00 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:00 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1415] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:00 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00059ef40 1415 [] false false map[] 0xc000428400 0xc0000e0000} +2022/02/22 17:51:00 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 17:51:00 [DEBUG] Exit from do method +2022/02/22 17:51:00 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:00 [DEBUG] Begin Injection +2022/02/22 17:51:00 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:00 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090680 160 [] false false map[] 0xc000ea4100 0xc0000e0000} +2022/02/22 17:51:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:51:01 [DEBUG] Exit from do method +2022/02/22 17:51:01 [DEBUG] 6214d52b1b00002381fd067b: Import finished successfully +2022/02/22 17:51:01 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:01 [DEBUG] New state was assigned lineage "fb7f9a46-35e7-ab58-bbfb-5b47e454e9ff" +2022/02/22 17:51:01 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:51:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:51:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:01 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:01 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:01 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:01 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_kwaqy" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.47.58" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214d52b1b00002381fd067b" => "6214d52b1b00002381fd067b" + name: "acctest_kwaqy" => "acctest_kwaqy" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 6214d52b1b00002381fd067b + provider = provider.mso + description = + name = acctest_kwaqy + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d52b1b00002381fd067b + provider = provider.mso + description = + name = acctest_kwaqy + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:51:01 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:51:01 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:51:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:01 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:01 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:01 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:51:01 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:51:01 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:51:01 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:51:01 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:51:01 [DEBUG] 6214d52b1b00002381fd067b: Beginning Policy Update +2022/02/22 17:51:01 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:01 [DEBUG] Begin Injection +2022/02/22 17:51:01 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:01 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090f00 355 [] false false map[] 0xc000b82d00 0xc0000e0000} +2022/02/22 17:51:01 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:51:01 [DEBUG] Exit from do method +2022/02/22 17:51:01 [DEBUG] Policy Update finished successfully: 6214d52b1b00002381fd067b +2022/02/22 17:51:01 [DEBUG] 6214d52b1b00002381fd067b: Beginning Read +2022/02/22 17:51:01 id: 6214d52b1b00002381fd067b +2022/02/22 17:51:01 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:01 [DEBUG] Begin Injection +2022/02/22 17:51:01 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:01 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:01 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:01 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0002240c0 355 [] false false map[] 0xc000782200 0xc0000e0000} +2022/02/22 17:51:01 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:51:01 [DEBUG] Exit from do method +2022/02/22 17:51:01 [DEBUG] 6214d52b1b00002381fd067b: Read finished successfully +2022/02/22 17:51:01 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 17:51:01 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:51:01 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:01 [DEBUG] Begin Injection +2022/02/22 17:51:01 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:01 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1610] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090780 1610 [] false false map[] 0xc0000a6700 0xc0000e0000} +2022/02/22 17:51:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 17:51:02 [DEBUG] Exit from do method +2022/02/22 17:51:02 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:02 [DEBUG] Begin Injection +2022/02/22 17:51:02 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000908c0 355 [] false false map[] 0xc0000a6800 0xc0000e0000} +2022/02/22 17:51:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:51:02 [DEBUG] Exit from do method +2022/02/22 17:51:02 [DEBUG] 6214d52b1b00002381fd067b: Import finished successfully +2022/02/22 17:51:02 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:02 [DEBUG] New state was assigned lineage "d7f9ff62-ec9a-15e3-5c45-d026160c120a" +2022/02/22 17:51:02 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:02 [DEBUG] Begin Injection +2022/02/22 17:51:02 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:02 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:02 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:02 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00080a040 355 [] false false map[] 0xc000782500 0xc0000e0000} +2022/02/22 17:51:02 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:51:02 [DEBUG] Exit from do method +2022/02/22 17:51:02 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:51:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:51:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:02 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:51:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:02 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:51:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:02 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:51:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:02 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:02 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:02 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:51:02 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:51:02 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:51:02 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:02 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:02 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:51:02 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:51:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:02 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:02 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:51:02 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:02 [DEBUG] : Beginning Read +2022/02/22 17:51:02 HTTP request GET mso/api/v1/tenants +2022/02/22 17:51:02 [DEBUG] Begin Injection +2022/02/22 17:51:02 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:51:02 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090200 3980 [] false false map[] 0xc000782f00 0xc0000e0000} +2022/02/22 17:51:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:51:03 [DEBUG] Exit from do method +2022/02/22 17:51:03 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:51:03 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:03 [DEBUG] 6214d52b1b00002381fd067b: Beginning Read +2022/02/22 17:51:03 id: 6214d52b1b00002381fd067b +2022/02/22 17:51:03 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:03 [DEBUG] Begin Injection +2022/02/22 17:51:03 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a0c0 355 [] false false map[] 0xc000a96200 0xc0000e0000} +2022/02/22 17:51:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:51:03 [DEBUG] Exit from do method +2022/02/22 17:51:03 [DEBUG] 6214d52b1b00002381fd067b: Read finished successfully +2022/02/22 17:51:03 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:03 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:51:03 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:03 [DEBUG] Begin Injection +2022/02/22 17:51:03 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:03 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:03 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1610] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:03 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000750040 1610 [] false false map[] 0xc0000a6a00 0xc0000e0000} +2022/02/22 17:51:03 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 17:51:03 [DEBUG] Exit from do method +2022/02/22 17:51:03 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:03 [DEBUG] Begin Injection +2022/02/22 17:51:03 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:03 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bd80 355 [] false false map[] 0xc0000a6b00 0xc0000e0000} +2022/02/22 17:51:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:51:04 [DEBUG] Exit from do method +2022/02/22 17:51:04 [DEBUG] 6214d52b1b00002381fd067b: Import finished successfully +2022/02/22 17:51:04 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:04 [DEBUG] New state was assigned lineage "4596fc1d-f6e9-73d6-ab94-fe8cada2814e" +2022/02/22 17:51:04 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:51:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:51:04 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:04 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:04 [DEBUG] Test: Executing step 4 +2022/02/22 17:51:04 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:04 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:51:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:51:04 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:51:04 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:04 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:51:04 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:51:04 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:04 [DEBUG] : Beginning Read +2022/02/22 17:51:04 HTTP request GET mso/api/v1/tenants +2022/02/22 17:51:04 [DEBUG] Begin Injection +2022/02/22 17:51:04 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:51:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a040 3980 [] false false map[] 0xc000783e00 0xc0000e0000} +2022/02/22 17:51:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:51:04 [DEBUG] Exit from do method +2022/02/22 17:51:04 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:51:04 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:51:04 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:51:04 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:51:04 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:04 [DEBUG] 6214d52b1b00002381fd067b: Beginning Read +2022/02/22 17:51:04 id: 6214d52b1b00002381fd067b +2022/02/22 17:51:04 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:04 [DEBUG] Begin Injection +2022/02/22 17:51:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:04 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:04 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:04 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090bc0 355 [] false false map[] 0xc000a97500 0xc0000e0000} +2022/02/22 17:51:04 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:51:04 [DEBUG] Exit from do method +2022/02/22 17:51:04 [DEBUG] 6214d52b1b00002381fd067b: Read finished successfully +2022/02/22 17:51:04 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:04 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:51:04 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:04 [DEBUG] Begin Injection +2022/02/22 17:51:04 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:04 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1610] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048d100 1610 [] false false map[] 0xc000782a00 0xc0000e0000} +2022/02/22 17:51:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 17:51:05 [DEBUG] Exit from do method +2022/02/22 17:51:05 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:05 [DEBUG] Begin Injection +2022/02/22 17:51:05 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:05 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:05 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[355] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00059e380 355 [] false false map[] 0xc000782b00 0xc0000e0000} +2022/02/22 17:51:05 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:51:05 [DEBUG] Exit from do method +2022/02/22 17:51:05 [DEBUG] 6214d52b1b00002381fd067b: Import finished successfully +2022/02/22 17:51:05 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:05 [DEBUG] New state was assigned lineage "9ea32866-f88b-8d6a-6ef0-861f8937f5dc" +2022/02/22 17:51:05 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:51:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:05 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:05 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:51:05 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:51:05 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:51:05 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:05 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:05 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_kwaqy" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.47.58" => "1.2.47.58" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214d52b1b00002381fd067b" => "6214d52b1b00002381fd067b" + name: "acctest_kwaqy" => "acctest_kwaqy" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_fvm2n" + template_name: "" => "acctest_fn1dq" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_o3x64" + external_epg_name: "" => "acctest_o3x64" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_fn1dq" + vrf_name: "" => "acctest_o3x64" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_o3x64" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_o3x64" + schema_id: "" => "" + template: "" => "acctest_fn1dq" + vzany: "" => "" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 6214d52b1b00002381fd067b + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.47.58 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_kwaqy + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d52b1b00002381fd067b + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.47.58 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_kwaqy + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:51:05 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:51:05 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:51:05 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:51:05 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:51:05 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:05 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:51:05 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:51:05 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:51:05 [DEBUG] Schema: Beginning Creation +2022/02/22 17:51:05 HTTP request POST mso/api/v1/schemas +2022/02/22 17:51:05 [DEBUG] Begin Injection +2022/02/22 17:51:05 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:51:05 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:51:06 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:51:06 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:05 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d5311d0000e1564f9ef2] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000224480 400 [] false false map[] 0xc000e16b00 0xc0000e0000} +2022/02/22 17:51:06 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d5311d0000e1564f9ef2","displayName":"acctest_fvm2n","description":"","templates":[{"name":"acctest_fn1dq","displayName":"acctest_fn1dq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:51:06 [DEBUG] Exit from do method +2022/02/22 17:51:06 [DEBUG] 6214d5311d0000e1564f9ef2: Schema Creation finished successfully +2022/02/22 17:51:06 [DEBUG] 6214d5311d0000e1564f9ef2: Beginning Read +2022/02/22 17:51:06 HTTP request GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:06 [DEBUG] Begin Injection +2022/02/22 17:51:06 HTTP request after injection GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:06 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:06 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000224700 400 [] false false map[] 0xc000e16d00 0xc0000e0000} +2022/02/22 17:51:06 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 {"id":"6214d5311d0000e1564f9ef2","displayName":"acctest_fvm2n","description":"","templates":[{"name":"acctest_fn1dq","displayName":"acctest_fn1dq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:51:06 [DEBUG] Exit from do method +2022/02/22 17:51:06 [DEBUG] 6214d5311d0000e1564f9ef2: Read finished successfully +2022/02/22 17:51:06 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:51:06 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:51:06 HTTP request PATCH mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:06 [DEBUG] Begin Injection +2022/02/22 17:51:06 HTTP request after injection PATCH mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:06 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:06 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:21:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000a97000 0xc0000e0000} +2022/02/22 17:51:06 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:06 [DEBUG] acctest_o3x64: Creation finished successfully +2022/02/22 17:51:06 [DEBUG] acctest_o3x64: Beginning Read +2022/02/22 17:51:06 HTTP request GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:06 [DEBUG] Begin Injection +2022/02/22 17:51:06 HTTP request after injection GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:06 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:06 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000902c0 768 [] false false map[] 0xc0000a6200 0xc0000e0000} +2022/02/22 17:51:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 {"id":"6214d5311d0000e1564f9ef2","displayName":"acctest_fvm2n","description":"","templates":[{"name":"acctest_fn1dq","displayName":"acctest_fn1dq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:51:07 [DEBUG] Exit from do method +2022/02/22 17:51:07 currentvrfname acctest_o3x64 +2022/02/22 17:51:07 found correct vrfname +2022/02/22 17:51:07 [DEBUG] acctest_o3x64: Read finished successfully +2022/02/22 17:51:07 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:51:07 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:51:07 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:51:07 HTTP request PATCH mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:07 [DEBUG] Begin Injection +2022/02/22 17:51:07 HTTP request after injection PATCH mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:07 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:07 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:21:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000e16b00 0xc0000e0000} +2022/02/22 17:51:07 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:07 [DEBUG] : Beginning Read +2022/02/22 17:51:07 HTTP request GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:07 [DEBUG] Begin Injection +2022/02/22 17:51:07 HTTP request after injection GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:07 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a68640 1147 [] false false map[] 0xc0000a6100 0xc0000e0000} +2022/02/22 17:51:07 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 {"id":"6214d5311d0000e1564f9ef2","displayName":"acctest_fvm2n","description":"","templates":[{"name":"acctest_fn1dq","displayName":"acctest_fn1dq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","extEpgType":"on-premise","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:51:07 [DEBUG] Exit from do method +2022/02/22 17:51:07 [DEBUG] /schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64: Read finished successfully +2022/02/22 17:51:07 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:51:07 [DEBUG] 6214d52b1b00002381fd067b: Beginning Policy Update +2022/02/22 17:51:07 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:07 [DEBUG] Begin Injection +2022/02/22 17:51:07 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:07 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:07 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:07 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000750080 359 [] false false map[] 0xc000e17d00 0xc0000e0000} +2022/02/22 17:51:07 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"","externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:51:07 [DEBUG] Exit from do method +2022/02/22 17:51:07 [DEBUG] Policy Update finished successfully: 6214d52b1b00002381fd067b +2022/02/22 17:51:07 [DEBUG] 6214d52b1b00002381fd067b: Beginning Read +2022/02/22 17:51:07 id: 6214d52b1b00002381fd067b +2022/02/22 17:51:07 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:07 [DEBUG] Begin Injection +2022/02/22 17:51:07 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:07 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001de2c0 359 [] false false map[] 0xc000e16000 0xc0000e0000} +2022/02/22 17:51:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"","externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:51:08 [DEBUG] Exit from do method +2022/02/22 17:51:08 [DEBUG] 6214d52b1b00002381fd067b: Read finished successfully +2022/02/22 17:51:08 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 17:51:08 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:51:08 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:08 [DEBUG] Begin Injection +2022/02/22 17:51:08 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:08 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:08 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1614] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000224d00 1614 [] false false map[] 0xc0000a6700 0xc0000e0000} +2022/02/22 17:51:08 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"","externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3}]} +2022/02/22 17:51:08 [DEBUG] Exit from do method +2022/02/22 17:51:08 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:08 [DEBUG] Begin Injection +2022/02/22 17:51:08 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:08 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:08 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000224dc0 359 [] false false map[] 0xc000a96000 0xc0000e0000} +2022/02/22 17:51:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"","externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:51:09 [DEBUG] Exit from do method +2022/02/22 17:51:09 [DEBUG] 6214d52b1b00002381fd067b: Import finished successfully +2022/02/22 17:51:09 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:09 [DEBUG] New state was assigned lineage "61395df2-0d28-af51-e73b-1750597e55c0" +2022/02/22 17:51:09 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:09 [DEBUG] Begin Injection +2022/02/22 17:51:09 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0000902c0 359 [] false false map[] 0xc000a96100 0xc0000e0000} +2022/02/22 17:51:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"","externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:51:09 [DEBUG] Exit from do method +2022/02/22 17:51:09 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:51:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:51:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:09 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:09 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:51:09 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:09 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:09 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:51:09 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:51:09 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:51:09 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:51:09 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:51:09 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:51:09 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:09 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:51:09 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:09 [DEBUG] : Beginning Read +2022/02/22 17:51:09 HTTP request GET mso/api/v1/tenants +2022/02/22 17:51:09 [DEBUG] Begin Injection +2022/02/22 17:51:09 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:51:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:09 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:09 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00080a880 3980 [] false false map[] 0xc000a96100 0xc0000e0000} +2022/02/22 17:51:09 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:51:09 [DEBUG] Exit from do method +2022/02/22 17:51:09 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:51:09 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:51:09 [DEBUG] 6214d5311d0000e1564f9ef2: Beginning Read +2022/02/22 17:51:09 HTTP request GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:09 [DEBUG] Begin Injection +2022/02/22 17:51:09 HTTP request after injection GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:09 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:09 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008f6300 1147 [] false false map[] 0xc000a96e00 0xc0000e0000} +2022/02/22 17:51:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 {"id":"6214d5311d0000e1564f9ef2","displayName":"acctest_fvm2n","description":"","templates":[{"name":"acctest_fn1dq","displayName":"acctest_fn1dq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","extEpgType":"on-premise","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:51:10 [DEBUG] Exit from do method +2022/02/22 17:51:10 [DEBUG] 6214d5311d0000e1564f9ef2: Read finished successfully +2022/02/22 17:51:10 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:51:10 [DEBUG] acctest_o3x64: Beginning Read +2022/02/22 17:51:10 HTTP request GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:10 [DEBUG] Begin Injection +2022/02/22 17:51:10 HTTP request after injection GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000224300 1147 [] false false map[] 0xc000782600 0xc0000e0000} +2022/02/22 17:51:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 {"id":"6214d5311d0000e1564f9ef2","displayName":"acctest_fvm2n","description":"","templates":[{"name":"acctest_fn1dq","displayName":"acctest_fn1dq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","extEpgType":"on-premise","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:51:10 [DEBUG] Exit from do method +2022/02/22 17:51:10 currentvrfname acctest_o3x64 +2022/02/22 17:51:10 found correct vrfname +2022/02/22 17:51:10 [DEBUG] acctest_o3x64: Read finished successfully +2022/02/22 17:51:10 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:51:10 [DEBUG] /schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64: Beginning Read +2022/02/22 17:51:10 HTTP request GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:10 [DEBUG] Begin Injection +2022/02/22 17:51:10 HTTP request after injection GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:10 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:10 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000751680 1147 [] false false map[] 0xc000782900 0xc0000e0000} +2022/02/22 17:51:10 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 {"id":"6214d5311d0000e1564f9ef2","displayName":"acctest_fvm2n","description":"","templates":[{"name":"acctest_fn1dq","displayName":"acctest_fn1dq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","extEpgType":"on-premise","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:51:10 [DEBUG] Exit from do method +2022/02/22 17:51:10 [DEBUG] /schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64: Read finished successfully +2022/02/22 17:51:10 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:10 [DEBUG] 6214d52b1b00002381fd067b: Beginning Read +2022/02/22 17:51:10 id: 6214d52b1b00002381fd067b +2022/02/22 17:51:10 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:10 [DEBUG] Begin Injection +2022/02/22 17:51:10 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:10 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:10 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00048cf80 359 [] false false map[] 0xc0005f0700 0xc0000e0000} +2022/02/22 17:51:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"","externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:51:11 [DEBUG] Exit from do method +2022/02/22 17:51:11 [DEBUG] 6214d52b1b00002381fd067b: Read finished successfully +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:11 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:51:11 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:11 [DEBUG] Begin Injection +2022/02/22 17:51:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1614] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008f7ec0 1614 [] false false map[] 0xc0000a6a00 0xc0000e0000} +2022/02/22 17:51:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"","externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3}]} +2022/02/22 17:51:11 [DEBUG] Exit from do method +2022/02/22 17:51:11 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:11 [DEBUG] Begin Injection +2022/02/22 17:51:11 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:11 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:11 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:11 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000750040 359 [] false false map[] 0xc000782a00 0xc0000e0000} +2022/02/22 17:51:11 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"","externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:51:11 [DEBUG] Exit from do method +2022/02/22 17:51:11 [DEBUG] 6214d52b1b00002381fd067b: Import finished successfully +2022/02/22 17:51:11 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:11 [DEBUG] New state was assigned lineage "4573a6e3-59da-11bb-f2f2-9a13953c620e" +2022/02/22 17:51:11 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:51:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:51:11 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:11 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:11 [DEBUG] Test: Executing step 5 +2022/02/22 17:51:11 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:11 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:51:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:51:11 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:51:11 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:51:11 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:51:11 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:51:11 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:11 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:51:11 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:51:11 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:51:11 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:11 [DEBUG] : Beginning Read +2022/02/22 17:51:11 HTTP request GET mso/api/v1/tenants +2022/02/22 17:51:11 [DEBUG] Begin Injection +2022/02/22 17:51:11 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:51:11 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00080a200 3980 [] false false map[] 0xc000982a00 0xc0000e0000} +2022/02/22 17:51:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:51:12 [DEBUG] Exit from do method +2022/02/22 17:51:12 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:51:12 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:12 [DEBUG] 6214d5311d0000e1564f9ef2: Beginning Read +2022/02/22 17:51:12 HTTP request GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:12 [DEBUG] Begin Injection +2022/02/22 17:51:12 HTTP request after injection GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:12 [DEBUG] 6214d52b1b00002381fd067b: Beginning Read +2022/02/22 17:51:12 id: 6214d52b1b00002381fd067b +2022/02/22 17:51:12 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:12 [DEBUG] Begin Injection +2022/02/22 17:51:12 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00080b700 1147 [] false false map[] 0xc000982600 0xc0000e0000} +2022/02/22 17:51:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 {"id":"6214d5311d0000e1564f9ef2","displayName":"acctest_fvm2n","description":"","templates":[{"name":"acctest_fn1dq","displayName":"acctest_fn1dq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","extEpgType":"on-premise","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:51:12 [DEBUG] Exit from do method +2022/02/22 17:51:12 [DEBUG] 6214d5311d0000e1564f9ef2: Read finished successfully +2022/02/22 17:51:12 [DEBUG] acctest_o3x64: Beginning Read +2022/02/22 17:51:12 HTTP request GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:12 [DEBUG] Begin Injection +2022/02/22 17:51:12 HTTP request after injection GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:12 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:12 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:12 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[359] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:12 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000974140 359 [] false false map[] 0xc0000a6400 0xc0000e0000} +2022/02/22 17:51:12 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.47.58","epgRef":"","externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:51:12 [DEBUG] Exit from do method +2022/02/22 17:51:12 [DEBUG] 6214d52b1b00002381fd067b: Read finished successfully +2022/02/22 17:51:12 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001deb40 1147 [] false false map[] 0xc0000a6800 0xc0000e0000} +2022/02/22 17:51:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 {"id":"6214d5311d0000e1564f9ef2","displayName":"acctest_fvm2n","description":"","templates":[{"name":"acctest_fn1dq","displayName":"acctest_fn1dq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","extEpgType":"on-premise","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:51:13 [DEBUG] Exit from do method +2022/02/22 17:51:13 currentvrfname acctest_o3x64 +2022/02/22 17:51:13 found correct vrfname +2022/02/22 17:51:13 [DEBUG] acctest_o3x64: Read finished successfully +2022/02/22 17:51:13 [DEBUG] /schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64: Beginning Read +2022/02/22 17:51:13 HTTP request GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:13 [DEBUG] Begin Injection +2022/02/22 17:51:13 HTTP request after injection GET mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:13 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000974040 1147 [] false false map[] 0xc0000a6200 0xc0000e0000} +2022/02/22 17:51:13 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 {"id":"6214d5311d0000e1564f9ef2","displayName":"acctest_fvm2n","description":"","templates":[{"name":"acctest_fn1dq","displayName":"acctest_fn1dq","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_o3x64","displayName":"acctest_o3x64","extEpgType":"on-premise","vrfRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/vrfs/acctest_o3x64","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:51:13 [DEBUG] Exit from do method +2022/02/22 17:51:13 [DEBUG] /schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64: Read finished successfully +2022/02/22 17:51:13 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:13 [DEBUG] New state was assigned lineage "ed7f7710-d140-85f4-63e4-9fe4856915d3" +2022/02/22 17:51:13 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:51:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (orphan) +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:51:13 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:13 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:13 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:13 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_kwaqy" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "38wrn" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.47.58" => "" + dhcp_relay_policy_provider.0.epg: "" => "" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214d52b1b00002381fd067b" => "6214d52b1b00002381fd067b" + name: "acctest_kwaqy" => "acctest_kwaqy" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d5311d0000e1564f9ef2" => "" + name: "acctest_fvm2n" => "" + template_name: "acctest_fn1dq" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_o3x64" => "" + external_epg_name: "acctest_o3x64" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d5311d0000e1564f9ef2" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_fn1dq" => "" + vrf_name: "acctest_o3x64" => "" + vrf_schema_id: "6214d5311d0000e1564f9ef2" => "" + vrf_template_name: "acctest_fn1dq" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_o3x64" => "" + id: "acctest_o3x64" => "" + layer3_multicast: "false" => "" + name: "acctest_o3x64" => "" + schema_id: "6214d5311d0000e1564f9ef2" => "" + template: "acctest_fn1dq" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d52b1b00002381fd067b + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.47.58 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64 + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_kwaqy + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214d5311d0000e1564f9ef2 + provider = provider.mso + name = acctest_fvm2n + template_name = acctest_fn1dq + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d5311d0000e1564f9ef2/templates/acctest_fn1dq/externalEpgs/acctest_o3x64 + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_o3x64 + external_epg_name = acctest_o3x64 + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d5311d0000e1564f9ef2 + selector_ip = + selector_name = + template_name = acctest_fn1dq + vrf_name = acctest_o3x64 + vrf_schema_id = 6214d5311d0000e1564f9ef2 + vrf_template_name = acctest_fn1dq + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_o3x64 + provider = provider.mso + display_name = acctest_o3x64 + layer3_multicast = false + name = acctest_o3x64 + schema_id = 6214d5311d0000e1564f9ef2 + template = acctest_fn1dq + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:51:13 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:51:13 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:51:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:51:13 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:51:13 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:51:13 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:51:13 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:51:13 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:51:13 HTTP request PATCH mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:13 [DEBUG] Begin Injection +2022/02/22 17:51:13 HTTP request after injection PATCH mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:13 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:51:13 [DEBUG] 6214d52b1b00002381fd067b: Beginning Policy Update +2022/02/22 17:51:13 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:13 [DEBUG] Begin Injection +2022/02/22 17:51:13 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:13 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:13 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000750340 165 [] false false map[] 0xc000783600 0xc0003cfe40} +2022/02/22 17:51:13 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"38wrn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:51:13 [DEBUG] Exit from do method +2022/02/22 17:51:13 [DEBUG] Policy Update finished successfully: 6214d52b1b00002381fd067b +2022/02/22 17:51:13 [DEBUG] 6214d52b1b00002381fd067b: Beginning Read +2022/02/22 17:51:13 id: 6214d52b1b00002381fd067b +2022/02/22 17:51:13 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:13 [DEBUG] Begin Injection +2022/02/22 17:51:13 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:13 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:13 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:21:13 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000782e00 0xc0000e0160} +2022/02/22 17:51:13 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:13 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:51:13 [DEBUG] acctest_o3x64: Beginning Destroy +2022/02/22 17:51:13 HTTP request PATCH mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:13 [DEBUG] Begin Injection +2022/02/22 17:51:13 HTTP request after injection PATCH mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:13 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074b400 165 [] false false map[] 0xc0007aa400 0xc0003cfe40} +2022/02/22 17:51:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"38wrn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:51:14 [DEBUG] Exit from do method +2022/02/22 17:51:14 [DEBUG] 6214d52b1b00002381fd067b: Read finished successfully +2022/02/22 17:51:14 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:51:14 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:14 [DEBUG] Begin Injection +2022/02/22 17:51:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:14 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:21:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0007aaa00 0xc0000e0160} +2022/02/22 17:51:14 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2?validate=false +2022/02/22 17:51:14 [DEBUG] acctest_o3x64: Destroy finished successfully +2022/02/22 17:51:14 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:51:14 [DEBUG] 6214d5311d0000e1564f9ef2: Beginning Destroy +2022/02/22 17:51:14 HTTP request DELETE mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:14 [DEBUG] Begin Injection +2022/02/22 17:51:14 HTTP request after injection DELETE mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:51:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1420] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000750040 1420 [] false false map[] 0xc000783d00 0xc0003cfe40} +2022/02/22 17:51:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"38wrn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4}]} +2022/02/22 17:51:14 [DEBUG] Exit from do method +2022/02/22 17:51:14 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:14 [DEBUG] Begin Injection +2022/02/22 17:51:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:14 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:14 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:21:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0007aae00 0xc0000e0160} +2022/02/22 17:51:14 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5311d0000e1564f9ef2 +2022/02/22 17:51:14 [DEBUG] 6214d5311d0000e1564f9ef2: Destroy finished successfully +2022/02/22 17:51:14 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:14 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00074a140 165 [] false false map[] 0xc000782200 0xc0003cfe40} +2022/02/22 17:51:14 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"38wrn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:51:14 [DEBUG] Exit from do method +2022/02/22 17:51:14 [DEBUG] 6214d52b1b00002381fd067b: Import finished successfully +2022/02/22 17:51:14 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:14 [DEBUG] New state was assigned lineage "4302b10b-a899-dbf0-cda7-6a2de9912a7c" +2022/02/22 17:51:14 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:14 [DEBUG] Begin Injection +2022/02/22 17:51:14 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:14 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:14 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00080a300 165 [] false false map[] 0xc000782300 0xc0003cfe40} +2022/02/22 17:51:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"38wrn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:51:15 [DEBUG] Exit from do method +2022/02/22 17:51:15 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:51:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:15 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:15 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:15 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:51:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:15 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:15 [DEBUG] : Beginning Read +2022/02/22 17:51:15 HTTP request GET mso/api/v1/tenants +2022/02/22 17:51:15 [DEBUG] Begin Injection +2022/02/22 17:51:15 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:51:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00080ad80 3980 [] false false map[] 0xc000782b00 0xc0003cfe40} +2022/02/22 17:51:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:51:15 [DEBUG] Exit from do method +2022/02/22 17:51:15 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:15 [DEBUG] 6214d52b1b00002381fd067b: Beginning Read +2022/02/22 17:51:15 id: 6214d52b1b00002381fd067b +2022/02/22 17:51:15 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:15 [DEBUG] Begin Injection +2022/02/22 17:51:15 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:15 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:15 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009745c0 165 [] false false map[] 0xc0007aaf00 0xc0003cfe40} +2022/02/22 17:51:15 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"38wrn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:51:15 [DEBUG] Exit from do method +2022/02/22 17:51:15 [DEBUG] 6214d52b1b00002381fd067b: Read finished successfully +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:15 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:15 [DEBUG] New state was assigned lineage "562387aa-84ca-d3ac-7aa3-afb111eb895f" +2022/02/22 17:51:15 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:51:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:15 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:15 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:15 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:15 [INFO] Got non-empty plan, as expected: + +DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_kwaqy" + tenant_id: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d52b1b00002381fd067b + provider = provider.mso + description = 38wrn + name = acctest_kwaqy + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:51:15 [WARN] Test: Executing destroy step +2022/02/22 17:51:15 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:15 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:51:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:15 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:51:15 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:15 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:51:15 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:15 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:51:15 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:15 [DEBUG] : Beginning Read +2022/02/22 17:51:15 HTTP request GET mso/api/v1/tenants +2022/02/22 17:51:15 [DEBUG] Begin Injection +2022/02/22 17:51:15 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:51:15 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:15 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000751080 3980 [] false false map[] 0xc000ea0e00 0xc0003cfe40} +2022/02/22 17:51:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:51:16 [DEBUG] Exit from do method +2022/02/22 17:51:16 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:16 [DEBUG] 6214d52b1b00002381fd067b: Beginning Read +2022/02/22 17:51:16 id: 6214d52b1b00002381fd067b +2022/02/22 17:51:16 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:16 [DEBUG] Begin Injection +2022/02/22 17:51:16 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:16 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:16 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000974680 165 [] false false map[] 0xc000ea1300 0xc0003cfe40} +2022/02/22 17:51:16 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"id":"6214d52b1b00002381fd067b","name":"acctest_kwaqy","policyType":"dhcp","policySubtype":"relay","desc":"38wrn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:51:16 [DEBUG] Exit from do method +2022/02/22 17:51:16 [DEBUG] 6214d52b1b00002381fd067b: Read finished successfully +2022/02/22 17:51:16 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:16 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:16 [DEBUG] New state was assigned lineage "e0a699f4-712b-c152-fa0e-4c30d32f1031" +2022/02/22 17:51:16 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:51:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:51:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:51:16 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:51:16 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "38wrn" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d52b1b00002381fd067b" => "" + name: "acctest_kwaqy" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d52b1b00002381fd067b + provider = provider.mso + description = 38wrn + name = acctest_kwaqy + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:51:16 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:51:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:51:16 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:51:16 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:16 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:51:16 DestroyEdgeTransformer: pruning unused resource node data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:51:16 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:51:16 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:51:16 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:51:16 [DEBUG] 6214d52b1b00002381fd067b: Beginning Read +2022/02/22 17:51:16 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:16 [DEBUG] Begin Injection +2022/02/22 17:51:16 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:16 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:16 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:21:16 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000feef00 0xc0003cfe40} +2022/02/22 17:51:16 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:16 [DEBUG] : Read finished successfully +2022/02/22 17:51:16 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:16 [DEBUG] New state was assigned lineage "a575ae37-dd3d-012b-e9fa-5eb6ae551b8c" +2022/02/22 17:51:16 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:16 [DEBUG] Begin Injection +2022/02/22 17:51:16 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:16 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b +2022/02/22 17:51:17 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:16 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00059e180 86 [] false false map[] 0xc000e5c000 0xc0003cfe40} +2022/02/22 17:51:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d52b1b00002381fd067b {"code":141,"message":"Resource Not Found: Policy 6214d52b1b00002381fd067b not found"} +2022/02/22 17:51:17 [DEBUG] Exit from do method +2022/02/22 17:51:17 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:51:17 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:51:17 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:51:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:51:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:17 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:51:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:17 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:17 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:51:17 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:51:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:17 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:51:17 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:51:17 [DEBUG] : Beginning Read +2022/02/22 17:51:17 HTTP request GET mso/api/v1/tenants +2022/02/22 17:51:17 [DEBUG] Begin Injection +2022/02/22 17:51:17 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:51:17 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:17 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:51:17 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:21:17 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000fe0a00 3980 [] false false map[] 0xc000ea0400 0xc0003cfe40} +2022/02/22 17:51:17 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:51:17 [DEBUG] Exit from do method +2022/02/22 17:51:17 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:51:17 [DEBUG] provider has no plugin.Client +2022/02/22 17:51:17 [DEBUG] New state was assigned lineage "d5a68983-7dbf-c9e8-4463-aa363eef386e" +2022/02/22 17:51:17 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:51:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:51:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:51:17 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:51:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:51:17 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:51:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:51:17 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:51:17 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:51:17 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:32 [DEBUG] Test: Executing step 0 +2022/02/22 17:52:32 [DEBUG] Test: Executing step 0 +2022/02/22 17:52:32 [DEBUG] Test: Executing step 0 +2022/02/22 17:52:32 [DEBUG] Test: Executing step 0 +2022/02/22 17:52:32 [DEBUG] Test: Executing step 0 +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_tenant.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:33 [DEBUG] New state was assigned lineage "8faf7d1a-e539-d817-4e65-4ef1da2be2d9" +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:33 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:33 [DEBUG] Test: Executing step 1 +2022/02/22 17:52:33 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 17:52:33 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 17:52:33 [DEBUG] Test: Executing step 1 +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:33 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:52:33 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:33 [DEBUG] : Beginning Read +2022/02/22 17:52:33 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:33 [DEBUG] Begin Injection +2022/02/22 17:52:33 HTTP request POST /login +2022/02/22 17:52:33 HTTP request after injection POST /login +2022/02/22 17:52:33 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_7yms2" + tenant_id: "" => "kdin6" + + + +STATE: + + +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:33 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:33 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] : Beginning Read +2022/02/22 17:52:33 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:33 [DEBUG] Begin Injection +2022/02/22 17:52:33 HTTP request POST /login +2022/02/22 17:52:33 HTTP request after injection POST /login +2022/02/22 17:52:33 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:52:33 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:52:33 [DEBUG] : Beginning Create +2022/02/22 17:52:33 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:33 [DEBUG] Begin Injection +2022/02/22 17:52:33 HTTP request POST /login +2022/02/22 17:52:33 HTTP request after injection POST /login +2022/02/22 17:52:33 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:33 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "jkmfx" is not expected here. +2022/02/22 17:52:33 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "jkmfx" is not expected here. +2022/02/22 17:52:33 [DEBUG] Test: Executing step 2 +2022/02/22 17:52:33 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:52:33 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:52:33 [DEBUG] Test: Executing step 2 +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:33 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:33 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] : Beginning Read +2022/02/22 17:52:33 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:33 [DEBUG] Begin Injection +2022/02/22 17:52:33 HTTP request POST /login +2022/02/22 17:52:33 HTTP request after injection POST /login +2022/02/22 17:52:33 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:52:33 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:33 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:52:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:33 [DEBUG] : Beginning Read +2022/02/22 17:52:33 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:33 [DEBUG] Begin Injection +2022/02/22 17:52:33 HTTP request POST /login +2022/02/22 17:52:33 HTTP request after injection POST /login +2022/02/22 17:52:33 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:52:34 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:52:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:34 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJuOFNNYjNlOEoyeVN0RWp3MFUwbFJkUnUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.sq8_B7ayR073_edha3kvB4OjDAtkmb3ol03z42ymhdqLjcFCYWD4WMlsLqM8UmJXcZCoXJQzUbJzAa6I4I-Ft9E08aqBAlt4_RpVjf19ikv2WPerbY1gSUm9N-crlvLjDuyBY4mT0v-Vt1OPaNZhLGkviBgbxzWgjnFmPP7iS_ylI3rOwnf4AdngNRsqanornZFsYCFvNwbRqfO2gR6LdVHVROnQqZ7agsGhTEd-hQ-uJMA8Fu3kEo2XiHSt1AxSulsMw7oqEmmimP9AwAlgESvuVEeNV4jIbxrJfDJmpzExiRARI-WVFWcwb_AT-TtM7QWHea0VLp0LK_DzUjkyeA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0001fe680 -1 [chunked] false false map[] 0xc0006fa400 0xc0012e31e0} +2022/02/22 17:52:34 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJuOFNNYjNlOEoyeVN0RWp3MFUwbFJkUnUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.sq8_B7ayR073_edha3kvB4OjDAtkmb3ol03z42ymhdqLjcFCYWD4WMlsLqM8UmJXcZCoXJQzUbJzAa6I4I-Ft9E08aqBAlt4_RpVjf19ikv2WPerbY1gSUm9N-crlvLjDuyBY4mT0v-Vt1OPaNZhLGkviBgbxzWgjnFmPP7iS_ylI3rOwnf4AdngNRsqanornZFsYCFvNwbRqfO2gR6LdVHVROnQqZ7agsGhTEd-hQ-uJMA8Fu3kEo2XiHSt1AxSulsMw7oqEmmimP9AwAlgESvuVEeNV4jIbxrJfDJmpzExiRARI-WVFWcwb_AT-TtM7QWHea0VLp0LK_DzUjkyeA","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJuOFNNYjNlOEoyeVN0RWp3MFUwbFJkUnUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.sq8_B7ayR073_edha3kvB4OjDAtkmb3ol03z42ymhdqLjcFCYWD4WMlsLqM8UmJXcZCoXJQzUbJzAa6I4I-Ft9E08aqBAlt4_RpVjf19ikv2WPerbY1gSUm9N-crlvLjDuyBY4mT0v-Vt1OPaNZhLGkviBgbxzWgjnFmPP7iS_ylI3rOwnf4AdngNRsqanornZFsYCFvNwbRqfO2gR6LdVHVROnQqZ7agsGhTEd-hQ-uJMA8Fu3kEo2XiHSt1AxSulsMw7oqEmmimP9AwAlgESvuVEeNV4jIbxrJfDJmpzExiRARI-WVFWcwb_AT-TtM7QWHea0VLp0LK_DzUjkyeA"} +2022/02/22 17:52:34 [DEBUG] Exit from do method +2022/02/22 17:52:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:34 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:52:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:34 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ2SDdkMjZYZUNvNEJtbFliZlZ1djNaYXUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.HWj_uvq9Um3q6xpDE42mvIDkAPFlNJxjba2WH_NEwk4MwOb25_nnhnxNyXUDw3MvhRDS9ibHd6eUUCvnfMrjy06sIPoa1SS-w6RuGGMmuFpzlhQaou_lE6ZFiQzH-VoaxTmw-Aej697ILTkw3Vp923v6xmEbutSK4PEkmMamGviuj5wRrnHaDUJeQsHGjq8zOtzJ-zYhVTcLDf6oYzUMpe1iphAHfppgnmpi3NBXId3CUmnTz7KAvsoUI0GCVY_kPC9swMhLETT8JPqA23l8ZoLHU2Bdk0N1lAQBseym4DIOGWjGWI9CCtBeAOyAktdOUxQygU3n0BxNdOOnbirf-A; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000317080 -1 [chunked] false false map[] 0xc0018f0200 0xc00037e0b0} +2022/02/22 17:52:34 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ2SDdkMjZYZUNvNEJtbFliZlZ1djNaYXUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.HWj_uvq9Um3q6xpDE42mvIDkAPFlNJxjba2WH_NEwk4MwOb25_nnhnxNyXUDw3MvhRDS9ibHd6eUUCvnfMrjy06sIPoa1SS-w6RuGGMmuFpzlhQaou_lE6ZFiQzH-VoaxTmw-Aej697ILTkw3Vp923v6xmEbutSK4PEkmMamGviuj5wRrnHaDUJeQsHGjq8zOtzJ-zYhVTcLDf6oYzUMpe1iphAHfppgnmpi3NBXId3CUmnTz7KAvsoUI0GCVY_kPC9swMhLETT8JPqA23l8ZoLHU2Bdk0N1lAQBseym4DIOGWjGWI9CCtBeAOyAktdOUxQygU3n0BxNdOOnbirf-A","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJ2SDdkMjZYZUNvNEJtbFliZlZ1djNaYXUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.HWj_uvq9Um3q6xpDE42mvIDkAPFlNJxjba2WH_NEwk4MwOb25_nnhnxNyXUDw3MvhRDS9ibHd6eUUCvnfMrjy06sIPoa1SS-w6RuGGMmuFpzlhQaou_lE6ZFiQzH-VoaxTmw-Aej697ILTkw3Vp923v6xmEbutSK4PEkmMamGviuj5wRrnHaDUJeQsHGjq8zOtzJ-zYhVTcLDf6oYzUMpe1iphAHfppgnmpi3NBXId3CUmnTz7KAvsoUI0GCVY_kPC9swMhLETT8JPqA23l8ZoLHU2Bdk0N1lAQBseym4DIOGWjGWI9CCtBeAOyAktdOUxQygU3n0BxNdOOnbirf-A"} +2022/02/22 17:52:34 [DEBUG] Exit from do method +2022/02/22 17:52:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:34 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:52:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:34 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJSR3N0bjFXQUpwT2QwN3o5N3BxaHlrUkkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.pVp-hOWb_CLHcwsRq2gkQVzwNfKB0WnPE2PAA4gIyVcHHkO4ilt0Oa2KLfaNBoApGXdaf5loW9Zl-rR80iM6BlJ5VV3h-8_9DWGQdgaXQSN7-KUGzzzyLB9hN69AfUjKyg2hWH6TotBxIrAOJu0yHza2PhxSYGcy_PZNZrnaWwPboKK5ywhI9P9l3Oon-X2DobwFAySs7ut-dXzZ2wuXewU0X2l6L5VzQgeTWXNbVnWpsQWEyWD1PVpsn3zLjrj04iWrlSExs9hrDGaD0R4ZoofJrdHeHA4ifX6C-zkIXBXb98oHaWMebpRt1xtWoOX8hlRiCtAyr0Q6hHCpXoChVQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0003171c0 -1 [chunked] false false map[] 0xc000444e00 0xc00037e160} +2022/02/22 17:52:34 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJSR3N0bjFXQUpwT2QwN3o5N3BxaHlrUkkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.pVp-hOWb_CLHcwsRq2gkQVzwNfKB0WnPE2PAA4gIyVcHHkO4ilt0Oa2KLfaNBoApGXdaf5loW9Zl-rR80iM6BlJ5VV3h-8_9DWGQdgaXQSN7-KUGzzzyLB9hN69AfUjKyg2hWH6TotBxIrAOJu0yHza2PhxSYGcy_PZNZrnaWwPboKK5ywhI9P9l3Oon-X2DobwFAySs7ut-dXzZ2wuXewU0X2l6L5VzQgeTWXNbVnWpsQWEyWD1PVpsn3zLjrj04iWrlSExs9hrDGaD0R4ZoofJrdHeHA4ifX6C-zkIXBXb98oHaWMebpRt1xtWoOX8hlRiCtAyr0Q6hHCpXoChVQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJSR3N0bjFXQUpwT2QwN3o5N3BxaHlrUkkiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.pVp-hOWb_CLHcwsRq2gkQVzwNfKB0WnPE2PAA4gIyVcHHkO4ilt0Oa2KLfaNBoApGXdaf5loW9Zl-rR80iM6BlJ5VV3h-8_9DWGQdgaXQSN7-KUGzzzyLB9hN69AfUjKyg2hWH6TotBxIrAOJu0yHza2PhxSYGcy_PZNZrnaWwPboKK5ywhI9P9l3Oon-X2DobwFAySs7ut-dXzZ2wuXewU0X2l6L5VzQgeTWXNbVnWpsQWEyWD1PVpsn3zLjrj04iWrlSExs9hrDGaD0R4ZoofJrdHeHA4ifX6C-zkIXBXb98oHaWMebpRt1xtWoOX8hlRiCtAyr0Q6hHCpXoChVQ"} +2022/02/22 17:52:34 [DEBUG] Exit from do method +2022/02/22 17:52:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:34 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:52:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:34 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJKa1dwV3ZFSVZNU2Yzak1HalY2VEFETTAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.S0JG0PiXK_XQW87cfY7TlMW4wRgN-bgAoFju7lQHsI19CFQUM6sDO2h9x54yhcd6ahiLHYFkM7QGzwpG5wQm6zknzMazJ5CbXb-Lofhrc3vK0fvxxW04OCdRSUkuURLkQbjrGyfvsnmj8M6C6JOqXFmUVH0KbGtHaNp_wGWfWPfc2U-I6_jh_V9VjJhdh4ldqpUF0lOHkJSqtbZndesL8OmKyy2Y_rxhku2CqHn2Qhc5YLfjWkqx-lV7Ni21hghGm3C5ONrs8vPLdQaW2lV1QhKa2ShDXzFuLK56WdZo8d5wVLF1N-VTZF47hNkpn_QhjsbxekMIzWMr8VPtISz0OA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0001fe9c0 -1 [chunked] false false map[] 0xc000248500 0xc00069a0b0} +2022/02/22 17:52:34 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJKa1dwV3ZFSVZNU2Yzak1HalY2VEFETTAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.S0JG0PiXK_XQW87cfY7TlMW4wRgN-bgAoFju7lQHsI19CFQUM6sDO2h9x54yhcd6ahiLHYFkM7QGzwpG5wQm6zknzMazJ5CbXb-Lofhrc3vK0fvxxW04OCdRSUkuURLkQbjrGyfvsnmj8M6C6JOqXFmUVH0KbGtHaNp_wGWfWPfc2U-I6_jh_V9VjJhdh4ldqpUF0lOHkJSqtbZndesL8OmKyy2Y_rxhku2CqHn2Qhc5YLfjWkqx-lV7Ni21hghGm3C5ONrs8vPLdQaW2lV1QhKa2ShDXzFuLK56WdZo8d5wVLF1N-VTZF47hNkpn_QhjsbxekMIzWMr8VPtISz0OA","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJKa1dwV3ZFSVZNU2Yzak1HalY2VEFETTAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.S0JG0PiXK_XQW87cfY7TlMW4wRgN-bgAoFju7lQHsI19CFQUM6sDO2h9x54yhcd6ahiLHYFkM7QGzwpG5wQm6zknzMazJ5CbXb-Lofhrc3vK0fvxxW04OCdRSUkuURLkQbjrGyfvsnmj8M6C6JOqXFmUVH0KbGtHaNp_wGWfWPfc2U-I6_jh_V9VjJhdh4ldqpUF0lOHkJSqtbZndesL8OmKyy2Y_rxhku2CqHn2Qhc5YLfjWkqx-lV7Ni21hghGm3C5ONrs8vPLdQaW2lV1QhKa2ShDXzFuLK56WdZo8d5wVLF1N-VTZF47hNkpn_QhjsbxekMIzWMr8VPtISz0OA"} +2022/02/22 17:52:34 [DEBUG] Exit from do method +2022/02/22 17:52:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:34 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:52:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:34 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI5eExMSG9vbG1WbmNQcVluUGxzRmRNTGUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.q4SKfeZiEGbYRXYnUntxWD4YKrOQgbRTvMbQs15ZRKZp8vBIjJtKoM5TNVrO36F5uItJkgKO43ye8iRDl-qCRg2CzUxHc9R_RYROawjpNQaDmAkODith8XKL-xUj65KH9QFuz_FAU9POMWv5rw_v6g0cPDNJehlKV_0kV59-vsUKb04WVB7jjzULsSCDmKnDqPOPa2Wb3r9enfRly_hdOUmfzLfWqkZrbz6ZyLozW8HXhrvl7xapRYJqOY1FS_YtJNdJ87ydlSxOxGhKlG3o8oIcmBCtygNLeMBeO8sortL46ruIt3fdbHj9KdjWDJGOWxix3MWGFi2vN_8pj7_kYw; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0003173c0 -1 [chunked] false false map[] 0xc0006fa600 0xc0012e3290} +2022/02/22 17:52:34 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI5eExMSG9vbG1WbmNQcVluUGxzRmRNTGUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.q4SKfeZiEGbYRXYnUntxWD4YKrOQgbRTvMbQs15ZRKZp8vBIjJtKoM5TNVrO36F5uItJkgKO43ye8iRDl-qCRg2CzUxHc9R_RYROawjpNQaDmAkODith8XKL-xUj65KH9QFuz_FAU9POMWv5rw_v6g0cPDNJehlKV_0kV59-vsUKb04WVB7jjzULsSCDmKnDqPOPa2Wb3r9enfRly_hdOUmfzLfWqkZrbz6ZyLozW8HXhrvl7xapRYJqOY1FS_YtJNdJ87ydlSxOxGhKlG3o8oIcmBCtygNLeMBeO8sortL46ruIt3fdbHj9KdjWDJGOWxix3MWGFi2vN_8pj7_kYw","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM3NTQsImlhdCI6MTY0NTUzMjU1NCwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI5eExMSG9vbG1WbmNQcVluUGxzRmRNTGUiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.q4SKfeZiEGbYRXYnUntxWD4YKrOQgbRTvMbQs15ZRKZp8vBIjJtKoM5TNVrO36F5uItJkgKO43ye8iRDl-qCRg2CzUxHc9R_RYROawjpNQaDmAkODith8XKL-xUj65KH9QFuz_FAU9POMWv5rw_v6g0cPDNJehlKV_0kV59-vsUKb04WVB7jjzULsSCDmKnDqPOPa2Wb3r9enfRly_hdOUmfzLfWqkZrbz6ZyLozW8HXhrvl7xapRYJqOY1FS_YtJNdJ87ydlSxOxGhKlG3o8oIcmBCtygNLeMBeO8sortL46ruIt3fdbHj9KdjWDJGOWxix3MWGFi2vN_8pj7_kYw"} +2022/02/22 17:52:34 [DEBUG] Exit from do method +2022/02/22 17:52:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001feb40 3980 [] false false map[] 0xc0018f0100 0xc00037e0b0} +2022/02/22 17:52:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:34 [DEBUG] Exit from do method +2022/02/22 17:52:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a6ef00 3980 [] false false map[] 0xc0006fa100 0xc0012e31e0} +2022/02/22 17:52:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:34 [DEBUG] Exit from do method +2022/02/22 17:52:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [DEBUG] New state was assigned lineage "ffcaab2e-c3db-3631-c9ec-a2ca0720c12f" +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [DEBUG] New state was assigned lineage "6c0c9571-8d8f-e837-0283-9d829fbf05ef" +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ff100 3980 [] false false map[] 0xc000248400 0xc00069a0b0} +2022/02/22 17:52:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:34 [DEBUG] Exit from do method +2022/02/22 17:52:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [DEBUG] New state was assigned lineage "d8d4441c-3071-2f6a-d508-eb4a2e1fefa2" +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:34 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:34 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000316840 3980 [] false false map[] 0xc000444d00 0xc00037e160} +2022/02/22 17:52:34 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:34 [DEBUG] Exit from do method +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[2]", instance mso_dhcp_relay_policy.test[2] +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[3]", instance mso_dhcp_relay_policy.test[3] +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[4]", instance mso_dhcp_relay_policy.test[4] +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[0]", instance mso_dhcp_relay_policy.test[0] +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[1]", instance mso_dhcp_relay_policy.test[1] +2022/02/22 17:52:34 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] New state was assigned lineage "0288d618-e722-ed1b-7ea6-9942c374c8c9" +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:52:34 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_escqa" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:34 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test[0] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_sm4n00" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test[1] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_sm4n01" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test[2] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_sm4n02" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test[3] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_sm4n03" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test[4] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_sm4n04" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[1]", instance mso_dhcp_relay_policy.test[1] +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[2]", instance mso_dhcp_relay_policy.test[2] +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[4]", instance mso_dhcp_relay_policy.test[4] +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[3]", instance mso_dhcp_relay_policy.test[3] +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[0]", instance mso_dhcp_relay_policy.test[0] +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_8yzq6_invalid" + tenant_id: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_8yzq6" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [DEBUG] : Beginning Create +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 17:52:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begin Injection +2022/02/22 17:52:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:34 [DEBUG] mso_dhcp_relay_policy.test[2]: applying the planned Create change +2022/02/22 17:52:34 [DEBUG] mso_dhcp_relay_policy.test[3]: applying the planned Create change +2022/02/22 17:52:34 [DEBUG] mso_dhcp_relay_policy.test[1]: applying the planned Create change +2022/02/22 17:52:34 [DEBUG] : Beginning Create +2022/02/22 17:52:34 [DEBUG] mso_dhcp_relay_policy.test[4]: applying the planned Create change +2022/02/22 17:52:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begin Injection +2022/02/22 17:52:34 [DEBUG] mso_dhcp_relay_policy.test[0]: applying the planned Create change +2022/02/22 17:52:34 [DEBUG] : Beginning Create +2022/02/22 17:52:34 [DEBUG] : Beginning Create +2022/02/22 17:52:34 [DEBUG] : Beginning Create +2022/02/22 17:52:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begin Injection +2022/02/22 17:52:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] : Beginning Create +2022/02/22 17:52:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begin Injection +2022/02/22 17:52:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begin Injection +2022/02/22 17:52:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begin Injection +2022/02/22 17:52:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:34 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:34 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "2" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.247.132" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + dhcp_relay_policy_provider.1.dhcp_server_address: "" => "1.2.247.132" + dhcp_relay_policy_provider.1.external_epg: "" => "" + dhcp_relay_policy_provider.1.tenant_id: "" => "" + id: "" => "" + name: "" => "acctest_ilpf8" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_kj9gk" + template_name: "" => "acctest_01rs0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_k47w4" + external_epg_name: "" => "acctest_k47w4" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_01rs0" + vrf_name: "" => "acctest_k47w4" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_external_epg.test1 + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_7dc4k" + external_epg_name: "" => "acctest_7dc4k" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_01rs0" + vrf_name: "" => "acctest_k47w4" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_k47w4" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_k47w4" + schema_id: "" => "" + template: "" => "acctest_01rs0" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (prepare state)" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test1 (prepare state) mso_schema_template_external_epg.test1 mso_schema_template_external_epg.test1] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:34 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:52:34 [DEBUG] : Beginning Create +2022/02/22 17:52:34 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begin Injection +2022/02/22 17:52:34 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:52:34 [DEBUG] Schema: Beginning Creation +2022/02/22 17:52:34 HTTP request POST mso/api/v1/schemas +2022/02/22 17:52:34 [DEBUG] Begin Injection +2022/02/22 17:52:34 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:52:34 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:34 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[97] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:34 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003178c0 97 [] false false map[] 0xc0006fa500 0xc0012e3290} +2022/02/22 17:52:34 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: The tenant with id kdin6 is not found for the current user."} +2022/02/22 17:52:34 [DEBUG] Exit from do method +2022/02/22 17:52:34 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: The tenant with id kdin6 is not found for the current user."{} +2022/02/22 17:52:34 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: The tenant with id kdin6 is not found for the current user."{} +2022/02/22 17:52:34 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: The tenant with id kdin6 is not found for the current user."{} +2022/02/22 17:52:34 [DEBUG] New state was assigned lineage "8d08332d-5874-cbe9-add3-baa8eb5b26de" +2022/02/22 17:52:34 [DEBUG] Test: Executing step 1 +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:34 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of name to be in the range (1 - 1000), got ci93du28yx8e3vn3yh0gc77xhisb0oq2mgg3d8lnogi1jbyhxjc6ab41ezvp78glktdr64hr1zk97sma0kvvnlqh9fgze2zdvdjzoz234pv3p872dso2ojdakssxg2sv7io4p062f6j2lgvntzw64c3o9yxldt9rjhj3lryufp4finudf14dbf2hg9ea94rlkwithu4gucmc7yzqorje3hijrhyqhfbfat440f4omh7gk19c697ds3wmrk44769087nbhkotxoreajpeqjtq3xj1jczyb9w41lm70c28gqy8zpt2lsb4ukowcvz8cejyne8e47z03vz6i9692hlmkg6usyvqrfkdsck3gml2sf220ju7hv12qz7qmsy8nrkum802lp9b8qgmeqcrcsq90yvrseg6kqqqijnre9xb4o1o2yakxff92ccixtrog0jgcwnutg3kenzwb09cz00wbv1hw38d8tauihv8n8mnnd71lz0lllu8mwav48xn3j94zfd4ajn98h3ihtppkannj9v0ircs7xbahme47tdnmv34wlh639jqa9meurxayrjotvu0nnajhlgbcwsgbvt1n8mr8oltvpqktfnpkdq7v231dhalxwiy1ensnnhutid8dzq60edxavkl9ozk4030gthe1tidwk1zbsbnh9toifdp0aqh1hh0f7h9sneiu6280k6tywj8awz7nq6myq113xhe39o6q7niwe8gn8o8qiwkv7jux6eqmtzlocpbxktmtus61bugccp71onexvvemgrtkcu2pchddsu8lqrh3vtatxrqs2qkos37ubdbab3tpz4m8hocy4b8fy7gz2yeund4totq7nn3dpw0p2rb71slgbtk7d9iqu40mlridcpexa6l08o6ldmkaqn03rubgg1gj06zpieppg6ca7kcz42rptw8jzil7p6cd3w88cqlvpbopr0dfls6sf3mtspmvvqwqzup0acjxpvehgcfu +2022/02/22 17:52:34 [ERROR] : eval: *terraform.EvalSequence, err: expected length of name to be in the range (1 - 1000), got ci93du28yx8e3vn3yh0gc77xhisb0oq2mgg3d8lnogi1jbyhxjc6ab41ezvp78glktdr64hr1zk97sma0kvvnlqh9fgze2zdvdjzoz234pv3p872dso2ojdakssxg2sv7io4p062f6j2lgvntzw64c3o9yxldt9rjhj3lryufp4finudf14dbf2hg9ea94rlkwithu4gucmc7yzqorje3hijrhyqhfbfat440f4omh7gk19c697ds3wmrk44769087nbhkotxoreajpeqjtq3xj1jczyb9w41lm70c28gqy8zpt2lsb4ukowcvz8cejyne8e47z03vz6i9692hlmkg6usyvqrfkdsck3gml2sf220ju7hv12qz7qmsy8nrkum802lp9b8qgmeqcrcsq90yvrseg6kqqqijnre9xb4o1o2yakxff92ccixtrog0jgcwnutg3kenzwb09cz00wbv1hw38d8tauihv8n8mnnd71lz0lllu8mwav48xn3j94zfd4ajn98h3ihtppkannj9v0ircs7xbahme47tdnmv34wlh639jqa9meurxayrjotvu0nnajhlgbcwsgbvt1n8mr8oltvpqktfnpkdq7v231dhalxwiy1ensnnhutid8dzq60edxavkl9ozk4030gthe1tidwk1zbsbnh9toifdp0aqh1hh0f7h9sneiu6280k6tywj8awz7nq6myq113xhe39o6q7niwe8gn8o8qiwkv7jux6eqmtzlocpbxktmtus61bugccp71onexvvemgrtkcu2pchddsu8lqrh3vtatxrqs2qkos37ubdbab3tpz4m8hocy4b8fy7gz2yeund4totq7nn3dpw0p2rb71slgbtk7d9iqu40mlridcpexa6l08o6ldmkaqn03rubgg1gj06zpieppg6ca7kcz42rptw8jzil7p6cd3w88cqlvpbopr0dfls6sf3mtspmvvqwqzup0acjxpvehgcfu +2022/02/22 17:52:34 [DEBUG] Test: Executing step 2 +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:34 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of description to be in the range (1 - 1000), got nxsn6o11eqyiapjc9fkdcosgbzuqnv70h2uzx7tsb6y94wuctr9anvpdnggwgq9jnzwt0e83gsvtebfneb46tucbee3v06hbr30edmrimata93vnni4ue7xx2ybo9mboo91az3x4327dbtdslkpmtcewnl6e6kizggftl8jq73ilqo9n9dnek6kmoil1t2l322kml1fcakjmmoiqb1p7jhhd9stpnyr68vzf80ekgeg4gmf3n7dq8pjdm0h3zwriebu42ljass2xpk3b3rlgsv2lg4abe1xpsp6k6vtdofisbmqkiqnrtwxh0uvlufwhe3h27dxi6rng3ll8xwh6ka1dey66lcr0mo91grjlg82olplv26rnap6c0i187r7x3kmw8v7vkknhi4aeat14i2jt1erzuuzyom3qgn88ey0p8g4wfusg06zmyk1qzsd3okupc3vdo63y40mdojdxdghubdzp4nyalzk3qteloi9qxrbfogz17porhsiqjcxusxkt3cv1bojzwi6iqg3g9ve177tcl4nchxj62qhtt412js63oqzl0iulqf7zve42fel4x6stwqhu1i8y2u8i4g1p4mc7imizwtmplc2jt3jjmur26w4otcalb0psmjh4povslu9klptw7r72sfk0vzbxf28uytfn39qtlg9pc0yv0c84cju0cjodoklsxsuz27bw4iecmvwell62dw4byc31e1kfo7sddtwf31ob0lgdl87bwep4i8ts9xyi0jhuy6dnzt7ylq3z4v2xa6271e1bmysgs8pbo06r8qaeotk6rtx139u6da7hcqwsr1pgqf9xc6t1qxmecdkjcjuwxkm6khljhw2ddnp16qhk9bn4ipzpt9c4ne0me7hobmbnuf80npfp2jw2iftpxfisrm1d67ef17zbaz8i4jlkf692jnsgbo40tqvdflwabu2lwoo1ulvubucw9lenvxlcdexhxr668umceqjfx9brc +2022/02/22 17:52:34 [ERROR] : eval: *terraform.EvalSequence, err: expected length of description to be in the range (1 - 1000), got nxsn6o11eqyiapjc9fkdcosgbzuqnv70h2uzx7tsb6y94wuctr9anvpdnggwgq9jnzwt0e83gsvtebfneb46tucbee3v06hbr30edmrimata93vnni4ue7xx2ybo9mboo91az3x4327dbtdslkpmtcewnl6e6kizggftl8jq73ilqo9n9dnek6kmoil1t2l322kml1fcakjmmoiqb1p7jhhd9stpnyr68vzf80ekgeg4gmf3n7dq8pjdm0h3zwriebu42ljass2xpk3b3rlgsv2lg4abe1xpsp6k6vtdofisbmqkiqnrtwxh0uvlufwhe3h27dxi6rng3ll8xwh6ka1dey66lcr0mo91grjlg82olplv26rnap6c0i187r7x3kmw8v7vkknhi4aeat14i2jt1erzuuzyom3qgn88ey0p8g4wfusg06zmyk1qzsd3okupc3vdo63y40mdojdxdghubdzp4nyalzk3qteloi9qxrbfogz17porhsiqjcxusxkt3cv1bojzwi6iqg3g9ve177tcl4nchxj62qhtt412js63oqzl0iulqf7zve42fel4x6stwqhu1i8y2u8i4g1p4mc7imizwtmplc2jt3jjmur26w4otcalb0psmjh4povslu9klptw7r72sfk0vzbxf28uytfn39qtlg9pc0yv0c84cju0cjodoklsxsuz27bw4iecmvwell62dw4byc31e1kfo7sddtwf31ob0lgdl87bwep4i8ts9xyi0jhuy6dnzt7ylq3z4v2xa6271e1bmysgs8pbo06r8qaeotk6rtx139u6da7hcqwsr1pgqf9xc6t1qxmecdkjcjuwxkm6khljhw2ddnp16qhk9bn4ipzpt9c4ne0me7hobmbnuf80npfp2jw2iftpxfisrm1d67ef17zbaz8i4jlkf692jnsgbo40tqvdflwabu2lwoo1ulvubucw9lenvxlcdexhxr668umceqjfx9brc +2022/02/22 17:52:34 [DEBUG] Test: Executing step 3 +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:34 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "rcjop" is not expected here. +2022/02/22 17:52:34 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "rcjop" is not expected here. +2022/02/22 17:52:34 [DEBUG] Test: Executing step 4 +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:34 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:34 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:34 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:34 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:34 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:34 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:52:34 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:34 [DEBUG] : Beginning Read +2022/02/22 17:52:34 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:34 [DEBUG] Begin Injection +2022/02/22 17:52:34 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:34 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fe5c0 160 [] false false map[] 0xc000322500 0xc0012e31e0} +2022/02/22 17:52:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:35 [DEBUG] Exit from do method +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00003581fd067c: Creation finished successfully +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:35 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:35 [DEBUG] Begin Injection +2022/02/22 17:52:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c04280 161 [] false false map[] 0xc000322b00 0xc00037e0b0} +2022/02/22 17:52:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d58b1b00002e81fd067d","name":"acctest_sm4n02","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:35 [DEBUG] Exit from do method +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00002e81fd067d: Creation finished successfully +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00002e81fd067d: Beginning Read +2022/02/22 17:52:35 id: 6214d58b1b00002e81fd067d +2022/02/22 17:52:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:35 [DEBUG] Begin Injection +2022/02/22 17:52:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fe800 161 [] false false map[] 0xc000141800 0xc0012e3290} +2022/02/22 17:52:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d58b1b00003881fd067e","name":"acctest_sm4n03","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:35 [DEBUG] Exit from do method +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00003881fd067e: Creation finished successfully +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00003881fd067e: Beginning Read +2022/02/22 17:52:35 id: 6214d58b1b00003881fd067e +2022/02/22 17:52:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:35 [DEBUG] Begin Injection +2022/02/22 17:52:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009cad00 161 [] false false map[] 0xc001bda700 0xc0012e31e0} +2022/02/22 17:52:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d58b1b00003581fd067f","name":"acctest_sm4n00","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:35 [DEBUG] Exit from do method +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00003581fd067f: Creation finished successfully +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00003581fd067f: Beginning Read +2022/02/22 17:52:35 id: 6214d58b1b00003581fd067f +2022/02/22 17:52:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:35 [DEBUG] Begin Injection +2022/02/22 17:52:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c047c0 161 [] false false map[] 0xc000141c00 0xc00037e0b0} +2022/02/22 17:52:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d58b1b00003581fd0680","name":"acctest_sm4n04","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:35 [DEBUG] Exit from do method +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00003581fd0680: Creation finished successfully +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00003581fd0680: Beginning Read +2022/02/22 17:52:35 id: 6214d58b1b00003581fd0680 +2022/02/22 17:52:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:35 [DEBUG] Begin Injection +2022/02/22 17:52:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009cae80 161 [] false false map[] 0xc00090c100 0xc0012e3290} +2022/02/22 17:52:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d58b1b00002e81fd0681","name":"acctest_sm4n01","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:35 [DEBUG] Exit from do method +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00002e81fd0681: Creation finished successfully +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00002e81fd0681: Beginning Read +2022/02/22 17:52:35 id: 6214d58b1b00002e81fd0681 +2022/02/22 17:52:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:35 [DEBUG] Begin Injection +2022/02/22 17:52:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c04240 160 [] false false map[] 0xc000141400 0xc0012e31e0} +2022/02/22 17:52:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:35 [DEBUG] Exit from do method +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00000e81fd0682: Creation finished successfully +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Read +2022/02/22 17:52:35 id: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:35 [DEBUG] Begin Injection +2022/02/22 17:52:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009ca3c0 3980 [] false false map[] 0xc0001ae900 0xc0012e3290} +2022/02/22 17:52:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:35 [DEBUG] Exit from do method +2022/02/22 17:52:35 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:35 [DEBUG] New state was assigned lineage "c66befeb-e781-8f8b-97bb-a7d0ab6c0d63" +2022/02/22 17:52:35 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:52:35 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:35 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:35 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:35 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:35 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 17:52:35 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:35 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:35 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:35 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "2" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.247.132" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + dhcp_relay_policy_provider.1.dhcp_server_address: "" => "1.2.247.132" + dhcp_relay_policy_provider.1.external_epg: "" => "" + dhcp_relay_policy_provider.1.tenant_id: "" => "" + id: "" => "" + name: "" => "acctest_7yms2" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_0d1gh" + template_name: "" => "acctest_yrm3f" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_a6cqi" + external_epg_name: "" => "acctest_a6cqi" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_yrm3f" + vrf_name: "" => "acctest_a6cqi" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_external_epg.test1 + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_a6cqi" + external_epg_name: "" => "acctest_a6cqi" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_yrm3f" + vrf_name: "" => "acctest_a6cqi" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_a6cqi" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_a6cqi" + schema_id: "" => "" + template: "" => "acctest_yrm3f" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:52:35 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:35 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:35 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:35 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:35 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 17:52:35 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test1 +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test1 mso_schema_template_external_epg.test1 mso_schema_template_external_epg.test1 (prepare state)] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (prepare state)" references: [] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:35 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:35 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:52:35 [DEBUG] Schema: Beginning Creation +2022/02/22 17:52:35 HTTP request POST mso/api/v1/schemas +2022/02/22 17:52:35 [DEBUG] Begin Injection +2022/02/22 17:52:35 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:52:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:52:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a43280 160 [] false false map[] 0xc000444100 0xc00119d6b0} +2022/02/22 17:52:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:35 [DEBUG] Exit from do method +2022/02/22 17:52:35 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:35 [DEBUG] New state was assigned lineage "1726583a-1bd5-3b97-6d3f-820358474e54" +2022/02/22 17:52:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:35 [DEBUG] Begin Injection +2022/02/22 17:52:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:52:35 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d58b1d0000cf564f9ef8] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006a2cc0 400 [] false false map[] 0xc000322d00 0xc00037e0b0} +2022/02/22 17:52:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d58b1d0000cf564f9ef8","displayName":"acctest_kj9gk","description":"","templates":[{"name":"acctest_01rs0","displayName":"acctest_01rs0","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:52:35 [DEBUG] Exit from do method +2022/02/22 17:52:35 [DEBUG] 6214d58b1d0000cf564f9ef8: Schema Creation finished successfully +2022/02/22 17:52:35 [DEBUG] 6214d58b1d0000cf564f9ef8: Beginning Read +2022/02/22 17:52:35 HTTP request GET mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:35 [DEBUG] Begin Injection +2022/02/22 17:52:35 HTTP request after injection GET mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a43880 161 [] false false map[] 0xc0001aeb00 0xc0018aa8f0} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d {"id":"6214d58b1b00002e81fd067d","name":"acctest_sm4n02","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00002e81fd067d: Read finished successfully +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b340 161 [] false false map[] 0xc000444200 0xc00119d760} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e {"id":"6214d58b1b00003881fd067e","name":"acctest_sm4n03","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00003881fd067e: Read finished successfully +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b440 161 [] false false map[] 0xc000323000 0xc0018aa9a0} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f {"id":"6214d58b1b00003581fd067f","name":"acctest_sm4n00","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00003581fd067f: Read finished successfully +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006a2d40 161 [] false false map[] 0xc0001af000 0xc00119d810} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 {"id":"6214d58b1b00003581fd0680","name":"acctest_sm4n04","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00003581fd0680: Read finished successfully +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b900 161 [] false false map[] 0xc0001af100 0xc0012e2000} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 {"id":"6214d58b1b00002e81fd0681","name":"acctest_sm4n01","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00002e81fd0681: Read finished successfully +2022/02/22 17:52:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:36 [DEBUG] New state was assigned lineage "ad415340-d2e7-e1f4-a534-2b3061e9c0e5" +2022/02/22 17:52:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:36 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:52:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] : Beginning Read +2022/02/22 17:52:36 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009ca1c0 160 [] false false map[] 0xc000322400 0xc0012e31e0} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00000e81fd0682: Read finished successfully +2022/02/22 17:52:36 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:52:36 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ac36c0 160 [] false false map[] 0xc000444000 0xc00119d6b0} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:36 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] : Beginning Read +2022/02/22 17:52:36 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d14ec0 400 [] false false map[] 0xc000141b00 0xc0015c0000} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 {"id":"6214d58b1d0000cf564f9ef8","displayName":"acctest_kj9gk","description":"","templates":[{"name":"acctest_01rs0","displayName":"acctest_01rs0","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58b1d0000cf564f9ef8: Read finished successfully +2022/02/22 17:52:36 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:52:36 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:52:36 HTTP request PATCH mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection PATCH mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c05140 3980 [] false false map[] 0xc000444800 0xc00119c4d0} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00002e81fd0681: Beginning Read +2022/02/22 17:52:36 id: 6214d58b1b00002e81fd0681 +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00002e81fd067d: Beginning Read +2022/02/22 17:52:36 id: 6214d58b1b00002e81fd067d +2022/02/22 17:52:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00003581fd067f: Beginning Read +2022/02/22 17:52:36 id: 6214d58b1b00003581fd067f +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00003581fd0680: Beginning Read +2022/02/22 17:52:36 id: 6214d58b1b00003581fd0680 +2022/02/22 17:52:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00003881fd067e: Beginning Read +2022/02/22 17:52:36 id: 6214d58b1b00003881fd067e +2022/02/22 17:52:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:36 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:52:36 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d58c1d0000f8564f9efa] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0023adf80 400 [] false false map[] 0xc000141800 0xc0012e3290} +2022/02/22 17:52:36 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d58c1d0000f8564f9efa","displayName":"acctest_0d1gh","description":"","templates":[{"name":"acctest_yrm3f","displayName":"acctest_yrm3f","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58c1d0000f8564f9efa: Schema Creation finished successfully +2022/02/22 17:52:36 [DEBUG] 6214d58c1d0000f8564f9efa: Beginning Read +2022/02/22 17:52:36 HTTP request GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2386] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00055abc0 2386 [] false false map[] 0xc0001ae600 0xc0012e31e0} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00002e81fd067d","name":"acctest_sm4n02","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00003881fd067e","name":"acctest_sm4n03","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00003581fd067f","name":"acctest_sm4n00","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00003581fd0680","name":"acctest_sm4n04","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00002e81fd0681","name":"acctest_sm4n01","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [ERROR] : eval: *terraform.EvalReadData, err: DHCP Relay Policy with name: acctest_8yzq6_invalid not found +2022/02/22 17:52:36 [ERROR] : eval: *terraform.EvalSequence, err: DHCP Relay Policy with name: acctest_8yzq6_invalid not found +2022/02/22 17:52:36 [DEBUG] New state was assigned lineage "9356fc5f-1d2a-d586-4955-6169b29e0950" +2022/02/22 17:52:36 [DEBUG] Test: Executing step 3 +2022/02/22 17:52:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] : Beginning Read +2022/02/22 17:52:36 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:36 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:36 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000248800 0xc0015c0000} +2022/02/22 17:52:36 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:36 [DEBUG] acctest_k47w4: Creation finished successfully +2022/02/22 17:52:36 [DEBUG] acctest_k47w4: Beginning Read +2022/02/22 17:52:36 HTTP request GET mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009c02c0 3980 [] false false map[] 0xc000444b00 0xc00119d6b0} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:36 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c04500 161 [] false false map[] 0xc001bda700 0xc00119c000} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 {"id":"6214d58b1b00002e81fd0681","name":"acctest_sm4n01","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00002e81fd0681: Read finished successfully +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009ca1c0 161 [] false false map[] 0xc000445000 0xc0012e3290} +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 {"id":"6214d58b1b00003581fd0680","name":"acctest_sm4n04","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009c1d00 161 [] false false map[] 0xc00213a200 0xc00119d8c0} +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00003581fd0680: Read finished successfully +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d {"id":"6214d58b1b00002e81fd067d","name":"acctest_sm4n02","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00002e81fd067d: Read finished successfully +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c04e40 161 [] false false map[] 0xc000249100 0xc0018aa790} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e {"id":"6214d58b1b00003881fd067e","name":"acctest_sm4n03","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00003881fd067e: Read finished successfully +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c054c0 161 [] false false map[] 0xc00031c500 0xc0012e31e0} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f {"id":"6214d58b1b00003581fd067f","name":"acctest_sm4n00","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00003581fd067f: Read finished successfully +2022/02/22 17:52:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:36 [DEBUG] New state was assigned lineage "18052f43-d24f-0123-e84d-f202a3f51c58" +2022/02/22 17:52:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:36 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:52:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:36 [WARN] Test: Executing destroy step +2022/02/22 17:52:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:36 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:36 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:36 [DEBUG] : Beginning Read +2022/02/22 17:52:36 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004b980 400 [] false false map[] 0xc000249200 0xc0015c0000} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa {"id":"6214d58c1d0000f8564f9efa","displayName":"acctest_0d1gh","description":"","templates":[{"name":"acctest_yrm3f","displayName":"acctest_yrm3f","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 6214d58c1d0000f8564f9efa: Read finished successfully +2022/02/22 17:52:36 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:52:36 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:52:36 HTTP request PATCH mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection PATCH mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bc80 3980 [] false false map[] 0xc0006fb900 0xc00119d6b0} +2022/02/22 17:52:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:36 [DEBUG] Exit from do method +2022/02/22 17:52:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:36 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Read +2022/02/22 17:52:36 id: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:36 [DEBUG] Begin Injection +2022/02/22 17:52:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009c0b80 768 [] false false map[] 0xc000444000 0xc00119c000} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 {"id":"6214d58b1d0000cf564f9ef8","displayName":"acctest_kj9gk","description":"","templates":[{"name":"acctest_01rs0","displayName":"acctest_01rs0","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_k47w4","displayName":"acctest_k47w4","vrfRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/vrfs/acctest_k47w4","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 currentvrfname acctest_k47w4 +2022/02/22 17:52:37 found correct vrfname +2022/02/22 17:52:37 [DEBUG] acctest_k47w4: Read finished successfully +2022/02/22 17:52:37 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:37 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:37 [DEBUG] mso_schema_template_external_epg.test1: applying the planned Create change +2022/02/22 17:52:37 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:52:37 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:52:37 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:52:37 HTTP request PATCH mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection PATCH mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:37 HTTP request PATCH mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:37 HTTP request after injection PATCH mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dada80 160 [] false false map[] 0xc000444700 0xc0012e3290} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:37 [DEBUG] New state was assigned lineage "856918a6-4ad1-6c19-3d94-ae1db0738a5b" +2022/02/22 17:52:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:37 [DEBUG] Test: Executing step 3 +2022/02/22 17:52:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] : Beginning Read +2022/02/22 17:52:37 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006a25c0 3980 [] false false map[] 0xc00213b900 0xc0018aa790} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00002e81fd0681: Beginning Read +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003581fd067f: Beginning Read +2022/02/22 17:52:37 id: 6214d58b1b00003581fd067f +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003581fd0680: Beginning Read +2022/02/22 17:52:37 id: 6214d58b1b00003581fd0680 +2022/02/22 17:52:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00002e81fd067d: Beginning Read +2022/02/22 17:52:37 id: 6214d58b1b00002e81fd067d +2022/02/22 17:52:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003881fd067e: Beginning Read +2022/02/22 17:52:37 id: 6214d58b1b00003881fd067e +2022/02/22 17:52:37 id: 6214d58b1b00002e81fd0681 +2022/02/22 17:52:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00213bf00 0xc0015c0000} +2022/02/22 17:52:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:37 [DEBUG] acctest_a6cqi: Creation finished successfully +2022/02/22 17:52:37 [DEBUG] acctest_a6cqi: Beginning Read +2022/02/22 17:52:37 HTTP request GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dacb00 160 [] false false map[] 0xc000141000 0xc00119d6b0} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00000e81fd0682: Read finished successfully +2022/02/22 17:52:37 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:37 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:52:37 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:37 nHTTP Response: 409 409 Conflict &{409 Conflict 409 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[175] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] 0xc00036e040 175 [] false false map[] 0xc00031c700 0xc00119d8c0} +2022/02/22 17:52:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000141e00 0xc00119c000} +2022/02/22 17:52:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false {"code":140,"message":"Duplicate Resource: schemaIdTemplateNameVersion","info":{"schemaIdTemplateNameVersion":["templateVersion: schemaIdTemplateNameVersion already exists"]}} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 [DEBUG] : Beginning Read +2022/02/22 17:52:37 HTTP request GET mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:37 [DEBUG] mso_schema_template_external_epg.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Duplicate Resource: schemaIdTemplateNameVersion"{"schemaIdTemplateNameVersion":["templateVersion: schemaIdTemplateNameVersion already exists"]} +2022/02/22 17:52:37 [ERROR] : eval: *terraform.EvalApplyPost, err: "Duplicate Resource: schemaIdTemplateNameVersion"{"schemaIdTemplateNameVersion":["templateVersion: schemaIdTemplateNameVersion already exists"]} +2022/02/22 17:52:37 [ERROR] : eval: *terraform.EvalSequence, err: "Duplicate Resource: schemaIdTemplateNameVersion"{"schemaIdTemplateNameVersion":["templateVersion: schemaIdTemplateNameVersion already exists"]} +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009c0500 3980 [] false false map[] 0xc00090d700 0xc0012e3290} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:37 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ac2780 161 [] false false map[] 0xc0001af100 0xc000413d90} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 {"id":"6214d58b1b00003581fd0680","name":"acctest_sm4n04","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003581fd0680: Read finished successfully +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fe300 161 [] false false map[] 0xc00213a500 0xc0018aa790} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f {"id":"6214d58b1b00003581fd067f","name":"acctest_sm4n00","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003581fd067f: Read finished successfully +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001adac0 161 [] false false map[] 0xc0006fae00 0xc0018ab290} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d {"id":"6214d58b1b00002e81fd067d","name":"acctest_sm4n02","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00002e81fd067d: Read finished successfully +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fec80 161 [] false false map[] 0xc00213a600 0xc0012e2160} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 {"id":"6214d58b1b00002e81fd0681","name":"acctest_sm4n01","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00002e81fd0681: Read finished successfully +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fed40 161 [] false false map[] 0xc0001af200 0xc0018ab340} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e {"id":"6214d58b1b00003881fd067e","name":"acctest_sm4n03","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003881fd067e: Read finished successfully +2022/02/22 17:52:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:37 [DEBUG] New state was assigned lineage "a58c2c34-b2b7-f705-2bd6-9a5dddefd3bc" +2022/02/22 17:52:37 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test[4] +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test[3] +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00055a9c0 768 [] false false map[] 0xc000248300 0xc0015c0000} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa {"id":"6214d58c1d0000f8564f9efa","displayName":"acctest_0d1gh","description":"","templates":[{"name":"acctest_yrm3f","displayName":"acctest_yrm3f","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 currentvrfname acctest_a6cqi +2022/02/22 17:52:37 found correct vrfname +2022/02/22 17:52:37 [DEBUG] acctest_a6cqi: Read finished successfully +2022/02/22 17:52:37 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:37 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:37 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:52:37 [DEBUG] mso_schema_template_external_epg.test1: applying the planned Create change +2022/02/22 17:52:37 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:52:37 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test[0] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d58b1b00003581fd067f" => "" + name: "acctest_sm4n00" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test[1] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d58b1b00002e81fd0681" => "" + name: "acctest_sm4n01" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test[2] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d58b1b00002e81fd067d" => "" + name: "acctest_sm4n02" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test[3] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d58b1b00003881fd067e" => "" + name: "acctest_sm4n03" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test[4] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d58b1b00003581fd0680" => "" + name: "acctest_sm4n04" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test.0: + ID = 6214d58b1b00003581fd067f + provider = provider.mso + description = + name = acctest_sm4n00 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test.1: + ID = 6214d58b1b00002e81fd0681 + provider = provider.mso + description = + name = acctest_sm4n01 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test.2: + ID = 6214d58b1b00002e81fd067d + provider = provider.mso + description = + name = acctest_sm4n02 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test.3: + ID = 6214d58b1b00003881fd067e + provider = provider.mso + description = + name = acctest_sm4n03 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test.4: + ID = 6214d58b1b00003581fd0680 + provider = provider.mso + description = + name = acctest_sm4n04 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:52:37 HTTP request PATCH mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:52:37 HTTP request after injection PATCH mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:37 HTTP request PATCH mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection PATCH mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:37 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test[0] +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:52:37 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:37 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:52:37 [DEBUG] mso_dhcp_relay_policy.test[1]: applying the planned Delete change +2022/02/22 17:52:37 [DEBUG] mso_dhcp_relay_policy.test[4]: applying the planned Delete change +2022/02/22 17:52:37 [DEBUG] mso_dhcp_relay_policy.test[2]: applying the planned Delete change +2022/02/22 17:52:37 [DEBUG] mso_dhcp_relay_policy.test[3]: applying the planned Delete change +2022/02/22 17:52:37 [DEBUG] mso_dhcp_relay_policy.test[0]: applying the planned Delete change +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00002e81fd0681: Beginning Read +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003581fd0680: Beginning Read +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00002e81fd067d: Beginning Read +2022/02/22 17:52:37 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003881fd067e: Beginning Read +2022/02/22 17:52:37 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:37 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003581fd067f: Beginning Read +2022/02/22 17:52:37 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:37 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2386] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00055ba00 2386 [] false false map[] 0xc002174200 0xc00119d6b0} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00002e81fd067d","name":"acctest_sm4n02","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00003881fd067e","name":"acctest_sm4n03","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00003581fd067f","name":"acctest_sm4n00","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00003581fd0680","name":"acctest_sm4n04","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00002e81fd0681","name":"acctest_sm4n01","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107ee40 1147 [] false false map[] 0xc002174300 0xc00119c000} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 {"id":"6214d58b1d0000cf564f9ef8","displayName":"acctest_kj9gk","description":"","templates":[{"name":"acctest_01rs0","displayName":"acctest_01rs0","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_k47w4","displayName":"acctest_k47w4","vrfRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/vrfs/acctest_k47w4","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_7dc4k","displayName":"acctest_7dc4k","extEpgType":"on-premise","vrfRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/vrfs/acctest_k47w4","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/externalEpgs/acctest_7dc4k","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 [DEBUG] /schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/externalEpgs/acctest_7dc4k: Read finished successfully +2022/02/22 17:52:37 [DEBUG] New state was assigned lineage "0f99bd10-2537-620c-a568-805052d1c278" +2022/02/22 17:52:37 [WARN] Test: Executing destroy step +2022/02/22 17:52:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:37 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:52:37 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:52:37 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test1 because it has no config +2022/02/22 17:52:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] : Beginning Read +2022/02/22 17:52:37 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001e7a080 160 [] false false map[] 0xc000140f00 0xc0012a82c0} +2022/02/22 17:52:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:37 [DEBUG] Exit from do method +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:37 [DEBUG] New state was assigned lineage "668488ad-ae5d-f7fc-1b21-403f94b332e0" +2022/02/22 17:52:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:37 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.247.132" + id: "6214d58b1b00003581fd067c" => "6214d58b1b00003581fd067c" + name: "acctest_escqa" => "acctest_escqa" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d58b1b00003581fd067c + provider = provider.mso + description = + name = acctest_escqa + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:52:37 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:37 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:37 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:52:37 [DEBUG] 6214d58b1b00003581fd067c: Beginning Policy Update +2022/02/22 17:52:37 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: expected any one of the epg or external_epg. +2022/02/22 17:52:37 [ERROR] : eval: *terraform.EvalApplyPost, err: expected any one of the epg or external_epg. +2022/02/22 17:52:37 [ERROR] : eval: *terraform.EvalSequence, err: expected any one of the epg or external_epg. +2022/02/22 17:52:37 [DEBUG] New state was assigned lineage "e4004f34-1955-410a-ecd7-f39ee9893c95" +2022/02/22 17:52:37 [DEBUG] Test: Executing step 4 +2022/02/22 17:52:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:37 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 17:52:37 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 17:52:37 [DEBUG] Test: Executing step 5 +2022/02/22 17:52:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:52:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:37 [DEBUG] : Beginning Read +2022/02/22 17:52:37 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000141600 0xc000413d90} +2022/02/22 17:52:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:37 [DEBUG] : Beginning Read +2022/02/22 17:52:37 HTTP request GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000322400 0xc0018ab8c0} +2022/02/22 17:52:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa?validate=false +2022/02/22 17:52:37 [DEBUG] : Beginning Read +2022/02/22 17:52:37 HTTP request GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:37 [DEBUG] Begin Injection +2022/02/22 17:52:37 HTTP request after injection GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:37 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000249700 0xc00119d6b0} +2022/02/22 17:52:37 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:37 [DEBUG] : Read finished successfully +2022/02/22 17:52:37 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000249600 0xc00119c000} +2022/02/22 17:52:37 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:37 [DEBUG] : Read finished successfully +2022/02/22 17:52:38 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00031ca00 0xc0012a82c0} +2022/02/22 17:52:38 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:38 [DEBUG] : Read finished successfully +2022/02/22 17:52:38 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00213af00 0xc000413d90} +2022/02/22 17:52:38 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:38 [DEBUG] : Read finished successfully +2022/02/22 17:52:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0023ad100 160 [] false false map[] 0xc002175700 0xc00119d6b0} +2022/02/22 17:52:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 [DEBUG] 6214d58b1b00000e81fd0682: Import finished successfully +2022/02/22 17:52:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:38 [DEBUG] New state was assigned lineage "ab504e2a-c2b6-3480-a779-f821301cc9f7" +2022/02/22 17:52:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:38 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:38 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc002175500 0xc0018ab8c0} +2022/02/22 17:52:38 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:38 [DEBUG] : Read finished successfully +2022/02/22 17:52:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:38 [DEBUG] New state was assigned lineage "47a4926a-ecc1-982d-32be-6c30a8f5ed86" +2022/02/22 17:52:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:38 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_8yzq6" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.85.164" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214d58b1b00000e81fd0682" => "6214d58b1b00000e81fd0682" + name: "acctest_8yzq6" => "acctest_8yzq6" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 6214d58b1b00000e81fd0682 + provider = provider.mso + description = + name = acctest_8yzq6 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d58b1b00000e81fd0682 + provider = provider.mso + description = + name = acctest_8yzq6 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:52:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:38 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:52:38 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Policy Update +2022/02/22 17:52:38 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001e7ab40 3980 [] false false map[] 0xc00031d100 0xc00119c000} +2022/02/22 17:52:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:38 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:38 [DEBUG] 6214d58b1d0000cf564f9ef8: Beginning Read +2022/02/22 17:52:38 HTTP request GET mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection GET mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00055b100 1147 [] false false map[] 0xc00213b500 0xc0011b6000} +2022/02/22 17:52:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa {"id":"6214d58c1d0000f8564f9efa","displayName":"acctest_0d1gh","description":"","templates":[{"name":"acctest_yrm3f","displayName":"acctest_yrm3f","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","extEpgType":"on-premise","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/externalEpgs/acctest_a6cqi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 [DEBUG] /schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/externalEpgs/acctest_a6cqi: Read finished successfully +2022/02/22 17:52:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107ee80 1147 [] false false map[] 0xc00213b600 0xc00119c160} +2022/02/22 17:52:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa {"id":"6214d58c1d0000f8564f9efa","displayName":"acctest_0d1gh","description":"","templates":[{"name":"acctest_yrm3f","displayName":"acctest_yrm3f","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","extEpgType":"on-premise","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/externalEpgs/acctest_a6cqi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 [DEBUG] /schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/externalEpgs/acctest_a6cqi: Read finished successfully +2022/02/22 17:52:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:52:38 [DEBUG] : Beginning Create +2022/02/22 17:52:38 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00055bf00 3980 [] false false map[] 0xc00031c300 0xc00119c0b0} +2022/02/22 17:52:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:38 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:38 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:38 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:38 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:38 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:38 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d +2022/02/22 17:52:38 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003178c0 86 [] false false map[] 0xc000248400 0xc0012a82c0} +2022/02/22 17:52:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd067d {"code":141,"message":"Resource Not Found: Policy 6214d58b1b00002e81fd067d not found"} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:38 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000317940 356 [] false false map[] 0xc0001af500 0xc0011b60b0} +2022/02/22 17:52:38 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 [DEBUG] Policy Update finished successfully: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:38 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Read +2022/02/22 17:52:38 id: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000841fc0 1147 [] false false map[] 0xc000248800 0xc00119c000} +2022/02/22 17:52:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 {"id":"6214d58b1d0000cf564f9ef8","displayName":"acctest_kj9gk","description":"","templates":[{"name":"acctest_01rs0","displayName":"acctest_01rs0","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_k47w4","displayName":"acctest_k47w4","vrfRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/vrfs/acctest_k47w4","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_7dc4k","displayName":"acctest_7dc4k","extEpgType":"on-premise","vrfRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/vrfs/acctest_k47w4","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/externalEpgs/acctest_7dc4k","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 [DEBUG] 6214d58b1d0000cf564f9ef8: Read finished successfully +2022/02/22 17:52:38 [DEBUG] acctest_k47w4: Beginning Read +2022/02/22 17:52:38 HTTP request GET mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection GET mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fea40 160 [] false false map[] 0xc000322900 0xc00119c0b0} +2022/02/22 17:52:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:38 [DEBUG] New state was assigned lineage "e4daf2ba-2afd-13c6-e533-a8d7de28664f" +2022/02/22 17:52:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:38 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:38 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:38 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:38 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:38 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:38 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:38 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[74] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006a2a80 74 [] false false map[] 0xc000322300 0xc00119c160} +2022/02/22 17:52:38 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: externalEpgRef cannot be duplicated."} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 17:52:38 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 17:52:38 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 17:52:38 [DEBUG] New state was assigned lineage "de7b1ee5-8884-068c-b9a2-833ad1f82be1" +2022/02/22 17:52:38 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.247.132" + id: "6214d58b1b00003581fd067c" => "6214d58b1b00003581fd067c" + name: "acctest_escqa" => "acctest_escqa" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_pids4" + template_name: "" => "acctest_9dydd" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_qxx2x" + external_epg_name: "" => "acctest_qxx2x" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_9dydd" + vrf_name: "" => "acctest_qxx2x" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_qxx2x" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_qxx2x" + schema_id: "" => "" + template: "" => "acctest_9dydd" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d58b1b00003581fd067c + provider = provider.mso + description = + name = acctest_escqa + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:52:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:38 [DEBUG] Test: Executing step 5 +2022/02/22 17:52:38 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:38 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:38 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state)] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:52:38 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:38 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:52:38 [DEBUG] Schema: Beginning Creation +2022/02/22 17:52:38 HTTP request POST mso/api/v1/schemas +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:52:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:52:38 [DEBUG] 6214d58b1b00003581fd067c: Beginning Policy Update +2022/02/22 17:52:38 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: expected any one of the epg or external_epg. +2022/02/22 17:52:38 [ERROR] : eval: *terraform.EvalApplyPost, err: expected any one of the epg or external_epg. +2022/02/22 17:52:38 [ERROR] : eval: *terraform.EvalSequence, err: expected any one of the epg or external_epg. +2022/02/22 17:52:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:38 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:38 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test1 because it has no config +2022/02/22 17:52:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:38 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:52:38 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:38 [DEBUG] : Beginning Read +2022/02/22 17:52:38 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e +2022/02/22 17:52:38 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006a2940 86 [] false false map[] 0xc002174000 0xc0012e2dc0} +2022/02/22 17:52:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003881fd067e {"code":141,"message":"Resource Not Found: Policy 6214d58b1b00003881fd067e not found"} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002d92240 356 [] false false map[] 0xc00031dd00 0xc0011b60b0} +2022/02/22 17:52:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 [DEBUG] 6214d58b1b00000e81fd0682: Read finished successfully +2022/02/22 17:52:38 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 17:52:38 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:52:38 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002d93940 1147 [] false false map[] 0xc000249e00 0xc00119c000} +2022/02/22 17:52:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 {"id":"6214d58b1d0000cf564f9ef8","displayName":"acctest_kj9gk","description":"","templates":[{"name":"acctest_01rs0","displayName":"acctest_01rs0","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_k47w4","displayName":"acctest_k47w4","vrfRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/vrfs/acctest_k47w4","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_7dc4k","displayName":"acctest_7dc4k","extEpgType":"on-premise","vrfRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/vrfs/acctest_k47w4","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/externalEpgs/acctest_7dc4k","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:38 [DEBUG] Exit from do method +2022/02/22 17:52:38 currentvrfname acctest_k47w4 +2022/02/22 17:52:38 found correct vrfname +2022/02/22 17:52:38 [DEBUG] acctest_k47w4: Read finished successfully +2022/02/22 17:52:38 [DEBUG] /schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/externalEpgs/acctest_7dc4k: Beginning Read +2022/02/22 17:52:38 HTTP request GET mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:38 [DEBUG] Begin Injection +2022/02/22 17:52:38 HTTP request after injection GET mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ffc80 3980 [] false false map[] 0xc0001aff00 0xc0012e24d0} +2022/02/22 17:52:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:39 [DEBUG] Exit from do method +2022/02/22 17:52:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:39 [DEBUG] 6214d58c1d0000f8564f9efa: Beginning Read +2022/02/22 17:52:39 HTTP request GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:52:39 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d58e1d0000ff564f9f01] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c52780 400 [] false false map[] 0xc001bd4400 0xc00119c0b0} +2022/02/22 17:52:39 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d58e1d0000ff564f9f01","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:52:39 [DEBUG] Exit from do method +2022/02/22 17:52:39 [DEBUG] 6214d58e1d0000ff564f9f01: Schema Creation finished successfully +2022/02/22 17:52:39 [DEBUG] 6214d58e1d0000ff564f9f01: Beginning Read +2022/02/22 17:52:39 HTTP request GET mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection GET mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 +2022/02/22 17:52:39 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c52980 86 [] false false map[] 0xc00031c400 0xc0011b7600} +2022/02/22 17:52:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd0680 {"code":141,"message":"Resource Not Found: Policy 6214d58b1b00003581fd0680 not found"} +2022/02/22 17:52:39 [DEBUG] Exit from do method +2022/02/22 17:52:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1772] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d15200 1772 [] false false map[] 0xc001bd4600 0xc0011b60b0} +2022/02/22 17:52:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2}]} +2022/02/22 17:52:39 [DEBUG] Exit from do method +2022/02/22 17:52:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c52b40 1147 [] false false map[] 0xc000140800 0xc00119c000} +2022/02/22 17:52:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 {"id":"6214d58b1d0000cf564f9ef8","displayName":"acctest_kj9gk","description":"","templates":[{"name":"acctest_01rs0","displayName":"acctest_01rs0","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_k47w4","displayName":"acctest_k47w4","vrfRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/vrfs/acctest_k47w4","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_7dc4k","displayName":"acctest_7dc4k","extEpgType":"on-premise","vrfRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/vrfs/acctest_k47w4","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/externalEpgs/acctest_7dc4k","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:39 [DEBUG] Exit from do method +2022/02/22 17:52:39 [DEBUG] /schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/externalEpgs/acctest_7dc4k: Read finished successfully +2022/02/22 17:52:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:39 [DEBUG] New state was assigned lineage "55fd2729-a39e-32a6-13a0-1a0d2ffc1332" +2022/02/22 17:52:39 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (destroy)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:39 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:39 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_schema.test + id: "6214d58b1d0000cf564f9ef8" => "" + name: "acctest_kj9gk" => "" + template_name: "acctest_01rs0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test1 + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_7dc4k" => "" + external_epg_name: "acctest_7dc4k" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/externalEpgs/acctest_7dc4k" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d58b1d0000cf564f9ef8" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_01rs0" => "" + vrf_name: "acctest_k47w4" => "" + vrf_schema_id: "6214d58b1d0000cf564f9ef8" => "" + vrf_template_name: "acctest_01rs0" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_k47w4" => "" + id: "acctest_k47w4" => "" + layer3_multicast: "false" => "" + name: "acctest_k47w4" => "" + schema_id: "6214d58b1d0000cf564f9ef8" => "" + template: "acctest_01rs0" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_schema.test: + ID = 6214d58b1d0000cf564f9ef8 + provider = provider.mso + name = acctest_kj9gk + template_name = acctest_01rs0 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test1: + ID = /schemas/6214d58b1d0000cf564f9ef8/templates/acctest_01rs0/externalEpgs/acctest_7dc4k + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_7dc4k + external_epg_name = acctest_7dc4k + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d58b1d0000cf564f9ef8 + selector_ip = + selector_name = + template_name = acctest_01rs0 + vrf_name = acctest_k47w4 + vrf_schema_id = 6214d58b1d0000cf564f9ef8 + vrf_template_name = acctest_01rs0 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_k47w4 + provider = provider.mso + display_name = acctest_k47w4 + layer3_multicast = false + name = acctest_k47w4 + schema_id = 6214d58b1d0000cf564f9ef8 + template = acctest_01rs0 + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:52:39 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (destroy)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (clean up state)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (destroy)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:39 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:52:39 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:39 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:52:39 [DEBUG] mso_schema_template_external_epg.test1: applying the planned Delete change +2022/02/22 17:52:39 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:52:39 HTTP request PATCH mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection PATCH mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000316580 1147 [] false false map[] 0xc000248500 0xc0012e24d0} +2022/02/22 17:52:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa {"id":"6214d58c1d0000f8564f9efa","displayName":"acctest_0d1gh","description":"","templates":[{"name":"acctest_yrm3f","displayName":"acctest_yrm3f","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","extEpgType":"on-premise","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/externalEpgs/acctest_a6cqi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:39 [DEBUG] Exit from do method +2022/02/22 17:52:39 [DEBUG] 6214d58c1d0000f8564f9efa: Read finished successfully +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:39 [DEBUG] acctest_a6cqi: Beginning Read +2022/02/22 17:52:39 HTTP request GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001ca1980 400 [] false false map[] 0xc000140b00 0xc00119c0b0} +2022/02/22 17:52:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 {"id":"6214d58e1d0000ff564f9f01","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:52:39 [DEBUG] Exit from do method +2022/02/22 17:52:39 [DEBUG] 6214d58e1d0000ff564f9f01: Read finished successfully +2022/02/22 17:52:39 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:52:39 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:52:39 HTTP request PATCH mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection PATCH mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f +2022/02/22 17:52:39 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000422180 86 [] false false map[] 0xc001bd4700 0xc0011b7600} +2022/02/22 17:52:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067f {"code":141,"message":"Resource Not Found: Policy 6214d58b1b00003581fd067f not found"} +2022/02/22 17:52:39 [DEBUG] Exit from do method +2022/02/22 17:52:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a42880 356 [] false false map[] 0xc00031c500 0xc0011b60b0} +2022/02/22 17:52:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:39 [DEBUG] Exit from do method +2022/02/22 17:52:39 [DEBUG] 6214d58b1b00000e81fd0682: Import finished successfully +2022/02/22 17:52:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:39 [DEBUG] New state was assigned lineage "b64eeef4-4c43-4665-a069-ff05d9ace929" +2022/02/22 17:52:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:39 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001bd5e00 0xc00119c000} +2022/02/22 17:52:39 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:39 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:52:39 [DEBUG] acctest_k47w4: Beginning Destroy +2022/02/22 17:52:39 HTTP request PATCH mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection PATCH mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001e7b1c0 1147 [] false false map[] 0xc0006fa900 0xc0012e24d0} +2022/02/22 17:52:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa {"id":"6214d58c1d0000f8564f9efa","displayName":"acctest_0d1gh","description":"","templates":[{"name":"acctest_yrm3f","displayName":"acctest_yrm3f","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","extEpgType":"on-premise","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/externalEpgs/acctest_a6cqi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:39 [DEBUG] Exit from do method +2022/02/22 17:52:39 currentvrfname acctest_a6cqi +2022/02/22 17:52:39 found correct vrfname +2022/02/22 17:52:39 [DEBUG] acctest_a6cqi: Read finished successfully +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:39 [DEBUG] /schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/externalEpgs/acctest_a6cqi: Beginning Read +2022/02/22 17:52:39 [DEBUG] /schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/externalEpgs/acctest_a6cqi: Beginning Read +2022/02/22 17:52:39 HTTP request GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 HTTP request GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection GET mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:39 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0006faf00 0xc00119c0b0} +2022/02/22 17:52:39 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:39 [DEBUG] acctest_qxx2x: Creation finished successfully +2022/02/22 17:52:39 [DEBUG] acctest_qxx2x: Beginning Read +2022/02/22 17:52:39 HTTP request GET mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection GET mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 +2022/02/22 17:52:39 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001e7bec0 86 [] false false map[] 0xc0006fb100 0xc0011b7600} +2022/02/22 17:52:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00002e81fd0681 {"code":141,"message":"Resource Not Found: Policy 6214d58b1b00002e81fd0681 not found"} +2022/02/22 17:52:39 [DEBUG] Exit from do method +2022/02/22 17:52:39 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:39 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:39 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000840400 356 [] false false map[] 0xc00031c600 0xc0011b60b0} +2022/02/22 17:52:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:39 [DEBUG] Exit from do method +2022/02/22 17:52:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:39 [DEBUG] : Beginning Read +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:39 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:39 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:39 [DEBUG] : Beginning Read +2022/02/22 17:52:39 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:39 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000140500 0xc00119c000} +2022/02/22 17:52:39 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8?validate=false +2022/02/22 17:52:39 [DEBUG] acctest_k47w4: Destroy finished successfully +2022/02/22 17:52:39 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:52:39 [DEBUG] 6214d58b1d0000cf564f9ef8: Beginning Destroy +2022/02/22 17:52:39 HTTP request DELETE mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:39 [DEBUG] Begin Injection +2022/02/22 17:52:39 HTTP request after injection DELETE mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ac3240 1147 [] false false map[] 0xc000249800 0xc0012e24d0} +2022/02/22 17:52:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa {"id":"6214d58c1d0000f8564f9efa","displayName":"acctest_0d1gh","description":"","templates":[{"name":"acctest_yrm3f","displayName":"acctest_yrm3f","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","extEpgType":"on-premise","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/externalEpgs/acctest_a6cqi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:40 [DEBUG] Exit from do method +2022/02/22 17:52:40 [DEBUG] /schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/externalEpgs/acctest_a6cqi: Read finished successfully +2022/02/22 17:52:40 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:40 [ERROR] : eval: *terraform.EvalDiff, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: kdin6 +2022/02/22 17:52:40 [ERROR] : eval: *terraform.EvalSequence, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: kdin6 +2022/02/22 17:52:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa +2022/02/22 17:52:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002d922c0 1147 [] false false map[] 0xc000140800 0xc0011b6000} +2022/02/22 17:52:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58c1d0000f8564f9efa {"id":"6214d58c1d0000f8564f9efa","displayName":"acctest_0d1gh","description":"","templates":[{"name":"acctest_yrm3f","displayName":"acctest_yrm3f","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_a6cqi","displayName":"acctest_a6cqi","extEpgType":"on-premise","vrfRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/vrfs/acctest_a6cqi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/externalEpgs/acctest_a6cqi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:40 [DEBUG] Exit from do method +2022/02/22 17:52:40 [DEBUG] /schemas/6214d58c1d0000f8564f9efa/templates/acctest_yrm3f/externalEpgs/acctest_a6cqi: Read finished successfully +2022/02/22 17:52:40 [DEBUG] New state was assigned lineage "c3b9ebc8-3c0a-7200-bea4-66c3de02b4eb" +2022/02/22 17:52:40 [DEBUG] Test: Executing step 6 +2022/02/22 17:52:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004231c0 768 [] false false map[] 0xc0006fb600 0xc00119c0b0} +2022/02/22 17:52:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 {"id":"6214d58e1d0000ff564f9f01","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:52:40 [DEBUG] Exit from do method +2022/02/22 17:52:40 currentvrfname acctest_qxx2x +2022/02/22 17:52:40 found correct vrfname +2022/02/22 17:52:40 [DEBUG] acctest_qxx2x: Read finished successfully +2022/02/22 17:52:40 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:40 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:52:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:40 HTTP request PATCH mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:40 [DEBUG] Begin Injection +2022/02/22 17:52:40 HTTP request after injection PATCH mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:40 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "rcjop" is not expected here. +2022/02/22 17:52:40 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "rcjop" is not expected here. +2022/02/22 17:52:40 [DEBUG] Test: Executing step 7 +2022/02/22 17:52:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:40 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] : Beginning Read +2022/02/22 17:52:40 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:40 [DEBUG] Begin Injection +2022/02/22 17:52:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004220c0 3980 [] false false map[] 0xc000248400 0xc0011b60b0} +2022/02/22 17:52:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:40 [DEBUG] Exit from do method +2022/02/22 17:52:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:40 [DEBUG] New state was assigned lineage "54e45565-b028-6e91-52da-4d80f8efaf7f" +2022/02/22 17:52:40 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:40 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000ac2240 3980 [] false false map[] 0xc00213ac00 0xc0011b7600} +2022/02/22 17:52:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:40 [DEBUG] Exit from do method +2022/02/22 17:52:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:40 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Read +2022/02/22 17:52:40 id: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:40 [DEBUG] Begin Injection +2022/02/22 17:52:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:40 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00213b300 0xc00119c000} +2022/02/22 17:52:40 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d58b1d0000cf564f9ef8 +2022/02/22 17:52:40 [DEBUG] 6214d58b1d0000cf564f9ef8: Destroy finished successfully +2022/02/22 17:52:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:40 [DEBUG] New state was assigned lineage "78238769-bf7e-64a5-9603-8314703d0878" +2022/02/22 17:52:40 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:40 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:40 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] : Beginning Read +2022/02/22 17:52:40 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:40 [DEBUG] Begin Injection +2022/02/22 17:52:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:40 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0001ae100 0xc0011b6000} +2022/02/22 17:52:40 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:40 [DEBUG] : Beginning Read +2022/02/22 17:52:40 HTTP request GET mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:40 [DEBUG] Begin Injection +2022/02/22 17:52:40 HTTP request after injection GET mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ad9c0 3980 [] false false map[] 0xc0001af800 0xc0012e24d0} +2022/02/22 17:52:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:40 [DEBUG] Exit from do method +2022/02/22 17:52:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:40 [DEBUG] New state was assigned lineage "5d856948-7de0-8116-38ab-42fab5d08dc1" +2022/02/22 17:52:40 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:40 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:40 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_7yms2" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:52:40 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:40 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:52:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:40 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:40 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:52:40 [DEBUG] : Beginning Create +2022/02/22 17:52:40 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:40 [DEBUG] Begin Injection +2022/02/22 17:52:40 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036e740 356 [] false false map[] 0xc00213b600 0xc0011b7600} +2022/02/22 17:52:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:40 [DEBUG] Exit from do method +2022/02/22 17:52:40 [DEBUG] 6214d58b1b00000e81fd0682: Read finished successfully +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:40 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:52:40 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:40 [DEBUG] Begin Injection +2022/02/22 17:52:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002d4a040 3980 [] false false map[] 0xc002174b00 0xc00119c000} +2022/02/22 17:52:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:40 [DEBUG] Exit from do method +2022/02/22 17:52:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:40 [DEBUG] New state was assigned lineage "d2e0a162-d34b-b7ad-856f-15d4b4eb3ffb" +2022/02/22 17:52:40 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:40 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0003168c0 1147 [] false false map[] 0xc001bd4100 0xc0011b6000} +2022/02/22 17:52:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 {"id":"6214d58e1d0000ff564f9f01","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","extEpgType":"on-premise","vrfRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/vrfs/acctest_qxx2x","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:40 [DEBUG] Exit from do method +2022/02/22 17:52:40 [DEBUG] /schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/externalEpgs/acctest_qxx2x: Read finished successfully +2022/02/22 17:52:40 [DEBUG] New state was assigned lineage "e9211618-5533-5d51-bd90-9bf89659fd1e" +2022/02/22 17:52:40 [DEBUG] Test: Executing step 6 +2022/02/22 17:52:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:40 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:52:40 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:52:40 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:52:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:40 [DEBUG] : Beginning Read +2022/02/22 17:52:40 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:40 [DEBUG] Begin Injection +2022/02/22 17:52:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:40 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000317380 160 [] false false map[] 0xc001bd5700 0xc0012e24d0} +2022/02/22 17:52:40 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d5901b00003981fd0684","name":"acctest_7yms2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:40 [DEBUG] Exit from do method +2022/02/22 17:52:40 [DEBUG] 6214d5901b00003981fd0684: Creation finished successfully +2022/02/22 17:52:40 [DEBUG] 6214d5901b00003981fd0684: Beginning Read +2022/02/22 17:52:40 id: 6214d5901b00003981fd0684 +2022/02/22 17:52:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:40 [DEBUG] Begin Injection +2022/02/22 17:52:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1933] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ac240 1933 [] false false map[] 0xc002962100 0xc0011b7600} +2022/02/22 17:52:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2},{"id":"6214d5901b00003981fd0684","name":"acctest_7yms2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 17:52:40 [DEBUG] Exit from do method +2022/02/22 17:52:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:40 [DEBUG] Begin Injection +2022/02/22 17:52:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ac500 3980 [] false false map[] 0xc001bd4200 0xc00119c000} +2022/02/22 17:52:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:41 [DEBUG] Exit from do method +2022/02/22 17:52:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:41 [DEBUG] 6214d58e1d0000ff564f9f01: Beginning Read +2022/02/22 17:52:41 HTTP request GET mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:41 [DEBUG] Begin Injection +2022/02/22 17:52:41 HTTP request after injection GET mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:41 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:41 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:41 [DEBUG] Begin Injection +2022/02/22 17:52:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ad200 160 [] false false map[] 0xc00213a500 0xc0012e24d0} +2022/02/22 17:52:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 {"id":"6214d5901b00003981fd0684","name":"acctest_7yms2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:41 [DEBUG] Exit from do method +2022/02/22 17:52:41 [DEBUG] 6214d5901b00003981fd0684: Read finished successfully +2022/02/22 17:52:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:41 [DEBUG] New state was assigned lineage "49524bc2-62b6-f7b7-d4d9-b40edad975c5" +2022/02/22 17:52:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] : Beginning Read +2022/02/22 17:52:41 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:41 [DEBUG] Begin Injection +2022/02/22 17:52:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00019e880 356 [] false false map[] 0xc001bd4300 0xc0011b7600} +2022/02/22 17:52:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:41 [DEBUG] Exit from do method +2022/02/22 17:52:41 [DEBUG] 6214d58b1b00000e81fd0682: Import finished successfully +2022/02/22 17:52:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:41 [DEBUG] New state was assigned lineage "634b07b4-2142-91f7-7b2a-c5d609ce0097" +2022/02/22 17:52:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:41 [DEBUG] Test: Executing step 4 +2022/02/22 17:52:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] : Beginning Read +2022/02/22 17:52:41 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:41 [DEBUG] Begin Injection +2022/02/22 17:52:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036e840 1147 [] false false map[] 0xc001bd4a00 0xc00119c000} +2022/02/22 17:52:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 {"id":"6214d58e1d0000ff564f9f01","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","extEpgType":"on-premise","vrfRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/vrfs/acctest_qxx2x","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:41 [DEBUG] Exit from do method +2022/02/22 17:52:41 [DEBUG] 6214d58e1d0000ff564f9f01: Read finished successfully +2022/02/22 17:52:41 [DEBUG] acctest_qxx2x: Beginning Read +2022/02/22 17:52:41 HTTP request GET mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:41 [DEBUG] Begin Injection +2022/02/22 17:52:41 HTTP request after injection GET mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f140 160 [] false false map[] 0xc00213aa00 0xc0011b60b0} +2022/02/22 17:52:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:41 [DEBUG] Exit from do method +2022/02/22 17:52:41 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f900 3980 [] false false map[] 0xc00213ae00 0xc0012e24d0} +2022/02/22 17:52:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:41 [DEBUG] Exit from do method +2022/02/22 17:52:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:41 [DEBUG] 6214d5901b00003981fd0684: Beginning Read +2022/02/22 17:52:41 id: 6214d5901b00003981fd0684 +2022/02/22 17:52:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:41 [DEBUG] Begin Injection +2022/02/22 17:52:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f880 3980 [] false false map[] 0xc002175300 0xc0011b7600} +2022/02/22 17:52:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:41 [DEBUG] Exit from do method +2022/02/22 17:52:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:41 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:41 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:41 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:41 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:41 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Read +2022/02/22 17:52:41 id: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:41 [DEBUG] Begin Injection +2022/02/22 17:52:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000316580 1147 [] false false map[] 0xc00213b600 0xc00119c000} +2022/02/22 17:52:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 {"id":"6214d58e1d0000ff564f9f01","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","extEpgType":"on-premise","vrfRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/vrfs/acctest_qxx2x","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:41 [DEBUG] Exit from do method +2022/02/22 17:52:41 currentvrfname acctest_qxx2x +2022/02/22 17:52:41 found correct vrfname +2022/02/22 17:52:41 [DEBUG] acctest_qxx2x: Read finished successfully +2022/02/22 17:52:41 [DEBUG] /schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/externalEpgs/acctest_qxx2x: Beginning Read +2022/02/22 17:52:41 HTTP request GET mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:41 [DEBUG] Begin Injection +2022/02/22 17:52:41 HTTP request after injection GET mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0023ac100 160 [] false false map[] 0xc00213bc00 0xc0012e24d0} +2022/02/22 17:52:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 {"id":"6214d5901b00003981fd0684","name":"acctest_7yms2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:41 [DEBUG] Exit from do method +2022/02/22 17:52:41 [DEBUG] 6214d5901b00003981fd0684: Read finished successfully +2022/02/22 17:52:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:41 [DEBUG] New state was assigned lineage "941539db-47b3-9ed7-a71e-c26d9de6d7be" +2022/02/22 17:52:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:41 [WARN] Test: Executing destroy step +2022/02/22 17:52:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d15100 356 [] false false map[] 0xc002175e00 0xc0011b7600} +2022/02/22 17:52:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:41 [DEBUG] Exit from do method +2022/02/22 17:52:41 [DEBUG] 6214d58b1b00000e81fd0682: Read finished successfully +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:41 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:52:41 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:41 [DEBUG] Begin Injection +2022/02/22 17:52:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] : Beginning Read +2022/02/22 17:52:41 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:41 [DEBUG] Begin Injection +2022/02/22 17:52:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000317640 1147 [] false false map[] 0xc002d7a500 0xc00119c000} +2022/02/22 17:52:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 {"id":"6214d58e1d0000ff564f9f01","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","extEpgType":"on-premise","vrfRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/vrfs/acctest_qxx2x","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:41 [DEBUG] Exit from do method +2022/02/22 17:52:41 [DEBUG] /schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/externalEpgs/acctest_qxx2x: Read finished successfully +2022/02/22 17:52:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:41 [DEBUG] New state was assigned lineage "b4808abf-c191-d6cc-6ba2-f256a2417576" +2022/02/22 17:52:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:41 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.247.132" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214d58b1b00003581fd067c" => "6214d58b1b00003581fd067c" + name: "acctest_escqa" => "acctest_escqa" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d58e1d0000ff564f9f01" => "" + name: "acctest_pids4" => "" + template_name: "acctest_9dydd" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_qxx2x" => "" + external_epg_name: "acctest_qxx2x" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/externalEpgs/acctest_qxx2x" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d58e1d0000ff564f9f01" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_9dydd" => "" + vrf_name: "acctest_qxx2x" => "" + vrf_schema_id: "6214d58e1d0000ff564f9f01" => "" + vrf_template_name: "acctest_9dydd" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_qxx2x" => "" + id: "acctest_qxx2x" => "" + layer3_multicast: "false" => "" + name: "acctest_qxx2x" => "" + schema_id: "6214d58e1d0000ff564f9f01" => "" + template: "acctest_9dydd" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d58b1b00003581fd067c + provider = provider.mso + description = + name = acctest_escqa + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 6214d58e1d0000ff564f9f01 + provider = provider.mso + name = acctest_pids4 + template_name = acctest_9dydd + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d58e1d0000ff564f9f01/templates/acctest_9dydd/externalEpgs/acctest_qxx2x + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_qxx2x + external_epg_name = acctest_qxx2x + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d58e1d0000ff564f9f01 + selector_ip = + selector_name = + template_name = acctest_9dydd + vrf_name = acctest_qxx2x + vrf_schema_id = 6214d58e1d0000ff564f9f01 + vrf_template_name = acctest_9dydd + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_qxx2x + provider = provider.mso + display_name = acctest_qxx2x + layer3_multicast = false + name = acctest_qxx2x + schema_id = 6214d58e1d0000ff564f9f01 + template = acctest_9dydd + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:52:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (destroy) +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:52:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:41 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:42 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:52:42 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:52:42 HTTP request PATCH mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:42 [DEBUG] Begin Injection +2022/02/22 17:52:42 HTTP request after injection PATCH mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:42 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:52:42 [DEBUG] 6214d58b1b00003581fd067c: Beginning Policy Update +2022/02/22 17:52:42 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:42 [DEBUG] Begin Injection +2022/02/22 17:52:42 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1933] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001e7a880 1933 [] false false map[] 0xc00031c600 0xc0012e24d0} +2022/02/22 17:52:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2},{"id":"6214d5901b00003981fd0684","name":"acctest_7yms2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 17:52:42 [DEBUG] Exit from do method +2022/02/22 17:52:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:42 [DEBUG] Begin Injection +2022/02/22 17:52:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fe240 3980 [] false false map[] 0xc002d7ab00 0xc0011b60b0} +2022/02/22 17:52:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:42 [DEBUG] Exit from do method +2022/02/22 17:52:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:42 [DEBUG] 6214d5901b00003981fd0684: Beginning Read +2022/02/22 17:52:42 id: 6214d5901b00003981fd0684 +2022/02/22 17:52:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:42 [DEBUG] Begin Injection +2022/02/22 17:52:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000248e00 0xc00119c000} +2022/02/22 17:52:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:42 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:52:42 [DEBUG] acctest_qxx2x: Beginning Destroy +2022/02/22 17:52:42 HTTP request PATCH mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:42 [DEBUG] Begin Injection +2022/02/22 17:52:42 HTTP request after injection PATCH mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:42 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001ca0140 357 [] false false map[] 0xc002175100 0xc0012e24d0} +2022/02/22 17:52:42 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:42 [DEBUG] Exit from do method +2022/02/22 17:52:42 [DEBUG] Policy Update finished successfully: 6214d58b1b00003581fd067c +2022/02/22 17:52:42 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:42 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:42 [DEBUG] Begin Injection +2022/02/22 17:52:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000840440 356 [] false false map[] 0xc002d7bd00 0xc0011b60b0} +2022/02/22 17:52:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:42 [DEBUG] Exit from do method +2022/02/22 17:52:42 [DEBUG] 6214d58b1b00000e81fd0682: Import finished successfully +2022/02/22 17:52:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:42 [DEBUG] New state was assigned lineage "97151221-cce7-f911-cb85-17cd31f90f4e" +2022/02/22 17:52:42 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:42 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:42 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:42 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:42 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:42 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:42 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_8yzq6" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.85.164" => "1.2.85.164" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214d58b1b00000e81fd0682" => "6214d58b1b00000e81fd0682" + name: "acctest_8yzq6" => "acctest_8yzq6" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_r0pud" + template_name: "" => "acctest_dkw36" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_kie86" + external_epg_name: "" => "acctest_kie86" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_dkw36" + vrf_name: "" => "acctest_kie86" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_kie86" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_kie86" + schema_id: "" => "" + template: "" => "acctest_dkw36" + vzany: "" => "" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 6214d58b1b00000e81fd0682 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.85.164 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_8yzq6 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d58b1b00000e81fd0682 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.85.164 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_8yzq6 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:52:42 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:42 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:42 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:42 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:52:42 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:42 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:52:42 [DEBUG] Schema: Beginning Creation +2022/02/22 17:52:42 HTTP request POST mso/api/v1/schemas +2022/02/22 17:52:42 [DEBUG] Begin Injection +2022/02/22 17:52:42 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:52:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:52:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e240 160 [] false false map[] 0xc0023e0400 0xc00119c000} +2022/02/22 17:52:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 {"id":"6214d5901b00003981fd0684","name":"acctest_7yms2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:42 [DEBUG] Exit from do method +2022/02/22 17:52:42 [DEBUG] 6214d5901b00003981fd0684: Read finished successfully +2022/02/22 17:52:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:42 [DEBUG] New state was assigned lineage "155f109b-ef00-4a71-2f3a-0aca9e768f38" +2022/02/22 17:52:42 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:52:42 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:42 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d5901b00003981fd0684" => "" + name: "acctest_7yms2" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5901b00003981fd0684 + provider = provider.mso + description = + name = acctest_7yms2 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:52:42 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:42 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:42 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:52:42 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:52:42 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:52:42 [DEBUG] 6214d5901b00003981fd0684: Beginning Read +2022/02/22 17:52:42 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:42 [DEBUG] Begin Injection +2022/02/22 17:52:42 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000140a00 0xc0012e24d0} +2022/02/22 17:52:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01?validate=false +2022/02/22 17:52:42 [DEBUG] acctest_qxx2x: Destroy finished successfully +2022/02/22 17:52:42 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:52:42 [DEBUG] 6214d58e1d0000ff564f9f01: Beginning Destroy +2022/02/22 17:52:42 HTTP request DELETE mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:42 [DEBUG] Begin Injection +2022/02/22 17:52:42 HTTP request after injection DELETE mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008404c0 357 [] false false map[] 0xc002d7a100 0xc0011b60b0} +2022/02/22 17:52:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:42 [DEBUG] Exit from do method +2022/02/22 17:52:42 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:42 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 17:52:43 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:52:43 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d5921d0000ff564f9f09] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000840780 400 [] false false map[] 0xc000140700 0xc00119c000} +2022/02/22 17:52:43 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d5921d0000ff564f9f09","displayName":"acctest_r0pud","description":"","templates":[{"name":"acctest_dkw36","displayName":"acctest_dkw36","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:52:43 [DEBUG] Exit from do method +2022/02/22 17:52:43 [DEBUG] 6214d5921d0000ff564f9f09: Schema Creation finished successfully +2022/02/22 17:52:43 [DEBUG] 6214d5921d0000ff564f9f09: Beginning Read +2022/02/22 17:52:43 HTTP request GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:43 [DEBUG] Begin Injection +2022/02/22 17:52:43 HTTP request after injection GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:43 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc002d7a800 0xc0012e24d0} +2022/02/22 17:52:43 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:43 [DEBUG] : Read finished successfully +2022/02/22 17:52:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:43 [DEBUG] New state was assigned lineage "a569938a-f27a-6afb-08e3-bed8a9f65f1e" +2022/02/22 17:52:43 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:43 [DEBUG] Begin Injection +2022/02/22 17:52:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:43 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000140f00 0xc0011b62c0} +2022/02/22 17:52:43 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d58e1d0000ff564f9f01 +2022/02/22 17:52:43 [DEBUG] 6214d58e1d0000ff564f9f01: Destroy finished successfully +2022/02/22 17:52:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:43 [DEBUG] New state was assigned lineage "d36926e8-8c72-45b2-3c95-62baf382b44f" +2022/02/22 17:52:43 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:43 [DEBUG] Begin Injection +2022/02/22 17:52:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002d92140 400 [] false false map[] 0xc002174200 0xc001bb0370} +2022/02/22 17:52:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 {"id":"6214d5921d0000ff564f9f09","displayName":"acctest_r0pud","description":"","templates":[{"name":"acctest_dkw36","displayName":"acctest_dkw36","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:52:43 [DEBUG] Exit from do method +2022/02/22 17:52:43 [DEBUG] 6214d5921d0000ff564f9f09: Read finished successfully +2022/02/22 17:52:43 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:52:43 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:52:43 HTTP request PATCH mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:43 [DEBUG] Begin Injection +2022/02/22 17:52:43 HTTP request after injection PATCH mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 +2022/02/22 17:52:43 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:43 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000841ac0 86 [] false false map[] 0xc00213a900 0xc000413e40} +2022/02/22 17:52:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5901b00003981fd0684 {"code":141,"message":"Resource Not Found: Policy 6214d5901b00003981fd0684 not found"} +2022/02/22 17:52:43 [DEBUG] Exit from do method +2022/02/22 17:52:43 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:43 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:43 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:43 [DEBUG] : Beginning Read +2022/02/22 17:52:43 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:43 [DEBUG] Begin Injection +2022/02/22 17:52:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002ddaf80 357 [] false false map[] 0xc002d7ac00 0xc001c30160} +2022/02/22 17:52:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:43 [DEBUG] Exit from do method +2022/02/22 17:52:43 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:43 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:43 [DEBUG] : Beginning Read +2022/02/22 17:52:43 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:43 [DEBUG] Begin Injection +2022/02/22 17:52:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:43 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00031c600 0xc00119c160} +2022/02/22 17:52:43 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:43 [DEBUG] acctest_kie86: Creation finished successfully +2022/02/22 17:52:43 [DEBUG] acctest_kie86: Beginning Read +2022/02/22 17:52:43 HTTP request GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:43 [DEBUG] Begin Injection +2022/02/22 17:52:43 HTTP request after injection GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dadc00 3980 [] false false map[] 0xc00031d600 0xc000413e40} +2022/02/22 17:52:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:43 [DEBUG] Exit from do method +2022/02/22 17:52:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:43 [DEBUG] New state was assigned lineage "08d3a7dd-e982-98f3-9091-5cdf0091d767" +2022/02/22 17:52:43 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 17:52:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:43 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dadd80 3980 [] false false map[] 0xc001594200 0xc000413ef0} +2022/02/22 17:52:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:43 [DEBUG] Exit from do method +2022/02/22 17:52:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:43 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:43 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:43 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:43 [DEBUG] Begin Injection +2022/02/22 17:52:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00055b780 768 [] false false map[] 0xc002174200 0xc0015ae0b0} +2022/02/22 17:52:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 {"id":"6214d5921d0000ff564f9f09","displayName":"acctest_r0pud","description":"","templates":[{"name":"acctest_dkw36","displayName":"acctest_dkw36","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_kie86","displayName":"acctest_kie86","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:52:43 [DEBUG] Exit from do method +2022/02/22 17:52:43 currentvrfname acctest_kie86 +2022/02/22 17:52:43 found correct vrfname +2022/02/22 17:52:43 [DEBUG] acctest_kie86: Read finished successfully +2022/02/22 17:52:43 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:43 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:52:43 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:52:43 HTTP request PATCH mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:43 [DEBUG] Begin Injection +2022/02/22 17:52:43 HTTP request after injection PATCH mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a6ecc0 357 [] false false map[] 0xc001594800 0xc000413e40} +2022/02/22 17:52:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:44 [DEBUG] Exit from do method +2022/02/22 17:52:44 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:44 [DEBUG] New state was assigned lineage "81fa3ae8-28d9-78ad-1441-7ed67055d5ad" +2022/02/22 17:52:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:44 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:44 [DEBUG] Test: Executing step 7 +2022/02/22 17:52:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:44 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:44 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:44 [DEBUG] : Beginning Read +2022/02/22 17:52:44 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:44 [DEBUG] Begin Injection +2022/02/22 17:52:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:44 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc002174700 0xc0015ae0b0} +2022/02/22 17:52:44 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:44 [DEBUG] : Beginning Read +2022/02/22 17:52:44 HTTP request GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:44 [DEBUG] Begin Injection +2022/02/22 17:52:44 HTTP request after injection GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009cbac0 3980 [] false false map[] 0xc002174900 0xc000413e40} +2022/02/22 17:52:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:44 [DEBUG] Exit from do method +2022/02/22 17:52:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:44 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:44 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:44 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:44 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:44 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:44 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:44 [DEBUG] Begin Injection +2022/02/22 17:52:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002d4a280 1147 [] false false map[] 0xc002174a00 0xc0015ae0b0} +2022/02/22 17:52:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 {"id":"6214d5921d0000ff564f9f09","displayName":"acctest_r0pud","description":"","templates":[{"name":"acctest_dkw36","displayName":"acctest_dkw36","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_kie86","displayName":"acctest_kie86","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_kie86","displayName":"acctest_kie86","extEpgType":"on-premise","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:44 [DEBUG] Exit from do method +2022/02/22 17:52:44 [DEBUG] /schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86: Read finished successfully +2022/02/22 17:52:44 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:52:44 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Policy Update +2022/02/22 17:52:44 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:44 [DEBUG] Begin Injection +2022/02/22 17:52:44 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[357] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fe240 357 [] false false map[] 0xc00031d300 0xc000413e40} +2022/02/22 17:52:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:52:44 [DEBUG] Exit from do method +2022/02/22 17:52:44 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:44 [DEBUG] New state was assigned lineage "79a1dc48-787d-e7e2-d09f-74f6b57f240e" +2022/02/22 17:52:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:44 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:44 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:44 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:44 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:44 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:44 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.247.132" => "1.2.247.132" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214d58b1b00003581fd067c" => "6214d58b1b00003581fd067c" + name: "acctest_escqa" => "acctest_escqa" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_pids4" + template_name: "" => "acctest_9dydd" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_qxx2x" + external_epg_name: "" => "acctest_qxx2x" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_9dydd" + vrf_name: "" => "acctest_qxx2x" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_qxx2x" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_qxx2x" + schema_id: "" => "" + template: "" => "acctest_9dydd" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d58b1b00003581fd067c + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.247.132 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_escqa + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:52:44 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:44 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:52:44 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:52:44 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:52:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:44 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:44 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c04e40 360 [] false false map[] 0xc001594b00 0xc0015ae0b0} +2022/02/22 17:52:44 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"","externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:52:44 [DEBUG] Exit from do method +2022/02/22 17:52:44 [DEBUG] Policy Update finished successfully: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:44 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Read +2022/02/22 17:52:44 id: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:44 [DEBUG] Begin Injection +2022/02/22 17:52:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:44 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:52:44 [DEBUG] Schema: Beginning Creation +2022/02/22 17:52:44 HTTP request POST mso/api/v1/schemas +2022/02/22 17:52:44 [DEBUG] Begin Injection +2022/02/22 17:52:44 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:52:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:52:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00036f900 360 [] false false map[] 0xc000249400 0xc000413e40} +2022/02/22 17:52:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"","externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:52:45 [DEBUG] Exit from do method +2022/02/22 17:52:45 [DEBUG] 6214d58b1b00000e81fd0682: Read finished successfully +2022/02/22 17:52:45 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 17:52:45 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:52:45 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:45 [DEBUG] Begin Injection +2022/02/22 17:52:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:45 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:52:45 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d5951d0000fc564f9f0d] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e0c0 400 [] false false map[] 0xc0031bcb00 0xc0011b60b0} +2022/02/22 17:52:45 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d5951d0000fc564f9f0d","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:52:45 [DEBUG] Exit from do method +2022/02/22 17:52:45 [DEBUG] 6214d5951d0000fc564f9f0d: Schema Creation finished successfully +2022/02/22 17:52:45 [DEBUG] 6214d5951d0000fc564f9f0d: Beginning Read +2022/02/22 17:52:45 HTTP request GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:45 [DEBUG] Begin Injection +2022/02/22 17:52:45 HTTP request after injection GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1973] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009c1d00 1973 [] false false map[] 0xc001680800 0xc000413e40} +2022/02/22 17:52:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2},{"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"","externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3}]} +2022/02/22 17:52:45 [DEBUG] Exit from do method +2022/02/22 17:52:45 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:45 [DEBUG] Begin Injection +2022/02/22 17:52:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000840f40 400 [] false false map[] 0xc0031bcd00 0xc0011b60b0} +2022/02/22 17:52:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d {"id":"6214d5951d0000fc564f9f0d","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:52:45 [DEBUG] Exit from do method +2022/02/22 17:52:45 [DEBUG] 6214d5951d0000fc564f9f0d: Read finished successfully +2022/02/22 17:52:45 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:52:45 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:52:45 HTTP request PATCH mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:45 [DEBUG] Begin Injection +2022/02/22 17:52:45 HTTP request after injection PATCH mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dac400 360 [] false false map[] 0xc0031bce00 0xc000413e40} +2022/02/22 17:52:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"","externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:52:45 [DEBUG] Exit from do method +2022/02/22 17:52:45 [DEBUG] 6214d58b1b00000e81fd0682: Import finished successfully +2022/02/22 17:52:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:45 [DEBUG] New state was assigned lineage "20bf0880-7c4b-1aa2-8eb6-8ac5f210d7d4" +2022/02/22 17:52:45 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:45 [DEBUG] Begin Injection +2022/02/22 17:52:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:45 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00031c600 0xc0011b60b0} +2022/02/22 17:52:45 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:45 [DEBUG] acctest_qxx2x: Creation finished successfully +2022/02/22 17:52:45 [DEBUG] acctest_qxx2x: Beginning Read +2022/02/22 17:52:45 HTTP request GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:45 [DEBUG] Begin Injection +2022/02/22 17:52:45 HTTP request after injection GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000841240 360 [] false false map[] 0xc001680900 0xc000413e40} +2022/02/22 17:52:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"","externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:52:46 [DEBUG] Exit from do method +2022/02/22 17:52:46 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:46 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:46 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:46 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:46 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:52:46 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:46 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:46 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:46 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:46 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:46 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:46 [DEBUG] : Beginning Read +2022/02/22 17:52:46 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:46 [DEBUG] Begin Injection +2022/02/22 17:52:46 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000090040 768 [] false false map[] 0xc00287a200 0xc0011b60b0} +2022/02/22 17:52:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d {"id":"6214d5951d0000fc564f9f0d","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:52:46 [DEBUG] Exit from do method +2022/02/22 17:52:46 currentvrfname acctest_qxx2x +2022/02/22 17:52:46 found correct vrfname +2022/02/22 17:52:46 [DEBUG] acctest_qxx2x: Read finished successfully +2022/02/22 17:52:46 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:52:46 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:52:46 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:52:46 HTTP request PATCH mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:46 [DEBUG] Begin Injection +2022/02/22 17:52:46 HTTP request after injection PATCH mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00055b700 3980 [] false false map[] 0xc000249500 0xc000413e40} +2022/02/22 17:52:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:46 [DEBUG] Exit from do method +2022/02/22 17:52:46 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:46 [DEBUG] 6214d5921d0000ff564f9f09: Beginning Read +2022/02/22 17:52:46 HTTP request GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:46 [DEBUG] Begin Injection +2022/02/22 17:52:46 HTTP request after injection GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:46 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:46 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00031d300 0xc0011b60b0} +2022/02/22 17:52:46 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:46 [DEBUG] : Beginning Read +2022/02/22 17:52:46 HTTP request GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:46 [DEBUG] Begin Injection +2022/02/22 17:52:46 HTTP request after injection GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dad4c0 1147 [] false false map[] 0xc00167c500 0xc000413e40} +2022/02/22 17:52:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 {"id":"6214d5921d0000ff564f9f09","displayName":"acctest_r0pud","description":"","templates":[{"name":"acctest_dkw36","displayName":"acctest_dkw36","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_kie86","displayName":"acctest_kie86","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_kie86","displayName":"acctest_kie86","extEpgType":"on-premise","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:46 [DEBUG] Exit from do method +2022/02/22 17:52:46 [DEBUG] 6214d5921d0000ff564f9f09: Read finished successfully +2022/02/22 17:52:46 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:46 [DEBUG] acctest_kie86: Beginning Read +2022/02/22 17:52:46 HTTP request GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:46 [DEBUG] Begin Injection +2022/02/22 17:52:46 HTTP request after injection GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fe2c0 1147 [] false false map[] 0xc001594200 0xc0011b60b0} +2022/02/22 17:52:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d {"id":"6214d5951d0000fc564f9f0d","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","extEpgType":"on-premise","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:46 [DEBUG] Exit from do method +2022/02/22 17:52:46 [DEBUG] /schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x: Read finished successfully +2022/02/22 17:52:46 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:52:46 [DEBUG] 6214d58b1b00003581fd067c: Beginning Policy Update +2022/02/22 17:52:46 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:46 [DEBUG] Begin Injection +2022/02/22 17:52:46 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006a2b40 1147 [] false false map[] 0xc00031d700 0xc000413e40} +2022/02/22 17:52:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 {"id":"6214d5921d0000ff564f9f09","displayName":"acctest_r0pud","description":"","templates":[{"name":"acctest_dkw36","displayName":"acctest_dkw36","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_kie86","displayName":"acctest_kie86","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_kie86","displayName":"acctest_kie86","extEpgType":"on-premise","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:47 [DEBUG] Exit from do method +2022/02/22 17:52:47 currentvrfname acctest_kie86 +2022/02/22 17:52:47 found correct vrfname +2022/02/22 17:52:47 [DEBUG] acctest_kie86: Read finished successfully +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:47 [DEBUG] /schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86: Beginning Read +2022/02/22 17:52:47 HTTP request GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:47 [DEBUG] Begin Injection +2022/02/22 17:52:47 HTTP request after injection GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:47 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000091dc0 361 [] false false map[] 0xc001c10800 0xc0011b60b0} +2022/02/22 17:52:47 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"","externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:52:47 [DEBUG] Exit from do method +2022/02/22 17:52:47 [DEBUG] Policy Update finished successfully: 6214d58b1b00003581fd067c +2022/02/22 17:52:47 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:47 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:47 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:47 [DEBUG] Begin Injection +2022/02/22 17:52:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002dda2c0 1147 [] false false map[] 0xc000249900 0xc000413e40} +2022/02/22 17:52:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 {"id":"6214d5921d0000ff564f9f09","displayName":"acctest_r0pud","description":"","templates":[{"name":"acctest_dkw36","displayName":"acctest_dkw36","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_kie86","displayName":"acctest_kie86","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_kie86","displayName":"acctest_kie86","extEpgType":"on-premise","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:47 [DEBUG] Exit from do method +2022/02/22 17:52:47 [DEBUG] /schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86: Read finished successfully +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:47 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Read +2022/02/22 17:52:47 id: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:47 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:47 [DEBUG] Begin Injection +2022/02/22 17:52:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002ddb480 361 [] false false map[] 0xc001c10000 0xc0011b60b0} +2022/02/22 17:52:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"","externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:52:47 [DEBUG] Exit from do method +2022/02/22 17:52:47 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:47 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 17:52:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:47 [DEBUG] New state was assigned lineage "96908a0e-1d6e-5ca9-9f0f-19c66d9358e9" +2022/02/22 17:52:47 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:47 [DEBUG] Begin Injection +2022/02/22 17:52:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001ca0d80 360 [] false false map[] 0xc001c10700 0xc000413e40} +2022/02/22 17:52:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"","externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:52:47 [DEBUG] Exit from do method +2022/02/22 17:52:47 [DEBUG] 6214d58b1b00000e81fd0682: Read finished successfully +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:47 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:52:47 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:47 [DEBUG] Begin Injection +2022/02/22 17:52:47 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002d92540 361 [] false false map[] 0xc0031bc200 0xc0011b60b0} +2022/02/22 17:52:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"","externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:52:47 [DEBUG] Exit from do method +2022/02/22 17:52:47 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:47 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:47 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:47 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:52:47 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:47 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:47 [DEBUG] : Beginning Read +2022/02/22 17:52:47 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:47 [DEBUG] Begin Injection +2022/02/22 17:52:47 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1977] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107e140 1977 [] false false map[] 0xc001594200 0xc000413e40} +2022/02/22 17:52:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"","externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3},{"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"","externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3}]} +2022/02/22 17:52:48 [DEBUG] Exit from do method +2022/02/22 17:52:48 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:48 [DEBUG] Begin Injection +2022/02/22 17:52:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009ca380 3980 [] false false map[] 0xc00031c700 0xc0011b60b0} +2022/02/22 17:52:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:48 [DEBUG] Exit from do method +2022/02/22 17:52:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:48 [DEBUG] 6214d5951d0000fc564f9f0d: Beginning Read +2022/02/22 17:52:48 HTTP request GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:48 [DEBUG] Begin Injection +2022/02/22 17:52:48 HTTP request after injection GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a6e680 360 [] false false map[] 0xc00214c100 0xc000413e40} +2022/02/22 17:52:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"","externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:52:48 [DEBUG] Exit from do method +2022/02/22 17:52:48 [DEBUG] 6214d58b1b00000e81fd0682: Import finished successfully +2022/02/22 17:52:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:48 [DEBUG] New state was assigned lineage "da13ce56-bd0a-7d5d-708e-b0f2598b9a52" +2022/02/22 17:52:48 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:48 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:48 [DEBUG] Test: Executing step 5 +2022/02/22 17:52:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:48 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:48 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:48 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:52:48 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:52:48 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:52:48 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:48 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:48 [DEBUG] : Beginning Read +2022/02/22 17:52:48 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:48 [DEBUG] Begin Injection +2022/02/22 17:52:48 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004a3c0 1147 [] false false map[] 0xc00214c700 0xc0011b60b0} +2022/02/22 17:52:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d {"id":"6214d5951d0000fc564f9f0d","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","extEpgType":"on-premise","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:48 [DEBUG] Exit from do method +2022/02/22 17:52:48 [DEBUG] 6214d5951d0000fc564f9f0d: Read finished successfully +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:48 [DEBUG] acctest_qxx2x: Beginning Read +2022/02/22 17:52:48 HTTP request GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:48 [DEBUG] Begin Injection +2022/02/22 17:52:48 HTTP request after injection GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dada80 3980 [] false false map[] 0xc00287b800 0xc000413e40} +2022/02/22 17:52:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:48 [DEBUG] Exit from do method +2022/02/22 17:52:48 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:48 [DEBUG] 6214d5921d0000ff564f9f09: Beginning Read +2022/02/22 17:52:48 HTTP request GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:48 [DEBUG] Begin Injection +2022/02/22 17:52:48 HTTP request after injection GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:48 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Read +2022/02/22 17:52:48 id: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:48 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:48 [DEBUG] Begin Injection +2022/02/22 17:52:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ffc80 1147 [] false false map[] 0xc001c10500 0xc0011b60b0} +2022/02/22 17:52:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d {"id":"6214d5951d0000fc564f9f0d","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","extEpgType":"on-premise","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:48 [DEBUG] Exit from do method +2022/02/22 17:52:48 currentvrfname acctest_qxx2x +2022/02/22 17:52:48 found correct vrfname +2022/02/22 17:52:48 [DEBUG] acctest_qxx2x: Read finished successfully +2022/02/22 17:52:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:48 [DEBUG] /schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x: Beginning Read +2022/02/22 17:52:48 HTTP request GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:48 [DEBUG] Begin Injection +2022/02/22 17:52:48 HTTP request after injection GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0023ad700 1147 [] false false map[] 0xc0031bda00 0xc000413e40} +2022/02/22 17:52:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 {"id":"6214d5921d0000ff564f9f09","displayName":"acctest_r0pud","description":"","templates":[{"name":"acctest_dkw36","displayName":"acctest_dkw36","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_kie86","displayName":"acctest_kie86","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_kie86","displayName":"acctest_kie86","extEpgType":"on-premise","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:49 [DEBUG] Exit from do method +2022/02/22 17:52:49 [DEBUG] 6214d5921d0000ff564f9f09: Read finished successfully +2022/02/22 17:52:49 [DEBUG] acctest_kie86: Beginning Read +2022/02/22 17:52:49 HTTP request GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:49 [DEBUG] Begin Injection +2022/02/22 17:52:49 HTTP request after injection GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ad9c0 360 [] false false map[] 0xc001c10b00 0xc0011b60b0} +2022/02/22 17:52:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.85.164","epgRef":"","externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:52:49 [DEBUG] Exit from do method +2022/02/22 17:52:49 [DEBUG] 6214d58b1b00000e81fd0682: Read finished successfully +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001ca1a40 1147 [] false false map[] 0xc00287bd00 0xc000413e40} +2022/02/22 17:52:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d {"id":"6214d5951d0000fc564f9f0d","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","extEpgType":"on-premise","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:49 [DEBUG] Exit from do method +2022/02/22 17:52:49 [DEBUG] /schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x: Read finished successfully +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:49 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:49 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:49 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:49 [DEBUG] Begin Injection +2022/02/22 17:52:49 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006a29c0 1147 [] false false map[] 0xc00031c300 0xc0011b60b0} +2022/02/22 17:52:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 {"id":"6214d5921d0000ff564f9f09","displayName":"acctest_r0pud","description":"","templates":[{"name":"acctest_dkw36","displayName":"acctest_dkw36","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_kie86","displayName":"acctest_kie86","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_kie86","displayName":"acctest_kie86","extEpgType":"on-premise","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:49 [DEBUG] Exit from do method +2022/02/22 17:52:49 currentvrfname acctest_kie86 +2022/02/22 17:52:49 found correct vrfname +2022/02/22 17:52:49 [DEBUG] acctest_kie86: Read finished successfully +2022/02/22 17:52:49 [DEBUG] /schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86: Beginning Read +2022/02/22 17:52:49 HTTP request GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:49 [DEBUG] Begin Injection +2022/02/22 17:52:49 HTTP request after injection GET mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000d14900 361 [] false false map[] 0xc0031bc400 0xc000413e40} +2022/02/22 17:52:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"","externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:52:49 [DEBUG] Exit from do method +2022/02/22 17:52:49 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:49 [DEBUG] New state was assigned lineage "f74c060e-ddb5-5f88-90e7-ae181b6605e4" +2022/02/22 17:52:49 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:52:49 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:49 [DEBUG] Test: Executing step 8 +2022/02/22 17:52:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:49 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:49 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:49 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:52:49 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:52:49 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:52:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:49 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:49 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:49 [DEBUG] : Beginning Read +2022/02/22 17:52:49 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:49 [DEBUG] Begin Injection +2022/02/22 17:52:49 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006a2800 1147 [] false false map[] 0xc001c10400 0xc0011b60b0} +2022/02/22 17:52:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 {"id":"6214d5921d0000ff564f9f09","displayName":"acctest_r0pud","description":"","templates":[{"name":"acctest_dkw36","displayName":"acctest_dkw36","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_kie86","displayName":"acctest_kie86","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_kie86","displayName":"acctest_kie86","extEpgType":"on-premise","vrfRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/vrfs/acctest_kie86","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:49 [DEBUG] Exit from do method +2022/02/22 17:52:49 [DEBUG] /schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86: Read finished successfully +2022/02/22 17:52:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:49 [DEBUG] New state was assigned lineage "19debdc3-2b31-0c82-8da1-7b4c01d5199f" +2022/02/22 17:52:49 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:49 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:49 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:49 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_8yzq6" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "hbavt" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.85.164" => "" + dhcp_relay_policy_provider.0.epg: "" => "" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214d58b1b00000e81fd0682" => "6214d58b1b00000e81fd0682" + name: "acctest_8yzq6" => "acctest_8yzq6" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d5921d0000ff564f9f09" => "" + name: "acctest_r0pud" => "" + template_name: "acctest_dkw36" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_kie86" => "" + external_epg_name: "acctest_kie86" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d5921d0000ff564f9f09" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_dkw36" => "" + vrf_name: "acctest_kie86" => "" + vrf_schema_id: "6214d5921d0000ff564f9f09" => "" + vrf_template_name: "acctest_dkw36" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_kie86" => "" + id: "acctest_kie86" => "" + layer3_multicast: "false" => "" + name: "acctest_kie86" => "" + schema_id: "6214d5921d0000ff564f9f09" => "" + template: "acctest_dkw36" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d58b1b00000e81fd0682 + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.85.164 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86 + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_8yzq6 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214d5921d0000ff564f9f09 + provider = provider.mso + name = acctest_r0pud + template_name = acctest_dkw36 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d5921d0000ff564f9f09/templates/acctest_dkw36/externalEpgs/acctest_kie86 + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_kie86 + external_epg_name = acctest_kie86 + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d5921d0000ff564f9f09 + selector_ip = + selector_name = + template_name = acctest_dkw36 + vrf_name = acctest_kie86 + vrf_schema_id = 6214d5921d0000ff564f9f09 + vrf_template_name = acctest_dkw36 + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_kie86 + provider = provider.mso + display_name = acctest_kie86 + layer3_multicast = false + name = acctest_kie86 + schema_id = 6214d5921d0000ff564f9f09 + template = acctest_dkw36 + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:52:49 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:49 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:52:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (destroy) +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:52:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:49 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:52:49 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:49 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:52:49 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:52:49 HTTP request PATCH mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:49 [DEBUG] Begin Injection +2022/02/22 17:52:49 HTTP request after injection PATCH mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:49 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:52:49 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Policy Update +2022/02/22 17:52:49 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:49 [DEBUG] Begin Injection +2022/02/22 17:52:49 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004aac0 3980 [] false false map[] 0xc001c10e00 0xc000413e40} +2022/02/22 17:52:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:50 [DEBUG] Exit from do method +2022/02/22 17:52:50 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:50 [DEBUG] 6214d5951d0000fc564f9f0d: Beginning Read +2022/02/22 17:52:50 HTTP request GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:50 [DEBUG] Begin Injection +2022/02/22 17:52:50 HTTP request after injection GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:50 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:50 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:50 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:50 [DEBUG] Begin Injection +2022/02/22 17:52:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:50 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002d4a700 165 [] false false map[] 0xc0031bc500 0xc001112000} +2022/02/22 17:52:50 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"hbavt","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:52:50 [DEBUG] Exit from do method +2022/02/22 17:52:50 [DEBUG] Policy Update finished successfully: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:50 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Read +2022/02/22 17:52:50 id: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:50 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:50 [DEBUG] Begin Injection +2022/02/22 17:52:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0031bd900 0xc0011b60b0} +2022/02/22 17:52:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:50 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:52:50 [DEBUG] acctest_kie86: Beginning Destroy +2022/02/22 17:52:50 HTTP request PATCH mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:50 [DEBUG] Begin Injection +2022/02/22 17:52:50 HTTP request after injection PATCH mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fe640 1147 [] false false map[] 0xc00031c300 0xc000413e40} +2022/02/22 17:52:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d {"id":"6214d5951d0000fc564f9f0d","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","extEpgType":"on-premise","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:50 [DEBUG] Exit from do method +2022/02/22 17:52:50 [DEBUG] 6214d5951d0000fc564f9f0d: Read finished successfully +2022/02/22 17:52:50 [DEBUG] acctest_qxx2x: Beginning Read +2022/02/22 17:52:50 HTTP request GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:50 [DEBUG] Begin Injection +2022/02/22 17:52:50 HTTP request after injection GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[361] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000422a80 361 [] false false map[] 0xc000248700 0xc001112000} +2022/02/22 17:52:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"","externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:52:50 [DEBUG] Exit from do method +2022/02/22 17:52:50 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000840ac0 165 [] false false map[] 0xc001178100 0xc0011b60b0} +2022/02/22 17:52:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"hbavt","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:52:50 [DEBUG] Exit from do method +2022/02/22 17:52:50 [DEBUG] 6214d58b1b00000e81fd0682: Read finished successfully +2022/02/22 17:52:50 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:52:50 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:50 [DEBUG] Begin Injection +2022/02/22 17:52:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001178700 0xc000413e40} +2022/02/22 17:52:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09?validate=false +2022/02/22 17:52:50 [DEBUG] acctest_kie86: Destroy finished successfully +2022/02/22 17:52:50 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:52:50 [DEBUG] 6214d5921d0000ff564f9f09: Beginning Destroy +2022/02/22 17:52:50 HTTP request DELETE mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:50 [DEBUG] Begin Injection +2022/02/22 17:52:50 HTTP request after injection DELETE mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000423780 1147 [] false false map[] 0xc0031bcf00 0xc001112000} +2022/02/22 17:52:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d {"id":"6214d5951d0000fc564f9f0d","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","extEpgType":"on-premise","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:50 [DEBUG] Exit from do method +2022/02/22 17:52:50 currentvrfname acctest_qxx2x +2022/02/22 17:52:50 found correct vrfname +2022/02/22 17:52:50 [DEBUG] acctest_qxx2x: Read finished successfully +2022/02/22 17:52:50 [DEBUG] /schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x: Beginning Read +2022/02/22 17:52:50 HTTP request GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:50 [DEBUG] Begin Injection +2022/02/22 17:52:50 HTTP request after injection GET mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1782] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006a32c0 1782 [] false false map[] 0xc00031c900 0xc0011b60b0} +2022/02/22 17:52:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"","externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3},{"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"hbavt","tenantId":"620cf5ad1d0000ab504f9a3d","version":4}]} +2022/02/22 17:52:50 [DEBUG] Exit from do method +2022/02/22 17:52:50 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:50 [DEBUG] Begin Injection +2022/02/22 17:52:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:51 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000248b00 0xc000413e40} +2022/02/22 17:52:51 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5921d0000ff564f9f09 +2022/02/22 17:52:51 [DEBUG] 6214d5921d0000ff564f9f09: Destroy finished successfully +2022/02/22 17:52:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00107f5c0 1147 [] false false map[] 0xc002bb2500 0xc001112000} +2022/02/22 17:52:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d {"id":"6214d5951d0000fc564f9f0d","displayName":"acctest_pids4","description":"","templates":[{"name":"acctest_9dydd","displayName":"acctest_9dydd","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_qxx2x","displayName":"acctest_qxx2x","extEpgType":"on-premise","vrfRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/vrfs/acctest_qxx2x","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:52:51 [DEBUG] Exit from do method +2022/02/22 17:52:51 [DEBUG] /schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x: Read finished successfully +2022/02/22 17:52:51 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:51 [DEBUG] New state was assigned lineage "15beb3eb-9926-983f-550a-617650da6e15" +2022/02/22 17:52:51 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (orphan) +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:51 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000840200 165 [] false false map[] 0xc00031ca00 0xc0011b60b0} +2022/02/22 17:52:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"hbavt","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:52:51 [DEBUG] Exit from do method +2022/02/22 17:52:51 [DEBUG] 6214d58b1b00000e81fd0682: Import finished successfully +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:51 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:51 [DEBUG] New state was assigned lineage "75f57b66-19fc-0c35-af48-8f158284da02" +2022/02/22 17:52:51 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:51 [DEBUG] Begin Injection +2022/02/22 17:52:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:51 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:51 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "test description" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.247.132" => "1.2.247.132" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214d58b1b00003581fd067c" => "6214d58b1b00003581fd067c" + name: "acctest_escqa" => "acctest_escqa" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d5951d0000fc564f9f0d" => "" + name: "acctest_pids4" => "" + template_name: "acctest_9dydd" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_qxx2x" => "" + external_epg_name: "acctest_qxx2x" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d5951d0000fc564f9f0d" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_9dydd" => "" + vrf_name: "acctest_qxx2x" => "" + vrf_schema_id: "6214d5951d0000fc564f9f0d" => "" + vrf_template_name: "acctest_9dydd" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_qxx2x" => "" + id: "acctest_qxx2x" => "" + layer3_multicast: "false" => "" + name: "acctest_qxx2x" => "" + schema_id: "6214d5951d0000fc564f9f0d" => "" + template: "acctest_9dydd" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d58b1b00003581fd067c + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.247.132 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_escqa + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214d5951d0000fc564f9f0d + provider = provider.mso + name = acctest_pids4 + template_name = acctest_9dydd + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d5951d0000fc564f9f0d/templates/acctest_9dydd/externalEpgs/acctest_qxx2x + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_qxx2x + external_epg_name = acctest_qxx2x + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d5951d0000fc564f9f0d + selector_ip = + selector_name = + template_name = acctest_9dydd + vrf_name = acctest_qxx2x + vrf_schema_id = 6214d5951d0000fc564f9f0d + vrf_template_name = acctest_9dydd + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_qxx2x + provider = provider.mso + display_name = acctest_qxx2x + layer3_multicast = false + name = acctest_qxx2x + schema_id = 6214d5951d0000fc564f9f0d + template = acctest_9dydd + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:52:51 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (destroy) +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:52:51 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:51 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:52:51 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:52:51 HTTP request PATCH mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:51 [DEBUG] Begin Injection +2022/02/22 17:52:51 HTTP request after injection PATCH mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:51 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:52:51 [DEBUG] 6214d58b1b00003581fd067c: Beginning Policy Update +2022/02/22 17:52:51 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:51 [DEBUG] Begin Injection +2022/02/22 17:52:51 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000dac740 165 [] false false map[] 0xc001c10000 0xc0011b6840} +2022/02/22 17:52:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"hbavt","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:52:51 [DEBUG] Exit from do method +2022/02/22 17:52:51 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:51 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:51 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:51 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:51 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:52:51 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:51 [DEBUG] : Beginning Read +2022/02/22 17:52:51 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:51 [DEBUG] Begin Injection +2022/02/22 17:52:51 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:51 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00031cb00 0xc0021c8210} +2022/02/22 17:52:51 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:51 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:52:51 [DEBUG] acctest_qxx2x: Beginning Destroy +2022/02/22 17:52:51 HTTP request PATCH mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:51 [DEBUG] Begin Injection +2022/02/22 17:52:51 HTTP request after injection PATCH mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:51 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009cb600 373 [] false false map[] 0xc0018d0600 0xc0028402c0} +2022/02/22 17:52:51 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:52:51 [DEBUG] Exit from do method +2022/02/22 17:52:51 [DEBUG] Policy Update finished successfully: 6214d58b1b00003581fd067c +2022/02/22 17:52:51 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:51 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:51 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:51 [DEBUG] Begin Injection +2022/02/22 17:52:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:51 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001c10700 0xc0021c8210} +2022/02/22 17:52:51 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d?validate=false +2022/02/22 17:52:51 [DEBUG] acctest_qxx2x: Destroy finished successfully +2022/02/22 17:52:51 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:52:51 [DEBUG] 6214d5951d0000fc564f9f0d: Beginning Destroy +2022/02/22 17:52:51 HTTP request DELETE mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:51 [DEBUG] Begin Injection +2022/02/22 17:52:51 HTTP request after injection DELETE mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006a2540 3980 [] false false map[] 0xc001c10100 0xc0011b6840} +2022/02/22 17:52:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:51 [DEBUG] Exit from do method +2022/02/22 17:52:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:51 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Read +2022/02/22 17:52:51 id: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:51 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:51 [DEBUG] Begin Injection +2022/02/22 17:52:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002ddb300 373 [] false false map[] 0xc001c10900 0xc0028402c0} +2022/02/22 17:52:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:52:52 [DEBUG] Exit from do method +2022/02/22 17:52:52 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:52 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 17:52:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a6e1c0 165 [] false false map[] 0xc001c10e00 0xc0011b6840} +2022/02/22 17:52:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"hbavt","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:52:52 [DEBUG] Exit from do method +2022/02/22 17:52:52 [DEBUG] 6214d58b1b00000e81fd0682: Read finished successfully +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:52 [DEBUG] New state was assigned lineage "cac4e32a-b917-43be-79b2-dc2aeafb669a" +2022/02/22 17:52:52 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:52 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:52 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:52 [INFO] Got non-empty plan, as expected: + +DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_8yzq6" + tenant_id: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d58b1b00000e81fd0682 + provider = provider.mso + description = hbavt + name = acctest_8yzq6 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:52:52 [WARN] Test: Executing destroy step +2022/02/22 17:52:52 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000eca600 0xc0021c8210} +2022/02/22 17:52:52 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5951d0000fc564f9f0d +2022/02/22 17:52:52 [DEBUG] 6214d5951d0000fc564f9f0d: Destroy finished successfully +2022/02/22 17:52:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:52 [DEBUG] New state was assigned lineage "af4e6902-2991-4a36-225b-c0bea7ce442c" +2022/02/22 17:52:52 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:52 [DEBUG] Begin Injection +2022/02/22 17:52:52 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:52 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:52 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:52 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:52 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:52 [DEBUG] : Beginning Read +2022/02/22 17:52:52 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:52 [DEBUG] Begin Injection +2022/02/22 17:52:52 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002dda940 373 [] false false map[] 0xc0018d0500 0xc0021c8790} +2022/02/22 17:52:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:52:52 [DEBUG] Exit from do method +2022/02/22 17:52:52 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:52 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:52 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:52 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:52 [DEBUG] : Beginning Read +2022/02/22 17:52:52 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:52 [DEBUG] Begin Injection +2022/02/22 17:52:52 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009c1ec0 3980 [] false false map[] 0xc0027c4600 0xc0028402c0} +2022/02/22 17:52:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:52 [DEBUG] Exit from do method +2022/02/22 17:52:52 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:52 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Read +2022/02/22 17:52:52 id: 6214d58b1b00000e81fd0682 +2022/02/22 17:52:52 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:52 [DEBUG] Begin Injection +2022/02/22 17:52:52 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a42e00 3980 [] false false map[] 0xc000248e00 0xc0021c8790} +2022/02/22 17:52:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:52 [DEBUG] Exit from do method +2022/02/22 17:52:52 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:52 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:52 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:52 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:52 [DEBUG] Begin Injection +2022/02/22 17:52:52 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0023ac280 165 [] false false map[] 0xc00031c500 0xc0028402c0} +2022/02/22 17:52:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"id":"6214d58b1b00000e81fd0682","name":"acctest_8yzq6","policyType":"dhcp","policySubtype":"relay","desc":"hbavt","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:52:52 [DEBUG] Exit from do method +2022/02/22 17:52:52 [DEBUG] 6214d58b1b00000e81fd0682: Read finished successfully +2022/02/22 17:52:52 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:52 [DEBUG] New state was assigned lineage "5d11312c-f772-2398-9aba-31d41200f8c3" +2022/02/22 17:52:52 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:52:52 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:52 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "hbavt" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d58b1b00000e81fd0682" => "" + name: "acctest_8yzq6" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d58b1b00000e81fd0682 + provider = provider.mso + description = hbavt + name = acctest_8yzq6 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:52:52 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:52:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:52 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:52 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:52:52 DestroyEdgeTransformer: pruning unused resource node data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:52 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:52:52 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:52:52 [DEBUG] 6214d58b1b00000e81fd0682: Beginning Read +2022/02/22 17:52:52 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:52 [DEBUG] Begin Injection +2022/02/22 17:52:52 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c04180 373 [] false false map[] 0xc000249400 0xc0021c8790} +2022/02/22 17:52:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:52:53 [DEBUG] Exit from do method +2022/02/22 17:52:53 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:53 [DEBUG] New state was assigned lineage "a886c3ca-6e22-de0d-abfc-9d47f44627af" +2022/02/22 17:52:53 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:53 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:53 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc002344500 0xc0028402c0} +2022/02/22 17:52:53 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:53 [DEBUG] : Read finished successfully +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:53 [DEBUG] New state was assigned lineage "cbd85307-c24a-1ad3-508f-80e2a03759b5" +2022/02/22 17:52:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:53 [DEBUG] Begin Injection +2022/02/22 17:52:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:53 [DEBUG] Test: Executing step 9 +2022/02/22 17:52:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (import id \"6214d58b1b00003581fd067c\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (import id \"6214d58b1b00003581fd067c\")" references: [] +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:53 [DEBUG] Starting graph walk: walkImport +2022/02/22 17:52:53 [DEBUG] 6214d58b1b00003581fd067c: Beginning Import +2022/02/22 17:52:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:53 [DEBUG] Begin Injection +2022/02/22 17:52:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 +2022/02/22 17:52:53 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:53 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004afc0 86 [] false false map[] 0xc00031c100 0xc0028402c0} +2022/02/22 17:52:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00000e81fd0682 {"code":141,"message":"Resource Not Found: Policy 6214d58b1b00000e81fd0682 not found"} +2022/02/22 17:52:53 [DEBUG] Exit from do method +2022/02/22 17:52:53 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:53 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:53 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:53 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:53 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:53 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:53 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:53 [DEBUG] : Beginning Read +2022/02/22 17:52:53 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:53 [DEBUG] Begin Injection +2022/02/22 17:52:53 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000422a40 373 [] false false map[] 0xc002308200 0xc0021c8790} +2022/02/22 17:52:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:52:53 [DEBUG] Exit from do method +2022/02/22 17:52:53 [DEBUG] 6214d58b1b00003581fd067c: Import finished successfully +2022/02/22 17:52:53 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:53 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:53 [DEBUG] Begin Injection +2022/02/22 17:52:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000840c80 3980 [] false false map[] 0xc0001ba200 0xc0028402c0} +2022/02/22 17:52:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:53 [DEBUG] Exit from do method +2022/02/22 17:52:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:53 [DEBUG] New state was assigned lineage "b8f53334-8fba-beb7-050e-a0c3a2eade1e" +2022/02/22 17:52:53 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 17:52:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:53 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0009c1f40 373 [] false false map[] 0xc000248600 0xc0021c8790} +2022/02/22 17:52:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:52:53 [DEBUG] Exit from do method +2022/02/22 17:52:53 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:53 [DEBUG] New state was assigned lineage "c10d414f-827f-dcd6-3ea3-38207f484c84" +2022/02/22 17:52:53 [DEBUG] Test: Executing step 10 +2022/02/22 17:52:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:54 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:54 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:54 [ERROR] : eval: *terraform.EvalValidateResource, err: 2 problems: + +- Missing required argument: The argument "name" is required, but no definition was found. +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 17:52:54 [ERROR] : eval: *terraform.EvalSequence, err: 2 problems: + +- Missing required argument: The argument "name" is required, but no definition was found. +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 17:52:54 [DEBUG] Test: Executing step 11 +2022/02/22 17:52:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:54 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:54 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:54 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:54 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:54 [DEBUG] : Beginning Read +2022/02/22 17:52:54 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:54 [DEBUG] Begin Injection +2022/02/22 17:52:54 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006a2f80 3980 [] false false map[] 0xc000248f00 0xc0021c8790} +2022/02/22 17:52:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:54 [DEBUG] Exit from do method +2022/02/22 17:52:54 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:54 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:54 id: 6214d58b1b00003581fd067c +2022/02/22 17:52:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:54 [DEBUG] Begin Injection +2022/02/22 17:52:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[373] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002d4a780 373 [] false false map[] 0xc001c10500 0xc0021c8790} +2022/02/22 17:52:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c {"id":"6214d58b1b00003581fd067c","name":"acctest_escqa","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.247.132","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:52:54 [DEBUG] Exit from do method +2022/02/22 17:52:54 [DEBUG] 6214d58b1b00003581fd067c: Read finished successfully +2022/02/22 17:52:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:54 [DEBUG] New state was assigned lineage "3fefcc70-59b8-7951-4848-311b05130238" +2022/02/22 17:52:54 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:54 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:54 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "test description" => "" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.247.132" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214d58b1b00003581fd067c" => "" + name: "acctest_escqa" => "acctest_io89y" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d58b1b00003581fd067c + provider = provider.mso + description = test description + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.247.132 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_escqa + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:52:54 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:52:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:54 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:52:54 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:52:54 [DEBUG] 6214d58b1b00003581fd067c: Beginning Read +2022/02/22 17:52:54 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:54 [DEBUG] Begin Injection +2022/02/22 17:52:54 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:55 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:55 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc000249000 0xc0021c8790} +2022/02/22 17:52:55 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d58b1b00003581fd067c +2022/02/22 17:52:55 [DEBUG] : Read finished successfully +2022/02/22 17:52:55 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:52:55 [DEBUG] : Beginning Create +2022/02/22 17:52:55 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:55 [DEBUG] Begin Injection +2022/02/22 17:52:55 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:55 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:52:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001e7a180 160 [] false false map[] 0xc001f4b500 0xc0021c8790} +2022/02/22 17:52:55 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d59f1b00000e81fd0685","name":"acctest_io89y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:55 [DEBUG] Exit from do method +2022/02/22 17:52:55 [DEBUG] 6214d59f1b00000e81fd0685: Creation finished successfully +2022/02/22 17:52:55 [DEBUG] 6214d59f1b00000e81fd0685: Beginning Read +2022/02/22 17:52:55 id: 6214d59f1b00000e81fd0685 +2022/02/22 17:52:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:55 [DEBUG] Begin Injection +2022/02/22 17:52:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001e7a2c0 160 [] false false map[] 0xc001c10000 0xc0021c8790} +2022/02/22 17:52:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 {"id":"6214d59f1b00000e81fd0685","name":"acctest_io89y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:55 [DEBUG] Exit from do method +2022/02/22 17:52:55 [DEBUG] 6214d59f1b00000e81fd0685: Read finished successfully +2022/02/22 17:52:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:55 [DEBUG] New state was assigned lineage "10d46f84-25a3-27b1-3440-71fc18093929" +2022/02/22 17:52:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:55 [DEBUG] Begin Injection +2022/02/22 17:52:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001e7a600 160 [] false false map[] 0xc00031c200 0xc0021c8790} +2022/02/22 17:52:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 {"id":"6214d59f1b00000e81fd0685","name":"acctest_io89y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:56 [DEBUG] Exit from do method +2022/02/22 17:52:56 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:56 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:56 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:56 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:56 [DEBUG] : Beginning Read +2022/02/22 17:52:56 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:56 [DEBUG] Begin Injection +2022/02/22 17:52:56 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a425c0 3980 [] false false map[] 0xc001f4a200 0xc0021c8790} +2022/02/22 17:52:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:56 [DEBUG] Exit from do method +2022/02/22 17:52:56 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:56 [DEBUG] 6214d59f1b00000e81fd0685: Beginning Read +2022/02/22 17:52:56 id: 6214d59f1b00000e81fd0685 +2022/02/22 17:52:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:56 [DEBUG] Begin Injection +2022/02/22 17:52:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001e7ab40 160 [] false false map[] 0xc0020b0e00 0xc0021c8790} +2022/02/22 17:52:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 {"id":"6214d59f1b00000e81fd0685","name":"acctest_io89y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:56 [DEBUG] Exit from do method +2022/02/22 17:52:56 [DEBUG] 6214d59f1b00000e81fd0685: Read finished successfully +2022/02/22 17:52:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:56 [DEBUG] New state was assigned lineage "8c92e7d9-842c-fc9b-16f6-308c5b634618" +2022/02/22 17:52:56 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:52:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:56 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:56 [WARN] Test: Executing destroy step +2022/02/22 17:52:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:56 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:52:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:52:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:56 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:52:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:56 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:52:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:56 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:56 [DEBUG] : Beginning Read +2022/02/22 17:52:56 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:56 [DEBUG] Begin Injection +2022/02/22 17:52:56 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fe540 3980 [] false false map[] 0xc00031d100 0xc0021c8790} +2022/02/22 17:52:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:57 [DEBUG] Exit from do method +2022/02/22 17:52:57 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:52:57 [DEBUG] 6214d59f1b00000e81fd0685: Beginning Read +2022/02/22 17:52:57 id: 6214d59f1b00000e81fd0685 +2022/02/22 17:52:57 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:57 [DEBUG] Begin Injection +2022/02/22 17:52:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000a6e1c0 160 [] false false map[] 0xc002162400 0xc0021c8790} +2022/02/22 17:52:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 {"id":"6214d59f1b00000e81fd0685","name":"acctest_io89y","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:52:57 [DEBUG] Exit from do method +2022/02/22 17:52:57 [DEBUG] 6214d59f1b00000e81fd0685: Read finished successfully +2022/02/22 17:52:57 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:57 [DEBUG] New state was assigned lineage "25873219-3544-693f-075a-180f01d399ae" +2022/02/22 17:52:57 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:57 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:57 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d59f1b00000e81fd0685" => "" + name: "acctest_io89y" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d59f1b00000e81fd0685 + provider = provider.mso + description = + name = acctest_io89y + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:52:57 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:52:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:52:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:52:57 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:52:57 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:52:57 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:52:57 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:52:57 [DEBUG] 6214d59f1b00000e81fd0685: Beginning Read +2022/02/22 17:52:57 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:57 [DEBUG] Begin Injection +2022/02/22 17:52:57 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:57 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:57 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:22:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00031d000 0xc0021c8790} +2022/02/22 17:52:57 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:57 [DEBUG] : Read finished successfully +2022/02/22 17:52:57 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:57 [DEBUG] New state was assigned lineage "7c49c805-d55a-23c0-d4fa-a8033d22438a" +2022/02/22 17:52:57 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:57 [DEBUG] Begin Injection +2022/02/22 17:52:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 +2022/02/22 17:52:58 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:57 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000316200 86 [] false false map[] 0xc000248100 0xc0021c8790} +2022/02/22 17:52:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d59f1b00000e81fd0685 {"code":141,"message":"Resource Not Found: Policy 6214d59f1b00000e81fd0685 not found"} +2022/02/22 17:52:58 [DEBUG] Exit from do method +2022/02/22 17:52:58 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:58 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:52:58 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:52:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:52:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:58 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:52:58 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:52:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:58 [DEBUG] : Beginning Read +2022/02/22 17:52:58 HTTP request GET mso/api/v1/tenants +2022/02/22 17:52:58 [DEBUG] Begin Injection +2022/02/22 17:52:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:52:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:52:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:22:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0006a2480 3980 [] false false map[] 0xc0020b0600 0xc0021c8790} +2022/02/22 17:52:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:52:58 [DEBUG] Exit from do method +2022/02/22 17:52:58 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:52:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:52:58 [DEBUG] New state was assigned lineage "e4e0eb9e-b026-14c3-5217-96f7de6efe44" +2022/02/22 17:52:58 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:52:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:52:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:52:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (destroy) +2022/02/22 17:52:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:52:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:52:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:52:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:52:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:52:58 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:33 [DEBUG] Test: Executing step 0 +2022/02/22 17:53:33 [DEBUG] Test: Executing step 0 +2022/02/22 17:53:33 [DEBUG] Test: Executing step 0 +2022/02/22 17:53:33 [DEBUG] Test: Executing step 0 +2022/02/22 17:53:33 [DEBUG] Test: Executing step 0 +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test1 +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [mso_tenant.test] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:33 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 17:53:33 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "tenant_id" is required, but no definition was found. +2022/02/22 17:53:33 [DEBUG] Test: Executing step 1 +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:33 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:53:33 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:33 [DEBUG] New state was assigned lineage "f16d9be8-4dcb-3bf2-c9cb-e37f38bb5047" +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:33 [DEBUG] Test: Executing step 1 +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:33 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:33 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_31hds" + tenant_id: "" => "08863" + + + +STATE: + + +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:33 [DEBUG] : Beginning Read +2022/02/22 17:53:33 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:33 [DEBUG] Begin Injection +2022/02/22 17:53:33 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:33 HTTP request POST /login +2022/02/22 17:53:33 HTTP request after injection POST /login +2022/02/22 17:53:33 [DEBUG] : Beginning Read +2022/02/22 17:53:33 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:33 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:53:33 [DEBUG] Begin Injection +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:33 HTTP request POST /login +2022/02/22 17:53:33 HTTP request after injection POST /login +2022/02/22 17:53:33 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:33 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:53:33 [DEBUG] : Beginning Create +2022/02/22 17:53:33 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:33 [DEBUG] Begin Injection +2022/02/22 17:53:33 HTTP request POST /login +2022/02/22 17:53:33 HTTP request after injection POST /login +2022/02/22 17:53:33 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:53:33 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:53:33 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:53:33 [DEBUG] Test: Executing step 2 +2022/02/22 17:53:33 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "pcibl" is not expected here. +2022/02/22 17:53:33 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "pcibl" is not expected here. +2022/02/22 17:53:33 [DEBUG] Test: Executing step 2 +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:33 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:33 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:33 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:33 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:33 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] : Beginning Read +2022/02/22 17:53:33 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:33 [DEBUG] Begin Injection +2022/02/22 17:53:33 HTTP request POST /login +2022/02/22 17:53:33 HTTP request after injection POST /login +2022/02/22 17:53:33 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:53:33 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:33 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:53:33 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:33 [DEBUG] : Beginning Read +2022/02/22 17:53:33 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:33 [DEBUG] Begin Injection +2022/02/22 17:53:33 HTTP request POST /login +2022/02/22 17:53:33 HTTP request after injection POST /login +2022/02/22 17:53:33 [DEBUG] Begining DO method https://173.36.219.31/login +2022/02/22 17:53:35 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJmOU9kSzFzTWM2ZjdSWklEa2F2aUF0NDMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.WDO4uD5JcY5DRJrlcyfDW2oAkvNzOXvln-Q7DlSHcOLnURzH1aha2WlPZc4DYFXeuDXGudmvy-24mfCaq_n-GdNG7GdFS4dyQPXXPlLGsY_BB26LwJlnoJCfWNmeg337AFbZDGpaHJKz_H3RV5eFkSPeIah9i-id9WHgD5l8OUhrResLIaMnSWipaK8GI3psOANydSaGKHw8nDYCnrM_4KihFMf0U7hrxNIQ03RYIMdyE8MnUjUW1ijHrsZAtlB81BniKC3X1eZOMSUiTR5Io_k76kS8otRZsP_cB6Nyzt503WFbZOnJNTEFyLANrRDhV2VwvkCnW02vRnfFbHbSwQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0008a4140 -1 [chunked] false false map[] 0xc00017eb00 0xc0004ac000} +2022/02/22 17:53:35 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJmOU9kSzFzTWM2ZjdSWklEa2F2aUF0NDMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.WDO4uD5JcY5DRJrlcyfDW2oAkvNzOXvln-Q7DlSHcOLnURzH1aha2WlPZc4DYFXeuDXGudmvy-24mfCaq_n-GdNG7GdFS4dyQPXXPlLGsY_BB26LwJlnoJCfWNmeg337AFbZDGpaHJKz_H3RV5eFkSPeIah9i-id9WHgD5l8OUhrResLIaMnSWipaK8GI3psOANydSaGKHw8nDYCnrM_4KihFMf0U7hrxNIQ03RYIMdyE8MnUjUW1ijHrsZAtlB81BniKC3X1eZOMSUiTR5Io_k76kS8otRZsP_cB6Nyzt503WFbZOnJNTEFyLANrRDhV2VwvkCnW02vRnfFbHbSwQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJmOU9kSzFzTWM2ZjdSWklEa2F2aUF0NDMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.WDO4uD5JcY5DRJrlcyfDW2oAkvNzOXvln-Q7DlSHcOLnURzH1aha2WlPZc4DYFXeuDXGudmvy-24mfCaq_n-GdNG7GdFS4dyQPXXPlLGsY_BB26LwJlnoJCfWNmeg337AFbZDGpaHJKz_H3RV5eFkSPeIah9i-id9WHgD5l8OUhrResLIaMnSWipaK8GI3psOANydSaGKHw8nDYCnrM_4KihFMf0U7hrxNIQ03RYIMdyE8MnUjUW1ijHrsZAtlB81BniKC3X1eZOMSUiTR5Io_k76kS8otRZsP_cB6Nyzt503WFbZOnJNTEFyLANrRDhV2VwvkCnW02vRnfFbHbSwQ"} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:35 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJKZzQ4YU5HdWdaWlU9SGdzNXhWZ0NxOWwiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.OKLnxj7Qs5e-OTz4-QKDx1we2qowzmI-Wfl9albYbrOrUFqKXZjPnesqppysONvhLjlQEsPC1ilTz_kT_KixAnBn15j-h1T5P9yWokjUp-zqPw0lIpLHtBPmzvm8tmQLU1PtLIWQsqz6NvNSyaVl0SQraAgUOR0Fke3-LmYjUElw32UJRINotBgJAwzz5hylK4i0IU9w9YmeOhpXbMUCJlc2BJ6vHG_JRe9EmMU2LaFenEfXOZFUKiK_l56Nf9v9v-U345bsjLrC-uCg5u-VDdhBE4Gw1dLjtldsmCXdxbAB4G6jeD4JbmqOBmkwchaDxJ2cSeYQTzS7hJmeUDBvsA; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000988280 -1 [chunked] false false map[] 0xc00017ea00 0xc0002c80b0} +2022/02/22 17:53:35 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJKZzQ4YU5HdWdaWlU9SGdzNXhWZ0NxOWwiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.OKLnxj7Qs5e-OTz4-QKDx1we2qowzmI-Wfl9albYbrOrUFqKXZjPnesqppysONvhLjlQEsPC1ilTz_kT_KixAnBn15j-h1T5P9yWokjUp-zqPw0lIpLHtBPmzvm8tmQLU1PtLIWQsqz6NvNSyaVl0SQraAgUOR0Fke3-LmYjUElw32UJRINotBgJAwzz5hylK4i0IU9w9YmeOhpXbMUCJlc2BJ6vHG_JRe9EmMU2LaFenEfXOZFUKiK_l56Nf9v9v-U345bsjLrC-uCg5u-VDdhBE4Gw1dLjtldsmCXdxbAB4G6jeD4JbmqOBmkwchaDxJ2cSeYQTzS7hJmeUDBvsA","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJKZzQ4YU5HdWdaWlU9SGdzNXhWZ0NxOWwiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.OKLnxj7Qs5e-OTz4-QKDx1we2qowzmI-Wfl9albYbrOrUFqKXZjPnesqppysONvhLjlQEsPC1ilTz_kT_KixAnBn15j-h1T5P9yWokjUp-zqPw0lIpLHtBPmzvm8tmQLU1PtLIWQsqz6NvNSyaVl0SQraAgUOR0Fke3-LmYjUElw32UJRINotBgJAwzz5hylK4i0IU9w9YmeOhpXbMUCJlc2BJ6vHG_JRe9EmMU2LaFenEfXOZFUKiK_l56Nf9v9v-U345bsjLrC-uCg5u-VDdhBE4Gw1dLjtldsmCXdxbAB4G6jeD4JbmqOBmkwchaDxJ2cSeYQTzS7hJmeUDBvsA"} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:35 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJUYW1YRVdiZmxDMzUySjJ0Skd4aVBROVAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.kd7sLZrCvJAJ05BbNzbns9tXRaDBmEN869RFWC3Xq4S0RiQT3h0wV3YfoKbQmGjBISrRs0lAz25lchh9AQsmmxK6azLdj80A21W1qKIsVT07eNtQN44nDcP1BpfsMxm9ei8UhOpXVn4vI4xVO3laGgieDaxLavzKckZf9tsk7MJRxyiO8pVeVhtYmnHFm2SjOX5UcSkvq6ec685SJraBZr57JrRElLkaqibQuNGC9V9KXVWXg13U7aEOUVFwjwSro0LHxvp4p1MYdmB0G2Y6ghgrUl_cATLuGA8nXI0snYbZaUo7dCo9zCjwFoFqXA_usGJCPcT9UV_480PpqbnCsQ; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000988580 -1 [chunked] false false map[] 0xc00073a300 0xc0004ac160} +2022/02/22 17:53:35 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJUYW1YRVdiZmxDMzUySjJ0Skd4aVBROVAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.kd7sLZrCvJAJ05BbNzbns9tXRaDBmEN869RFWC3Xq4S0RiQT3h0wV3YfoKbQmGjBISrRs0lAz25lchh9AQsmmxK6azLdj80A21W1qKIsVT07eNtQN44nDcP1BpfsMxm9ei8UhOpXVn4vI4xVO3laGgieDaxLavzKckZf9tsk7MJRxyiO8pVeVhtYmnHFm2SjOX5UcSkvq6ec685SJraBZr57JrRElLkaqibQuNGC9V9KXVWXg13U7aEOUVFwjwSro0LHxvp4p1MYdmB0G2Y6ghgrUl_cATLuGA8nXI0snYbZaUo7dCo9zCjwFoFqXA_usGJCPcT9UV_480PpqbnCsQ","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJUYW1YRVdiZmxDMzUySjJ0Skd4aVBROVAiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.kd7sLZrCvJAJ05BbNzbns9tXRaDBmEN869RFWC3Xq4S0RiQT3h0wV3YfoKbQmGjBISrRs0lAz25lchh9AQsmmxK6azLdj80A21W1qKIsVT07eNtQN44nDcP1BpfsMxm9ei8UhOpXVn4vI4xVO3laGgieDaxLavzKckZf9tsk7MJRxyiO8pVeVhtYmnHFm2SjOX5UcSkvq6ec685SJraBZr57JrRElLkaqibQuNGC9V9KXVWXg13U7aEOUVFwjwSro0LHxvp4p1MYdmB0G2Y6ghgrUl_cATLuGA8nXI0snYbZaUo7dCo9zCjwFoFqXA_usGJCPcT9UV_480PpqbnCsQ"} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJIM3RBdzRnSzlrRENIM0EzY1lzbG5uWWMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.OUDuNaPcQPyrfBTjhCuHtAOW7K2yYaZZwbbtUsCKSdsvk8Ehtojjdl23OVvhsnHQRrOFQ_Fxfpw7EitP6h7gf75ztBZcWJ5fGr9tS7wLP9wXIazdT5qsvD5ukXRIiW056QPW1k92XEQcx_MXHiRrlTDjqEvmzlvVV6tzKgSDYfXz7P1Zoi9AWggsSHiKUz3k4TfjTK-_ehnNZyUyar9BgvmKPtx4htGI16w1tbS3Xbn5Xi3of85Ktd03eyJ28tDOSZPCdRhvW-HsHl0cjebJuVs8q6ljlJmpAVFpzP1EwZgDk4YkVkpC3b8n9DiwBL5GBNvF6nlXXJwjpFHU3EC4vg; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc000b280c0 -1 [chunked] false false map[] 0xc0002da500 0xc0004ac0b0} +2022/02/22 17:53:35 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJIM3RBdzRnSzlrRENIM0EzY1lzbG5uWWMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.OUDuNaPcQPyrfBTjhCuHtAOW7K2yYaZZwbbtUsCKSdsvk8Ehtojjdl23OVvhsnHQRrOFQ_Fxfpw7EitP6h7gf75ztBZcWJ5fGr9tS7wLP9wXIazdT5qsvD5ukXRIiW056QPW1k92XEQcx_MXHiRrlTDjqEvmzlvVV6tzKgSDYfXz7P1Zoi9AWggsSHiKUz3k4TfjTK-_ehnNZyUyar9BgvmKPtx4htGI16w1tbS3Xbn5Xi3of85Ktd03eyJ28tDOSZPCdRhvW-HsHl0cjebJuVs8q6ljlJmpAVFpzP1EwZgDk4YkVkpC3b8n9DiwBL5GBNvF6nlXXJwjpFHU3EC4vg","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"admin\",\"WritePriv\"],[\"app-user\",\"ReadPriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhZG1pbiIsIldyaXRlUHJpdiJdLFsiYXBwLXVzZXIiLCJSZWFkUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiJIM3RBdzRnSzlrRENIM0EzY1lzbG5uWWMiLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.OUDuNaPcQPyrfBTjhCuHtAOW7K2yYaZZwbbtUsCKSdsvk8Ehtojjdl23OVvhsnHQRrOFQ_Fxfpw7EitP6h7gf75ztBZcWJ5fGr9tS7wLP9wXIazdT5qsvD5ukXRIiW056QPW1k92XEQcx_MXHiRrlTDjqEvmzlvVV6tzKgSDYfXz7P1Zoi9AWggsSHiKUz3k4TfjTK-_ehnNZyUyar9BgvmKPtx4htGI16w1tbS3Xbn5Xi3of85Ktd03eyJ28tDOSZPCdRhvW-HsHl0cjebJuVs8q6ljlJmpAVFpzP1EwZgDk4YkVkpC3b8n9DiwBL5GBNvF6nlXXJwjpFHU3EC4vg"} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:35 +HTTP Request: POST https://173.36.219.31/login +2022/02/22 17:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Set-Cookie:[AuthCookie=eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI5RzVkcW5OWWsyY1dGVllSOW5EYVZ6RE4iLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.k9zN_sknvNaxi3T36AS73vJqjSfiSurE7Vwh8k89eb3yD5Hr44sMDJ_OOFiuJPK3zJJlZaZmLFYFtuJyi8h3UjRdadL4YxVahuybGLczGGTu2l1hK65S4rbLjDckfBE61tD9EEXhqaAxltHtrdSw9DyQOcPd5pQO263pdCBmo2CRZeJUJrlEfky1PG3Qx0MNvrtclFt0B3dxJUaEQnR0szYftnDXc4YNd7E4TWf5g9LFYnMO-zPaZYGsV0o_fkLXKFjp72viownwS2bi4VK3VbqlGwQ1L5ZB__KDXGjpU7sSNYWWhfDCW3fATdF9fC7IMWI1dUNrBVEPNaRZKFGz9Q; Max-Age=1200] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Xss-Protection:[1; mode=block]] 0xc0004d62c0 -1 [chunked] false false map[] 0xc00073a900 0xc00081c000} +2022/02/22 17:53:35 + HTTP response unique string POST https://173.36.219.31/login {"jwttoken":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI5RzVkcW5OWWsyY1dGVllSOW5EYVZ6RE4iLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.k9zN_sknvNaxi3T36AS73vJqjSfiSurE7Vwh8k89eb3yD5Hr44sMDJ_OOFiuJPK3zJJlZaZmLFYFtuJyi8h3UjRdadL4YxVahuybGLczGGTu2l1hK65S4rbLjDckfBE61tD9EEXhqaAxltHtrdSw9DyQOcPd5pQO263pdCBmo2CRZeJUJrlEfky1PG3Qx0MNvrtclFt0B3dxJUaEQnR0szYftnDXc4YNd7E4TWf5g9LFYnMO-zPaZYGsV0o_fkLXKFjp72viownwS2bi4VK3VbqlGwQ1L5ZB__KDXGjpU7sSNYWWhfDCW3fATdF9fC7IMWI1dUNrBVEPNaRZKFGz9Q","username":"crest-user","usertype":"local","rbac":"[{\"domain\":\"all\",\"rolesR\":16777216,\"rolesW\":1,\"roles\":[[\"app-user\",\"ReadPriv\"],[\"admin\",\"WritePriv\"]]}]","statusCode":200,"token":"eyJhbGciOiJSUzI1NiIsImtpZCI6InF0d29qdzRwbW1uOG8xM3dsZmxxcnE1d2IxN2wyaXNuIiwidHlwIjoiSldUIn0.eyJhdnBhaXIiOiJzaGVsbDpkb21haW5zPWFsbC9hZG1pbi9hcHAtdXNlciIsImNsdXN0ZXIiOiI2YzY4MmQ2NC02ZDdhLTMxMmQtNzA2Zi02NDMxMmQ2ZTY0NmYiLCJleHAiOjE2NDU1MzM4MTUsImlhdCI6MTY0NTUzMjYxNSwiaWQiOiI4MjBkMDNkMWE3OWU2NThkYTc1ZDM2YWNhNzAxOGFmZjIyMTdhNzI1ZWY4NDFiMTU2YmNhODk4ZDkxNzBkZjI3IiwiaXNzIjoibmQiLCJpc3MtaG9zdCI6IjE3My4zNi4yMTkuMzEiLCJyYmFjIjpbeyJkb21haW4iOiJhbGwiLCJyb2xlc1IiOjE2Nzc3MjE2LCJyb2xlc1ciOjEsInJvbGVzIjpbWyJhcHAtdXNlciIsIlJlYWRQcml2Il0sWyJhZG1pbiIsIldyaXRlUHJpdiJdXX1dLCJzZXNzaW9uaWQiOiI5RzVkcW5OWWsyY1dGVllSOW5EYVZ6RE4iLCJ1c2VyZmxhZ3MiOjAsInVzZXJpZCI6MjUwMDIsInVzZXJuYW1lIjoiY3Jlc3QtdXNlciIsInVzZXJ0eXBlIjoibG9jYWwifQ.k9zN_sknvNaxi3T36AS73vJqjSfiSurE7Vwh8k89eb3yD5Hr44sMDJ_OOFiuJPK3zJJlZaZmLFYFtuJyi8h3UjRdadL4YxVahuybGLczGGTu2l1hK65S4rbLjDckfBE61tD9EEXhqaAxltHtrdSw9DyQOcPd5pQO263pdCBmo2CRZeJUJrlEfky1PG3Qx0MNvrtclFt0B3dxJUaEQnR0szYftnDXc4YNd7E4TWf5g9LFYnMO-zPaZYGsV0o_fkLXKFjp72viownwS2bi4VK3VbqlGwQ1L5ZB__KDXGjpU7sSNYWWhfDCW3fATdF9fC7IMWI1dUNrBVEPNaRZKFGz9Q"} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000988840 3980 [] false false map[] 0xc0007eca00 0xc0004ac000} +2022/02/22 17:53:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [DEBUG] New state was assigned lineage "fcf6127a-1c3f-acc6-956b-c524fbd8b341" +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:35 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:35 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "2" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.55.147" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + dhcp_relay_policy_provider.1.dhcp_server_address: "" => "1.2.55.147" + dhcp_relay_policy_provider.1.external_epg: "" => "" + dhcp_relay_policy_provider.1.tenant_id: "" => "" + id: "" => "" + name: "" => "acctest_k02m9" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_wco6j" + template_name: "" => "acctest_7zsng" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_hnt2i" + external_epg_name: "" => "acctest_hnt2i" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_7zsng" + vrf_name: "" => "acctest_hnt2i" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_external_epg.test1 + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_6dx3n" + external_epg_name: "" => "acctest_6dx3n" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_7zsng" + vrf_name: "" => "acctest_hnt2i" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_hnt2i" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_hnt2i" + schema_id: "" => "" + template: "" => "acctest_7zsng" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test1 (prepare state) +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1 (prepare state) mso_schema_template_external_epg.test1 mso_schema_template_external_epg.test1] +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:35 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:53:35 [DEBUG] Schema: Beginning Creation +2022/02/22 17:53:35 HTTP request POST mso/api/v1/schemas +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:53:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000988280 3980 [] false false map[] 0xc00017e900 0xc0002c80b0} +2022/02/22 17:53:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [DEBUG] New state was assigned lineage "b5b4606e-8738-1b45-3a98-d7eb723e6829" +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[97] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000988240 97 [] false false map[] 0xc0013e4100 0xc0004ac160} +2022/02/22 17:53:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: The tenant with id 08863 is not found for the current user."} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: The tenant with id 08863 is not found for the current user."{} +2022/02/22 17:53:35 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: The tenant with id 08863 is not found for the current user."{} +2022/02/22 17:53:35 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: The tenant with id 08863 is not found for the current user."{} +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[2]", instance mso_dhcp_relay_policy.test[2] +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[3]", instance mso_dhcp_relay_policy.test[3] +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[4]", instance mso_dhcp_relay_policy.test[4] +2022/02/22 17:53:35 [DEBUG] New state was assigned lineage "d9000400-f9f1-958e-442a-6102ea305d97" +2022/02/22 17:53:35 [DEBUG] Test: Executing step 1 +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[0]", instance mso_dhcp_relay_policy.test[0] +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test[1]", instance mso_dhcp_relay_policy.test[1] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test[0] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_eojyb0" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test[1] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_eojyb1" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test[2] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_eojyb2" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test[3] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_eojyb3" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_dhcp_relay_policy.test[4] + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_eojyb4" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[0]", instance mso_dhcp_relay_policy.test[0] +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[3]", instance mso_dhcp_relay_policy.test[3] +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[1]", instance mso_dhcp_relay_policy.test[1] +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[2]", instance mso_dhcp_relay_policy.test[2] +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test[4]", instance mso_dhcp_relay_policy.test[4] +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test[1] +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1]" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000395e00 3980 [] false false map[] 0xc0002da400 0xc0004ac0b0} +2022/02/22 17:53:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [DEBUG] New state was assigned lineage "e92f7df1-7023-c85d-7610-fa32cbe708ff" +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] mso_dhcp_relay_policy.test[4]: applying the planned Create change +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] mso_dhcp_relay_policy.test[0]: applying the planned Create change +2022/02/22 17:53:35 [DEBUG] : Beginning Create +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:35 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] : Beginning Create +2022/02/22 17:53:35 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] mso_dhcp_relay_policy.test[1]: applying the planned Create change +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] : Beginning Create +2022/02/22 17:53:35 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] mso_dhcp_relay_policy.test[2]: applying the planned Create change +2022/02/22 17:53:35 [DEBUG] mso_dhcp_relay_policy.test[3]: applying the planned Create change +2022/02/22 17:53:35 [DEBUG] : Beginning Create +2022/02/22 17:53:35 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] : Beginning Create +2022/02/22 17:53:35 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b20040 3980 [] false false map[] 0xc00073a800 0xc00081c000} +2022/02/22 17:53:35 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [DEBUG] New state was assigned lineage "37561f00-eeec-c672-effe-5d4b3a9ff262" +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_zovz4" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:35 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of name to be in the range (1 - 1000), got yhltvmiryi6ywwyw9s2hd8xksvejk8i9hzw796lwxpgtslwz49ocjgsh34m66njr6y4luggqgx1fdytcyutx1kd41ak1a1mjlmxl3xvpb30o69hpu8avpszvi8w2yuycp4ctzrqn9u21l2jywlhdan9fsptotzao9fttp2xw81df1ma1cy944lyd918sj3v6h3vo1a0pu3sy7fuoeky6tgekad4ouvfm7ii9pct7lfmffasnxdvbkhivrkwxj2nl2txi429w0flj9j4kzevixp36w9uyy9uqr47tswjd0mwlssqv4lw7k1v3phektqu3998loekpupx8s8w16hrb4evet7h3crpb7bc1ni8j4mre7pekxpto1irmc8yt2o0mw7zmdomikxarbpbo6undc03xj3h3t7h2u2omol7cn289fmhiuws3pmrzuwbhji0jvkeck8vntmlvjzmgp7h1ix8hgqy224egr10rd2tm8hr4ncg9s14kfxvmas7e7h4n63xn00zqgzh3zusqzovtt7t839a6wiglldqjeuiitn17y6zfw00nhzajrgiiuvn4fce3mf8pso44vrz0km7f4utcvtp344rxmiedzp9lz294q1f16djf0bt3499ecrpyblztkd6rfv4u61evxcal698gqx764x87d069kjtbyolwsp9j0f3t9rhbcx7k0494vjknso167ynjs3byh9j78mthyhrmg8febsqjvcok2libvcud4ch14d9o249b7orseoyxpgx7edxyr7a8cic4c2gcjrjqyxq0kmf06xnf1yy7biwlvmanpi6jmo2y4giw0idtp1wxohl0jdacl0q1ovdp0fdeaa2sw9u18htli7f1p0ruel31s7mvxksxgovx9gw21mqkh4xr96exbyuax68xyj70c2wqvwzpqsot9e8pg323fueeqj0el6jofk3jl2jhe8eoo6f30igwlracvme4h9isbkgywkxmlk8h6 +2022/02/22 17:53:35 [ERROR] : eval: *terraform.EvalSequence, err: expected length of name to be in the range (1 - 1000), got yhltvmiryi6ywwyw9s2hd8xksvejk8i9hzw796lwxpgtslwz49ocjgsh34m66njr6y4luggqgx1fdytcyutx1kd41ak1a1mjlmxl3xvpb30o69hpu8avpszvi8w2yuycp4ctzrqn9u21l2jywlhdan9fsptotzao9fttp2xw81df1ma1cy944lyd918sj3v6h3vo1a0pu3sy7fuoeky6tgekad4ouvfm7ii9pct7lfmffasnxdvbkhivrkwxj2nl2txi429w0flj9j4kzevixp36w9uyy9uqr47tswjd0mwlssqv4lw7k1v3phektqu3998loekpupx8s8w16hrb4evet7h3crpb7bc1ni8j4mre7pekxpto1irmc8yt2o0mw7zmdomikxarbpbo6undc03xj3h3t7h2u2omol7cn289fmhiuws3pmrzuwbhji0jvkeck8vntmlvjzmgp7h1ix8hgqy224egr10rd2tm8hr4ncg9s14kfxvmas7e7h4n63xn00zqgzh3zusqzovtt7t839a6wiglldqjeuiitn17y6zfw00nhzajrgiiuvn4fce3mf8pso44vrz0km7f4utcvtp344rxmiedzp9lz294q1f16djf0bt3499ecrpyblztkd6rfv4u61evxcal698gqx764x87d069kjtbyolwsp9j0f3t9rhbcx7k0494vjknso167ynjs3byh9j78mthyhrmg8febsqjvcok2libvcud4ch14d9o249b7orseoyxpgx7edxyr7a8cic4c2gcjrjqyxq0kmf06xnf1yy7biwlvmanpi6jmo2y4giw0idtp1wxohl0jdacl0q1ovdp0fdeaa2sw9u18htli7f1p0ruel31s7mvxksxgovx9gw21mqkh4xr96exbyuax68xyj70c2wqvwzpqsot9e8pg323fueeqj0el6jofk3jl2jhe8eoo6f30igwlracvme4h9isbkgywkxmlk8h6 +2022/02/22 17:53:35 [DEBUG] Test: Executing step 2 +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:35 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:53:35 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_4vyf4_invalid" + tenant_id: "" => "" +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_4vyf4" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:35 [DEBUG] : Beginning Create +2022/02/22 17:53:35 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:35 [DEBUG] : Beginning Create +2022/02/22 17:53:35 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 [WARN] : eval: *terraform.EvalValidateResource, non-fatal err: expected length of description to be in the range (1 - 1000), got bbt2imbzp8taqzaemffkgif7k08d2rnid3r0r9prajfak7jtsw88jh9utkygxsd07d4tn3ixrf01446v2srfs1rpz4pgl7g24wteofe1wsiuoq9glli9q3jilrtsrdws8mfctqtjv4rcrfoxu22awo3xvukn0gim1ut6i7v0dth4evl21piemejzs6krvyqdtqsje6j2sevbmvnd1l3wb3fpjy4up82jkecgkpdyvlavael0nbumt8hkbbkg43jrotelf6gdww6lk3o62k6hdf2e80vft41p2aavwp9wegzqwguof08m0m7y2z162tgkjfg19k18gqvcdihwjkw3ysi1q1e2sfbt44q70vw6xs06s0cb2iuk97wsrwl0il8p4ngs90jrwttmctyf11b34xejpm1fpxjqy4hnakntbln4jasxg31zr6x33xllsfb4ftzyqp1nglk67n19tyr6p9tu0xcfubgwvt17fw93vch1jo8qekkrf8pjy0qmpxmhohbr2hmjinbtr4s40g8jk94fgpdod426hurcakwojpi46bgybifx161e7ykb7cv36ashszapy6yqaa0f4fg3lb7c84f6alejxfqhtzuycaeustwnybswfi6jww86z6lghwaoko1xf9wvx3irc3lpdkl3fm0u4fl9uxlpbexv0gr9nykd9tbcgr0eo3sc22g0kc8hi8bkzpud1rlys0sgs0aqhch2mu6dmydcmmjf2i07kmbe207oylx7pi2l8s1zbxtto0bsf6v89dqqwwy08ojhfsh9uklpmw2dg61zj122n2k7hnis7sc7eqaafzk22e1pd4vzq7klgj2l4qycrdbn2lp7lv3sclqyzrquz3sp0otjt7ztznh6pysb2lmqnc9fpe6mpnqvpxwr7g9ddud80k4pghq39v9xz4u3wdog2d27wi4bljif049aroirk1qebfno9rcbf63m9hm8r6rsjch2pd7hdyw382uxb +2022/02/22 17:53:35 [ERROR] : eval: *terraform.EvalSequence, err: expected length of description to be in the range (1 - 1000), got bbt2imbzp8taqzaemffkgif7k08d2rnid3r0r9prajfak7jtsw88jh9utkygxsd07d4tn3ixrf01446v2srfs1rpz4pgl7g24wteofe1wsiuoq9glli9q3jilrtsrdws8mfctqtjv4rcrfoxu22awo3xvukn0gim1ut6i7v0dth4evl21piemejzs6krvyqdtqsje6j2sevbmvnd1l3wb3fpjy4up82jkecgkpdyvlavael0nbumt8hkbbkg43jrotelf6gdww6lk3o62k6hdf2e80vft41p2aavwp9wegzqwguof08m0m7y2z162tgkjfg19k18gqvcdihwjkw3ysi1q1e2sfbt44q70vw6xs06s0cb2iuk97wsrwl0il8p4ngs90jrwttmctyf11b34xejpm1fpxjqy4hnakntbln4jasxg31zr6x33xllsfb4ftzyqp1nglk67n19tyr6p9tu0xcfubgwvt17fw93vch1jo8qekkrf8pjy0qmpxmhohbr2hmjinbtr4s40g8jk94fgpdod426hurcakwojpi46bgybifx161e7ykb7cv36ashszapy6yqaa0f4fg3lb7c84f6alejxfqhtzuycaeustwnybswfi6jww86z6lghwaoko1xf9wvx3irc3lpdkl3fm0u4fl9uxlpbexv0gr9nykd9tbcgr0eo3sc22g0kc8hi8bkzpud1rlys0sgs0aqhch2mu6dmydcmmjf2i07kmbe207oylx7pi2l8s1zbxtto0bsf6v89dqqwwy08ojhfsh9uklpmw2dg61zj122n2k7hnis7sc7eqaafzk22e1pd4vzq7klgj2l4qycrdbn2lp7lv3sclqyzrquz3sp0otjt7ztznh6pysb2lmqnc9fpe6mpnqvpxwr7g9ddud80k4pghq39v9xz4u3wdog2d27wi4bljif049aroirk1qebfno9rcbf63m9hm8r6rsjch2pd7hdyw382uxb +2022/02/22 17:53:35 [DEBUG] Test: Executing step 3 +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:35 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "geswb" is not expected here. +2022/02/22 17:53:35 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "geswb" is not expected here. +2022/02/22 17:53:35 [DEBUG] Test: Executing step 4 +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:35 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:35 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:35 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:35 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:35 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:35 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:53:35 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:35 [DEBUG] : Beginning Read +2022/02/22 17:53:35 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004d7940 161 [] false false map[] 0xc00073a200 0xc0002c80b0} +2022/02/22 17:53:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d5c71b00004181fd0686","name":"acctest_eojyb0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 [DEBUG] 6214d5c71b00004181fd0686: Creation finished successfully +2022/02/22 17:53:35 [DEBUG] 6214d5c71b00004181fd0686: Beginning Read +2022/02/22 17:53:35 id: 6214d5c71b00004181fd0686 +2022/02/22 17:53:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004d7ac0 161 [] false false map[] 0xc00073af00 0xc00081c000} +2022/02/22 17:53:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d5c71b00004381fd0687","name":"acctest_eojyb1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 [DEBUG] 6214d5c71b00004381fd0687: Creation finished successfully +2022/02/22 17:53:35 [DEBUG] 6214d5c71b00004381fd0687: Beginning Read +2022/02/22 17:53:35 id: 6214d5c71b00004381fd0687 +2022/02/22 17:53:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:35 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004d7c00 161 [] false false map[] 0xc0007ec100 0xc0004ac160} +2022/02/22 17:53:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d5c71b00004381fd0688","name":"acctest_eojyb4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 [DEBUG] 6214d5c71b00004381fd0688: Creation finished successfully +2022/02/22 17:53:35 [DEBUG] 6214d5c71b00004381fd0688: Beginning Read +2022/02/22 17:53:35 id: 6214d5c71b00004381fd0688 +2022/02/22 17:53:35 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:35 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:53:35 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:35 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d5c71d00000e574f9f15] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004d7d00 400 [] false false map[] 0xc0013e5000 0xc0004ac000} +2022/02/22 17:53:35 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:53:35 [DEBUG] Exit from do method +2022/02/22 17:53:35 [DEBUG] 6214d5c71d00000e574f9f15: Schema Creation finished successfully +2022/02/22 17:53:35 [DEBUG] 6214d5c71d00000e574f9f15: Beginning Read +2022/02/22 17:53:35 HTTP request GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:35 [DEBUG] Begin Injection +2022/02/22 17:53:35 HTTP request after injection GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:35 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:36 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000989cc0 161 [] false false map[] 0xc000826a00 0xc0002c80b0} +2022/02/22 17:53:36 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d5c81b00003681fd0689","name":"acctest_eojyb2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 [DEBUG] 6214d5c81b00003681fd0689: Creation finished successfully +2022/02/22 17:53:36 [DEBUG] 6214d5c81b00003681fd0689: Beginning Read +2022/02/22 17:53:36 id: 6214d5c81b00003681fd0689 +2022/02/22 17:53:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:36 [DEBUG] Begin Injection +2022/02/22 17:53:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:36 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000989dc0 161 [] false false map[] 0xc00017ea00 0xc00081c000} +2022/02/22 17:53:36 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d5c81b00002481fd068a","name":"acctest_eojyb3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 [DEBUG] 6214d5c81b00002481fd068a: Creation finished successfully +2022/02/22 17:53:36 [DEBUG] 6214d5c81b00002481fd068a: Beginning Read +2022/02/22 17:53:36 id: 6214d5c81b00002481fd068a +2022/02/22 17:53:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:36 [DEBUG] Begin Injection +2022/02/22 17:53:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:36 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000989ec0 160 [] false false map[] 0xc0007ec500 0xc0004ac000} +2022/02/22 17:53:36 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 [DEBUG] 6214d5c81b00003f81fd068c: Creation finished successfully +2022/02/22 17:53:36 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Read +2022/02/22 17:53:36 id: 6214d5c81b00003f81fd068c +2022/02/22 17:53:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:36 [DEBUG] Begin Injection +2022/02/22 17:53:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:36 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008127c0 160 [] false false map[] 0xc000827400 0xc0004ac160} +2022/02/22 17:53:36 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 [DEBUG] 6214d5c81b00003e81fd068b: Creation finished successfully +2022/02/22 17:53:36 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:36 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:36 [DEBUG] Begin Injection +2022/02/22 17:53:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b20300 3980 [] false false map[] 0xc0007ecb00 0xc0002c80b0} +2022/02/22 17:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001c4c640 161 [] false false map[] 0xc00073ae00 0xc00081c000} +2022/02/22 17:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 {"id":"6214d5c71b00004181fd0686","name":"acctest_eojyb0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:36 [DEBUG] 6214d5c71b00004181fd0686: Read finished successfully +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001c4c740 161 [] false false map[] 0xc00073b100 0xc0004ac000} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 {"id":"6214d5c71b00004381fd0687","name":"acctest_eojyb1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 [DEBUG] 6214d5c71b00004381fd0687: Read finished successfully +2022/02/22 17:53:36 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:36 [DEBUG] New state was assigned lineage "3fc9f47a-ff18-dd24-b28c-76c8c41f0581" +2022/02/22 17:53:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:36 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:36 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:36 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:36 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:36 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 17:53:36 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:36 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:36 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:36 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "2" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.55.147" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "" => "" + dhcp_relay_policy_provider.1.dhcp_server_address: "" => "1.2.55.147" + dhcp_relay_policy_provider.1.external_epg: "" => "" + dhcp_relay_policy_provider.1.tenant_id: "" => "" + id: "" => "" + name: "" => "acctest_31hds" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_2c128" + template_name: "" => "acctest_92umt" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_pav3t" + external_epg_name: "" => "acctest_pav3t" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_92umt" + vrf_name: "" => "acctest_pav3t" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_external_epg.test1 + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_pav3t" + external_epg_name: "" => "acctest_pav3t" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_92umt" + vrf_name: "" => "acctest_pav3t" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_pav3t" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_pav3t" + schema_id: "" => "" + template: "" => "acctest_92umt" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:53:36 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:36 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:36 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:36 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:36 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:36 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test1", instance mso_schema_template_external_epg.test1 +2022/02/22 17:53:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (prepare state) +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1 mso_schema_template_external_epg.test1 mso_schema_template_external_epg.test1 (prepare state)] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (prepare state)" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 17:53:36 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:36 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:53:36 [DEBUG] Schema: Beginning Creation +2022/02/22 17:53:36 HTTP request POST mso/api/v1/schemas +2022/02/22 17:53:36 [DEBUG] Begin Injection +2022/02/22 17:53:36 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fbec0 400 [] false false map[] 0xc00073b400 0xc0005ea8f0} +2022/02/22 17:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 [DEBUG] 6214d5c71d00000e574f9f15: Read finished successfully +2022/02/22 17:53:36 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:53:36 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:53:36 HTTP request PATCH mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:36 [DEBUG] Begin Injection +2022/02/22 17:53:36 HTTP request after injection PATCH mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ddc00 161 [] false false map[] 0xc00073b300 0xc0004ac160} +2022/02/22 17:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 {"id":"6214d5c71b00004381fd0688","name":"acctest_eojyb4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 [DEBUG] 6214d5c71b00004381fd0688: Read finished successfully +2022/02/22 17:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00182ae40 161 [] false false map[] 0xc0007ecc00 0xc00081c9a0} +2022/02/22 17:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 {"id":"6214d5c81b00003681fd0689","name":"acctest_eojyb2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 [DEBUG] 6214d5c81b00003681fd0689: Read finished successfully +2022/02/22 17:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00182aec0 161 [] false false map[] 0xc0007ecd00 0xc0002c8b00} +2022/02/22 17:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a {"id":"6214d5c81b00002481fd068a","name":"acctest_eojyb3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 [DEBUG] 6214d5c81b00002481fd068a: Read finished successfully +2022/02/22 17:53:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:36 [DEBUG] New state was assigned lineage "5ee3ab9b-d45a-96c1-32d4-38e3b73feb44" +2022/02/22 17:53:36 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:36 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001cc1f80 160 [] false false map[] 0xc0007ecf00 0xc0005ea9a0} +2022/02/22 17:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:36 [DEBUG] New state was assigned lineage "78ac36dc-ba35-fb3f-3ce3-eed6ceefc2ba" +2022/02/22 17:53:36 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:36 [DEBUG] Begin Injection +2022/02/22 17:53:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:36 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:36 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:36 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:36 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:36 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:36 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c02600 160 [] false false map[] 0xc0007ece00 0xc00081ca50} +2022/02/22 17:53:36 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:36 [DEBUG] Exit from do method +2022/02/22 17:53:36 [DEBUG] 6214d5c81b00003f81fd068c: Read finished successfully +2022/02/22 17:53:36 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:53:36 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:36 [DEBUG] Begin Injection +2022/02/22 17:53:36 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:36 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:36 [DEBUG] : Beginning Read +2022/02/22 17:53:36 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:36 [DEBUG] Begin Injection +2022/02/22 17:53:36 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:36 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017f700 0xc0005ea8f0} +2022/02/22 17:53:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:37 [DEBUG] acctest_hnt2i: Creation finished successfully +2022/02/22 17:53:37 [DEBUG] acctest_hnt2i: Beginning Read +2022/02/22 17:53:37 HTTP request GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:37 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:53:37 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:36 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d5c81d0000f9564f9f17] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c03300 400 [] false false map[] 0xc0007ed900 0xc00081c000} +2022/02/22 17:53:37 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d5c81d0000f9564f9f17","displayName":"acctest_2c128","description":"","templates":[{"name":"acctest_92umt","displayName":"acctest_92umt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [DEBUG] 6214d5c81d0000f9564f9f17: Schema Creation finished successfully +2022/02/22 17:53:37 [DEBUG] 6214d5c81d0000f9564f9f17: Beginning Read +2022/02/22 17:53:37 HTTP request GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c03440 160 [] false false map[] 0xc000827a00 0xc0004ac160} +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2386] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001be58c0 2386 [] false false map[] 0xc0002da400 0xc0017606e0} +2022/02/22 17:53:37 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d5c71b00004181fd0686","name":"acctest_eojyb0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c71b00004381fd0687","name":"acctest_eojyb1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c71b00004381fd0688","name":"acctest_eojyb4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c81b00003681fd0689","name":"acctest_eojyb2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c81b00002481fd068a","name":"acctest_eojyb3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [ERROR] : eval: *terraform.EvalReadData, err: DHCP Relay Policy with name: acctest_4vyf4_invalid not found +2022/02/22 17:53:37 [ERROR] : eval: *terraform.EvalSequence, err: DHCP Relay Policy with name: acctest_4vyf4_invalid not found +2022/02/22 17:53:37 [DEBUG] New state was assigned lineage "24baa74d-1a5b-7b73-b234-bef3979013b0" +2022/02/22 17:53:37 [DEBUG] Test: Executing step 3 +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] : Beginning Read +2022/02/22 17:53:37 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] : Beginning Read +2022/02/22 17:53:37 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b200c0 3980 [] false false map[] 0xc0013e4f00 0xc0004ac0b0} +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:53:37 [DEBUG] 6214d5c81b00002481fd068a: Beginning Read +2022/02/22 17:53:37 id: 6214d5c81b00002481fd068a +2022/02/22 17:53:37 [DEBUG] 6214d5c71b00004381fd0688: Beginning Read +2022/02/22 17:53:37 id: 6214d5c71b00004381fd0688 +2022/02/22 17:53:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:37 [DEBUG] 6214d5c71b00004181fd0686: Beginning Read +2022/02/22 17:53:37 id: 6214d5c71b00004181fd0686 +2022/02/22 17:53:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:37 [DEBUG] 6214d5c81b00003681fd0689: Beginning Read +2022/02/22 17:53:37 id: 6214d5c81b00003681fd0689 +2022/02/22 17:53:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:37 [DEBUG] 6214d5c71b00004381fd0687: Beginning Read +2022/02/22 17:53:37 id: 6214d5c71b00004381fd0687 +2022/02/22 17:53:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051af80 768 [] false false map[] 0xc0013e5000 0xc0005ea8f0} +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 currentvrfname acctest_hnt2i +2022/02/22 17:53:37 found correct vrfname +2022/02/22 17:53:37 [DEBUG] acctest_hnt2i: Read finished successfully +2022/02/22 17:53:37 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:37 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:37 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:53:37 [DEBUG] mso_schema_template_external_epg.test1: applying the planned Create change +2022/02/22 17:53:37 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:53:37 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:53:37 HTTP request PATCH mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request PATCH mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection PATCH mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:37 HTTP request after injection PATCH mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a40c0 400 [] false false map[] 0xc0002da800 0xc00081c000} +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 {"id":"6214d5c81d0000f9564f9f17","displayName":"acctest_2c128","description":"","templates":[{"name":"acctest_92umt","displayName":"acctest_92umt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [DEBUG] 6214d5c81d0000f9564f9f17: Read finished successfully +2022/02/22 17:53:37 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:53:37 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:53:37 HTTP request PATCH mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection PATCH mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a5380 3980 [] false false map[] 0xc00073a400 0xc0004aca50} +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:37 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:37 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b295c0 161 [] false false map[] 0xc00073a800 0xc0005eaa50} +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 {"id":"6214d5c71b00004381fd0688","name":"acctest_eojyb4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [DEBUG] 6214d5c71b00004381fd0688: Read finished successfully +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b29a40 161 [] false false map[] 0xc00017e200 0xc0004ac0b0} +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 {"id":"6214d5c81b00003681fd0689","name":"acctest_eojyb2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [DEBUG] 6214d5c81b00003681fd0689: Read finished successfully +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b29e40 3980 [] false false map[] 0xc000826500 0xc0004ac000} +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:37 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Read +2022/02/22 17:53:37 id: 6214d5c81b00003f81fd068c +2022/02/22 17:53:37 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012ed180 161 [] false false map[] 0xc0013e4100 0xc0005ea8f0} +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 {"id":"6214d5c71b00004181fd0686","name":"acctest_eojyb0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [DEBUG] 6214d5c71b00004181fd0686: Read finished successfully +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00072de00 161 [] false false map[] 0xc000827200 0xc00081c000} +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a {"id":"6214d5c81b00002481fd068a","name":"acctest_eojyb3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [DEBUG] 6214d5c81b00002481fd068a: Read finished successfully +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012edc00 161 [] false false map[] 0xc0013e4200 0xc0004aca50} +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 {"id":"6214d5c71b00004381fd0687","name":"acctest_eojyb1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [DEBUG] 6214d5c71b00004381fd0687: Read finished successfully +2022/02/22 17:53:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:37 [DEBUG] New state was assigned lineage "07c7dae1-f377-f306-85ca-783328c3bc3e" +2022/02/22 17:53:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:37 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:53:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:37 [WARN] Test: Executing destroy step +2022/02/22 17:53:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0007ecc00 0xc0005eaa50} +2022/02/22 17:53:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:37 [DEBUG] : Beginning Read +2022/02/22 17:53:37 HTTP request GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00073af00 0xc0004ac0b0} +2022/02/22 17:53:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:37 [DEBUG] : Beginning Read +2022/02/22 17:53:37 HTTP request GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] : Beginning Read +2022/02/22 17:53:37 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:37 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:37 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc000827800 0xc0004ac000} +2022/02/22 17:53:37 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:37 [DEBUG] acctest_pav3t: Creation finished successfully +2022/02/22 17:53:37 [DEBUG] acctest_pav3t: Beginning Read +2022/02/22 17:53:37 HTTP request GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:37 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:37 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001f4c100 160 [] false false map[] 0xc00017e700 0xc0005ea8f0} +2022/02/22 17:53:37 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:37 [DEBUG] Exit from do method +2022/02/22 17:53:37 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:37 [DEBUG] New state was assigned lineage "4373068e-d288-9306-fc5b-5447789d9a29" +2022/02/22 17:53:37 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:37 [DEBUG] Test: Executing step 3 +2022/02/22 17:53:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:37 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:37 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:37 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:37 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:37 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:37 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:37 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:37 [DEBUG] : Beginning Read +2022/02/22 17:53:37 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:37 [DEBUG] Begin Injection +2022/02/22 17:53:37 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:37 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:37 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b28440 160 [] false false map[] 0xc0007edb00 0xc00081c000} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] 6214d5c81b00003f81fd068c: Read finished successfully +2022/02/22 17:53:38 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:38 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:53:38 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001be5d80 1527 [] false false map[] 0xc001f42d00 0xc0005eaa50} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","anpRef":"","description":""},{"name":"acctest_6dx3n","displayName":"acctest_6dx3n","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i: Read finished successfully +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b29280 768 [] false false map[] 0xc00073a000 0xc0004ac000} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 {"id":"6214d5c81d0000f9564f9f17","displayName":"acctest_2c128","description":"","templates":[{"name":"acctest_92umt","displayName":"acctest_92umt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 currentvrfname acctest_pav3t +2022/02/22 17:53:38 found correct vrfname +2022/02/22 17:53:38 [DEBUG] acctest_pav3t: Read finished successfully +2022/02/22 17:53:38 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:38 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test1, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:38 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:53:38 [DEBUG] mso_schema_template_external_epg.test1: applying the planned Create change +2022/02/22 17:53:38 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:53:38 HTTP request PATCH mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection PATCH mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:38 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:53:38 HTTP request PATCH mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection PATCH mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007de000 1527 [] false false map[] 0xc001822c00 0xc0004ac0b0} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","anpRef":"","description":""},{"name":"acctest_6dx3n","displayName":"acctest_6dx3n","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n: Read finished successfully +2022/02/22 17:53:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:53:38 [DEBUG] : Beginning Create +2022/02/22 17:53:38 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000395b80 3980 [] false false map[] 0xc0013e5f00 0xc0004aca50} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [] +2022/02/22 17:53:38 [DEBUG] 6214d5c81b00003681fd0689: Beginning Read +2022/02/22 17:53:38 id: 6214d5c81b00003681fd0689 +2022/02/22 17:53:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:38 [DEBUG] 6214d5c71b00004381fd0687: Beginning Read +2022/02/22 17:53:38 [DEBUG] 6214d5c81b00002481fd068a: Beginning Read +2022/02/22 17:53:38 id: 6214d5c81b00002481fd068a +2022/02/22 17:53:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:38 id: 6214d5c71b00004381fd0687 +2022/02/22 17:53:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 [DEBUG] 6214d5c71b00004181fd0686: Beginning Read +2022/02/22 17:53:38 id: 6214d5c71b00004181fd0686 +2022/02/22 17:53:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:38 [DEBUG] 6214d5c71b00004381fd0688: Beginning Read +2022/02/22 17:53:38 id: 6214d5c71b00004381fd0688 +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0007ded00 3980 [] false false map[] 0xc00073b800 0xc0005ea8f0} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:38 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:38 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2386] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015f8040 2386 [] false false map[] 0xc001822d00 0xc00081ce70} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d5c71b00004181fd0686","name":"acctest_eojyb0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c71b00004381fd0687","name":"acctest_eojyb1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c71b00004381fd0688","name":"acctest_eojyb4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c81b00003681fd0689","name":"acctest_eojyb2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c81b00002481fd068a","name":"acctest_eojyb3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:38 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001f42500 0xc0004acd10} +2022/02/22 17:53:38 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:38 [DEBUG] : Beginning Read +2022/02/22 17:53:38 HTTP request GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:38 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:38 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0002db500 0xc001394420} +2022/02/22 17:53:38 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17?validate=false +2022/02/22 17:53:38 [DEBUG] : Beginning Read +2022/02/22 17:53:38 HTTP request GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:38 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[547] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000988300 547 [] false false map[] 0xc0013e4200 0xc0004ac0b0} +2022/02/22 17:53:38 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"},{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] 6214d5ca1b00002481fd068d: Creation finished successfully +2022/02/22 17:53:38 [DEBUG] 6214d5ca1b00002481fd068d: Beginning Read +2022/02/22 17:53:38 id: 6214d5ca1b00002481fd068d +2022/02/22 17:53:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000988740 161 [] false false map[] 0xc001f42f00 0xc0004aca50} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 {"id":"6214d5c81b00003681fd0689","name":"acctest_eojyb2","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] 6214d5c81b00003681fd0689: Read finished successfully +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015f8500 161 [] false false map[] 0xc001823200 0xc0005ea8f0} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a {"id":"6214d5c81b00002481fd068a","name":"acctest_eojyb3","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] 6214d5c81b00002481fd068a: Read finished successfully +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015f8980 161 [] false false map[] 0xc001f43000 0xc00081ce70} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 {"id":"6214d5c71b00004381fd0687","name":"acctest_eojyb1","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] 6214d5c71b00004381fd0687: Read finished successfully +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000989540 161 [] false false map[] 0xc001f43100 0xc0005ea000} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 {"id":"6214d5c71b00004381fd0688","name":"acctest_eojyb4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] 6214d5c71b00004381fd0688: Read finished successfully +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[161] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001a6a140 161 [] false false map[] 0xc0007a3100 0xc0002c82c0} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 {"id":"6214d5c71b00004181fd0686","name":"acctest_eojyb0","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] 6214d5c71b00004181fd0686: Read finished successfully +2022/02/22 17:53:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:38 [DEBUG] New state was assigned lineage "fb06b92a-e937-694d-da25-d10627acd0eb" +2022/02/22 17:53:38 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test[3] +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2]" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:38 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test[0] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d5c71b00004181fd0686" => "" + name: "acctest_eojyb0" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test[1] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d5c71b00004381fd0687" => "" + name: "acctest_eojyb1" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test[2] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d5c81b00003681fd0689" => "" + name: "acctest_eojyb2" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test[3] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d5c81b00002481fd068a" => "" + name: "acctest_eojyb3" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_dhcp_relay_policy.test[4] + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d5c71b00004381fd0688" => "" + name: "acctest_eojyb4" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test.0: + ID = 6214d5c71b00004181fd0686 + provider = provider.mso + description = + name = acctest_eojyb0 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test.1: + ID = 6214d5c71b00004381fd0687 + provider = provider.mso + description = + name = acctest_eojyb1 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test.2: + ID = 6214d5c81b00003681fd0689 + provider = provider.mso + description = + name = acctest_eojyb2 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test.3: + ID = 6214d5c81b00002481fd068a + provider = provider.mso + description = + name = acctest_eojyb3 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_dhcp_relay_policy.test.4: + ID = 6214d5c71b00004381fd0688 + provider = provider.mso + description = + name = acctest_eojyb4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:53:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test[0] (destroy) +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test[4] (destroy) +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[2]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[0]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test[4]" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[1] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[3]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[4] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[0]" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test[2] (destroy)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:38 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:38 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:53:38 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:53:38 [DEBUG] mso_dhcp_relay_policy.test[0]: applying the planned Delete change +2022/02/22 17:53:38 [DEBUG] mso_dhcp_relay_policy.test[2]: applying the planned Delete change +2022/02/22 17:53:38 [DEBUG] mso_dhcp_relay_policy.test[1]: applying the planned Delete change +2022/02/22 17:53:38 [DEBUG] mso_dhcp_relay_policy.test[3]: applying the planned Delete change +2022/02/22 17:53:38 [DEBUG] mso_dhcp_relay_policy.test[4]: applying the planned Delete change +2022/02/22 17:53:38 [DEBUG] 6214d5c81b00003681fd0689: Beginning Read +2022/02/22 17:53:38 [DEBUG] 6214d5c71b00004181fd0686: Beginning Read +2022/02/22 17:53:38 [DEBUG] 6214d5c71b00004381fd0687: Beginning Read +2022/02/22 17:53:38 [DEBUG] 6214d5c81b00002481fd068a: Beginning Read +2022/02/22 17:53:38 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:38 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:38 [DEBUG] 6214d5c71b00004381fd0688: Beginning Read +2022/02/22 17:53:38 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:38 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:38 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a4140 160 [] false false map[] 0xc001823700 0xc0004acd10} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:38 [DEBUG] New state was assigned lineage "4f441570-7219-3600-b982-090e2bfbd3c0" +2022/02/22 17:53:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:38 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004d6140 160 [] false false map[] 0xc0013e4100 0xc001394420} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] 6214d5c81b00003f81fd068c: Import finished successfully +2022/02/22 17:53:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:38 [DEBUG] New state was assigned lineage "2e9d946b-a329-e76f-a8da-84348efa7bcd" +2022/02/22 17:53:38 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:38 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.55.147" + id: "6214d5c81b00003e81fd068b" => "6214d5c81b00003e81fd068b" + name: "acctest_zovz4" => "acctest_zovz4" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003e81fd068b + provider = provider.mso + description = + name = acctest_zovz4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:53:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:38 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:38 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_4vyf4" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.55.147" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214d5c81b00003f81fd068c" => "6214d5c81b00003f81fd068c" + name: "acctest_4vyf4" => "acctest_4vyf4" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003f81fd068c + provider = provider.mso + description = + name = acctest_4vyf4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003f81fd068c + provider = provider.mso + description = + name = acctest_4vyf4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:53:38 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:38 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:53:38 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Policy Update +2022/02/22 17:53:38 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: expected any one of the epg or external_epg. +2022/02/22 17:53:38 [ERROR] : eval: *terraform.EvalApplyPost, err: expected any one of the epg or external_epg. +2022/02/22 17:53:38 [ERROR] : eval: *terraform.EvalSequence, err: expected any one of the epg or external_epg. +2022/02/22 17:53:38 [DEBUG] New state was assigned lineage "e7b5d93f-f5de-b3ca-2506-1ba80c7830da" +2022/02/22 17:53:38 [DEBUG] Test: Executing step 4 +2022/02/22 17:53:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:53:38 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Policy Update +2022/02/22 17:53:38 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:38 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:38 [ERROR] : eval: *terraform.EvalValidateResource, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 17:53:38 [ERROR] : eval: *terraform.EvalSequence, err: Missing required argument: The argument "dhcp_server_address" is required, but no definition was found. +2022/02/22 17:53:38 [DEBUG] Test: Executing step 5 +2022/02/22 17:53:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:38 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:38 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:38 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:38 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:53:38 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:38 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:38 [DEBUG] : Beginning Read +2022/02/22 17:53:38 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051b580 1147 [] false false map[] 0xc001f42000 0xc0004ac0b0} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 {"id":"6214d5c81d0000f9564f9f17","displayName":"acctest_2c128","description":"","templates":[{"name":"acctest_92umt","displayName":"acctest_92umt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/externalEpgs/acctest_pav3t","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] /schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/externalEpgs/acctest_pav3t: Read finished successfully +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001c4c4c0 1147 [] false false map[] 0xc00017e200 0xc0004aca50} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 {"id":"6214d5c81d0000f9564f9f17","displayName":"acctest_2c128","description":"","templates":[{"name":"acctest_92umt","displayName":"acctest_92umt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/externalEpgs/acctest_pav3t","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] /schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/externalEpgs/acctest_pav3t: Read finished successfully +2022/02/22 17:53:38 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:38 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[547] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001a6a1c0 547 [] false false map[] 0xc00017e300 0xc0005ea8f0} +2022/02/22 17:53:38 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d {"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"},{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 17:53:38 [DEBUG] Exit from do method +2022/02/22 17:53:38 [DEBUG] 6214d5ca1b00002481fd068d: Read finished successfully +2022/02/22 17:53:38 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[1].epg: was null, but now cty.StringVal("") +2022/02/22 17:53:38 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:38 [DEBUG] New state was assigned lineage "237086d2-da0c-c6b4-f04d-e945c44c0b76" +2022/02/22 17:53:38 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:53:38 [DEBUG] : Beginning Create +2022/02/22 17:53:38 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:38 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:38 [DEBUG] Begin Injection +2022/02/22 17:53:38 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:38 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:39 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0013e4e00 0xc00081ce70} +2022/02/22 17:53:39 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:39 [DEBUG] : Read finished successfully +2022/02/22 17:53:39 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:38 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00073a400 0xc0005ea000} +2022/02/22 17:53:39 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:39 [DEBUG] : Read finished successfully +2022/02/22 17:53:39 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0002da800 0xc001394420} +2022/02/22 17:53:39 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:39 [DEBUG] : Read finished successfully +2022/02/22 17:53:39 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc001823300 0xc0004acd10} +2022/02/22 17:53:39 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:39 [DEBUG] : Read finished successfully +2022/02/22 17:53:39 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:39 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00017ec00 0xc0004ac0b0} +2022/02/22 17:53:39 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:39 [DEBUG] : Read finished successfully +2022/02/22 17:53:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:39 [DEBUG] New state was assigned lineage "28d243cf-4092-977c-81e8-715eef198b6d" +2022/02/22 17:53:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:39 [DEBUG] Begin Injection +2022/02/22 17:53:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:39 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a4e80 356 [] false false map[] 0xc0002db700 0xc0004aca50} +2022/02/22 17:53:39 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:39 [DEBUG] Exit from do method +2022/02/22 17:53:39 [DEBUG] Policy Update finished successfully: 6214d5c81b00003f81fd068c +2022/02/22 17:53:39 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Read +2022/02/22 17:53:39 id: 6214d5c81b00003f81fd068c +2022/02/22 17:53:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:39 [DEBUG] Begin Injection +2022/02/22 17:53:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001a6b680 3980 [] false false map[] 0xc001822200 0xc0005ea8f0} +2022/02/22 17:53:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:39 [DEBUG] Exit from do method +2022/02/22 17:53:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:39 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:39 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:39 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:39 [DEBUG] Begin Injection +2022/02/22 17:53:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:39 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:39 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:39 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[547] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00072dac0 547 [] false false map[] 0xc001f42100 0xc0005ea000} +2022/02/22 17:53:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d {"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"},{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 17:53:39 [DEBUG] Exit from do method +2022/02/22 17:53:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:39 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:39 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:39 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[74] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c02140 74 [] false false map[] 0xc001823100 0xc00081ce70} +2022/02/22 17:53:39 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"code":400,"message":"Bad Request: externalEpgRef cannot be duplicated."} +2022/02/22 17:53:39 [DEBUG] Exit from do method +2022/02/22 17:53:39 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 17:53:39 [ERROR] : eval: *terraform.EvalApplyPost, err: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 17:53:39 [ERROR] : eval: *terraform.EvalSequence, err: "Bad Request: externalEpgRef cannot be duplicated."{} +2022/02/22 17:53:39 [DEBUG] New state was assigned lineage "36ec20a6-5e3b-6965-2f01-f31ef883947e" +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:39 [DEBUG] Test: Executing step 5 +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test1 +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:53:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:39 [DEBUG] : Beginning Read +2022/02/22 17:53:39 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:39 [DEBUG] Begin Injection +2022/02/22 17:53:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:39 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:39 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:39 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test1 because it has no config +2022/02/22 17:53:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:39 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:39 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:39 [DEBUG] : Beginning Read +2022/02/22 17:53:39 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:39 [DEBUG] Begin Injection +2022/02/22 17:53:39 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a +2022/02/22 17:53:39 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c02500 86 [] false false map[] 0xc001823500 0xc0000c0000} +2022/02/22 17:53:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00002481fd068a {"code":141,"message":"Resource Not Found: Policy 6214d5c81b00002481fd068a not found"} +2022/02/22 17:53:39 [DEBUG] Exit from do method +2022/02/22 17:53:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:39 [DEBUG] Begin Injection +2022/02/22 17:53:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c02580 160 [] false false map[] 0xc00073ab00 0xc0005ea8f0} +2022/02/22 17:53:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:39 [DEBUG] Exit from do method +2022/02/22 17:53:39 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:39 [DEBUG] New state was assigned lineage "d2d4bc1b-1c0f-2154-3fc3-db0c4e8cda67" +2022/02/22 17:53:39 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:39 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001894580 356 [] false false map[] 0xc0013e4400 0xc0004aca50} +2022/02/22 17:53:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:39 [DEBUG] Exit from do method +2022/02/22 17:53:39 [DEBUG] 6214d5c81b00003f81fd068c: Read finished successfully +2022/02/22 17:53:39 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 17:53:39 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:53:39 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:39 [DEBUG] Begin Injection +2022/02/22 17:53:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:39 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:39 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:39 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:39 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:39 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:39 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.55.147" + id: "6214d5c81b00003e81fd068b" => "6214d5c81b00003e81fd068b" + name: "acctest_zovz4" => "acctest_zovz4" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_udabl" + template_name: "" => "acctest_ks7qc" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_h4hbi" + external_epg_name: "" => "acctest_h4hbi" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_ks7qc" + vrf_name: "" => "acctest_h4hbi" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_h4hbi" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_h4hbi" + schema_id: "" => "" + template: "" => "acctest_ks7qc" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003e81fd068b + provider = provider.mso + description = + name = acctest_zovz4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:53:39 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:39 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:39 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:39 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:39 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state)] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:53:39 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:39 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:53:39 [DEBUG] Schema: Beginning Creation +2022/02/22 17:53:39 HTTP request POST mso/api/v1/schemas +2022/02/22 17:53:39 [DEBUG] Begin Injection +2022/02/22 17:53:39 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:53:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:53:39 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:53:39 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Policy Update +2022/02/22 17:53:39 [DEBUG] mso_dhcp_relay_policy.test: apply errored, but we're indicating that via the Error pointer rather than returning it: expected any one of the epg or external_epg. +2022/02/22 17:53:39 [ERROR] : eval: *terraform.EvalApplyPost, err: expected any one of the epg or external_epg. +2022/02/22 17:53:39 [ERROR] : eval: *terraform.EvalSequence, err: expected any one of the epg or external_epg. +2022/02/22 17:53:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00004bf00 3980 [] false false map[] 0xc000826100 0xc0000c1d90} +2022/02/22 17:53:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:39 [DEBUG] Exit from do method +2022/02/22 17:53:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:39 [DEBUG] 6214d5c71d00000e574f9f15: Beginning Read +2022/02/22 17:53:39 HTTP request GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:39 [DEBUG] Begin Injection +2022/02/22 17:53:39 HTTP request after injection GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00182ac40 3980 [] false false map[] 0xc0013e4500 0xc0005ebe40} +2022/02/22 17:53:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:39 [DEBUG] Exit from do method +2022/02/22 17:53:39 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:39 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:39 [DEBUG] 6214d5c81d0000f9564f9f17: Beginning Read +2022/02/22 17:53:39 HTTP request GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:39 [DEBUG] Begin Injection +2022/02/22 17:53:39 HTTP request after injection GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 +2022/02/22 17:53:39 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a4100 86 [] false false map[] 0xc0013e4600 0xc002148370} +2022/02/22 17:53:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0688 {"code":141,"message":"Resource Not Found: Policy 6214d5c71b00004381fd0688 not found"} +2022/02/22 17:53:39 [DEBUG] Exit from do method +2022/02/22 17:53:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:39 [DEBUG] Begin Injection +2022/02/22 17:53:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:39 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:39 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2320] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c02b40 2320 [] false false map[] 0xc001f42500 0xc0005ea8f0} +2022/02/22 17:53:39 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2},{"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"},{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1}]} +2022/02/22 17:53:39 [DEBUG] Exit from do method +2022/02/22 17:53:39 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:39 [DEBUG] Begin Injection +2022/02/22 17:53:39 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:39 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000813440 1527 [] false false map[] 0xc001822200 0xc00081c000} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","anpRef":"","description":""},{"name":"acctest_6dx3n","displayName":"acctest_6dx3n","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 [DEBUG] 6214d5c71d00000e574f9f15: Read finished successfully +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:40 [DEBUG] acctest_hnt2i: Beginning Read +2022/02/22 17:53:40 HTTP request GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:53:40 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d5cb1d00000c574f9f1e] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a4200 400 [] false false map[] 0xc00017e600 0xc0021482c0} +2022/02/22 17:53:40 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d5cb1d00000c574f9f1e","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 [DEBUG] 6214d5cb1d00000c574f9f1e: Schema Creation finished successfully +2022/02/22 17:53:40 [DEBUG] 6214d5cb1d00000c574f9f1e: Beginning Read +2022/02/22 17:53:40 HTTP request GET mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:39 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000988c40 1147 [] false false map[] 0xc0002db000 0xc0005ebe40} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 {"id":"6214d5c81d0000f9564f9f17","displayName":"acctest_2c128","description":"","templates":[{"name":"acctest_92umt","displayName":"acctest_92umt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/externalEpgs/acctest_pav3t","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 [DEBUG] 6214d5c81d0000f9564f9f17: Read finished successfully +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:40 [DEBUG] acctest_pav3t: Beginning Read +2022/02/22 17:53:40 HTTP request GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b64080 356 [] false false map[] 0xc001822300 0xc0005ea8f0} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 [DEBUG] 6214d5c81b00003f81fd068c: Import finished successfully +2022/02/22 17:53:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:40 [DEBUG] New state was assigned lineage "8fe4c897-4d1a-94fe-7ba1-1e195487d472" +2022/02/22 17:53:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 +2022/02/22 17:53:40 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008a4680 86 [] false false map[] 0xc00017eb00 0xc00081c210} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004181fd0686 {"code":141,"message":"Resource Not Found: Policy 6214d5c71b00004181fd0686 not found"} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c037c0 1527 [] false false map[] 0xc0002db500 0xc00081c000} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","anpRef":"","description":""},{"name":"acctest_6dx3n","displayName":"acctest_6dx3n","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 currentvrfname acctest_hnt2i +2022/02/22 17:53:40 found correct vrfname +2022/02/22 17:53:40 [DEBUG] acctest_hnt2i: Read finished successfully +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 17:53:40 [DEBUG] /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i: Beginning Read +2022/02/22 17:53:40 HTTP request GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 [DEBUG] /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n: Beginning Read +2022/02/22 17:53:40 HTTP request GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b64080 400 [] false false map[] 0xc000826200 0xc0021482c0} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e {"id":"6214d5cb1d00000c574f9f1e","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 [DEBUG] 6214d5cb1d00000c574f9f1e: Read finished successfully +2022/02/22 17:53:40 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:53:40 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:53:40 HTTP request PATCH mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection PATCH mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001be4280 1147 [] false false map[] 0xc001822900 0xc0005ebe40} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 {"id":"6214d5c81d0000f9564f9f17","displayName":"acctest_2c128","description":"","templates":[{"name":"acctest_92umt","displayName":"acctest_92umt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/externalEpgs/acctest_pav3t","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 currentvrfname acctest_pav3t +2022/02/22 17:53:40 found correct vrfname +2022/02/22 17:53:40 [DEBUG] acctest_pav3t: Read finished successfully +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:40 [DEBUG] /schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/externalEpgs/acctest_pav3t: Beginning Read +2022/02/22 17:53:40 [DEBUG] /schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/externalEpgs/acctest_pav3t: Beginning Read +2022/02/22 17:53:40 HTTP request GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 HTTP request GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0015f8900 356 [] false false map[] 0xc0002db600 0xc0005ea8f0} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:40 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:40 [DEBUG] : Beginning Read +2022/02/22 17:53:40 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 +2022/02/22 17:53:40 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000988dc0 86 [] false false map[] 0xc000826300 0xc00081c210} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c71b00004381fd0687 {"code":141,"message":"Resource Not Found: Policy 6214d5c71b00004381fd0687 not found"} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00182b000 1527 [] false false map[] 0xc0022f6f00 0xc001394790} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","anpRef":"","description":""},{"name":"acctest_6dx3n","displayName":"acctest_6dx3n","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 [DEBUG] /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n: Read finished successfully +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051a0c0 1147 [] false false map[] 0xc00017ec00 0xc0005ebe40} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 {"id":"6214d5c81d0000f9564f9f17","displayName":"acctest_2c128","description":"","templates":[{"name":"acctest_92umt","displayName":"acctest_92umt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/externalEpgs/acctest_pav3t","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 [DEBUG] /schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/externalEpgs/acctest_pav3t: Read finished successfully +2022/02/22 17:53:40 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:40 [ERROR] : eval: *terraform.EvalDiff, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: 08863 +2022/02/22 17:53:40 [ERROR] : eval: *terraform.EvalSequence, err: expected dhcp_relay_policy_provider.0.dhcp_server_address to contain a valid IP, got: 08863 +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001bc2040 1527 [] false false map[] 0xc001f43300 0xc00081c000} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","anpRef":"","description":""},{"name":"acctest_6dx3n","displayName":"acctest_6dx3n","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 [DEBUG] /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i: Read finished successfully +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:40 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:40 [DEBUG] 6214d5ca1b00002481fd068d: Beginning Read +2022/02/22 17:53:40 id: 6214d5ca1b00002481fd068d +2022/02/22 17:53:40 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0022f6500 0xc0021482c0} +2022/02/22 17:53:40 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:40 [DEBUG] acctest_h4hbi: Creation finished successfully +2022/02/22 17:53:40 [DEBUG] acctest_h4hbi: Beginning Read +2022/02/22 17:53:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request GET mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 +2022/02/22 17:53:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051a640 1147 [] false false map[] 0xc0002da100 0xc0005ea8f0} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c81d0000f9564f9f17 {"id":"6214d5c81d0000f9564f9f17","displayName":"acctest_2c128","description":"","templates":[{"name":"acctest_92umt","displayName":"acctest_92umt","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_pav3t","displayName":"acctest_pav3t","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/vrfs/acctest_pav3t","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/externalEpgs/acctest_pav3t","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 [DEBUG] /schemas/6214d5c81d0000f9564f9f17/templates/acctest_92umt/externalEpgs/acctest_pav3t: Read finished successfully +2022/02/22 17:53:40 [DEBUG] New state was assigned lineage "0cee779f-81ff-b518-68db-b365578c8ad8" +2022/02/22 17:53:40 [DEBUG] Test: Executing step 6 +2022/02/22 17:53:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:40 [ERROR] : eval: *terraform.EvalValidateResource, err: Unsupported argument: An argument named "geswb" is not expected here. +2022/02/22 17:53:40 [ERROR] : eval: *terraform.EvalSequence, err: Unsupported argument: An argument named "geswb" is not expected here. +2022/02/22 17:53:40 [DEBUG] Test: Executing step 7 +2022/02/22 17:53:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:40 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:40 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:40 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:40 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:40 [DEBUG] : Beginning Read +2022/02/22 17:53:40 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:40 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001a6b9c0 3980 [] false false map[] 0xc001823200 0xc00081c210} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:40 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Read +2022/02/22 17:53:40 id: 6214d5c81b00003f81fd068c +2022/02/22 17:53:40 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:40 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 +2022/02/22 17:53:40 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001bc30c0 86 [] false false map[] 0xc0002dba00 0xc001394790} +2022/02/22 17:53:40 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003681fd0689 {"code":141,"message":"Resource Not Found: Policy 6214d5c81b00003681fd0689 not found"} +2022/02/22 17:53:40 [DEBUG] Exit from do method +2022/02/22 17:53:40 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:40 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:40 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:40 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:40 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:40 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:40 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:53:40 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:40 [DEBUG] : Beginning Read +2022/02/22 17:53:40 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:40 [DEBUG] Begin Injection +2022/02/22 17:53:40 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:40 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b651c0 768 [] false false map[] 0xc0022f6000 0xc00081c000} +2022/02/22 17:53:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e {"id":"6214d5cb1d00000c574f9f1e","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 currentvrfname acctest_h4hbi +2022/02/22 17:53:41 found correct vrfname +2022/02/22 17:53:41 [DEBUG] acctest_h4hbi: Read finished successfully +2022/02/22 17:53:41 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:41 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:53:41 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:53:41 HTTP request PATCH mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection PATCH mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[547] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:40 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00072c500 547 [] false false map[] 0xc0002da700 0xc0005ebe40} +2022/02/22 17:53:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d {"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"},{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 [DEBUG] 6214d5ca1b00002481fd068d: Read finished successfully +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [DEBUG] New state was assigned lineage "ee71df0c-e0f2-acab-fbc8-bfbfaa5c395a" +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test mso_schema_template_external_epg.test1] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [DEBUG] Test: Executing step 1 +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test1 because it has no config +2022/02/22 17:53:41 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:53:41 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:53:41 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] : Beginning Read +2022/02/22 17:53:41 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dcac0 3980 [] false false map[] 0xc001f42100 0xc0005ea8f0} +2022/02/22 17:53:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [DEBUG] New state was assigned lineage "932ec4f3-40ee-4549-6e9d-2de4320a6599" +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] Resource instance state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [WARN] Test: Step plan: DIFF: + +CREATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "" => "0" + id: "" => "" + name: "" => "acctest_31hds" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:41 [DEBUG] Resource state not found for node "mso_dhcp_relay_policy.test", instance mso_dhcp_relay_policy.test +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:41 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:53:41 [DEBUG] : Beginning Create +2022/02/22 17:53:41 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001738140 356 [] false false map[] 0xc001823400 0xc00081c210} +2022/02/22 17:53:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 [DEBUG] 6214d5c81b00003f81fd068c: Read finished successfully +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:41 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:53:41 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00072c0c0 3980 [] false false map[] 0xc0022f7e00 0xc001394790} +2022/02/22 17:53:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [DEBUG] New state was assigned lineage "5c88b952-7859-15af-5547-7882b0bf86cc" +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:41 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:41 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017ee00 0xc00081c000} +2022/02/22 17:53:41 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:41 [DEBUG] : Beginning Read +2022/02/22 17:53:41 HTTP request GET mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection GET mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00072d8c0 3980 [] false false map[] 0xc0002da400 0xc0005ebe40} +2022/02/22 17:53:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:41 [DEBUG] 6214d5c71d00000e574f9f15: Beginning Read +2022/02/22 17:53:41 HTTP request GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:41 [DEBUG] 6214d5ca1b00002481fd068d: Beginning Read +2022/02/22 17:53:41 id: 6214d5ca1b00002481fd068d +2022/02/22 17:53:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:41 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c03180 160 [] false false map[] 0xc001822e00 0xc00248b340} +2022/02/22 17:53:41 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d5cd1b00003e81fd068f","name":"acctest_31hds","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 [DEBUG] 6214d5cd1b00003e81fd068f: Creation finished successfully +2022/02/22 17:53:41 [DEBUG] 6214d5cd1b00003e81fd068f: Beginning Read +2022/02/22 17:53:41 id: 6214d5cd1b00003e81fd068f +2022/02/22 17:53:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2320] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051a2c0 2320 [] false false map[] 0xc002690500 0xc00081c210} +2022/02/22 17:53:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2},{"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"},{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1}]} +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051a680 1147 [] false false map[] 0xc002690000 0xc002148000} +2022/02/22 17:53:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e {"id":"6214d5cb1d00000c574f9f1e","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","extEpgType":"on-premise","vrfRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/vrfs/acctest_h4hbi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 [DEBUG] /schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi: Read finished successfully +2022/02/22 17:53:41 [DEBUG] New state was assigned lineage "43c8270c-e2f7-ebc5-9fa0-4f7bf3701f79" +2022/02/22 17:53:41 [DEBUG] Test: Executing step 6 +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:53:41 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:53:41 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] : Beginning Read +2022/02/22 17:53:41 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0018959c0 1527 [] false false map[] 0xc0013e4500 0xc0005ebe40} +2022/02/22 17:53:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","anpRef":"","description":""},{"name":"acctest_6dx3n","displayName":"acctest_6dx3n","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 [DEBUG] 6214d5c71d00000e574f9f15: Read finished successfully +2022/02/22 17:53:41 [DEBUG] acctest_hnt2i: Beginning Read +2022/02/22 17:53:41 HTTP request GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b28900 160 [] false false map[] 0xc00017e000 0xc00248b340} +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[547] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001c4cbc0 547 [] false false map[] 0xc002690900 0xc0005ea8f0} +2022/02/22 17:53:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f {"id":"6214d5cd1b00003e81fd068f","name":"acctest_31hds","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d {"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"},{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1} +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 [DEBUG] 6214d5cd1b00003e81fd068f: Read finished successfully +2022/02/22 17:53:41 [DEBUG] 6214d5ca1b00002481fd068d: Read finished successfully +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [DEBUG] New state was assigned lineage "10bb899f-85be-bf14-f279-65bf5ff2701d" +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] : Beginning Read +2022/02/22 17:53:41 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:41 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:41 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001bc33c0 356 [] false false map[] 0xc0022f6000 0xc00081c210} +2022/02/22 17:53:41 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:41 [DEBUG] Exit from do method +2022/02/22 17:53:41 [DEBUG] 6214d5c81b00003f81fd068c: Import finished successfully +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [DEBUG] New state was assigned lineage "43011809-62d5-9741-0d46-b57750f85fb1" +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [DEBUG] Test: Executing step 4 +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:41 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:41 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:41 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:41 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:41 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:41 [DEBUG] : Beginning Read +2022/02/22 17:53:41 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:41 [DEBUG] Begin Injection +2022/02/22 17:53:41 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:41 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:41 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001ddc00 1527 [] false false map[] 0xc0002db600 0xc0005ebe40} +2022/02/22 17:53:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","anpRef":"","description":""},{"name":"acctest_6dx3n","displayName":"acctest_6dx3n","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:53:42 [DEBUG] Exit from do method +2022/02/22 17:53:42 currentvrfname acctest_hnt2i +2022/02/22 17:53:42 found correct vrfname +2022/02/22 17:53:42 [DEBUG] acctest_hnt2i: Read finished successfully +2022/02/22 17:53:42 [DEBUG] /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n: Beginning Read +2022/02/22 17:53:42 [DEBUG] /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i: Beginning Read +2022/02/22 17:53:42 HTTP request GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:42 HTTP request GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection GET mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c02180 3980 [] false false map[] 0xc002690100 0xc002148000} +2022/02/22 17:53:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:42 [DEBUG] Exit from do method +2022/02/22 17:53:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:42 [DEBUG] 6214d5cb1d00000c574f9f1e: Beginning Read +2022/02/22 17:53:42 HTTP request GET mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection GET mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:42 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:42 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fb2c0 3980 [] false false map[] 0xc001f42800 0xc0005ea8f0} +2022/02/22 17:53:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:42 [DEBUG] Exit from do method +2022/02/22 17:53:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:42 [DEBUG] 6214d5cd1b00003e81fd068f: Beginning Read +2022/02/22 17:53:42 id: 6214d5cd1b00003e81fd068f +2022/02/22 17:53:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000813180 3980 [] false false map[] 0xc001f43200 0xc00081c210} +2022/02/22 17:53:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:42 [DEBUG] Exit from do method +2022/02/22 17:53:42 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:42 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:42 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:42 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:42 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:42 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Read +2022/02/22 17:53:42 id: 6214d5c81b00003f81fd068c +2022/02/22 17:53:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0004d6040 1527 [] false false map[] 0xc001f43700 0xc0005ebe40} +2022/02/22 17:53:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","anpRef":"","description":""},{"name":"acctest_6dx3n","displayName":"acctest_6dx3n","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:53:42 [DEBUG] Exit from do method +2022/02/22 17:53:42 [DEBUG] /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n: Read finished successfully +2022/02/22 17:53:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1527] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001bc2d80 1527 [] false false map[] 0xc002690600 0xc00248b340} +2022/02/22 17:53:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 {"id":"6214d5c71d00000e574f9f15","displayName":"acctest_wco6j","description":"","templates":[{"name":"acctest_7zsng","displayName":"acctest_7zsng","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_hnt2i","displayName":"acctest_hnt2i","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i","anpRef":"","description":""},{"name":"acctest_6dx3n","displayName":"acctest_6dx3n","extEpgType":"on-premise","vrfRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/vrfs/acctest_hnt2i","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":4}],"_updateVersion":0} +2022/02/22 17:53:42 [DEBUG] Exit from do method +2022/02/22 17:53:42 [DEBUG] /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i: Read finished successfully +2022/02/22 17:53:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:42 [DEBUG] New state was assigned lineage "4478bf12-b934-15e9-28e4-fa8d4b3dac4f" +2022/02/22 17:53:42 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test (orphan) +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:42 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:42 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "2" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.55.147" => "1.2.55.147" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + dhcp_relay_policy_provider.1.dhcp_server_address: "1.2.55.147" => "" + dhcp_relay_policy_provider.1.epg: "" => "" + dhcp_relay_policy_provider.1.external_epg: "/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n" => "" + dhcp_relay_policy_provider.1.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214d5ca1b00002481fd068d" => "6214d5ca1b00002481fd068d" + name: "acctest_k02m9" => "acctest_k02m9" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d5c71d00000e574f9f15" => "" + name: "acctest_wco6j" => "" + template_name: "acctest_7zsng" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_hnt2i" => "" + external_epg_name: "acctest_hnt2i" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d5c71d00000e574f9f15" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_7zsng" => "" + vrf_name: "acctest_hnt2i" => "" + vrf_schema_id: "6214d5c71d00000e574f9f15" => "" + vrf_template_name: "acctest_7zsng" => "" +DESTROY: mso_schema_template_external_epg.test1 + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_6dx3n" => "" + external_epg_name: "acctest_6dx3n" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d5c71d00000e574f9f15" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_7zsng" => "" + vrf_name: "acctest_hnt2i" => "" + vrf_schema_id: "6214d5c71d00000e574f9f15" => "" + vrf_template_name: "acctest_7zsng" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_hnt2i" => "" + id: "acctest_hnt2i" => "" + layer3_multicast: "false" => "" + name: "acctest_hnt2i" => "" + schema_id: "6214d5c71d00000e574f9f15" => "" + template: "acctest_7zsng" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5ca1b00002481fd068d + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 2 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.55.147 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + dhcp_relay_policy_provider.1.dhcp_server_address = 1.2.55.147 + dhcp_relay_policy_provider.1.epg = + dhcp_relay_policy_provider.1.external_epg = /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n + dhcp_relay_policy_provider.1.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_k02m9 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test + mso_schema_template_external_epg.test1 +mso_schema.test: + ID = 6214d5c71d00000e574f9f15 + provider = provider.mso + name = acctest_wco6j + template_name = acctest_7zsng + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_hnt2i + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_hnt2i + external_epg_name = acctest_hnt2i + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d5c71d00000e574f9f15 + selector_ip = + selector_name = + template_name = acctest_7zsng + vrf_name = acctest_hnt2i + vrf_schema_id = 6214d5c71d00000e574f9f15 + vrf_template_name = acctest_7zsng + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_external_epg.test1: + ID = /schemas/6214d5c71d00000e574f9f15/templates/acctest_7zsng/externalEpgs/acctest_6dx3n + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_6dx3n + external_epg_name = acctest_6dx3n + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d5c71d00000e574f9f15 + selector_ip = + selector_name = + template_name = acctest_7zsng + vrf_name = acctest_hnt2i + vrf_schema_id = 6214d5c71d00000e574f9f15 + vrf_template_name = acctest_7zsng + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_hnt2i + provider = provider.mso + display_name = acctest_hnt2i + layer3_multicast = false + name = acctest_hnt2i + schema_id = 6214d5c71d00000e574f9f15 + template = acctest_7zsng + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:53:42 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (clean up state) +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (destroy)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (clean up state)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:53:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test1 (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test1 (destroy)" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:42 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:42 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:53:42 [DEBUG] mso_schema_template_external_epg.test1: applying the planned Delete change +2022/02/22 17:53:42 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:53:42 HTTP request PATCH mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection PATCH mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:53:42 HTTP request PATCH mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection PATCH mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:53:42 [DEBUG] 6214d5ca1b00002481fd068d: Beginning Policy Update +2022/02/22 17:53:42 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002c35fc0 1147 [] false false map[] 0xc0013e4600 0xc002148000} +2022/02/22 17:53:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e {"id":"6214d5cb1d00000c574f9f1e","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","extEpgType":"on-premise","vrfRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/vrfs/acctest_h4hbi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:42 [DEBUG] Exit from do method +2022/02/22 17:53:42 [DEBUG] 6214d5cb1d00000c574f9f1e: Read finished successfully +2022/02/22 17:53:42 [DEBUG] acctest_h4hbi: Beginning Read +2022/02/22 17:53:42 HTTP request GET mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection GET mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002e6da00 160 [] false false map[] 0xc00017ea00 0xc0005ea8f0} +2022/02/22 17:53:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:42 [DEBUG] Exit from do method +2022/02/22 17:53:42 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001de7040 160 [] false false map[] 0xc0013e4900 0xc00081c210} +2022/02/22 17:53:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f {"id":"6214d5cd1b00003e81fd068f","name":"acctest_31hds","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:42 [DEBUG] Exit from do method +2022/02/22 17:53:42 [DEBUG] 6214d5cd1b00003e81fd068f: Read finished successfully +2022/02/22 17:53:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:42 [DEBUG] New state was assigned lineage "d34cbde4-9ea6-19e8-7a33-420d3f087a4f" +2022/02/22 17:53:42 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:42 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:42 [WARN] Test: Executing destroy step +2022/02/22 17:53:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:42 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:42 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:42 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:42 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:42 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:42 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:42 [DEBUG] : Beginning Read +2022/02/22 17:53:42 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b284c0 356 [] false false map[] 0xc00017f500 0xc0005ebe40} +2022/02/22 17:53:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:42 [DEBUG] Exit from do method +2022/02/22 17:53:42 [DEBUG] 6214d5c81b00003f81fd068c: Read finished successfully +2022/02/22 17:53:42 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:42 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:53:42 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001736500 0xc00248b340} +2022/02/22 17:53:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc002690f00 0xc002148000} +2022/02/22 17:53:42 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:53:42 [DEBUG] acctest_hnt2i: Beginning Destroy +2022/02/22 17:53:42 HTTP request PATCH mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection PATCH mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:42 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001be5800 356 [] false false map[] 0xc002690400 0xc0005ea8f0} +2022/02/22 17:53:42 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d {"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:42 [DEBUG] Exit from do method +2022/02/22 17:53:42 [DEBUG] Policy Update finished successfully: 6214d5ca1b00002481fd068d +2022/02/22 17:53:42 [DEBUG] 6214d5ca1b00002481fd068d: Beginning Read +2022/02/22 17:53:42 id: 6214d5ca1b00002481fd068d +2022/02/22 17:53:42 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:42 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:42 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b293c0 1147 [] false false map[] 0xc002690b00 0xc00081c210} +2022/02/22 17:53:42 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e {"id":"6214d5cb1d00000c574f9f1e","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","extEpgType":"on-premise","vrfRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/vrfs/acctest_h4hbi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:42 [DEBUG] Exit from do method +2022/02/22 17:53:42 currentvrfname acctest_h4hbi +2022/02/22 17:53:42 found correct vrfname +2022/02/22 17:53:42 [DEBUG] acctest_h4hbi: Read finished successfully +2022/02/22 17:53:42 [DEBUG] /schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi: Beginning Read +2022/02/22 17:53:42 HTTP request GET mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:42 [DEBUG] Begin Injection +2022/02/22 17:53:42 HTTP request after injection GET mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:42 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002e6ca00 3980 [] false false map[] 0xc0002da700 0xc0005ebe40} +2022/02/22 17:53:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:43 [DEBUG] Exit from do method +2022/02/22 17:53:43 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:43 [DEBUG] 6214d5cd1b00003e81fd068f: Beginning Read +2022/02/22 17:53:43 id: 6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[2290] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:42 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002e6d180 2290 [] false false map[] 0xc001f42700 0xc00248b340} +2022/02/22 17:53:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1},{"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2},{"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2},{"id":"6214d5cd1b00003e81fd068f","name":"acctest_31hds","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1}]} +2022/02/22 17:53:43 [DEBUG] Exit from do method +2022/02/22 17:53:43 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002c34280 356 [] false false map[] 0xc0002daf00 0xc0005ea8f0} +2022/02/22 17:53:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d {"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:43 [DEBUG] Exit from do method +2022/02/22 17:53:43 [DEBUG] 6214d5ca1b00002481fd068d: Read finished successfully +2022/02/22 17:53:43 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0002dad00 0xc002148000} +2022/02/22 17:53:43 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15?validate=false +2022/02/22 17:53:43 [DEBUG] acctest_hnt2i: Destroy finished successfully +2022/02/22 17:53:43 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 17:53:43 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:53:43 [DEBUG] 6214d5c71d00000e574f9f15: Beginning Destroy +2022/02/22 17:53:43 HTTP request DELETE mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection DELETE mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002c34480 1147 [] false false map[] 0xc0022f6900 0xc00081c210} +2022/02/22 17:53:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e {"id":"6214d5cb1d00000c574f9f1e","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","extEpgType":"on-premise","vrfRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/vrfs/acctest_h4hbi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:43 [DEBUG] Exit from do method +2022/02/22 17:53:43 [DEBUG] /schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi: Read finished successfully +2022/02/22 17:53:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:43 [DEBUG] New state was assigned lineage "157936f6-2b98-be38-0c7f-ca87423b4bf7" +2022/02/22 17:53:43 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:53:43 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:43 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "" => "1.2.55.147" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + id: "6214d5c81b00003e81fd068b" => "6214d5c81b00003e81fd068b" + name: "acctest_zovz4" => "acctest_zovz4" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d5cb1d00000c574f9f1e" => "" + name: "acctest_udabl" => "" + template_name: "acctest_ks7qc" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_h4hbi" => "" + external_epg_name: "acctest_h4hbi" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d5cb1d00000c574f9f1e" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_ks7qc" => "" + vrf_name: "acctest_h4hbi" => "" + vrf_schema_id: "6214d5cb1d00000c574f9f1e" => "" + vrf_template_name: "acctest_ks7qc" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_h4hbi" => "" + id: "acctest_h4hbi" => "" + layer3_multicast: "false" => "" + name: "acctest_h4hbi" => "" + schema_id: "6214d5cb1d00000c574f9f1e" => "" + template: "acctest_ks7qc" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003e81fd068b + provider = provider.mso + description = + name = acctest_zovz4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema.test: + ID = 6214d5cb1d00000c574f9f1e + provider = provider.mso + name = acctest_udabl + template_name = acctest_ks7qc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d5cb1d00000c574f9f1e/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_h4hbi + external_epg_name = acctest_h4hbi + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d5cb1d00000c574f9f1e + selector_ip = + selector_name = + template_name = acctest_ks7qc + vrf_name = acctest_h4hbi + vrf_schema_id = 6214d5cb1d00000c574f9f1e + vrf_template_name = acctest_ks7qc + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_h4hbi + provider = provider.mso + display_name = acctest_h4hbi + layer3_multicast = false + name = acctest_h4hbi + schema_id = 6214d5cb1d00000c574f9f1e + template = acctest_ks7qc + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:53:43 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:53:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test (destroy) +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:53:43 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:43 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:53:43 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:53:43 HTTP request PATCH mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection PATCH mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:43 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:53:43 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Policy Update +2022/02/22 17:53:43 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001de6b80 160 [] false false map[] 0xc0022f7000 0xc0021482c0} +2022/02/22 17:53:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f {"id":"6214d5cd1b00003e81fd068f","name":"acctest_31hds","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:43 [DEBUG] Exit from do method +2022/02/22 17:53:43 [DEBUG] 6214d5cd1b00003e81fd068f: Read finished successfully +2022/02/22 17:53:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:43 [DEBUG] New state was assigned lineage "f0d2d2c2-176d-5130-9ead-7f1b8a645ee6" +2022/02/22 17:53:43 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:43 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:43 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d5cd1b00003e81fd068f" => "" + name: "acctest_31hds" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5cd1b00003e81fd068f + provider = provider.mso + description = + name = acctest_31hds + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:53:43 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (destroy) +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:43 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:43 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:53:43 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:53:43 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:53:43 [DEBUG] 6214d5cd1b00003e81fd068f: Beginning Read +2022/02/22 17:53:43 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b29880 356 [] false false map[] 0xc0022f7100 0xc00248b340} +2022/02/22 17:53:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:43 [DEBUG] Exit from do method +2022/02/22 17:53:43 [DEBUG] 6214d5c81b00003f81fd068c: Import finished successfully +2022/02/22 17:53:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:43 [DEBUG] New state was assigned lineage "b94bde87-d564-aeea-4397-757a55b40fce" +2022/02/22 17:53:43 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:43 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:43 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:43 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:43 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:43 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:43 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_4vyf4" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.55.147" => "1.2.55.147" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214d5c81b00003f81fd068c" => "6214d5c81b00003f81fd068c" + name: "acctest_4vyf4" => "acctest_4vyf4" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_h1c40" + template_name: "" => "acctest_ooz3r" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_sfiom" + external_epg_name: "" => "acctest_sfiom" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_ooz3r" + vrf_name: "" => "acctest_sfiom" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_sfiom" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_sfiom" + schema_id: "" => "" + template: "" => "acctest_ooz3r" + vzany: "" => "" + + + +STATE: + +data.mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003f81fd068c + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.55.147 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_4vyf4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + mso_dhcp_relay_policy.test +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003f81fd068c + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.55.147 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_4vyf4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:53:43 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:43 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:43 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:43 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state)] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test mso_schema_template_vrf.test (prepare state) mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:53:43 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:43 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:53:43 [DEBUG] Schema: Beginning Creation +2022/02/22 17:53:43 HTTP request POST mso/api/v1/schemas +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:53:43 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0022f7800 0xc001a4a2c0} +2022/02/22 17:53:43 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5c71d00000e574f9f15 +2022/02/22 17:53:43 [DEBUG] 6214d5c71d00000e574f9f15: Destroy finished successfully +2022/02/22 17:53:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:43 [DEBUG] New state was assigned lineage "d3df3cbb-f453-eea5-bf38-20c32cc97fde" +2022/02/22 17:53:43 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:43 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001de7280 356 [] false false map[] 0xc0013e5200 0xc002148210} +2022/02/22 17:53:43 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:43 [DEBUG] Exit from do method +2022/02/22 17:53:43 [DEBUG] Policy Update finished successfully: 6214d5c81b00003e81fd068b +2022/02/22 17:53:43 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:43 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:43 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:43 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001736500 0xc00081c210} +2022/02/22 17:53:43 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:43 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:53:43 [DEBUG] acctest_h4hbi: Beginning Destroy +2022/02/22 17:53:43 HTTP request PATCH mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection PATCH mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:43 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc002691e00 0xc002e6e210} +2022/02/22 17:53:43 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 [DEBUG] : Read finished successfully +2022/02/22 17:53:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:43 [DEBUG] New state was assigned lineage "e8da8ce5-e606-b2fe-0d54-ead9254269c3" +2022/02/22 17:53:43 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001f4d680 356 [] false false map[] 0xc001f42e00 0xc0000c0630} +2022/02/22 17:53:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d {"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:43 [DEBUG] Exit from do method +2022/02/22 17:53:43 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:43 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:43 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:43 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:43 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:43 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:43 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:43 [DEBUG] : Beginning Read +2022/02/22 17:53:43 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:43 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:53:43 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d5cf1d0000f9564f9f26] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012ec0c0 400 [] false false map[] 0xc001f42c00 0xc00248b340} +2022/02/22 17:53:43 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d5cf1d0000f9564f9f26","displayName":"acctest_h1c40","description":"","templates":[{"name":"acctest_ooz3r","displayName":"acctest_ooz3r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:53:43 [DEBUG] Exit from do method +2022/02/22 17:53:43 [DEBUG] 6214d5cf1d0000f9564f9f26: Schema Creation finished successfully +2022/02/22 17:53:43 [DEBUG] 6214d5cf1d0000f9564f9f26: Beginning Read +2022/02/22 17:53:43 HTTP request GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:43 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:43 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012ec180 356 [] false false map[] 0xc001737900 0xc002148210} +2022/02/22 17:53:43 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:43 [DEBUG] Exit from do method +2022/02/22 17:53:43 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:43 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") + - .dhcp_relay_policy_provider[0].tenant_id: was null, but now cty.StringVal("620cf5ad1d0000ab504f9a3d") +2022/02/22 17:53:43 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:43 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0002dae00 0xc0000c0840} +2022/02/22 17:53:43 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e?validate=false +2022/02/22 17:53:43 [DEBUG] acctest_h4hbi: Destroy finished successfully +2022/02/22 17:53:43 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:53:43 [DEBUG] 6214d5cb1d00000c574f9f1e: Beginning Destroy +2022/02/22 17:53:43 HTTP request DELETE mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:43 [DEBUG] Begin Injection +2022/02/22 17:53:43 HTTP request after injection DELETE mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:43 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f +2022/02/22 17:53:44 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:43 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002e6de80 86 [] false false map[] 0xc001f43000 0xc002e6e210} +2022/02/22 17:53:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5cd1b00003e81fd068f {"code":141,"message":"Resource Not Found: Policy 6214d5cd1b00003e81fd068f not found"} +2022/02/22 17:53:44 [DEBUG] Exit from do method +2022/02/22 17:53:44 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:44 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:44 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:44 [DEBUG] : Beginning Read +2022/02/22 17:53:44 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:44 [DEBUG] Begin Injection +2022/02/22 17:53:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001be4080 400 [] false false map[] 0xc00017f000 0xc00248b340} +2022/02/22 17:53:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 {"id":"6214d5cf1d0000f9564f9f26","displayName":"acctest_h1c40","description":"","templates":[{"name":"acctest_ooz3r","displayName":"acctest_ooz3r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:53:44 [DEBUG] Exit from do method +2022/02/22 17:53:44 [DEBUG] 6214d5cf1d0000f9564f9f26: Read finished successfully +2022/02/22 17:53:44 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:53:44 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:53:44 HTTP request PATCH mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:44 [DEBUG] Begin Injection +2022/02/22 17:53:44 HTTP request after injection PATCH mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001be5540 3980 [] false false map[] 0xc001f43800 0xc0000c0630} +2022/02/22 17:53:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:44 [DEBUG] Exit from do method +2022/02/22 17:53:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:44 [DEBUG] 6214d5ca1b00002481fd068d: Beginning Read +2022/02/22 17:53:44 id: 6214d5ca1b00002481fd068d +2022/02/22 17:53:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:44 [DEBUG] Begin Injection +2022/02/22 17:53:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:44 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0013e4c00 0xc002148210} +2022/02/22 17:53:44 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5cb1d00000c574f9f1e +2022/02/22 17:53:44 [DEBUG] 6214d5cb1d00000c574f9f1e: Destroy finished successfully +2022/02/22 17:53:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:44 [DEBUG] New state was assigned lineage "1e468c23-3b58-7b5e-a925-6e8615332e42" +2022/02/22 17:53:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:44 [DEBUG] Begin Injection +2022/02/22 17:53:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002c34040 3980 [] false false map[] 0xc001f43e00 0xc002e6e210} +2022/02/22 17:53:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:44 [DEBUG] Exit from do method +2022/02/22 17:53:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:44 [DEBUG] New state was assigned lineage "3065f22e-ffdd-2d50-45ac-777bae382f3a" +2022/02/22 17:53:44 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:44 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:44 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:44 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc001737100 0xc00248b340} +2022/02/22 17:53:44 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:44 [DEBUG] acctest_sfiom: Creation finished successfully +2022/02/22 17:53:44 [DEBUG] acctest_sfiom: Beginning Read +2022/02/22 17:53:44 HTTP request GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:44 [DEBUG] Begin Injection +2022/02/22 17:53:44 HTTP request after injection GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002c34700 356 [] false false map[] 0xc001737500 0xc0000c0630} +2022/02/22 17:53:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d {"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:44 [DEBUG] Exit from do method +2022/02/22 17:53:44 [DEBUG] 6214d5ca1b00002481fd068d: Read finished successfully +2022/02/22 17:53:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:44 [DEBUG] New state was assigned lineage "aa361535-4ab5-c6a8-7602-151a45b519f7" +2022/02/22 17:53:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:44 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:44 [WARN] Test: Executing destroy step +2022/02/22 17:53:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:44 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:44 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:44 [DEBUG] : Beginning Read +2022/02/22 17:53:44 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:44 [DEBUG] Begin Injection +2022/02/22 17:53:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001bc3740 356 [] false false map[] 0xc001737600 0xc002148210} +2022/02/22 17:53:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:44 [DEBUG] Exit from do method +2022/02/22 17:53:44 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:44 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:44 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:44 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:44 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:44 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:44 [DEBUG] : Beginning Read +2022/02/22 17:53:44 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:44 [DEBUG] Begin Injection +2022/02/22 17:53:44 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002c34c40 768 [] false false map[] 0xc002690200 0xc002e6e210} +2022/02/22 17:53:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 {"id":"6214d5cf1d0000f9564f9f26","displayName":"acctest_h1c40","description":"","templates":[{"name":"acctest_ooz3r","displayName":"acctest_ooz3r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:53:44 [DEBUG] Exit from do method +2022/02/22 17:53:44 currentvrfname acctest_sfiom +2022/02/22 17:53:44 found correct vrfname +2022/02/22 17:53:44 [DEBUG] acctest_sfiom: Read finished successfully +2022/02/22 17:53:44 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:44 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:53:44 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:53:44 HTTP request PATCH mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:44 [DEBUG] Begin Injection +2022/02/22 17:53:44 HTTP request after injection PATCH mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c02040 3980 [] false false map[] 0xc00017f100 0xc0000c0630} +2022/02/22 17:53:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:44 [DEBUG] Exit from do method +2022/02/22 17:53:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:44 [DEBUG] 6214d5ca1b00002481fd068d: Beginning Read +2022/02/22 17:53:44 id: 6214d5ca1b00002481fd068d +2022/02/22 17:53:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:44 [DEBUG] Begin Injection +2022/02/22 17:53:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:44 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:44 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001be4a40 3980 [] false false map[] 0xc0013e5a00 0xc002148210} +2022/02/22 17:53:44 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:44 [DEBUG] Exit from do method +2022/02/22 17:53:44 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:44 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:44 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:44 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:44 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:44 [DEBUG] Begin Injection +2022/02/22 17:53:44 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:44 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:45 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:44 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc0013e5f00 0xc002e6e210} +2022/02/22 17:53:45 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:45 [DEBUG] : Beginning Read +2022/02/22 17:53:45 HTTP request GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:45 [DEBUG] Begin Injection +2022/02/22 17:53:45 HTTP request after injection GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012ec2c0 356 [] false false map[] 0xc002690100 0xc0000c0630} +2022/02/22 17:53:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d {"id":"6214d5ca1b00002481fd068d","name":"acctest_k02m9","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:45 [DEBUG] Exit from do method +2022/02/22 17:53:45 [DEBUG] 6214d5ca1b00002481fd068d: Read finished successfully +2022/02/22 17:53:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:45 [DEBUG] New state was assigned lineage "ae7acb76-8bf2-3dfa-09d0-9cf46ec3f6b1" +2022/02/22 17:53:45 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:45 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:45 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.55.147" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214d5ca1b00002481fd068d" => "" + name: "acctest_k02m9" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5ca1b00002481fd068d + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.55.147 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_k02m9 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:53:45 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:45 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:45 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:53:45 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:53:45 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:53:45 [DEBUG] 6214d5ca1b00002481fd068d: Beginning Read +2022/02/22 17:53:45 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:45 [DEBUG] Begin Injection +2022/02/22 17:53:45 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00051bc00 356 [] false false map[] 0xc002690a00 0xc002148210} +2022/02/22 17:53:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:45 [DEBUG] Exit from do method +2022/02/22 17:53:45 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:45 [DEBUG] New state was assigned lineage "80d468c5-aaf3-db2d-0914-93eb1f6d911a" +2022/02/22 17:53:45 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:45 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:45 [DEBUG] Test: Executing step 7 +2022/02/22 17:53:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:45 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:45 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:45 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:45 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:45 [DEBUG] : Beginning Read +2022/02/22 17:53:45 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:45 [DEBUG] Begin Injection +2022/02/22 17:53:45 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001c4c580 1147 [] false false map[] 0xc0002da000 0xc002e6e210} +2022/02/22 17:53:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 {"id":"6214d5cf1d0000f9564f9f26","displayName":"acctest_h1c40","description":"","templates":[{"name":"acctest_ooz3r","displayName":"acctest_ooz3r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","extEpgType":"on-premise","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:45 [DEBUG] Exit from do method +2022/02/22 17:53:45 [DEBUG] /schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom: Read finished successfully +2022/02/22 17:53:45 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:53:45 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Policy Update +2022/02/22 17:53:45 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:45 [DEBUG] Begin Injection +2022/02/22 17:53:45 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:45 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:45 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc0002dbc00 0xc0000c0630} +2022/02/22 17:53:45 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:45 [DEBUG] : Read finished successfully +2022/02/22 17:53:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:45 [DEBUG] New state was assigned lineage "a6690966-db8f-0b00-b803-2a86e59bd486" +2022/02/22 17:53:45 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:45 [DEBUG] Begin Injection +2022/02/22 17:53:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002e6c640 3980 [] false false map[] 0xc00017fb00 0xc002148210} +2022/02/22 17:53:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:45 [DEBUG] Exit from do method +2022/02/22 17:53:45 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:45 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:45 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:45 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:45 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:45 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:45 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:45 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:45 [DEBUG] Begin Injection +2022/02/22 17:53:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:45 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002e6cd40 360 [] false false map[] 0xc002691300 0xc002e6e210} +2022/02/22 17:53:45 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:53:45 [DEBUG] Exit from do method +2022/02/22 17:53:45 [DEBUG] Policy Update finished successfully: 6214d5c81b00003f81fd068c +2022/02/22 17:53:45 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Read +2022/02/22 17:53:45 id: 6214d5c81b00003f81fd068c +2022/02/22 17:53:45 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:45 [DEBUG] Begin Injection +2022/02/22 17:53:45 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d +2022/02/22 17:53:45 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:45 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001894c80 86 [] false false map[] 0xc00295e600 0xc0000c0630} +2022/02/22 17:53:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5ca1b00002481fd068d {"code":141,"message":"Resource Not Found: Policy 6214d5ca1b00002481fd068d not found"} +2022/02/22 17:53:45 [DEBUG] Exit from do method +2022/02/22 17:53:45 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:45 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:45 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:45 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:45 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:45 [DEBUG] : Beginning Read +2022/02/22 17:53:45 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:45 [DEBUG] Begin Injection +2022/02/22 17:53:45 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:45 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:45 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[356] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001895e00 356 [] false false map[] 0xc00017f000 0xc002148210} +2022/02/22 17:53:45 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2} +2022/02/22 17:53:45 [DEBUG] Exit from do method +2022/02/22 17:53:45 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:45 [DEBUG] New state was assigned lineage "98b8d617-3f7a-c3a8-e721-d5ad77becb62" +2022/02/22 17:53:45 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:45 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:45 [DEBUG] Resource instance state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:45 [DEBUG] Resource instance state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:45 [DEBUG] Resource instance state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:45 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:45 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:45 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.55.147" => "1.2.55.147" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214d5c81b00003e81fd068b" => "6214d5c81b00003e81fd068b" + name: "acctest_zovz4" => "acctest_zovz4" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema.test + id: "" => "" + name: "" => "acctest_udabl" + template_name: "" => "acctest_ks7qc" + tenant_id: "" => "620cf5ad1d0000ab504f9a3d" +CREATE: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "" => "acctest_h4hbi" + external_epg_name: "" => "acctest_h4hbi" + external_epg_type: "" => "" + id: "" => "" + include_in_preferred_group: "" => "false" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "" => "" + selector_ip: "" => "" + selector_name: "" => "" + template_name: "" => "acctest_ks7qc" + vrf_name: "" => "acctest_h4hbi" + vrf_schema_id: "" => "" + vrf_template_name: "" => "" +CREATE: mso_schema_template_vrf.test + display_name: "" => "acctest_h4hbi" + id: "" => "" + layer3_multicast: "" => "" + name: "" => "acctest_h4hbi" + schema_id: "" => "" + template: "" => "acctest_ks7qc" + vzany: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003e81fd068b + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.55.147 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_zovz4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:53:45 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:45 [DEBUG] Resource state not found for node "mso_schema.test", instance mso_schema.test +2022/02/22 17:53:45 [DEBUG] Resource state not found for node "mso_schema_template_vrf.test", instance mso_schema_template_vrf.test +2022/02/22 17:53:45 [DEBUG] Resource state not found for node "mso_schema_template_external_epg.test", instance mso_schema_template_external_epg.test +2022/02/22 17:53:45 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (prepare state) +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_schema.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema.test (prepare state)" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (prepare state)" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state) mso_schema_template_external_epg.test (prepare state) mso_schema_template_external_epg.test mso_schema_template_external_epg.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (prepare state)" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test] +2022/02/22 17:53:45 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema.test (prepare state) mso_schema.test mso_schema.test mso_schema_template_vrf.test (prepare state) mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:45 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:45 [DEBUG] mso_schema.test: applying the planned Create change +2022/02/22 17:53:45 [DEBUG] Schema: Beginning Creation +2022/02/22 17:53:45 HTTP request POST mso/api/v1/schemas +2022/02/22 17:53:45 [DEBUG] Begin Injection +2022/02/22 17:53:45 HTTP request after injection POST mso/api/v1/schemas +2022/02/22 17:53:45 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:53:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:45 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b65580 360 [] false false map[] 0xc00295e700 0xc002e6e210} +2022/02/22 17:53:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:53:46 [DEBUG] Exit from do method +2022/02/22 17:53:46 [DEBUG] 6214d5c81b00003f81fd068c: Read finished successfully +2022/02/22 17:53:46 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 17:53:46 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:53:46 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:46 [DEBUG] Begin Injection +2022/02/22 17:53:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fa4c0 3980 [] false false map[] 0xc0002daf00 0xc0000c0630} +2022/02/22 17:53:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:46 [DEBUG] Exit from do method +2022/02/22 17:53:46 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:46 [DEBUG] New state was assigned lineage "ccbc0041-d421-b5d9-c807-a243b96b3ae8" +2022/02/22 17:53:46 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:46 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:46 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:46 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:46 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:46 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1972] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c02600 1972 [] false false map[] 0xc00017ed00 0xc002e6e210} +2022/02/22 17:53:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":2},{"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3}]} +2022/02/22 17:53:46 [DEBUG] Exit from do method +2022/02/22 17:53:46 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:46 [DEBUG] Begin Injection +2022/02/22 17:53:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:46 +HTTP Request: POST https://173.36.219.31/mso/api/v1/schemas +2022/02/22 17:53:46 nHTTP Response: 201 201 Created &{201 Created 201 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Location:[/api/v1/schemas/6214d5d21d00000c574f9f2b] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b294c0 400 [] false false map[] 0xc001204400 0xc002148210} +2022/02/22 17:53:46 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/schemas {"id":"6214d5d21d00000c574f9f2b","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:53:46 [DEBUG] Exit from do method +2022/02/22 17:53:46 [DEBUG] 6214d5d21d00000c574f9f2b: Schema Creation finished successfully +2022/02/22 17:53:46 [DEBUG] 6214d5d21d00000c574f9f2b: Beginning Read +2022/02/22 17:53:46 HTTP request GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:46 [DEBUG] Begin Injection +2022/02/22 17:53:46 HTTP request after injection GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000b29780 360 [] false false map[] 0xc00017ee00 0xc0000c0630} +2022/02/22 17:53:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:53:46 [DEBUG] Exit from do method +2022/02/22 17:53:46 [DEBUG] 6214d5c81b00003f81fd068c: Import finished successfully +2022/02/22 17:53:46 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:46 [DEBUG] New state was assigned lineage "c667ee85-d710-e2c4-d0ab-00ea35c78cca" +2022/02/22 17:53:46 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:46 [DEBUG] Begin Injection +2022/02/22 17:53:46 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:46 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:46 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[400] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001bc2a00 400 [] false false map[] 0xc00207cf00 0xc002148210} +2022/02/22 17:53:46 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b {"id":"6214d5d21d00000c574f9f2b","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":1}],"_updateVersion":0} +2022/02/22 17:53:46 [DEBUG] Exit from do method +2022/02/22 17:53:46 [DEBUG] 6214d5d21d00000c574f9f2b: Read finished successfully +2022/02/22 17:53:46 [DEBUG] mso_schema_template_vrf.test: applying the planned Create change +2022/02/22 17:53:46 [DEBUG] Schema Template Vrf: Beginning Creation +2022/02/22 17:53:46 HTTP request PATCH mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:46 [DEBUG] Begin Injection +2022/02/22 17:53:46 HTTP request after injection PATCH mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:46 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dc4c0 360 [] false false map[] 0xc00207d000 0xc0000c0630} +2022/02/22 17:53:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:53:47 [DEBUG] Exit from do method +2022/02/22 17:53:47 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:47 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:47 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:47 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:47 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:47 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:47 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:53:47 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:47 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:47 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:47 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:47 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:47 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:47 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:47 [DEBUG] : Beginning Read +2022/02/22 17:53:47 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:47 [DEBUG] Begin Injection +2022/02/22 17:53:47 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:47 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:46 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc002398300 0xc002148210} +2022/02/22 17:53:47 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:47 [DEBUG] acctest_h4hbi: Creation finished successfully +2022/02/22 17:53:47 [DEBUG] acctest_h4hbi: Beginning Read +2022/02/22 17:53:47 HTTP request GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:47 [DEBUG] Begin Injection +2022/02/22 17:53:47 HTTP request after injection GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0012ed4c0 3980 [] false false map[] 0xc00207d900 0xc0000c0630} +2022/02/22 17:53:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:47 [DEBUG] Exit from do method +2022/02/22 17:53:47 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:47 [DEBUG] 6214d5cf1d0000f9564f9f26: Beginning Read +2022/02/22 17:53:47 HTTP request GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:47 [DEBUG] Begin Injection +2022/02/22 17:53:47 HTTP request after injection GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[768] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001c4d680 768 [] false false map[] 0xc00207da00 0xc002148210} +2022/02/22 17:53:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b {"id":"6214d5d21d00000c574f9f2b","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":2}],"_updateVersion":0} +2022/02/22 17:53:47 [DEBUG] Exit from do method +2022/02/22 17:53:47 currentvrfname acctest_h4hbi +2022/02/22 17:53:47 found correct vrfname +2022/02/22 17:53:47 [DEBUG] acctest_h4hbi: Read finished successfully +2022/02/22 17:53:47 [WARN] Provider "mso" produced an invalid plan for mso_schema_template_external_epg.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .include_in_preferred_group: planned value cty.False does not match config value cty.NullVal(cty.Bool) +2022/02/22 17:53:47 [DEBUG] mso_schema_template_external_epg.test: applying the planned Create change +2022/02/22 17:53:47 [DEBUG] Template Externalepg: Beginning Creation +2022/02/22 17:53:47 HTTP request PATCH mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:47 [DEBUG] Begin Injection +2022/02/22 17:53:47 HTTP request after injection PATCH mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:47 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:47 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000988280 1147 [] false false map[] 0xc001204200 0xc0000c0630} +2022/02/22 17:53:47 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 {"id":"6214d5cf1d0000f9564f9f26","displayName":"acctest_h1c40","description":"","templates":[{"name":"acctest_ooz3r","displayName":"acctest_ooz3r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","extEpgType":"on-premise","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:47 [DEBUG] Exit from do method +2022/02/22 17:53:47 [DEBUG] 6214d5cf1d0000f9564f9f26: Read finished successfully +2022/02/22 17:53:47 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:47 [DEBUG] acctest_sfiom: Beginning Read +2022/02/22 17:53:47 HTTP request GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:47 [DEBUG] Begin Injection +2022/02/22 17:53:47 HTTP request after injection GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:47 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:47 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc002399a00 0xc002148210} +2022/02/22 17:53:47 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:47 [DEBUG] : Beginning Read +2022/02/22 17:53:47 HTTP request GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:47 [DEBUG] Begin Injection +2022/02/22 17:53:47 HTTP request after injection GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:47 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0008125c0 1147 [] false false map[] 0xc00207c300 0xc0000c0630} +2022/02/22 17:53:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 {"id":"6214d5cf1d0000f9564f9f26","displayName":"acctest_h1c40","description":"","templates":[{"name":"acctest_ooz3r","displayName":"acctest_ooz3r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","extEpgType":"on-premise","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:48 [DEBUG] Exit from do method +2022/02/22 17:53:48 currentvrfname acctest_sfiom +2022/02/22 17:53:48 found correct vrfname +2022/02/22 17:53:48 [DEBUG] acctest_sfiom: Read finished successfully +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:48 [DEBUG] /schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom: Beginning Read +2022/02/22 17:53:48 HTTP request GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:48 [DEBUG] Begin Injection +2022/02/22 17:53:48 HTTP request after injection GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:47 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001bc23c0 1147 [] false false map[] 0xc001204000 0xc002148210} +2022/02/22 17:53:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b {"id":"6214d5d21d00000c574f9f2b","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","extEpgType":"on-premise","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:48 [DEBUG] Exit from do method +2022/02/22 17:53:48 [DEBUG] /schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi: Read finished successfully +2022/02/22 17:53:48 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:53:48 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Policy Update +2022/02/22 17:53:48 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:48 [DEBUG] Begin Injection +2022/02/22 17:53:48 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002d040c0 1147 [] false false map[] 0xc0013e4400 0xc0000c0630} +2022/02/22 17:53:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 {"id":"6214d5cf1d0000f9564f9f26","displayName":"acctest_h1c40","description":"","templates":[{"name":"acctest_ooz3r","displayName":"acctest_ooz3r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","extEpgType":"on-premise","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:48 [DEBUG] Exit from do method +2022/02/22 17:53:48 [DEBUG] /schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom: Read finished successfully +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:48 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Read +2022/02/22 17:53:48 id: 6214d5c81b00003f81fd068c +2022/02/22 17:53:48 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:48 [DEBUG] Begin Injection +2022/02/22 17:53:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:48 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001f4c100 360 [] false false map[] 0xc00295ef00 0xc002148210} +2022/02/22 17:53:48 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:53:48 [DEBUG] Exit from do method +2022/02/22 17:53:48 [DEBUG] Policy Update finished successfully: 6214d5c81b00003e81fd068b +2022/02/22 17:53:48 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:48 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:48 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:48 [DEBUG] Begin Injection +2022/02/22 17:53:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001f4c5c0 360 [] false false map[] 0xc002398f00 0xc0000c0630} +2022/02/22 17:53:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:53:48 [DEBUG] Exit from do method +2022/02/22 17:53:48 [DEBUG] 6214d5c81b00003f81fd068c: Read finished successfully +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:48 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:53:48 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:48 [DEBUG] Begin Injection +2022/02/22 17:53:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00072c940 360 [] false false map[] 0xc00207c400 0xc002148210} +2022/02/22 17:53:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:53:48 [DEBUG] Exit from do method +2022/02/22 17:53:48 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:48 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].epg: was null, but now cty.StringVal("") +2022/02/22 17:53:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:48 [DEBUG] New state was assigned lineage "f35485ee-7f50-a473-12c2-4d62da5b1a4d" +2022/02/22 17:53:48 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:48 [DEBUG] Begin Injection +2022/02/22 17:53:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1976] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00072c0c0 1976 [] false false map[] 0xc002399200 0xc0000c0630} +2022/02/22 17:53:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3},{"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3}]} +2022/02/22 17:53:48 [DEBUG] Exit from do method +2022/02/22 17:53:48 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:48 [DEBUG] Begin Injection +2022/02/22 17:53:48 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:48 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:48 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:48 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001be4040 360 [] false false map[] 0xc00207c900 0xc002148210} +2022/02/22 17:53:48 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:53:48 [DEBUG] Exit from do method +2022/02/22 17:53:48 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:53:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:48 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:48 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:48 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:48 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:48 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:48 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:48 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:48 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:48 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:48 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:48 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:48 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:48 [DEBUG] : Beginning Read +2022/02/22 17:53:48 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:48 [DEBUG] Begin Injection +2022/02/22 17:53:48 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:48 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b20140 360 [] false false map[] 0xc0013e4100 0xc0000c0630} +2022/02/22 17:53:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:53:49 [DEBUG] Exit from do method +2022/02/22 17:53:49 [DEBUG] 6214d5c81b00003f81fd068c: Import finished successfully +2022/02/22 17:53:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:49 [DEBUG] New state was assigned lineage "f0c5ddca-1c8e-03cd-c804-466f07254184" +2022/02/22 17:53:49 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema_template_vrf.test mso_schema.test mso_schema.test] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test] +2022/02/22 17:53:49 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:49 [DEBUG] Test: Executing step 5 +2022/02/22 17:53:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:49 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_dhcp_relay_policy.test +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:53:49 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:49 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:53:49 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:53:49 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:53:49 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:49 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:49 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:49 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:49 [DEBUG] : Beginning Read +2022/02/22 17:53:49 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:49 [DEBUG] Begin Injection +2022/02/22 17:53:49 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001739f00 3980 [] false false map[] 0xc00017f400 0xc002148210} +2022/02/22 17:53:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:49 [DEBUG] Exit from do method +2022/02/22 17:53:49 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:49 [DEBUG] 6214d5d21d00000c574f9f2b: Beginning Read +2022/02/22 17:53:49 HTTP request GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:49 [DEBUG] Begin Injection +2022/02/22 17:53:49 HTTP request after injection GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001bc23c0 3980 [] false false map[] 0xc002399400 0xc0000c0630} +2022/02/22 17:53:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:49 [DEBUG] Exit from do method +2022/02/22 17:53:49 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:49 [DEBUG] 6214d5cf1d0000f9564f9f26: Beginning Read +2022/02/22 17:53:49 HTTP request GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:49 [DEBUG] Begin Injection +2022/02/22 17:53:49 HTTP request after injection GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:49 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Read +2022/02/22 17:53:49 id: 6214d5c81b00003f81fd068c +2022/02/22 17:53:49 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:49 [DEBUG] Begin Injection +2022/02/22 17:53:49 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002e6c300 1147 [] false false map[] 0xc001204400 0xc002148210} +2022/02/22 17:53:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b {"id":"6214d5d21d00000c574f9f2b","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","extEpgType":"on-premise","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:49 [DEBUG] Exit from do method +2022/02/22 17:53:49 [DEBUG] 6214d5d21d00000c574f9f2b: Read finished successfully +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:49 [DEBUG] acctest_h4hbi: Beginning Read +2022/02/22 17:53:49 HTTP request GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:49 [DEBUG] Begin Injection +2022/02/22 17:53:49 HTTP request after injection GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001be4380 1147 [] false false map[] 0xc00207c400 0xc0000c0630} +2022/02/22 17:53:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 {"id":"6214d5cf1d0000f9564f9f26","displayName":"acctest_h1c40","description":"","templates":[{"name":"acctest_ooz3r","displayName":"acctest_ooz3r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","extEpgType":"on-premise","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:49 [DEBUG] Exit from do method +2022/02/22 17:53:49 [DEBUG] 6214d5cf1d0000f9564f9f26: Read finished successfully +2022/02/22 17:53:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001be5040 1147 [] false false map[] 0xc002398800 0xc002148210} +2022/02/22 17:53:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b {"id":"6214d5d21d00000c574f9f2b","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","extEpgType":"on-premise","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:49 [DEBUG] Exit from do method +2022/02/22 17:53:49 currentvrfname acctest_h4hbi +2022/02/22 17:53:49 found correct vrfname +2022/02/22 17:53:49 [DEBUG] acctest_h4hbi: Read finished successfully +2022/02/22 17:53:49 [DEBUG] acctest_sfiom: Beginning Read +2022/02/22 17:53:49 HTTP request GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:49 [DEBUG] Begin Injection +2022/02/22 17:53:49 HTTP request after injection GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:49 [DEBUG] /schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi: Beginning Read +2022/02/22 17:53:49 HTTP request GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:49 [DEBUG] Begin Injection +2022/02/22 17:53:49 HTTP request after injection GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:49 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:49 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:49 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:49 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002e6ca00 360 [] false false map[] 0xc001204600 0xc002e6e160} +2022/02/22 17:53:49 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:53:49 [DEBUG] Exit from do method +2022/02/22 17:53:49 [DEBUG] 6214d5c81b00003f81fd068c: Read finished successfully +2022/02/22 17:53:49 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001fac80 1147 [] false false map[] 0xc002398c00 0xc002148210} +2022/02/22 17:53:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 {"id":"6214d5cf1d0000f9564f9f26","displayName":"acctest_h1c40","description":"","templates":[{"name":"acctest_ooz3r","displayName":"acctest_ooz3r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","extEpgType":"on-premise","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:50 [DEBUG] Exit from do method +2022/02/22 17:53:50 currentvrfname acctest_sfiom +2022/02/22 17:53:50 found correct vrfname +2022/02/22 17:53:50 [DEBUG] acctest_sfiom: Read finished successfully +2022/02/22 17:53:50 [DEBUG] /schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom: Beginning Read +2022/02/22 17:53:50 HTTP request GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:50 [DEBUG] Begin Injection +2022/02/22 17:53:50 HTTP request after injection GET mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002e6d3c0 1147 [] false false map[] 0xc001204b00 0xc0000c0630} +2022/02/22 17:53:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b {"id":"6214d5d21d00000c574f9f2b","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","extEpgType":"on-premise","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:50 [DEBUG] Exit from do method +2022/02/22 17:53:50 [DEBUG] /schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi: Read finished successfully +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:50 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:50 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:50 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:50 [DEBUG] Begin Injection +2022/02/22 17:53:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001c4c040 1147 [] false false map[] 0xc001205100 0xc002148210} +2022/02/22 17:53:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 {"id":"6214d5cf1d0000f9564f9f26","displayName":"acctest_h1c40","description":"","templates":[{"name":"acctest_ooz3r","displayName":"acctest_ooz3r","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_sfiom","displayName":"acctest_sfiom","extEpgType":"on-premise","vrfRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/vrfs/acctest_sfiom","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:50 [DEBUG] Exit from do method +2022/02/22 17:53:50 [DEBUG] /schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom: Read finished successfully +2022/02/22 17:53:50 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:50 [DEBUG] New state was assigned lineage "b700db2d-fa7d-6879-799f-e745e7b14175" +2022/02/22 17:53:50 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test (orphan) +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:50 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:50 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:50 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:50 [WARN] Test: Step plan: DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_4vyf4" + tenant_id: "" => "" +UPDATE: mso_dhcp_relay_policy.test + description: "" => "t4bkn" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.55.147" => "" + dhcp_relay_policy_provider.0.epg: "" => "" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214d5c81b00003f81fd068c" => "6214d5c81b00003f81fd068c" + name: "acctest_4vyf4" => "acctest_4vyf4" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d5cf1d0000f9564f9f26" => "" + name: "acctest_h1c40" => "" + template_name: "acctest_ooz3r" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_sfiom" => "" + external_epg_name: "acctest_sfiom" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d5cf1d0000f9564f9f26" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_ooz3r" => "" + vrf_name: "acctest_sfiom" => "" + vrf_schema_id: "6214d5cf1d0000f9564f9f26" => "" + vrf_template_name: "acctest_ooz3r" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_sfiom" => "" + id: "acctest_sfiom" => "" + layer3_multicast: "false" => "" + name: "acctest_sfiom" => "" + schema_id: "6214d5cf1d0000f9564f9f26" => "" + template: "acctest_ooz3r" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003f81fd068c + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.55.147 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_4vyf4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214d5cf1d0000f9564f9f26 + provider = provider.mso + name = acctest_h1c40 + template_name = acctest_ooz3r + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d5cf1d0000f9564f9f26/templates/acctest_ooz3r/externalEpgs/acctest_sfiom + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_sfiom + external_epg_name = acctest_sfiom + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d5cf1d0000f9564f9f26 + selector_ip = + selector_name = + template_name = acctest_ooz3r + vrf_name = acctest_sfiom + vrf_schema_id = 6214d5cf1d0000f9564f9f26 + vrf_template_name = acctest_ooz3r + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_sfiom + provider = provider.mso + display_name = acctest_sfiom + layer3_multicast = false + name = acctest_sfiom + schema_id = 6214d5cf1d0000f9564f9f26 + template = acctest_ooz3r + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:53:50 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:50 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:53:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test (prepare state) mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_external_epg.test +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:53:50 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:50 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000c02400 360 [] false false map[] 0xc00017e700 0xc0000c0630} +2022/02/22 17:53:50 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:53:50 [DEBUG] Exit from do method +2022/02/22 17:53:50 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:50 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:50 [DEBUG] New state was assigned lineage "77230708-546b-6be9-cccf-bc36e4d4be75" +2022/02/22 17:53:50 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:53:50 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:53:50 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:50 HTTP request PATCH mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:50 [DEBUG] Begin Injection +2022/02/22 17:53:50 HTTP request after injection PATCH mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test mso_schema_template_external_epg.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema_template_vrf.test mso_schema.test] +2022/02/22 17:53:50 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:53:50 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:50 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Policy Update +2022/02/22 17:53:50 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:50 [DEBUG] Begin Injection +2022/02/22 17:53:50 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:50 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:50 [DEBUG] Test: Executing step 8 +2022/02/22 17:53:50 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:50 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema_template_vrf.test +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:50 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:50 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:50 [WARN] Not fixing up EachModes for mso_schema_template_vrf.test because it has no config +2022/02/22 17:53:50 [WARN] Not fixing up EachModes for mso_schema.test because it has no config +2022/02/22 17:53:50 [WARN] Not fixing up EachModes for mso_schema_template_external_epg.test because it has no config +2022/02/22 17:53:50 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:50 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeRefreshableManagedResourceInstance) needs provider.mso +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [data.mso_tenant.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:50 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:50 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:50 [DEBUG] : Beginning Read +2022/02/22 17:53:50 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:50 [DEBUG] Begin Injection +2022/02/22 17:53:50 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:50 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:50 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017ee00 0xc002148210} +2022/02/22 17:53:50 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:50 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:53:50 [DEBUG] acctest_sfiom: Beginning Destroy +2022/02/22 17:53:50 HTTP request PATCH mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:50 [DEBUG] Begin Injection +2022/02/22 17:53:50 HTTP request after injection PATCH mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:50 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:50 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:50 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00182adc0 165 [] false false map[] 0xc0013e4e00 0xc002e6e160} +2022/02/22 17:53:50 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"t4bkn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:53:50 [DEBUG] Exit from do method +2022/02/22 17:53:50 [DEBUG] Policy Update finished successfully: 6214d5c81b00003f81fd068c +2022/02/22 17:53:50 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Read +2022/02/22 17:53:50 id: 6214d5c81b00003f81fd068c +2022/02/22 17:53:50 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:50 [DEBUG] Begin Injection +2022/02/22 17:53:50 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:50 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001c4c500 3980 [] false false map[] 0xc00207ce00 0xc002148210} +2022/02/22 17:53:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:51 [DEBUG] Exit from do method +2022/02/22 17:53:51 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:51 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:51 [DEBUG] 6214d5d21d00000c574f9f2b: Beginning Read +2022/02/22 17:53:51 HTTP request GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:51 [DEBUG] Begin Injection +2022/02/22 17:53:51 HTTP request after injection GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:51 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017e600 0xc002e6e160} +2022/02/22 17:53:51 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26?validate=false +2022/02/22 17:53:51 [DEBUG] acctest_sfiom: Destroy finished successfully +2022/02/22 17:53:51 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:51 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:51 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:51 [DEBUG] Begin Injection +2022/02/22 17:53:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:51 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:53:51 [DEBUG] 6214d5cf1d0000f9564f9f26: Beginning Destroy +2022/02/22 17:53:51 HTTP request DELETE mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:51 [DEBUG] Begin Injection +2022/02/22 17:53:51 HTTP request after injection DELETE mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b210c0 165 [] false false map[] 0xc00017e800 0xc002148210} +2022/02/22 17:53:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"t4bkn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:53:51 [DEBUG] Exit from do method +2022/02/22 17:53:51 [DEBUG] 6214d5c81b00003f81fd068c: Read finished successfully +2022/02/22 17:53:51 [DEBUG] dhcp_relay_policy: Beginning Import +2022/02/22 17:53:51 HTTP request GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:51 [DEBUG] Begin Injection +2022/02/22 17:53:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001de6540 1147 [] false false map[] 0xc002690100 0xc002e6e160} +2022/02/22 17:53:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b {"id":"6214d5d21d00000c574f9f2b","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","extEpgType":"on-premise","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:51 [DEBUG] Exit from do method +2022/02/22 17:53:51 [DEBUG] 6214d5d21d00000c574f9f2b: Read finished successfully +2022/02/22 17:53:51 [DEBUG] acctest_h4hbi: Beginning Read +2022/02/22 17:53:51 HTTP request GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:51 [DEBUG] Begin Injection +2022/02/22 17:53:51 HTTP request after injection GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[360] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001be4080 360 [] false false map[] 0xc0013e4800 0xc002e6e0b0} +2022/02/22 17:53:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3} +2022/02/22 17:53:51 [DEBUG] Exit from do method +2022/02/22 17:53:51 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:51 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:51 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc00017f400 0xc002148210} +2022/02/22 17:53:51 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5cf1d0000f9564f9f26 +2022/02/22 17:53:51 [DEBUG] 6214d5cf1d0000f9564f9f26: Destroy finished successfully +2022/02/22 17:53:51 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:51 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1781] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002d04640 1781 [] false false map[] 0xc002690900 0xc002e6e160} +2022/02/22 17:53:51 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"DhcpRelayPolicies":[{"id":"620ce8ef1b00009febfd05de","name":"test2","policyType":"dhcp","policySubtype":"relay","desc":"avadfsw","tenantId":"620ccdb11d0000744a4f9a23","provider":[],"version":9},{"id":"620f8a1a1b00002471fd05e6","name":"dhcpRelayP","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620ccdb11d0000744a4f9a23","provider":[{"addr":"1.0.0.1","epgRef":"/schemas/620ce8181d0000b44e4f9a29/templates/Template1/anps/AP_1/epgs/EPG_1","externalEpgRef":"","l3Ref":"","tenantId":"620ccdb11d0000744a4f9a23"}],"version":1},{"id":"6214ad5d1b00009a78fd064f","name":"test_crest","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.3.4","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/UntitledAP1/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214c8d51b00003a7efd0668","name":"acctest_77uj6","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.196.17","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":1},{"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"","externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":3},{"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"t4bkn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4}]} +2022/02/22 17:53:51 [DEBUG] Exit from do method +2022/02/22 17:53:51 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:51 [DEBUG] Begin Injection +2022/02/22 17:53:51 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:51 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:51 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001a6a0c0 1147 [] false false map[] 0xc00295e400 0xc0000c0000} +2022/02/22 17:53:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b {"id":"6214d5d21d00000c574f9f2b","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","extEpgType":"on-premise","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:52 [DEBUG] Exit from do method +2022/02/22 17:53:52 currentvrfname acctest_h4hbi +2022/02/22 17:53:52 found correct vrfname +2022/02/22 17:53:52 [DEBUG] acctest_h4hbi: Read finished successfully +2022/02/22 17:53:52 [DEBUG] /schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi: Beginning Read +2022/02/22 17:53:52 HTTP request GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:52 [DEBUG] Begin Injection +2022/02/22 17:53:52 HTTP request after injection GET mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001b20240 165 [] false false map[] 0xc00207c400 0xc002e6e0b0} +2022/02/22 17:53:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"t4bkn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:53:52 [DEBUG] Exit from do method +2022/02/22 17:53:52 [DEBUG] 6214d5c81b00003f81fd068c: Import finished successfully +2022/02/22 17:53:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:52 [DEBUG] New state was assigned lineage "770a6cb3-4421-536f-3116-ad430ee5d635" +2022/02/22 17:53:52 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:52 [DEBUG] Begin Injection +2022/02/22 17:53:52 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[1147] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001a6ae00 1147 [] false false map[] 0xc00207c300 0xc0000c0000} +2022/02/22 17:53:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b {"id":"6214d5d21d00000c574f9f2b","displayName":"acctest_udabl","description":"","templates":[{"name":"acctest_ks7qc","displayName":"acctest_ks7qc","tenantId":"620cf5ad1d0000ab504f9a3d","anps":[],"vrfs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","l3MCast":false,"preferredGroup":false,"vzAnyEnabled":false,"vzAnyProviderContracts":[],"vzAnyConsumerContracts":[],"rpConfigs":[],"pcEnfPref":"enforced","ipDataPlaneLearning":"enabled","description":"","rtAutoDisabled":false}],"bds":[],"contracts":[],"filters":[],"externalEpgs":[{"name":"acctest_h4hbi","displayName":"acctest_h4hbi","extEpgType":"on-premise","vrfRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/vrfs/acctest_h4hbi","subnets":[],"selectors":[],"contractRelationships":[],"preferredGroup":false,"externalEpgRef":"/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi","anpRef":"","description":""}],"serviceGraphs":[],"intersiteL3outs":[],"templateType":"stretched-template","networks":[],"description":"","version":3}],"_updateVersion":0} +2022/02/22 17:53:52 [DEBUG] Exit from do method +2022/02/22 17:53:52 [DEBUG] /schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi: Read finished successfully +2022/02/22 17:53:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:52 [DEBUG] New state was assigned lineage "35555866-9fca-d434-8754-02eb6899ae13" +2022/02/22 17:53:52 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (orphan)" (*terraform.NodePlannableResourceInstanceOrphan) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema.test (orphan)" references: [data.mso_tenant.test] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan) mso_schema_template_vrf.test (orphan) mso_schema_template_vrf.test (orphan)] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (orphan)" references: [mso_schema.test (orphan) mso_schema.test (orphan)] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:52 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:52 [WARN] Test: Step plan: DIFF: + +UPDATE: mso_dhcp_relay_policy.test + description: "" => "test description" + dhcp_relay_policy_provider.#: "1" => "1" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.55.147" => "1.2.55.147" + dhcp_relay_policy_provider.0.epg: "" => "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + dhcp_relay_policy_provider.0.external_epg: "/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + id: "6214d5c81b00003e81fd068b" => "6214d5c81b00003e81fd068b" + name: "acctest_zovz4" => "acctest_zovz4" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" +DESTROY: mso_schema.test + id: "6214d5d21d00000c574f9f2b" => "" + name: "acctest_udabl" => "" + template_name: "acctest_ks7qc" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" +DESTROY: mso_schema_template_external_epg.test + anp_name: "" => "" + anp_schema_id: "" => "" + anp_template_name: "" => "" + display_name: "acctest_h4hbi" => "" + external_epg_name: "acctest_h4hbi" => "" + external_epg_type: "on-premise" => "" + id: "/schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi" => "" + include_in_preferred_group: "false" => "" + l3out_name: "" => "" + l3out_schema_id: "" => "" + l3out_template_name: "" => "" + schema_id: "6214d5d21d00000c574f9f2b" => "" + selector_ip: "" => "" + selector_name: "" => "" + site_id.#: "0" => "" + template_name: "acctest_ks7qc" => "" + vrf_name: "acctest_h4hbi" => "" + vrf_schema_id: "6214d5d21d00000c574f9f2b" => "" + vrf_template_name: "acctest_ks7qc" => "" +DESTROY: mso_schema_template_vrf.test + display_name: "acctest_h4hbi" => "" + id: "acctest_h4hbi" => "" + layer3_multicast: "false" => "" + name: "acctest_h4hbi" => "" + schema_id: "6214d5d21d00000c574f9f2b" => "" + template: "acctest_ks7qc" => "" + vzany: "false" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003e81fd068b + provider = provider.mso + description = + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.55.147 + dhcp_relay_policy_provider.0.epg = + dhcp_relay_policy_provider.0.external_epg = /schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_zovz4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test + mso_schema_template_external_epg.test +mso_schema.test: + ID = 6214d5d21d00000c574f9f2b + provider = provider.mso + name = acctest_udabl + template_name = acctest_ks7qc + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +mso_schema_template_external_epg.test: + ID = /schemas/6214d5d21d00000c574f9f2b/templates/acctest_ks7qc/externalEpgs/acctest_h4hbi + provider = provider.mso + anp_name = + anp_schema_id = + anp_template_name = + display_name = acctest_h4hbi + external_epg_name = acctest_h4hbi + external_epg_type = on-premise + include_in_preferred_group = false + l3out_name = + l3out_schema_id = + l3out_template_name = + schema_id = 6214d5d21d00000c574f9f2b + selector_ip = + selector_name = + template_name = acctest_ks7qc + vrf_name = acctest_h4hbi + vrf_schema_id = 6214d5d21d00000c574f9f2b + vrf_template_name = acctest_ks7qc + + Dependencies: + mso_schema.test + mso_schema_template_vrf.test +mso_schema_template_vrf.test: + ID = acctest_h4hbi + provider = provider.mso + display_name = acctest_h4hbi + layer3_multicast = false + name = acctest_h4hbi + schema_id = 6214d5d21d00000c574f9f2b + template = acctest_ks7qc + vzany = false + + Dependencies: + mso_schema.test +2022/02/22 17:53:52 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (clean up state)" (*terraform.NodeDestroyResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema.test (clean up state)" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (clean up state)" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (clean up state)" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_schema.test +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema_template_external_epg.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_schema_template_vrf.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema.test" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema.test (destroy)" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test" references: [mso_schema.test mso_schema.test] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema_template_vrf.test (destroy)" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test" references: [mso_schema.test mso_schema.test mso_schema_template_vrf.test mso_schema_template_vrf.test] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_schema_template_external_epg.test (destroy)" references: [] +2022/02/22 17:53:52 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:52 [DEBUG] mso_schema_template_external_epg.test: applying the planned Delete change +2022/02/22 17:53:52 [DEBUG] Template Externalepg: Beginning Update +2022/02/22 17:53:52 HTTP request PATCH mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:52 [DEBUG] Begin Injection +2022/02/22 17:53:52 HTTP request after injection PATCH mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:52 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Update change +2022/02/22 17:53:52 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Policy Update +2022/02/22 17:53:52 HTTP request PUT mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:52 [DEBUG] Begin Injection +2022/02/22 17:53:52 HTTP request after injection PUT mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001f4dac0 165 [] false false map[] 0xc00207c800 0xc0021480b0} +2022/02/22 17:53:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"t4bkn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:53:52 [DEBUG] Exit from do method +2022/02/22 17:53:52 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:52 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:52 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:52 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:52 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:52 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:52 [DEBUG] : Beginning Read +2022/02/22 17:53:52 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:52 [DEBUG] Begin Injection +2022/02/22 17:53:52 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:52 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc00017f000 0xc0000c0000} +2022/02/22 17:53:52 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:52 [DEBUG] mso_schema_template_vrf.test: applying the planned Delete change +2022/02/22 17:53:52 [DEBUG] acctest_h4hbi: Beginning Destroy +2022/02/22 17:53:52 HTTP request PATCH mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:52 [DEBUG] Begin Injection +2022/02/22 17:53:52 HTTP request after injection PATCH mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:52 +HTTP Request: PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dd2c0 372 [] false false map[] 0xc002690f00 0xc0013000b0} +2022/02/22 17:53:52 + HTTP response unique string PUT https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:53:52 [DEBUG] Exit from do method +2022/02/22 17:53:52 [DEBUG] Policy Update finished successfully: 6214d5c81b00003e81fd068b +2022/02/22 17:53:52 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:52 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:52 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:52 [DEBUG] Begin Injection +2022/02/22 17:53:52 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:52 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:52 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dd680 3980 [] false false map[] 0xc002690600 0xc001300fd0} +2022/02/22 17:53:52 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:52 [DEBUG] Exit from do method +2022/02/22 17:53:52 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:52 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:52 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Read +2022/02/22 17:53:52 id: 6214d5c81b00003f81fd068c +2022/02/22 17:53:52 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:52 [DEBUG] Begin Injection +2022/02/22 17:53:52 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:52 +HTTP Request: PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:52 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Modified:[true] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945]] {} 0 [] false false map[] 0xc002690e00 0xc0000c0000} +2022/02/22 17:53:52 + HTTP response unique string PATCH https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b?validate=false +2022/02/22 17:53:52 [DEBUG] acctest_h4hbi: Destroy finished successfully +2022/02/22 17:53:52 [DEBUG] mso_schema.test: applying the planned Delete change +2022/02/22 17:53:52 [DEBUG] 6214d5d21d00000c574f9f2b: Beginning Destroy +2022/02/22 17:53:52 HTTP request DELETE mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:52 [DEBUG] Begin Injection +2022/02/22 17:53:52 HTTP request after injection DELETE mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:52 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:52 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001c4dd80 372 [] false false map[] 0xc002691200 0xc0013000b0} +2022/02/22 17:53:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:53:53 [DEBUG] Exit from do method +2022/02/22 17:53:53 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:53 [WARN] Provider "mso" produced an unexpected new value for mso_dhcp_relay_policy.test, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dhcp_relay_policy_provider[0].external_epg: was null, but now cty.StringVal("") +2022/02/22 17:53:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001be5ac0 165 [] false false map[] 0xc0013e5e00 0xc001300fd0} +2022/02/22 17:53:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"t4bkn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:53:53 [DEBUG] Exit from do method +2022/02/22 17:53:53 [DEBUG] 6214d5c81b00003f81fd068c: Read finished successfully +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:53 [DEBUG] New state was assigned lineage "1d9dad05-ade8-3f88-60d3-289c89268d9e" +2022/02/22 17:53:53 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:53 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:53 [DEBUG] Resource instance state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:53 [INFO] Got non-empty plan, as expected: + +DIFF: + +UPDATE: data.mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider: "" => "" + id: "" => "" + name: "" => "acctest_4vyf4" + tenant_id: "" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003f81fd068c + provider = provider.mso + description = t4bkn + name = acctest_4vyf4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:53:53 [WARN] Test: Executing destroy step +2022/02/22 17:53:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:53 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:53 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:53 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [mso_dhcp_relay_policy.test mso_dhcp_relay_policy.test] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:53 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:53 [DEBUG] : Beginning Read +2022/02/22 17:53:53 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:53 [DEBUG] Begin Injection +2022/02/22 17:53:53 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:53 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:53 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc002dea500 0xc0000c0000} +2022/02/22 17:53:53 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/schemas/6214d5d21d00000c574f9f2b +2022/02/22 17:53:53 [DEBUG] 6214d5d21d00000c574f9f2b: Destroy finished successfully +2022/02/22 17:53:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:53 [DEBUG] New state was assigned lineage "98782dba-045a-0c46-cbc6-1b0e56630d0a" +2022/02/22 17:53:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:53 [DEBUG] Begin Injection +2022/02/22 17:53:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001a6a1c0 3980 [] false false map[] 0xc002debe00 0xc0013000b0} +2022/02/22 17:53:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:53 [DEBUG] Exit from do method +2022/02/22 17:53:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:53 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Read +2022/02/22 17:53:53 id: 6214d5c81b00003f81fd068c +2022/02/22 17:53:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:53 [DEBUG] Begin Injection +2022/02/22 17:53:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00182a300 372 [] false false map[] 0xc002690000 0xc0000c0000} +2022/02/22 17:53:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:53:53 [DEBUG] Exit from do method +2022/02/22 17:53:53 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:53 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:53 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:53 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:53 [DEBUG] : Beginning Read +2022/02/22 17:53:53 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:53 [DEBUG] Begin Injection +2022/02/22 17:53:53 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[165] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001de6b80 165 [] false false map[] 0xc002074300 0xc0013000b0} +2022/02/22 17:53:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"id":"6214d5c81b00003f81fd068c","name":"acctest_4vyf4","policyType":"dhcp","policySubtype":"relay","desc":"t4bkn","tenantId":"620cf5ad1d0000ab504f9a3d","version":4} +2022/02/22 17:53:53 [DEBUG] Exit from do method +2022/02/22 17:53:53 [DEBUG] 6214d5c81b00003f81fd068c: Read finished successfully +2022/02/22 17:53:53 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:53 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:53 [DEBUG] New state was assigned lineage "878dc086-85e0-a2be-8e33-26cd31b24b0c" +2022/02/22 17:53:53 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:53 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:53 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "t4bkn" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d5c81b00003f81fd068c" => "" + name: "acctest_4vyf4" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003f81fd068c + provider = provider.mso + description = t4bkn + name = acctest_4vyf4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:53:53 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test (prepare state) +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:53 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:53 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:53 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:53:53 DestroyEdgeTransformer: pruning unused resource node data.mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:53 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:53:53 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:53:53 [DEBUG] 6214d5c81b00003f81fd068c: Beginning Read +2022/02/22 17:53:53 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:53 [DEBUG] Begin Injection +2022/02/22 17:53:53 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:53 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:53 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:53 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001738c40 3980 [] false false map[] 0xc001152200 0xc0000c0000} +2022/02/22 17:53:53 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:53 [DEBUG] Exit from do method +2022/02/22 17:53:53 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:53 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:53 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:53 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:53 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:53 [DEBUG] Begin Injection +2022/02/22 17:53:53 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:53 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:54 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:54 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc002691000 0xc0013000b0} +2022/02/22 17:53:54 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:54 [DEBUG] : Read finished successfully +2022/02/22 17:53:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:54 [DEBUG] New state was assigned lineage "3322bf71-403e-6544-c7cc-0576f0cae31d" +2022/02/22 17:53:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:54 [DEBUG] Begin Injection +2022/02/22 17:53:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dc800 372 [] false false map[] 0xc002d5d000 0xc0000c0000} +2022/02/22 17:53:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:53:54 [DEBUG] Exit from do method +2022/02/22 17:53:54 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:54 [DEBUG] New state was assigned lineage "6ca43e5a-75b6-bce2-2db2-4ae7298ed758" +2022/02/22 17:53:54 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:54 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:54 [DEBUG] Test: Executing step 9 +2022/02/22 17:53:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (import id \"6214d5c81b00003e81fd068b\")" (*terraform.graphNodeImportState) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (import id \"6214d5c81b00003e81fd068b\")" references: [] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:54 [DEBUG] Starting graph walk: walkImport +2022/02/22 17:53:54 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Import +2022/02/22 17:53:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:54 [DEBUG] Begin Injection +2022/02/22 17:53:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c +2022/02/22 17:53:54 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:54 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002c35cc0 86 [] false false map[] 0xc00017e500 0xc0013000b0} +2022/02/22 17:53:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003f81fd068c {"code":141,"message":"Resource Not Found: Policy 6214d5c81b00003f81fd068c not found"} +2022/02/22 17:53:54 [DEBUG] Exit from do method +2022/02/22 17:53:54 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:54 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:54 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "data.mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:54 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:54 [DEBUG] Resource state not found for node "data.mso_dhcp_relay_policy.test", instance data.mso_dhcp_relay_policy.test +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "data.mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:54 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:54 [DEBUG] : Beginning Read +2022/02/22 17:53:54 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:54 [DEBUG] Begin Injection +2022/02/22 17:53:54 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dc200 372 [] false false map[] 0xc002d5cb00 0xc0000c0000} +2022/02/22 17:53:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:53:54 [DEBUG] Exit from do method +2022/02/22 17:53:54 [DEBUG] 6214d5c81b00003e81fd068b: Import finished successfully +2022/02/22 17:53:54 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:54 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:54 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:54 [DEBUG] Begin Injection +2022/02/22 17:53:54 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc0001dc880 3980 [] false false map[] 0xc002498500 0xc0013000b0} +2022/02/22 17:53:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:54 [DEBUG] Exit from do method +2022/02/22 17:53:54 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:54 [DEBUG] New state was assigned lineage "23100b11-fb97-0970-c1f1-66126b5ae48c" +2022/02/22 17:53:54 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:54 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:54 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:54 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:54 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002c34dc0 372 [] false false map[] 0xc00017f000 0xc0000c0000} +2022/02/22 17:53:54 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:53:54 [DEBUG] Exit from do method +2022/02/22 17:53:54 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:54 [DEBUG] New state was assigned lineage "d627a766-010b-5aca-77f6-98a8e0cc3c87" +2022/02/22 17:53:54 [DEBUG] Test: Executing step 10 +2022/02/22 17:53:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:54 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:54 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:54 [ERROR] : eval: *terraform.EvalValidateResource, err: 2 problems: + +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +- Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:53:54 [ERROR] : eval: *terraform.EvalSequence, err: 2 problems: + +- Missing required argument: The argument "tenant_id" is required, but no definition was found. +- Missing required argument: The argument "name" is required, but no definition was found. +2022/02/22 17:53:54 [DEBUG] Test: Executing step 11 +2022/02/22 17:53:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:54 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:54 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:54 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:54 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:54 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:54 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:54 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:54 [DEBUG] : Beginning Read +2022/02/22 17:53:54 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:54 [DEBUG] Begin Injection +2022/02/22 17:53:54 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:54 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001a6a880 3980 [] false false map[] 0xc00314a200 0xc0013000b0} +2022/02/22 17:53:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:55 [DEBUG] Exit from do method +2022/02/22 17:53:55 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:55 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:55 id: 6214d5c81b00003e81fd068b +2022/02/22 17:53:55 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:55 [DEBUG] Begin Injection +2022/02/22 17:53:55 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:55 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:55 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[372] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001bc2500 372 [] false false map[] 0xc002690800 0xc0013000b0} +2022/02/22 17:53:55 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b {"id":"6214d5c81b00003e81fd068b","name":"acctest_zovz4","policyType":"dhcp","policySubtype":"relay","desc":"test description","tenantId":"620cf5ad1d0000ab504f9a3d","provider":[{"addr":"1.2.55.147","epgRef":"/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg","externalEpgRef":"","l3Ref":"","tenantId":"620cf5ad1d0000ab504f9a3d"}],"version":4} +2022/02/22 17:53:55 [DEBUG] Exit from do method +2022/02/22 17:53:55 [DEBUG] 6214d5c81b00003e81fd068b: Read finished successfully +2022/02/22 17:53:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:55 [DEBUG] New state was assigned lineage "cb99b740-46a2-5e80-2164-0fdccc216d18" +2022/02/22 17:53:55 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:55 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:55 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:55 [WARN] Test: Step plan: DIFF: + +DESTROY/CREATE: mso_dhcp_relay_policy.test + description: "test description" => "" + dhcp_relay_policy_provider.#: "1" => "0" + dhcp_relay_policy_provider.0.dhcp_server_address: "1.2.55.147" => "" + dhcp_relay_policy_provider.0.epg: "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" => "" + dhcp_relay_policy_provider.0.external_epg: "" => "" + dhcp_relay_policy_provider.0.tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + id: "6214d5c81b00003e81fd068b" => "" + name: "acctest_zovz4" => "acctest_9zov4" (forces new resource) + tenant_id: "620cf5ad1d0000ab504f9a3d" => "620cf5ad1d0000ab504f9a3d" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5c81b00003e81fd068b + provider = provider.mso + description = test description + dhcp_relay_policy_provider.# = 1 + dhcp_relay_policy_provider.0.dhcp_server_address = 1.2.55.147 + dhcp_relay_policy_provider.0.epg = /schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg + dhcp_relay_policy_provider.0.external_epg = + dhcp_relay_policy_provider.0.tenant_id = 620cf5ad1d0000ab504f9a3d + name = acctest_zovz4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:53:55 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:55 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeApplyableResourceInstance) needs provider.mso +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test (prepare state)] +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:55 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:55 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:55 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:55 [DEBUG] Starting graph walk: walkApply +2022/02/22 17:53:55 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:53:55 [DEBUG] 6214d5c81b00003e81fd068b: Beginning Read +2022/02/22 17:53:55 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:55 [DEBUG] Begin Injection +2022/02/22 17:53:55 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:55 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:55 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:55 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc002691600 0xc0013000b0} +2022/02/22 17:53:55 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5c81b00003e81fd068b +2022/02/22 17:53:55 [DEBUG] : Read finished successfully +2022/02/22 17:53:55 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Create change +2022/02/22 17:53:55 [DEBUG] : Beginning Create +2022/02/22 17:53:55 HTTP request POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:55 [DEBUG] Begin Injection +2022/02/22 17:53:55 HTTP request after injection POST mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:55 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:56 +HTTP Request: POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay +2022/02/22 17:53:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002c340c0 160 [] false false map[] 0xc0023dcd00 0xc0013000b0} +2022/02/22 17:53:56 + HTTP response unique string POST https://173.36.219.31/mso/api/v1/policies/dhcp/relay {"id":"6214d5dc1b00004081fd0690","name":"acctest_9zov4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:56 [DEBUG] Exit from do method +2022/02/22 17:53:56 [DEBUG] 6214d5dc1b00004081fd0690: Creation finished successfully +2022/02/22 17:53:56 [DEBUG] 6214d5dc1b00004081fd0690: Beginning Read +2022/02/22 17:53:56 id: 6214d5dc1b00004081fd0690 +2022/02/22 17:53:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:56 [DEBUG] Begin Injection +2022/02/22 17:53:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc000988300 160 [] false false map[] 0xc002408000 0xc0013000b0} +2022/02/22 17:53:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 {"id":"6214d5dc1b00004081fd0690","name":"acctest_9zov4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:56 [DEBUG] Exit from do method +2022/02/22 17:53:56 [DEBUG] 6214d5dc1b00004081fd0690: Read finished successfully +2022/02/22 17:53:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:56 [DEBUG] New state was assigned lineage "c2800827-4aec-31cf-1c8b-cfbc1dc4aa13" +2022/02/22 17:53:56 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:56 [DEBUG] Begin Injection +2022/02/22 17:53:56 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:56 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:56 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:56 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002c34280 160 [] false false map[] 0xc0023dc000 0xc0013000b0} +2022/02/22 17:53:56 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 {"id":"6214d5dc1b00004081fd0690","name":"acctest_9zov4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:56 [DEBUG] Exit from do method +2022/02/22 17:53:56 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:56 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:56 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:56 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:56 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:56 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:56 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:56 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:56 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:56 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:56 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:56 [DEBUG] : Beginning Read +2022/02/22 17:53:56 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:56 [DEBUG] Begin Injection +2022/02/22 17:53:56 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:56 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001de6300 3980 [] false false map[] 0xc00017f100 0xc0013000b0} +2022/02/22 17:53:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:57 [DEBUG] Exit from do method +2022/02/22 17:53:57 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:57 [DEBUG] 6214d5dc1b00004081fd0690: Beginning Read +2022/02/22 17:53:57 id: 6214d5dc1b00004081fd0690 +2022/02/22 17:53:57 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:57 [DEBUG] Begin Injection +2022/02/22 17:53:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc002c34040 160 [] false false map[] 0xc0023dd600 0xc0013000b0} +2022/02/22 17:53:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 {"id":"6214d5dc1b00004081fd0690","name":"acctest_9zov4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:57 [DEBUG] Exit from do method +2022/02/22 17:53:57 [DEBUG] 6214d5dc1b00004081fd0690: Read finished successfully +2022/02/22 17:53:57 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:57 [DEBUG] New state was assigned lineage "8feb3e4d-d8a7-8957-d76b-d5c0cd18661e" +2022/02/22 17:53:57 [INFO] terraform: building graph: GraphTypePlan +2022/02/22 17:53:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlannableResource) needs provider.mso +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:57 [DEBUG] Starting graph walk: walkPlan +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:57 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:57 [WARN] Test: Executing destroy step +2022/02/22 17:53:57 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:57 [INFO] terraform: building graph: GraphTypeValidate +2022/02/22 17:53:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeValidatableResource) needs provider.mso +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:57 [DEBUG] Starting graph walk: walkValidate +2022/02/22 17:53:57 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:57 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:57 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:57 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeRefreshableManagedResource) needs provider.mso +2022/02/22 17:53:57 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test] +2022/02/22 17:53:57 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:57 [DEBUG] : Beginning Read +2022/02/22 17:53:57 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:57 [DEBUG] Begin Injection +2022/02/22 17:53:57 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:57 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:57 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:57 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00182a100 3980 [] false false map[] 0xc001f46d00 0xc0013000b0} +2022/02/22 17:53:57 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:57 [DEBUG] Exit from do method +2022/02/22 17:53:57 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:57 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [] +2022/02/22 17:53:57 [DEBUG] 6214d5dc1b00004081fd0690: Beginning Read +2022/02/22 17:53:57 id: 6214d5dc1b00004081fd0690 +2022/02/22 17:53:57 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:57 [DEBUG] Begin Injection +2022/02/22 17:53:57 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:57 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:58 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[160] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00072d000 160 [] false false map[] 0xc002c78a00 0xc0013000b0} +2022/02/22 17:53:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 {"id":"6214d5dc1b00004081fd0690","name":"acctest_9zov4","policyType":"dhcp","policySubtype":"relay","desc":"","tenantId":"620cf5ad1d0000ab504f9a3d","version":1} +2022/02/22 17:53:58 [DEBUG] Exit from do method +2022/02/22 17:53:58 [DEBUG] 6214d5dc1b00004081fd0690: Read finished successfully +2022/02/22 17:53:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:58 [DEBUG] New state was assigned lineage "3afb2953-8647-33b4-fb9a-3b697fa04604" +2022/02/22 17:53:58 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:58 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:58 [WARN] Test: Step plan: DIFF: + +DESTROY: data.mso_tenant.test + description: "" => "" + display_name: "acctest_crest" => "" + id: "620cf5ad1d0000ab504f9a3d" => "" + name: "acctest_crest" => "" + site_associations.#: "1" => "" + site_associations.0.security_domains.#: "0" => "" + site_associations.0.site_id: "6204001af1520cc99b09cb9a" => "" + user_associations.#: "2" => "" + user_associations.0.user_id: "48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa" => "" + user_associations.1.user_id: "820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27" => "" +DESTROY: mso_dhcp_relay_policy.test + description: "" => "" + dhcp_relay_policy_provider.#: "0" => "" + id: "6214d5dc1b00004081fd0690" => "" + name: "acctest_9zov4" => "" + tenant_id: "620cf5ad1d0000ab504f9a3d" => "" + + + +STATE: + +data.mso_tenant.test: + ID = 620cf5ad1d0000ab504f9a3d + provider = provider.mso + description = + display_name = acctest_crest + name = acctest_crest + site_associations.# = 1 + site_associations.0.site_id = 6204001af1520cc99b09cb9a + user_associations.# = 2 + user_associations.0.user_id = 48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa + user_associations.1.user_id = 820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27 +mso_dhcp_relay_policy.test: + ID = 6214d5dc1b00004081fd0690 + provider = provider.mso + description = + name = acctest_9zov4 + tenant_id = 620cf5ad1d0000ab504f9a3d + + Dependencies: + data.mso_tenant.test +2022/02/22 17:53:58 [INFO] terraform: building graph: GraphTypeApply +2022/02/22 17:53:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (prepare state)" (*terraform.NodeApplyableResource) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (prepare state)" references: [] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (prepare state)" references: [] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by mso_dhcp_relay_policy.test +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "mso_dhcp_relay_policy.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test" references: [data.mso_tenant.test data.mso_tenant.test] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "mso_dhcp_relay_policy.test (destroy)" references: [] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:58 DestroyEdgeTransformer: pruning unused resource node mso_dhcp_relay_policy.test (prepare state) +2022/02/22 17:53:58 DestroyEdgeTransformer: pruning unused resource node data.mso_tenant.test (prepare state) +2022/02/22 17:53:58 [DEBUG] Starting graph walk: walkDestroy +2022/02/22 17:53:58 [DEBUG] mso_dhcp_relay_policy.test: applying the planned Delete change +2022/02/22 17:53:58 [DEBUG] 6214d5dc1b00004081fd0690: Beginning Read +2022/02/22 17:53:58 HTTP request DELETE mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:58 [DEBUG] Begin Injection +2022/02/22 17:53:58 HTTP request after injection DELETE mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:58 +HTTP Request: DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:58 nHTTP Response: 204 204 No Content &{204 No Content 204 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Date:[Tue, 22 Feb 2022 12:23:58 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] {} 0 [] false false map[] 0xc002c78e00 0xc0013000b0} +2022/02/22 17:53:58 + HTTP response unique string DELETE https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:58 [DEBUG] : Read finished successfully +2022/02/22 17:53:58 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:58 [DEBUG] New state was assigned lineage "3bfaa9c2-6d8c-e39e-8aff-5970214acc6c" +2022/02/22 17:53:58 HTTP request GET mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:58 [DEBUG] Begin Injection +2022/02/22 17:53:58 HTTP request after injection GET mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:58 +HTTP Request: GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 +2022/02/22 17:53:58 nHTTP Response: 400 400 Bad Request &{400 Bad Request 400 HTTP/1.1 1 1 map[Content-Language:[en] Content-Length:[86] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:58 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc001de6180 86 [] false false map[] 0xc00017fa00 0xc0013000b0} +2022/02/22 17:53:58 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/policies/dhcp/relay/6214d5dc1b00004081fd0690 {"code":141,"message":"Resource Not Found: Policy 6214d5dc1b00004081fd0690 not found"} +2022/02/22 17:53:58 [DEBUG] Exit from do method +2022/02/22 17:53:58 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:58 [DEBUG] Starting graph walk: walkPlanDestroy +2022/02/22 17:53:58 [INFO] terraform: building graph: GraphTypeRefresh +2022/02/22 17:53:58 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:58 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeRefreshableDataResource) needs provider.mso +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:58 [DEBUG] Starting graph walk: walkRefresh +2022/02/22 17:53:58 [DEBUG] Resource state not found for node "data.mso_tenant.test", instance data.mso_tenant.test +2022/02/22 17:53:58 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:58 [DEBUG] : Beginning Read +2022/02/22 17:53:58 HTTP request GET mso/api/v1/tenants +2022/02/22 17:53:58 [DEBUG] Begin Injection +2022/02/22 17:53:58 HTTP request after injection GET mso/api/v1/tenants +2022/02/22 17:53:58 [DEBUG] Begining DO method https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:59 +HTTP Request: GET https://173.36.219.31/mso/api/v1/tenants +2022/02/22 17:53:59 nHTTP Response: 200 200 OK &{200 OK 200 HTTP/1.1 1 1 map[Cache-Control:[no-cache] Content-Language:[en] Content-Length:[3980] Content-Type:[application/json] Date:[Tue, 22 Feb 2022 12:23:59 GMT] Expires:[Thu, 01 Jan 1970 00:00:01 GMT] Server:[nginx] Strict-Transport-Security:[max-age=31536000; includeSubDomains] X-Content-Type-Options:[nosniff] X-Frame-Options:[SAMEORIGIN] X-Ratelimit-Limit:[-1] X-Ratelimit-Remaining:[-1] X-Ratelimit-Reset:[1559582945] X-Xss-Protection:[1; mode=block]] 0xc00072c380 3980 [] false false map[] 0xc00017ec00 0xc0013000b0} +2022/02/22 17:53:59 + HTTP response unique string GET https://173.36.219.31/mso/api/v1/tenants {"tenants":[{"id":"620cf5ad1d0000ab504f9a3d","name":"acctest_crest","displayName":"acctest_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"","_updateVersion":0,"_versionDefaulted":false},{"id":"62067c951d0000f4834f9910","name":"ansible_test","displayName":"ansible_test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"81ef2a7b7073696945d15b9ab341409ec979d973e29a300857b84abe8c296ba0"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000010","name":"common","displayName":"common","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Ansible test tenant","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000012","name":"dcnm-default-tn","displayName":"dcnm-default-tn","siteAssociations":[],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Default tenant for DCNM sites","_updateVersion":0,"_versionDefaulted":false},{"id":"0000ffff0000000000000011","name":"infra","displayName":"infra","siteAssociations":[{"siteId":"62032c79f1520cc99b09cb95","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null},{"siteId":"62032c83f1520cc99b09cb96","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"Infra tenant for use with all other tenants","_updateVersion":1,"_versionDefaulted":false},{"id":"6213792e1d00005c244f9c29","name":"option_test","displayName":"option_test","siteAssociations":[],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"option_test","_updateVersion":1,"_versionDefaulted":false},{"id":"620cb3101d000024464f99bd","name":"test","displayName":"test","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"description":"testing","_updateVersion":0,"_versionDefaulted":false},{"id":"620ccdb11d0000744a4f9a23","name":"test_crest","displayName":"test_crest","siteAssociations":[{"siteId":"6204001af1520cc99b09cb9a","securityDomains":[],"cloudAccount":null,"azureAccount":null,"awsAccount":null,"gcpAccount":null,"gatewayRouter":null}],"userAssociations":[{"userId":"820d03d1a79e658da75d36aca7018aff2217a725ef841b156bca898d9170df27"},{"userId":"48d105bdfbc49a5fcf39a10b961386e61dfe40085cb0315d818b761c5735dafa"}],"_updateVersion":0,"_versionDefaulted":false}]} +2022/02/22 17:53:59 [DEBUG] Exit from do method +2022/02/22 17:53:59 [DEBUG] 620cf5ad1d0000ab504f9a3d: Read finished successfully +2022/02/22 17:53:59 [DEBUG] provider has no plugin.Client +2022/02/22 17:53:59 [DEBUG] New state was assigned lineage "efd41eb3-0889-f71f-88d4-24802fbdf398" +2022/02/22 17:53:59 [INFO] terraform: building graph: GraphTypePlanDestroy +2022/02/22 17:53:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodePlanDestroyableResourceInstance) needs provider.mso +2022/02/22 17:53:59 [DEBUG] adding implicit provider configuration provider.mso, implied first by data.mso_tenant.test +2022/02/22 17:53:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test" (*terraform.NodeAbstractResourceInstance) needs provider.mso +2022/02/22 17:53:59 [DEBUG] ProviderTransformer: "data.mso_tenant.test (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider.mso +2022/02/22 17:53:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test" references: [] +2022/02/22 17:53:59 [DEBUG] ReferenceTransformer: "data.mso_tenant.test (destroy)" references: [] +2022/02/22 17:53:59 [DEBUG] ReferenceTransformer: "provider.mso" references: [] +2022/02/22 17:53:59 [DEBUG] Starting graph walk: walkPlanDestroy diff --git a/mso/datasource_mso_dhcp_relay_policy.go b/mso/datasource_mso_dhcp_relay_policy.go new file mode 100644 index 00000000..d5cd519a --- /dev/null +++ b/mso/datasource_mso_dhcp_relay_policy.go @@ -0,0 +1,79 @@ +package mso + +import ( + "log" + + "github.com/ciscoecosystem/mso-go-client/client" + + "github.com/hashicorp/terraform-plugin-sdk/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/helper/validation" +) + +func datasourceMSODHCPRelayPolicy() *schema.Resource { + return &schema.Resource{ + + Read: datasourceMSODHCPRelayPolicyRead, + + SchemaVersion: version, + + Schema: (map[string]*schema.Schema{ + "tenant_id": { + Type: schema.TypeString, + Computed: true, + }, + + "name": { + Type: schema.TypeString, + Required: true, + }, + + "description": { + Type: schema.TypeString, + Computed: true, + }, + + "dhcp_relay_policy_provider": { + Type: schema.TypeList, + Computed: true, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "epg": { + Type: schema.TypeString, + Optional: true, + }, + "external_epg": { + Type: schema.TypeString, + Optional: true, + }, + "dhcp_server_address": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.IsIPAddress, + }, + "tenant_id": { + Type: schema.TypeString, + Computed: true, + }, + }, + }, + }, + }), + } +} + +func datasourceMSODHCPRelayPolicyRead(d *schema.ResourceData, m interface{}) error { + log.Printf("[DEBUG] dhcp_relay_policy: Beginning Import") + msoClient := m.(*client.Client) + name := d.Get("name").(string) + id, err := msoClient.GetDHCPRelayPolicyID(name) + if err != nil { + return err + } + DHCPRelayPolicy, err := getDHCPRelayPolicy(msoClient, id) + if err != nil { + return err + } + setDHCPRelayPolicy(DHCPRelayPolicy, d) + log.Printf("[DEBUG] %s: Import finished successfully", d.Id()) + return nil +} diff --git a/mso/datasource_mso_dhcp_relay_policy_test.go b/mso/datasource_mso_dhcp_relay_policy_test.go new file mode 100644 index 00000000..7921d689 --- /dev/null +++ b/mso/datasource_mso_dhcp_relay_policy_test.go @@ -0,0 +1,209 @@ +package mso + +import ( + "fmt" + "regexp" + + "testing" + + "github.com/ciscoecosystem/mso-go-client/models" + "github.com/hashicorp/terraform-plugin-sdk/helper/acctest" + "github.com/hashicorp/terraform-plugin-sdk/helper/resource" +) + +func TestAccMSODHCPRelayPolicy_DataSource(t *testing.T) { + var relayPolicy models.DHCPRelayPolicy + resourceName := "mso_dhcp_relay_policy.test" + dataSourceName := "data.mso_dhcp_relay_policy.test" + tenant := tenantNames[0] + epg := epg + name := makeTestVariable(acctest.RandString(5)) + schemaName := makeTestVariable(acctest.RandString(5)) + templateName := makeTestVariable(acctest.RandString(5)) + displayName := makeTestVariable(acctest.RandString(5)) + dhcpServerAddress, _ := acctest.RandIpAddress("1.2.0.0/16") + randomParameter := acctest.RandStringFromCharSet(5, "abcdefghijklmnopqrstuvwxyz") + randomValue := acctest.RandString(5) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSODHCPRelayPolicyDestroy, + Steps: []resource.TestStep{ + { + Config: MSODHCPRelayPolicyDataSourceWithoutName(tenant, name), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSODHCPRelayPolicyDataSourceAttr(tenant, name, randomParameter, randomValue), + ExpectError: regexp.MustCompile(`An argument named(.)+is not expected here.`), + }, + { + Config: MSODHCPRelayPolicyDataSourceWithInvalidName(tenant, name), + ExpectError: regexp.MustCompile(`DHCP Relay Policy with name: (.)+ not found`), + }, + { + Config: MSODHCPRelayPolicyWithEPGDataSourceConfig(tenant, name, dhcpServerAddress, epg), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPRelayPolicyExists(resourceName, &relayPolicy), + resource.TestCheckResourceAttrPair(resourceName, "description", dataSourceName, "description"), + resource.TestCheckResourceAttrPair(resourceName, "tenant_id", dataSourceName, "tenant_id"), + resource.TestCheckResourceAttrPair(resourceName, "name", dataSourceName, "name"), + resource.TestCheckResourceAttrPair(resourceName, "dhcp_relay_policy_provider.#", dataSourceName, "dhcp_relay_policy_provider.#"), + resource.TestCheckResourceAttrPair(resourceName, "dhcp_relay_policy_provider.0.epg", dataSourceName, "dhcp_relay_policy_provider.0.epg"), + resource.TestCheckResourceAttrPair(resourceName, "dhcp_relay_policy_provider.0.dhcp_server_address", dataSourceName, "dhcp_relay_policy_provider.0.dhcp_server_address"), + ), + }, + { + Config: MSODHCPRelayPolicyWithExternalEPGDataSourceConfig(tenant, name, dhcpServerAddress, templateName, schemaName, displayName), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPRelayPolicyExists(resourceName, &relayPolicy), + resource.TestCheckResourceAttrPair(resourceName, "description", dataSourceName, "description"), + resource.TestCheckResourceAttrPair(resourceName, "tenant_id", dataSourceName, "tenant_id"), + resource.TestCheckResourceAttrPair(resourceName, "name", dataSourceName, "name"), + resource.TestCheckResourceAttrPair(resourceName, "dhcp_relay_policy_provider.#", dataSourceName, "dhcp_relay_policy_provider.#"), + resource.TestCheckResourceAttrPair(resourceName, "dhcp_relay_policy_provider.0.external_epg", dataSourceName, "dhcp_relay_policy_provider.0.external_epg"), + resource.TestCheckResourceAttrPair(resourceName, "dhcp_relay_policy_provider.0.dhcp_server_address", dataSourceName, "dhcp_relay_policy_provider.0.dhcp_server_address"), + ), + }, + { + Config: MSODHCPRelayPolicyDataSourceWithUpdatedResource(tenant, name, "description", randomValue), + ExpectNonEmptyPlan: true, + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPRelayPolicyExists(resourceName, &relayPolicy), + resource.TestCheckResourceAttrPair(resourceName, "description", dataSourceName, "description"), + ), + }, + }, + }) +} + +func MSODHCPRelayPolicyWithEPGDataSourceConfig(tenant, name, dhcpServerAddress, epg string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + dhcp_relay_policy_provider { + epg = "%s" + dhcp_server_address = "%s" + } + } + data "mso_dhcp_relay_policy" "test" { + name = mso_dhcp_relay_policy.test.name + } + `, tenant, tenant, name, epg, dhcpServerAddress) + return resource +} + +func MSODHCPRelayPolicyWithExternalEPGDataSourceConfig(tenant, name, dhcpServerAddress, templateName, schemaName, displayName string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource mso_schema "test"{ + name = "%s" + template_name = "%s" + tenant_id = data.mso_tenant.test.id + } + resource mso_schema_template_vrf "test" { + schema_id = mso_schema.test.id + template= mso_schema.test.template_name + name= "%s" + display_name= "%s" + } + resource "mso_schema_template_external_epg" "test" { + schema_id = mso_schema.test.id + template_name = mso_schema.test.template_name + external_epg_name = "%s" + display_name = "%s" + vrf_name = mso_schema_template_vrf.test.name + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + dhcp_relay_policy_provider { + external_epg = mso_schema_template_external_epg.test.id + dhcp_server_address = "%s" + } + } + data "mso_dhcp_relay_policy" "test" { + name = mso_dhcp_relay_policy.test.name + } + `, tenant, tenant, schemaName, templateName, displayName, displayName, displayName, displayName, name, dhcpServerAddress) + return resource +} + +func MSODHCPRelayPolicyDataSourceWithoutName(tenant, name string) string { + resource := fmt.Sprintf(` + resource "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = mso_tenant.test.id + name = "%s" + + } + data "mso_dhcp_relay_policy" "test" {} + `, tenant, tenant, name) + return resource +} + +func MSODHCPRelayPolicyDataSourceWithUpdatedResource(tenant, name, key, val string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + %s = "%s" + } + data "mso_dhcp_relay_policy" "test" { + name = mso_dhcp_relay_policy.test.name + depends_on = [mso_dhcp_relay_policy.test] + } + `, tenant, tenant, name, key, val) + return resource +} + +func MSODHCPRelayPolicyDataSourceAttr(tenant, name, key, val string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + + } + data "mso_dhcp_relay_policy" "test" { + name = mso_dhcp_relay_policy.test.name + %s = "%s" + } + `, tenant, tenant, name, key, val) + return resource +} + +func MSODHCPRelayPolicyDataSourceWithInvalidName(tenant, name string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + } + data "mso_dhcp_relay_policy" "test" { + name = "${mso_dhcp_relay_policy.test.name}_invalid" + } + `, tenant, tenant, name) + return resource +} diff --git a/mso/provider.go b/mso/provider.go index 457cd82f..6ac4ad60 100644 --- a/mso/provider.go +++ b/mso/provider.go @@ -111,6 +111,7 @@ func Provider() terraform.ResourceProvider { "mso_dhcp_option_policy": resourceMSODHCPOptionPolicy(), "mso_schema_site_l3out": resourceMSOSchemaSiteL3out(), "mso_schema_site_vrf_region_hub_network": resourceMSOSchemaSiteVRFRegionHubNetwork(), + "mso_dhcp_relay_policy": resourceMSODHCPRelayPolicy(), }, DataSourcesMap: map[string]*schema.Resource{ @@ -163,6 +164,7 @@ func Provider() terraform.ResourceProvider { "mso_schema_site_l3out": datasourceMSOSchemaSiteL3out(), "mso_schema_site_vrf_region_hub_network": datasourceMSOSchemaSiteVRFRegionHubNetwork(), "mso_schema_validate": datasourceMSOSchemaValidate(), + "mso_dhcp_relay_policy": datasourceMSODHCPRelayPolicy(), }, ConfigureFunc: configureClient, diff --git a/mso/provider_test.go b/mso/provider_test.go index 65c025ee..8970188f 100644 --- a/mso/provider_test.go +++ b/mso/provider_test.go @@ -15,6 +15,7 @@ var siteNames = []string{"ansible_test"} var tenantNames = []string{"acctest_crest"} var validSchemaId = "6206831f1d000012864f99a8" var inValidScheamaId = "620683151d0000f1854f99a4" +var epg = "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" func CreatSchemaSiteConfig(site, tenant, name string) string { resource := fmt.Sprintf(` diff --git a/mso/resource_mso_dhcp_relay_policy.go b/mso/resource_mso_dhcp_relay_policy.go new file mode 100644 index 00000000..2304ba65 --- /dev/null +++ b/mso/resource_mso_dhcp_relay_policy.go @@ -0,0 +1,243 @@ +package mso + +import ( + "fmt" + "log" + + "github.com/ciscoecosystem/mso-go-client/client" + "github.com/ciscoecosystem/mso-go-client/models" + + "github.com/hashicorp/terraform-plugin-sdk/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/helper/validation" +) + +func resourceMSODHCPRelayPolicy() *schema.Resource { + return &schema.Resource{ + Create: resourceMSODHCPRelayPolicyCreate, + Update: resourceMSODHCPRelayPolicyUpdate, + Read: resourceMSODHCPRelayPolicyRead, + Delete: resourceMSODHCPRelayPolicyDelete, + + Importer: &schema.ResourceImporter{ + State: resourceMSODHCPRelayPolicyImport, + }, + + SchemaVersion: version, + + Schema: (map[string]*schema.Schema{ + "tenant_id": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + + "name": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + + "description": { + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: validation.StringLenBetween(1, 1000), + }, + + "dhcp_relay_policy_provider": { + Type: schema.TypeList, + Optional: true, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "epg": { + Type: schema.TypeString, + Optional: true, + }, + "external_epg": { + Type: schema.TypeString, + Optional: true, + }, + "dhcp_server_address": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validation.IsIPAddress, + }, + "tenant_id": { + Type: schema.TypeString, + Computed: true, + }, + }, + }, + }, + }), + } +} + +func resourceMSODHCPRelayPolicyImport(d *schema.ResourceData, m interface{}) ([]*schema.ResourceData, error) { + log.Printf("[DEBUG] %s: Beginning Import", d.Id()) + msoClient := m.(*client.Client) + id := d.Id() + DHCPRelayPolicy, err := getDHCPRelayPolicy(msoClient, id) + if err != nil { + return nil, err + } + setDHCPRelayPolicy(DHCPRelayPolicy, d) + log.Printf("[DEBUG] %s: Import finished successfully", d.Id()) + return []*schema.ResourceData{d}, nil +} + +func getDHCPRelayPolicy(client *client.Client, id string) (*models.DHCPRelayPolicy, error) { + cont, err := client.ReadDHCPRelayPolicy(id) + if err != nil { + return nil, err + } + + DHCPRelayPolicy, err := models.DHCPRelayPolicyFromContainer(cont) + if err != nil { + return nil, err + } + + return DHCPRelayPolicy, nil +} + +func setDHCPRelayPolicy(DHCPRelayPolicy *models.DHCPRelayPolicy, d *schema.ResourceData) { + d.Set("description", DHCPRelayPolicy.Desc) + d.Set("name", DHCPRelayPolicy.Name) + d.Set("tenant_id", DHCPRelayPolicy.TenantID) + providerList := make([]map[string]string, 0) + for _, provider := range DHCPRelayPolicy.DHCPProvider { + providerList = append(providerList, map[string]string{ + "external_epg": provider.ExternalEPG, + "epg": provider.EPG, + "dhcp_server_address": provider.DHCPServerAddress, + "tenant_id": provider.TenantID, + }) + } + d.Set("dhcp_relay_policy_provider", providerList) + d.SetId(DHCPRelayPolicy.ID) +} + +func resourceMSODHCPRelayPolicyCreate(d *schema.ResourceData, m interface{}) error { + log.Printf("[DEBUG] %s: Beginning Create", d.Id()) + + msoClient := m.(*client.Client) + tenantId := d.Get("tenant_id").(string) + + DHCPRelayPolicy := models.DHCPRelayPolicy{ + TenantID: tenantId, + Name: d.Get("name").(string), + } + + if desc, ok := d.GetOk("description"); ok { + DHCPRelayPolicy.Desc = desc.(string) + } + + if providerList, ok := d.GetOk("dhcp_relay_policy_provider"); ok { + providerModelList := make([]models.DHCPProvider, 0) + for _, provider := range providerList.([]interface{}) { + providerMap := provider.(map[string]interface{}) + if providerMap["epg"] == "" && providerMap["external_epg"] == "" { + return fmt.Errorf("expected any one of the epg or external_epg.") + } + if providerMap["epg"] != "" && providerMap["external_epg"] != "" { + return fmt.Errorf("epg and external_epg both should not be set simultaneously") + } + providerModelList = append(providerModelList, models.DHCPProvider{ + ExternalEPG: providerMap["external_epg"].(string), + EPG: providerMap["epg"].(string), + DHCPServerAddress: providerMap["dhcp_server_address"].(string), + TenantID: tenantId, + }) + } + DHCPRelayPolicy.DHCPProvider = providerModelList + } + + cont, err := msoClient.CreateDHCPRelayPolicy(&DHCPRelayPolicy) + if err != nil { + return err + } + d.SetId(models.StripQuotes(cont.S("id").String())) + + log.Printf("[DEBUG] %s: Creation finished successfully", d.Id()) + + return resourceMSODHCPRelayPolicyRead(d, m) +} + +func resourceMSODHCPRelayPolicyUpdate(d *schema.ResourceData, m interface{}) error { + log.Printf("[DEBUG] %s: Beginning Policy Update", d.Id()) + + msoClient := m.(*client.Client) + + tenantId := d.Get("tenant_id").(string) + + DHCPRelayPolicy := models.DHCPRelayPolicy{ + TenantID: tenantId, + Name: d.Get("name").(string), + } + + if desc, ok := d.GetOk("description"); ok { + DHCPRelayPolicy.Desc = desc.(string) + } + + if providerList, ok := d.GetOk("dhcp_relay_policy_provider"); ok { + providerModelList := make([]models.DHCPProvider, 0) + for _, provider := range providerList.([]interface{}) { + providerMap := provider.(map[string]interface{}) + if providerMap["epg"] == "" && providerMap["external_epg"] == "" { + return fmt.Errorf("expected any one of the epg or external_epg.") + } + if providerMap["epg"] != "" && providerMap["external_epg"] != "" { + return fmt.Errorf("epg and external_epg both should not be set simultaneously") + } + providerModelList = append(providerModelList, models.DHCPProvider{ + ExternalEPG: providerMap["external_epg"].(string), + EPG: providerMap["epg"].(string), + DHCPServerAddress: providerMap["dhcp_server_address"].(string), + TenantID: tenantId, + }) + } + DHCPRelayPolicy.DHCPProvider = providerModelList + } + + _, err := msoClient.UpdateDHCPRelayPolicy(d.Id(), &DHCPRelayPolicy) + if err != nil { + return err + } + + log.Printf("[DEBUG] Policy Update finished successfully: %s", d.Id()) + + return resourceMSODHCPRelayPolicyRead(d, m) +} + +func resourceMSODHCPRelayPolicyRead(d *schema.ResourceData, m interface{}) error { + log.Printf("[DEBUG] %s: Beginning Read", d.Id()) + + msoClient := m.(*client.Client) + id := d.Id() + log.Printf("id: %v\n", id) + DHCPRelayPolicy, err := getDHCPRelayPolicy(msoClient, id) + if err != nil { + d.SetId("") + return err + } + setDHCPRelayPolicy(DHCPRelayPolicy, d) + + log.Printf("[DEBUG] %s: Read finished successfully", d.Id()) + return nil +} + +func resourceMSODHCPRelayPolicyDelete(d *schema.ResourceData, m interface{}) error { + log.Printf("[DEBUG] %s: Beginning Read", d.Id()) + msoClient := m.(*client.Client) + id := d.Id() + + err := msoClient.DeleteDHCPRelayPolicy(id) + if err != nil { + return err + } + d.SetId("") + log.Printf("[DEBUG] %s: Read finished successfully", d.Id()) + return nil +} diff --git a/mso/resource_mso_dhcp_relay_policy_test.go b/mso/resource_mso_dhcp_relay_policy_test.go new file mode 100644 index 00000000..d354c0cb --- /dev/null +++ b/mso/resource_mso_dhcp_relay_policy_test.go @@ -0,0 +1,607 @@ +package mso + +import ( + "fmt" + "regexp" + "testing" + + "github.com/ciscoecosystem/mso-go-client/client" + "github.com/ciscoecosystem/mso-go-client/models" + "github.com/hashicorp/terraform-plugin-sdk/helper/acctest" + "github.com/hashicorp/terraform-plugin-sdk/helper/resource" + "github.com/hashicorp/terraform-plugin-sdk/terraform" +) + +func TestAccMSODHCPRelayPolicy_Basic(t *testing.T) { + var relayPolicy1 models.DHCPRelayPolicy + var relayPolicy2 models.DHCPRelayPolicy + resourceName := "mso_dhcp_relay_policy.test" + tenant := tenantNames[0] + epg := epg + name := makeTestVariable(acctest.RandString(5)) + nameOther := makeTestVariable(acctest.RandString(5)) + displayName := makeTestVariable(acctest.RandString(5)) + schemaName := makeTestVariable(acctest.RandString(5)) + templateName := makeTestVariable(acctest.RandString(5)) + dhcpServerAddress, _ := acctest.RandIpAddress("1.2.0.0/16") + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSODHCPRelayPolicyDestroy, + Steps: []resource.TestStep{ + { + Config: MSODHCPRelayPolicyWithoutRequired(tenant, name, "tenant_id"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSODHCPRelayPolicyWithoutRequired(tenant, name, "name"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSODHCPRelayPolicyWithRequired(tenant, name), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPRelayPolicyExists(resourceName, &relayPolicy1), + resource.TestCheckResourceAttr(resourceName, "description", ""), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttr(resourceName, "dhcp_relay_policy_provider.#", "0"), + ), + }, + { + Config: MSODHCPRelayPolicyProviderWithoutEPG(tenant, name, dhcpServerAddress, epg, "epg"), + ExpectError: regexp.MustCompile(`expected any one of the epg or external_epg.`), + }, + { + Config: MSODHCPRelayPolicyProviderWithoutEPG(tenant, name, dhcpServerAddress, epg, "dhcp_server_address"), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSODHCPRelayPolicyProviderWithoutExternalEPG(tenant, name, dhcpServerAddress, schemaName, templateName, displayName), + ExpectError: regexp.MustCompile(`expected any one of the epg or external_epg.`), + }, + { + Config: MSODHCPRelayPolicyWithEPGRequired(tenant, name, dhcpServerAddress, epg), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPRelayPolicyExists(resourceName, &relayPolicy2), + resource.TestCheckResourceAttr(resourceName, "description", ""), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttr(resourceName, "dhcp_relay_policy_provider.#", "1"), + resource.TestCheckResourceAttr(resourceName, "dhcp_relay_policy_provider.0.epg", epg), + resource.TestCheckResourceAttr(resourceName, "dhcp_relay_policy_provider.0.dhcp_server_address", dhcpServerAddress), + testAccCheckMSODHCPRelayPolicyIdEqual(&relayPolicy1, &relayPolicy2), + ), + }, + { + Config: MSODHCPRelayPolicyWithExternalEPGRequired(tenant, name, schemaName, templateName, dhcpServerAddress, displayName), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPRelayPolicyExists(resourceName, &relayPolicy2), + resource.TestCheckResourceAttr(resourceName, "description", ""), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttr(resourceName, "dhcp_relay_policy_provider.#", "1"), + resource.TestCheckResourceAttrSet(resourceName, "dhcp_relay_policy_provider.0.external_epg"), + resource.TestCheckResourceAttr(resourceName, "dhcp_relay_policy_provider.0.dhcp_server_address", dhcpServerAddress), + testAccCheckMSODHCPRelayPolicyIdEqual(&relayPolicy1, &relayPolicy2), + ), + }, + { + Config: MSODHCPRelayPolicyWithOptional(tenant, name, epg, dhcpServerAddress), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPRelayPolicyExists(resourceName, &relayPolicy2), + resource.TestCheckResourceAttr(resourceName, "description", "test description"), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttr(resourceName, "dhcp_relay_policy_provider.#", "1"), + resource.TestCheckResourceAttrSet(resourceName, "dhcp_relay_policy_provider.0.epg"), + resource.TestCheckResourceAttr(resourceName, "dhcp_relay_policy_provider.0.dhcp_server_address", dhcpServerAddress), + testAccCheckMSODHCPRelayPolicyIdEqual(&relayPolicy1, &relayPolicy2), + ), + }, + { + ResourceName: resourceName, + ImportState: true, + ImportStateVerify: true, + }, + { + Config: MSODHCPRelayPolicyWithOutRequiredParameters(), + ExpectError: regexp.MustCompile(`Missing required argument`), + }, + { + Config: MSODHCPRelayPolicyWithRequired(tenant, nameOther), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPRelayPolicyExists(resourceName, &relayPolicy2), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", nameOther), + testAccCheckMSODHCPRelayPolicyIdNotEqual(&relayPolicy1, &relayPolicy2), + ), + }, + }, + }) +} + +func TestAccMSODHCPRelayPolicy_Update(t *testing.T) { + var relayPolicy1 models.DHCPRelayPolicy + var relayPolicy2 models.DHCPRelayPolicy + resourceName := "mso_dhcp_relay_policy.test" + tenant := tenantNames[0] + name := makeTestVariable(acctest.RandString(5)) + dhcpServerAddress, _ := acctest.RandIpAddress("1.2.0.0/16") + otherDhcpServerAddress, _ := acctest.RandIpAddress("1.2.0.0/16") + displayName := makeTestVariable(acctest.RandString(5)) + otherDisplayName := makeTestVariable(acctest.RandString(5)) + schemaName := makeTestVariable(acctest.RandString(5)) + templateName := makeTestVariable(acctest.RandString(5)) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSODHCPRelayPolicyDestroy, + Steps: []resource.TestStep{ + { + Config: MSODHCPRelayPolicyWithMultipleProvider(tenant, name, dhcpServerAddress, otherDhcpServerAddress, schemaName, templateName, displayName, otherDisplayName), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPRelayPolicyExists(resourceName, &relayPolicy1), + resource.TestCheckResourceAttr(resourceName, "description", ""), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttr(resourceName, "dhcp_relay_policy_provider.#", "2"), + resource.TestCheckResourceAttrSet(resourceName, "dhcp_relay_policy_provider.0.external_epg"), + resource.TestCheckResourceAttrSet(resourceName, "dhcp_relay_policy_provider.0.dhcp_server_address"), + resource.TestCheckResourceAttrSet(resourceName, "dhcp_relay_policy_provider.1.external_epg"), + resource.TestCheckResourceAttrSet(resourceName, "dhcp_relay_policy_provider.1.dhcp_server_address"), + ), + }, + { + Config: MSODHCPRelayPolicyWithEPGRequired(tenant, name, dhcpServerAddress, epg), + Check: resource.ComposeTestCheckFunc( + testAccCheckMSODHCPRelayPolicyExists(resourceName, &relayPolicy2), + resource.TestCheckResourceAttr(resourceName, "description", ""), + resource.TestCheckResourceAttrSet(resourceName, "tenant_id"), + resource.TestCheckResourceAttr(resourceName, "name", name), + resource.TestCheckResourceAttr(resourceName, "dhcp_relay_policy_provider.#", "1"), + resource.TestCheckResourceAttrSet(resourceName, "dhcp_relay_policy_provider.0.epg"), + resource.TestCheckResourceAttrSet(resourceName, "dhcp_relay_policy_provider.0.dhcp_server_address"), + testAccCheckMSODHCPRelayPolicyIdEqual(&relayPolicy1, &relayPolicy2), + ), + }, + }, + }) +} + +func TestAccMSODHCPRelayPolicy_Negative(t *testing.T) { + tenant := tenantNames[0] + name := makeTestVariable(acctest.RandString(5)) + randomParameter := acctest.RandStringFromCharSet(5, "abcdefghijklmnopqrstuvwxyz") + randomValue := acctest.RandString(5) + dhcpServerAddress, _ := acctest.RandIpAddress("1.2.0.0/16") + displayName := makeTestVariable(acctest.RandString(5)) + schemaName := makeTestVariable(acctest.RandString(5)) + templateName := makeTestVariable(acctest.RandString(5)) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSODHCPRelayPolicyDestroy, + Steps: []resource.TestStep{ + { + Config: MSODHCPRelayPolicyWithInvalidTenantId(randomValue, name), + ExpectError: regexp.MustCompile(`tenant with id (.)+ is not found`), + }, + { + Config: MSODHCPRelayPolicyWithRequired(tenant, acctest.RandString(1001)), + ExpectError: regexp.MustCompile(`1 - 1000`), + }, + { + Config: MSODHCPRelayPolicyWithRequiredUpdatedAttr(tenant, name, "description", acctest.RandString(1001)), + ExpectError: regexp.MustCompile(`1 - 1000`), + }, + { + Config: MSODHCPRelayPolicyWithRequiredUpdatedAttr(tenant, name, randomParameter, randomValue), + ExpectError: regexp.MustCompile(`An argument named(.)+is not expected here.`), + }, + { + Config: MSODHCPRelayPolicyWithMultipleProvider(tenant, name, dhcpServerAddress, dhcpServerAddress, schemaName, templateName, displayName, displayName), + ExpectError: regexp.MustCompile(`duplicate`), + }, + { + Config: MSODHCPRelayPolicyWithExternalEPGRequired(tenant, name, schemaName, templateName, randomValue, displayName), + ExpectError: regexp.MustCompile(`to contain a valid IP`), + }, + { + Config: MSODHCPRelayPolicyWithExtraAttr(tenant, name, dhcpServerAddress, schemaName, templateName, displayName, randomParameter, randomValue), + ExpectError: regexp.MustCompile(`Unsupported argument`), + }, + { + Config: MSODHCPRelayPolicyWithRequired(tenant, name), + }, + }, + }) +} + +func TestAccMSODHCPRelayPolicy_MultipleCreateDelete(t *testing.T) { + tenant := tenantNames[0] + name := makeTestVariable(acctest.RandString(5)) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, + CheckDestroy: testAccCheckMSODHCPRelayPolicyDestroy, + Steps: []resource.TestStep{ + { + Config: MSODHCPRelayPolicyMultiple(tenant, name), + }, + }, + }) +} + +func testAccCheckMSODHCPRelayPolicyExists(name string, m *models.DHCPRelayPolicy) resource.TestCheckFunc { + return func(s *terraform.State) error { + rs1, err1 := s.RootModule().Resources[name] + + if !err1 { + return fmt.Errorf("DHCP Relay Policy %s not found", name) + } + + if rs1.Primary.ID == "" { + return fmt.Errorf("DHCP Relay Policy was set") + } + + client := testAccProvider.Meta().(*client.Client) + + cont, err := client.ReadDHCPRelayPolicy(rs1.Primary.ID) + + if err != nil { + return err + } + + sts, _ := models.DHCPRelayPolicyFromContainer(cont) + + *m = *sts + return nil + } +} + +func testAccCheckMSODHCPRelayPolicyDestroy(s *terraform.State) error { + client := testAccProvider.Meta().(*client.Client) + + for _, rs := range s.RootModule().Resources { + + if rs.Type == "mso_dhcp_relay_policy" { + _, err := client.ReadDHCPRelayPolicy(rs.Primary.ID) + if err == nil { + return fmt.Errorf("Label still exists") + } + } else { + continue + } + + } + return nil +} + +func testAccCheckMSODHCPRelayPolicyIdEqual(m1, m2 *models.DHCPRelayPolicy) resource.TestCheckFunc { + return func(s *terraform.State) error { + if m1.ID != m2.ID { + return fmt.Errorf("DHCP Relay Policies are not equal") + } + return nil + } +} + +func testAccCheckMSODHCPRelayPolicyIdNotEqual(m1, m2 *models.DHCPRelayPolicy) resource.TestCheckFunc { + return func(s *terraform.State) error { + if m1.ID == m2.ID { + return fmt.Errorf("DHCP relay Policies are equal") + } + return nil + } +} + +func MSODHCPRelayPolicyWithRequiredUpdatedAttr(tenant, name, key, val string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + %s = "%s" + } + `, tenant, tenant, name, key, val) + return resource +} + +func MSODHCPRelayPolicyWithInvalidTenantId(tenant, name string) string { + resource := fmt.Sprintf(` + resource "mso_dhcp_relay_policy" "test" { + tenant_id = "%s" + name = "%s" + } + `, tenant, name) + return resource +} + +func MSODHCPRelayPolicyMultiple(tenant, name string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s${count.index}" + count = 5 + } + `, tenant, tenant, name) + return resource +} + +func MSODHCPRelayPolicyWithRequired(tenant, name string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + } + `, tenant, tenant, name) + return resource +} + +func MSODHCPRelayPolicyWithMultipleProvider(tenant, name, dhcpServerAddress, otherDhcpServerAddress, schemaName, templateName, displayName, otherDisplayName string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource mso_schema "test"{ + name = "%s" + template_name = "%s" + tenant_id = data.mso_tenant.test.id + } + resource mso_schema_template_vrf "test" { + schema_id = mso_schema.test.id + template= mso_schema.test.template_name + name= "%s" + display_name= "%s" + } + resource "mso_schema_template_external_epg" "test" { + schema_id = mso_schema.test.id + template_name = mso_schema.test.template_name + external_epg_name = "%s" + display_name = "%s" + vrf_name = mso_schema_template_vrf.test.name + } + resource "mso_schema_template_external_epg" "test1" { + schema_id = mso_schema.test.id + template_name = mso_schema.test.template_name + external_epg_name = "%s" + display_name = "%s" + vrf_name = mso_schema_template_vrf.test.name + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + dhcp_relay_policy_provider { + dhcp_server_address = "%s" + external_epg = mso_schema_template_external_epg.test.id + } + dhcp_relay_policy_provider { + dhcp_server_address = "%s" + external_epg = mso_schema_template_external_epg.test1.id + } + } + `, tenant, tenant, schemaName, templateName, displayName, displayName, displayName, displayName, otherDisplayName, otherDisplayName, name, dhcpServerAddress, otherDhcpServerAddress) + return resource +} + +func MSODHCPRelayPolicyWithExtraAttr(tenant, name, dhcpServerAddress, schemaName, templateName, displayName, key, val string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource mso_schema "test"{ + name = "%s" + template_name = "%s" + tenant_id = data.mso_tenant.test.id + } + resource mso_schema_template_vrf "test" { + schema_id = mso_schema.test.id + template= mso_schema.test.template_name + name= "%s" + display_name= "%s" + } + resource "mso_schema_template_external_epg" "test" { + schema_id = mso_schema.test.id + template_name = mso_schema.test.template_name + external_epg_name = "%s" + display_name = "%s" + vrf_name = mso_schema_template_vrf.test.name + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + dhcp_relay_policy_provider { + dhcp_server_address = "%s" + external_epg = mso_schema_template_external_epg.test.id + %s = "%s" + } + } + `, tenant, tenant, schemaName, templateName, displayName, displayName, displayName, displayName, name, dhcpServerAddress, key, val) + return resource +} + +func MSODHCPRelayPolicyWithEPGRequired(tenant, name, dhcpServerAddress, epg string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + dhcp_relay_policy_provider { + epg = "%s" + dhcp_server_address = "%s" + } + } + `, tenant, tenant, name, epg, dhcpServerAddress) + return resource +} + +func MSODHCPRelayPolicyWithExternalEPGRequired(tenant, name, schemaName, templateName, dhcpServerAddress, displayName string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource mso_schema "test"{ + name = "%s" + template_name = "%s" + tenant_id = data.mso_tenant.test.id + } + resource mso_schema_template_vrf "test" { + schema_id = mso_schema.test.id + template= mso_schema.test.template_name + name= "%s" + display_name= "%s" + } + resource "mso_schema_template_external_epg" "test" { + schema_id = mso_schema.test.id + template_name = mso_schema.test.template_name + external_epg_name = "%s" + display_name = "%s" + vrf_name = mso_schema_template_vrf.test.name + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + dhcp_relay_policy_provider { + external_epg = mso_schema_template_external_epg.test.id + dhcp_server_address = "%s" + } + } + `, tenant, tenant, schemaName, templateName, displayName, displayName, displayName, displayName, name, dhcpServerAddress) + return resource +} + +func MSODHCPRelayPolicyWithOutRequiredParameters() string { + resource := fmt.Sprintln(` + resource "mso_dhcp_relay_policy" "test" { + description = "test description updated" + } + `) + return resource +} + +func MSODHCPRelayPolicyWithOptional(tenant, name, epg, dhcpServerAddress string) string { + resource := fmt.Sprintf(` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + description = "test description" + dhcp_relay_policy_provider { + epg = "%s" + dhcp_server_address = "%s" + } + } + `, tenant, tenant, name, epg, dhcpServerAddress) + return resource +} + +func MSODHCPRelayPolicyWithoutRequired(tenant, name, attr string) string { + rBlock := ` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + ` + switch attr { + case "tenant_id": + rBlock += ` + resource "mso_dhcp_relay_policy" "test" { + # tenant_id = data.mso_tenant.test.id + name = "%s" + }` + case "name": + rBlock += ` + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + # name = "%s" + }` + } + return fmt.Sprintf(rBlock, tenant, tenant, name) +} + +func MSODHCPRelayPolicyProviderWithoutEPG(tenant, name, dhcpServerAddress, epg, attr string) string { + rBlock := ` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + ` + switch attr { + case "epg": + rBlock += ` + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + dhcp_relay_policy_provider { + # epg = "%s" + dhcp_server_address = "%s" + } + }` + case "dhcp_server_address": + rBlock += ` + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + dhcp_relay_policy_provider { + epg = "%s" + # dhcp_server_address = "%s" + } + }` + } + return fmt.Sprintf(rBlock, tenant, tenant, name, epg, dhcpServerAddress) +} + +func MSODHCPRelayPolicyProviderWithoutExternalEPG(tenant, name, dhcpServerAddress, schemaName, templateName, displayName string) string { + rBlock := ` + data "mso_tenant" "test" { + name = "%s" + display_name = "%s" + } + resource mso_schema "test"{ + name = "%s" + template_name = "%s" + tenant_id = data.mso_tenant.test.id + } + resource mso_schema_template_vrf "test" { + schema_id = mso_schema.test.id + template= mso_schema.test.template_name + name= "%s" + display_name= "%s" + } + resource "mso_schema_template_external_epg" "test" { + schema_id = mso_schema.test.id + template_name = mso_schema.test.template_name + external_epg_name = "%s" + display_name = "%s" + vrf_name = mso_schema_template_vrf.test.name + } + resource "mso_dhcp_relay_policy" "test" { + tenant_id = data.mso_tenant.test.id + name = "%s" + dhcp_relay_policy_provider { + dhcp_server_address = "%s" + # external_epg = mso_schema_template_external_epg.test.id + } + }` + return fmt.Sprintf(rBlock, tenant, tenant, schemaName, templateName, displayName, displayName, displayName, displayName, name, dhcpServerAddress) +} diff --git a/mso/resource_mso_schema_template_anp_epg.go b/mso/resource_mso_schema_template_anp_epg.go index 9f0cef45..793246a9 100644 --- a/mso/resource_mso_schema_template_anp_epg.go +++ b/mso/resource_mso_schema_template_anp_epg.go @@ -169,7 +169,8 @@ func resourceMSOSchemaTemplateAnpEpgImport(d *schema.ResourceData, m interface{} } apiEPG := models.StripQuotes(epgCont.S("name").String()) if apiEPG == stateEPG { - d.SetId(apiEPG) + id := fmt.Sprintf("/schemas/%s/templates/%s/anps/%s/epgs/%s", schemaId, apiTemplate, apiANP, apiEPG) + d.SetId(id) d.Set("name", apiEPG) d.Set("display_name", models.StripQuotes(epgCont.S("displayName").String())) d.Set("intra_epg", models.StripQuotes(epgCont.S("intraEpg").String())) @@ -339,7 +340,8 @@ func resourceMSOSchemaTemplateAnpEpgRead(d *schema.ResourceData, m interface{}) } apiEPG := models.StripQuotes(epgCont.S("name").String()) if apiEPG == stateEPG { - d.SetId(apiEPG) + id := fmt.Sprintf("/schemas/%s/templates/%s/anps/%s/epgs/%s", schemaId, apiTemplate, apiANP, apiEPG) + d.SetId(id) d.Set("schema_id", schemaId) d.Set("name", apiEPG) d.Set("template_name", apiTemplate) diff --git a/mso/resource_mso_schema_template_external_epg.go b/mso/resource_mso_schema_template_external_epg.go index c52a31be..add79b59 100644 --- a/mso/resource_mso_schema_template_external_epg.go +++ b/mso/resource_mso_schema_template_external_epg.go @@ -172,7 +172,8 @@ func resourceMSOTemplateExtenalepgImport(d *schema.ResourceData, m interface{}) } apiExternalepg := models.StripQuotes(externalepgCont.S("name").String()) if apiExternalepg == stateExternalepg { - d.SetId(get_attribute[4]) + id := fmt.Sprintf("/schemas/%s/templates/%s/externalEpgs/%s", schemaId, apiTemplate, apiExternalepg) + d.SetId(id) d.Set("external_epg_name", apiExternalepg) d.Set("schema_id", schemaId) d.Set("template_name", apiTemplate) @@ -457,7 +458,8 @@ func resourceMSOTemplateExtenalepgRead(d *schema.ResourceData, m interface{}) er } apiExternalepg := models.StripQuotes(externalepgCont.S("name").String()) if apiExternalepg == stateExternalepg { - d.SetId(apiExternalepg) + id := fmt.Sprintf("/schemas/%s/templates/%s/externalEpgs/%s", schemaId, apiTemplate, apiExternalepg) + d.SetId(id) d.Set("external_epg_name", apiExternalepg) d.Set("schema_id", schemaId) d.Set("template_name", apiTemplate) diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/client/dhcp_relay_policy_service.go b/vendor/github.com/ciscoecosystem/mso-go-client/client/dhcp_relay_policy_service.go new file mode 100644 index 00000000..4f283bd3 --- /dev/null +++ b/vendor/github.com/ciscoecosystem/mso-go-client/client/dhcp_relay_policy_service.go @@ -0,0 +1,59 @@ +package client + +import ( + "fmt" + "github.com/ciscoecosystem/mso-go-client/container" + "github.com/ciscoecosystem/mso-go-client/models" +) + +func (client *Client) GetDHCPRelayPolicyID(name string) (string, error) { + path := "api/v1/policies/dhcp/relay" + cont, err := client.GetViaURL(path) + if err != nil { + return "", err + } + for _, policy := range cont.S("DhcpRelayPolicies").Data().([]interface{}) { + if relayPol, ok := policy.(map[string]interface{}); ok { + if name == relayPol["name"].(string) { + return relayPol["id"].(string), nil + } + } + } + return "", fmt.Errorf("DHCP Relay Policy with name: %s not found", name) +} + +func (client *Client) CreateDHCPRelayPolicy(obj *models.DHCPRelayPolicy) (*container.Container, error) { + path := "api/v1/policies/dhcp/relay" + cont, err := client.Save(path, obj) + if err != nil { + return nil, err + } + return cont, nil +} + +func (client *Client) ReadDHCPRelayPolicy(id string) (*container.Container, error) { + path := "api/v1/policies/dhcp/relay/" + id + cont, err := client.GetViaURL(path) + if err != nil { + return nil, err + } + return cont, nil +} + +func (client *Client) UpdateDHCPRelayPolicy(id string, obj *models.DHCPRelayPolicy) (*container.Container, error) { + path := "api/v1/policies/dhcp/relay/" + id + cont, err := client.Put(path, obj) + if err != nil { + return nil, err + } + return cont, nil +} + +func (client *Client) DeleteDHCPRelayPolicy(id string) error { + path := "api/v1/policies/dhcp/relay/" + id + err := client.DeletebyId(path) + if err != nil { + return err + } + return nil +} diff --git a/vendor/github.com/ciscoecosystem/mso-go-client/models/relay_policy.go b/vendor/github.com/ciscoecosystem/mso-go-client/models/relay_policy.go new file mode 100644 index 00000000..74b5bfd3 --- /dev/null +++ b/vendor/github.com/ciscoecosystem/mso-go-client/models/relay_policy.go @@ -0,0 +1,54 @@ +package models + +import ( + "encoding/json" + + "github.com/ciscoecosystem/mso-go-client/container" +) + +type DHCPRelayPolicy struct { + ID string `json:"id,omitempty"` + Name string `json:"name"` + PolicyType string `json:"policyType,omitempty"` + PolicySubtype string `json:"policySubtype,omitempty"` + Desc string `json:"desc"` + TenantID string `json:"tenantId"` + DHCPProvider []DHCPProvider `json:"provider"` +} + +func NewDHCPRelayPolicy(policy DHCPRelayPolicy) *DHCPRelayPolicy { + newDHCPRelayPolicy := policy + return &newDHCPRelayPolicy +} + +type DHCPProvider struct { + ExternalEPG string `json:"externalEpgRef"` + EPG string `json:"epgRef"` + DHCPServerAddress string `json:"addr"` + TenantID string `json:"tenantId"` +} + +func (model *DHCPRelayPolicy) ToMap() (map[string]interface{}, error) { + objMap := make(map[string]interface{}) + + jsonObj, err := json.Marshal(model) + if err != nil { + return nil, err + } + + err = json.Unmarshal(jsonObj, &objMap) + if err != nil { + return nil, err + } + + return objMap, nil +} + +func DHCPRelayPolicyFromContainer(cont *container.Container) (*DHCPRelayPolicy, error) { + policy := DHCPRelayPolicy{} + err := json.Unmarshal(cont.EncodeJSON(), &policy) + if err != nil { + return nil, err + } + return &policy, nil +} diff --git a/vendor/modules.txt b/vendor/modules.txt index 6aa1054e..73c3c117 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -56,7 +56,7 @@ github.com/aws/aws-sdk-go/service/sts/stsiface github.com/bgentry/go-netrc/netrc # github.com/bgentry/speakeasy v0.1.0 github.com/bgentry/speakeasy -# github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222071607-6c0fd78257c7 +# github.com/ciscoecosystem/mso-go-client v1.2.7-0.20220222130833-44686049b065 github.com/ciscoecosystem/mso-go-client/client github.com/ciscoecosystem/mso-go-client/container github.com/ciscoecosystem/mso-go-client/models From b200dc7bb8adc83ed71f10eb7604a01973ea629b Mon Sep 17 00:00:00 2001 From: Darshit Sachdev Date: Wed, 23 Feb 2022 12:50:36 +0530 Subject: [PATCH 15/67] Added website and example for MSO DHCP Relay Policy. --- examples/dhcp_relay_policy/main.tf | 55 +++++++++++++++++++++++ examples/dhcp_relay_policy/variables.tf | 47 +++++++++++++++++++ website/docs/d/dhcp_relay_policy.markdown | 32 +++++++++++++ website/docs/r/dhcp_relay_policy.markdown | 52 +++++++++++++++++++++ website/mso.erb | 6 +++ 5 files changed, 192 insertions(+) create mode 100644 examples/dhcp_relay_policy/main.tf create mode 100644 examples/dhcp_relay_policy/variables.tf create mode 100644 website/docs/d/dhcp_relay_policy.markdown create mode 100644 website/docs/r/dhcp_relay_policy.markdown diff --git a/examples/dhcp_relay_policy/main.tf b/examples/dhcp_relay_policy/main.tf new file mode 100644 index 00000000..2ffbc235 --- /dev/null +++ b/examples/dhcp_relay_policy/main.tf @@ -0,0 +1,55 @@ +terraform { + required_providers { + mso = { + source = "CiscoDevNet/mso" + } + } +} + +provider "mso" { + username = "" # + password = "" # + url = "" # + insecure = true +} + +resource "mso_tenant" "tenant1" { + name = var.tenant_name + display_name = var.tenant_name + description = "DemoTenant" +} + +resource "mso_schema" "schema1" { + name = var.schema_name + template_name = var.template_name + tenant_id = data.mso_tenant.tenant1.id +} + +resource "mso_schema_template_vrf" "vrf1" { + schema_id = mso_schema.schema1.id + template = mso_schema.schema1.template_name + name = var.vrf_name + display_name = var.vrf_name +} + +resource "mso_schema_template_external_epg" "epg1" { + schema_id = mso_schema.schema1.id + template_name = mso_schema.schema1.template_name + external_epg_name = var.external_epg_name + display_name = var.external_epg_name + vrf_name = mso_schema_template_vrf.vrf1.name +} + +resource "mso_dhcp_relay_policy" "dp1" { + tenant_id = mso_tenant.tenant1.id + name = var.relay_policy_name + description = "desc" + dhcp_relay_policy_provider { + epg = var.epg + dhcp_server_address = var.dhcp_server_address + } + dhcp_relay_policy_provider { + external_epg = mso_schema_template_external_epg.epg1.id + dhcp_server_address = var.dhcp_server_address + } +} diff --git a/examples/dhcp_relay_policy/variables.tf b/examples/dhcp_relay_policy/variables.tf new file mode 100644 index 00000000..c01efc56 --- /dev/null +++ b/examples/dhcp_relay_policy/variables.tf @@ -0,0 +1,47 @@ +variable "tenant_name" { + type = string + default = "mso_tenant" + description = "The name of MSO tenant to use for this configuration" +} + +variable "schema_name" { + type = string + default = "mso_schema" + description = "The name of MSO schema to use for this configuration" +} + +variable "template_name" { + type = string + default = "mso_template" + description = "The name of MSO template to use for this configuration" +} + +variable "external_epg_name" { + type = string + default = "mso_external_epg" + description = "The name of MSO external epg to use for this configuration" +} + +variable "vrf_name" { + type = string + default = "mso_vrf" + description = "The name of MSO vrf to use for this configuration" +} + +variable "dhcp_server_address" { + type = string + default = "1.2.3.4" + description = "DHCP server address." +} + +variable "epg" { + type = string + default = "/schemas/621392f81d0000282a4f9d1c/templates/ACC_CREST/anps/test_ap/epgs/test_epg" + description = "EPG." +} + +variable "relay_policy_name" { + type = string + default = "relay_policy" + description = "Relay policy name." +} diff --git a/website/docs/d/dhcp_relay_policy.markdown b/website/docs/d/dhcp_relay_policy.markdown new file mode 100644 index 00000000..05d6841c --- /dev/null +++ b/website/docs/d/dhcp_relay_policy.markdown @@ -0,0 +1,32 @@ +--- +layout: "mso" +page_title: "MSO: mso_dhcp_relay_policy" +sidebar_current: "docs-mso-resource-dhcp_relay_policy" +description: |- + Data source for MSO DHCP Relay Policy +--- + +# mso_dhcp_relay_policy + +Data source for MSO DHCP Relay Policy + +## Example Usage + +```hcl +data "mso_dhcp_relay_policy" "example" { + name = "dhcpRelayPol" +} +``` + +## Argument Reference + +- `name` - (Required) The name of the DHCP Relay policy. + +## Attribute Reference + +- `tenant_id` - ID of parent `mso_tenant` resource. +- `description` - The description for this DHCP Relay Policy. +- `dhcp_relay_policy_provider` - DHCP Provider configuration to be associated to the Policy. + - `epg` - The reference of the EPG. + - `external_epg` - The reference of the External EPG. external_epg and epg both should not be expected simultaneously. + - `dhcp_server_address` - The DHCP Server Address. diff --git a/website/docs/r/dhcp_relay_policy.markdown b/website/docs/r/dhcp_relay_policy.markdown new file mode 100644 index 00000000..bac2c139 --- /dev/null +++ b/website/docs/r/dhcp_relay_policy.markdown @@ -0,0 +1,52 @@ +--- +layout: "mso" +page_title: "MSO: mso_dhcp_relay_policy" +sidebar_current: "docs-mso-resource-dhcp_relay_policy" +description: |- + Manages MSO DHCP relay Policy +--- + +# mso_dhcp_relay_policy + +Manages MSO DHCP relay Policy + +## Example Usage + +```hcl +resource "mso_dhcp_relay_policy" "example" { + tenant_id = mso_tenant.example.id + name = "dhcpRelayPol" + description = "from Terraform" + dhcp_relay_policy_provider { + epg = mso_schema_template_anp_epg.example.id + dhcp_server_address = "1.2.3.4" + } + dhcp_relay_policy_provider { + external_epg = mso_schema_template_external_epg.example.id + dhcp_server_address = "1.2.3.4" + } +} + +``` + +## Argument Reference + +- `name` - (Required) The name of the DHCP relay policy. +- `tenant_id` - (Required) ID of parent `mso_tenant` resource. +- `description` - (Optional) The description for this DHCP Relay Policy. +- `dhcp_relay_policy_provider` - (Optional) DHCP Provider configuration to be associated to the Policy. + - `epg` - (Required) The reference of the EPG. + - `external_epg` - (Required) The reference of the External EPG. external_epg and epg both are not expected simultaneously, only one of them is required at a time. + - `dhcp_server_address` - (Required) The DHCP Server Address. + +## Attribute Reference + +The only Attribute exposed for this resource is `id`. Which is set to the id of tenant created. + +## Importing + +An existing MSO Tenant can be [imported][docs-import] into this resource via its Id, via the following command: [docs-import]: + +```bash +terraform import mso_dhcp_relay_policy.example {dhcp_relay_policy_id} +``` diff --git a/website/mso.erb b/website/mso.erb index c03fd521..4b315025 100644 --- a/website/mso.erb +++ b/website/mso.erb @@ -14,6 +14,9 @@ > Data Resources